/* FUTURISTIC / PRO AESTHETIC CSS */
:root {
    --bg-dark: #07090F; /* Ultra deep blue/black */
    --card-bg: rgba(18, 24, 38, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #8E9BAE;
    
    /* Neon Accents */
    --neon-blue: #00F0FF;
    --neon-green: #39FF14;
    --accent-yellow: #FFD600;

    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glow Orbs */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; z-index: -1; animation: drift 10s infinite alternate; }
.orb-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(0, 240, 255, 0.3); }
.orb-2 { top: 40%; right: -20%; width: 600px; height: 600px; background: rgba(57, 255, 20, 0.2); animation-delay: -5s; }
.orb-3 { bottom: -20%; left: 30%; width: 700px; height: 300px; background: rgba(0, 102, 255, 0.3); }

@keyframes drift { 
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography Utilities */
h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; }
.gradient-blue-green { background: linear-gradient(90deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-blue { background: linear-gradient(90deg, #FFFFFF, var(--neon-blue)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.text-green { color: var(--neon-green); }
.text-blue { color: var(--neon-blue); }

.bg-blue { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.bg-yellow { background: var(--accent-yellow); box-shadow: 0 0 10px var(--accent-yellow); }
.bg-green { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }

/* Glass Panel Base */
.glasseffect, .glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
}

.bento-hover { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease; }
.bento-hover:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); }

/* Buttons & Badges */
.badge-new { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }

.badge-outline { display: inline-block; padding: 6px 16px; border-radius: 20px; border: 1px solid var(--neon-blue); color: var(--neon-blue); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;}

.btn-glow { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; border-radius: 99px; background: #FFFFFF; color: #000000; font-weight: 800; font-size: 1.125rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 0 20px rgba(255,255,255,0.2); }
.btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255,255,255,0.4); }

.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; border-radius: 99px; background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px dashed rgba(255,255,255,0.2); font-weight: 600; font-size: 1.125rem; cursor: not-allowed; }

.btn-smol { display: inline-block; padding: 10px 20px; border-radius: 99px; background: var(--text-main); color: var(--bg-dark); font-weight: 700; text-decoration: none; font-size: 0.875rem; transition: transform 0.2s;}
.btn-smol:hover { transform: scale(1.05); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; background: linear-gradient(180deg, rgba(7,9,15,0.9) 0%, rgba(7,9,15,0) 100%); backdrop-filter: blur(10px); }
.nav-content { max-width: 1400px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em;}
.app-logo { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; gap: 40px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 1rem; transition: color 0.2s; }
.nav-link:hover { color: var(--text-main); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 32px 60px; }
.hero-grid { max-width: 1400px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-title { font-size: 5.5rem; margin-bottom: 24px; text-transform: uppercase; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 48px; max-width: 500px; font-weight: 400; line-height: 1.5; }
.cta-wrapper { display: flex; gap: 20px; }

/* Hero Visuals */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 600px; }
.bg-abstract-city { position: absolute; width: 95%; max-width: 820px; opacity: 0.55; right: -8%; bottom: -5%; filter: saturate(0.4) contrast(1.2); mask-image: linear-gradient(to top, transparent 5%, black 70%); -webkit-mask-image: linear-gradient(to top, transparent 5%, black 70%); z-index: 0; pointer-events: none; }

/* Floating Run Card (Strava Vibe) */
.floating-run-card { position: relative; z-index: 10; width: 340px; padding: 32px; border: 1px solid rgba(255,255,255,0.15); }
.run-header { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.run-icon { font-size: 1.25rem; color: var(--neon-blue); }
.run-status { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; color: var(--neon-blue); }

.metric-main { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.metric-val { font-size: 5rem; font-weight: 900; line-height: 0.8; letter-spacing: -0.05em; }
.metric-unit { font-size: 1.5rem; font-weight: 600; color: var(--text-muted); }

.metric-row { display: flex; justify-content: space-between; margin-bottom: 32px; }
.metric-small label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 4px; }
.metric-small span { font-size: 1.75rem; font-weight: 800; }

.fake-map { width: 100%; height: 60px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.sparkline { width: 100%; height: 100%; }
.path-line { stroke: var(--neon-green); stroke-width: 3; filter: drop-shadow(0 0 4px var(--neon-green)); stroke-dasharray: 200; animation: draw 4s linear infinite; }
.pulse-circle { fill: #FFFFFF; filter: drop-shadow(0 0 6px #FFFFFF); }
@keyframes draw { 0% { stroke-dashoffset: 200; } 100% { stroke-dashoffset: 0; } }

/* Section Basics */
.section { padding: 120px 32px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 10;}
.section-title { margin-bottom: 80px; }
.section-title h2 { font-size: 4rem; margin-bottom: 24px; text-transform: uppercase;}
.section-title p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; }

/* BENTO GRID (Weather Section) */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(250px, auto); gap: 24px; }
.bento-card { padding: 40px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.large-card { grid-column: span 2; grid-row: span 2; }
.icon-wrap { width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 24px; }
.icon-wrap.blue { background: rgba(0,240,255,0.15); color: var(--neon-blue); }
.icon-wrap.green { background: rgba(57,255,20,0.15); color: var(--neon-green); }
.icon-wrap.yellow { background: rgba(255,214,0,0.15); color: var(--accent-yellow); }

.bento-card h3 { font-size: 2rem; margin-bottom: 16px; }
.bento-card p { font-size: 1.125rem; color: var(--text-muted); }
.bento-image-right { position: absolute; right: -30px; bottom: -30px; width: 480px; opacity: 0.92; mask-image: radial-gradient(ellipse 80% 80% at 60% 60%, black 40%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 60%, black 40%, transparent 100%); pointer-events: none; filter: brightness(1.05);}

/* PRO RUN SECTION (Strava Vibe) */
.pro-run-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; padding: 60px; align-items: center; overflow: hidden; }
.pro-run-visual { background: rgba(0,0,0,0.3); border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.05); }

.activity-score-badge { text-align: center; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.activity-score-badge p { font-size: 0.875rem; font-weight: 700; color: var(--text-muted); letter-spacing: 2px;}
.score-number { font-size: 6rem; font-weight: 900; line-height: 1; margin: 16px 0; }
.score-label { font-size: 1.25rem; font-weight: 600; color: var(--text-main); }

.score-breakdown { list-style: none; }
.score-breakdown li { margin-bottom: 20px; }
.score-breakdown span { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.prog-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 99px; }
.fill { height: 100%; border-radius: 99px; }

.pro-run-text h2 { font-size: 3.5rem; margin-bottom: 24px; text-transform: uppercase; }
.pro-run-text .desc { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }
.pro-features { display: flex; flex-direction: column; gap: 32px; }
.pro-feat { display: flex; gap: 24px; align-items: flex-start; }
.feat-icon { font-size: 2.5rem; flex-shrink: 0; }
.pro-feat h4 { font-size: 1.5rem; margin-bottom: 8px; }
.pro-feat p { font-size: 1.125rem; color: var(--text-muted); }

/* Footer */
footer { padding: 80px 32px 40px; border-top: 1px solid var(--card-border); background: #000000; }
.footer-layout { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 80px; margin-bottom: 60px;}
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; margin-bottom: 20px;}
.footer-brand img { width: 32px; border-radius: 8px; }
.footer-info p { color: var(--text-muted); font-size: 1.125rem; max-width: 400px; }

.footer-nav h4 { font-size: 1.25rem; margin-bottom: 24px; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a { color: var(--text-muted); text-decoration: none; font-size: 1.125rem; font-weight: 600; transition: color 0.2s; }
.footer-nav a:hover { color: var(--text-main); }

.copyright { text-align: center; color: var(--text-muted); font-size: 0.875rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; max-width: 1400px; margin: 0 auto; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 0;}
    .hero-title { font-size: 4rem; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-visual { height: 400px; }
    .cta-wrapper { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .large-card { grid-column: span 1; grid-row: span 1; }
    .bento-image-right { width: 280px; right: -10px; bottom: -15px; }
    .pro-run-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 140px; }
    .hero-title { font-size: 3rem; }
    .floating-run-card { transform: scale(0.8); }
    .section-title h2 { font-size: 3rem; }
    .pro-run-text h2 { font-size: 2.5rem; }
    .pro-run-container { padding: 32px; }
    .footer-layout { grid-template-columns: 1fr; gap: 40px; }
}
