@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;700&display=swap');

/* =========================================================================
   DESIGN TOKENS
   ========================================================================= */
:root {
    /* Backgrounds */
    --bg-void: #020408;
    --bg-deep: #060a10;
    --bg-surface: #0c1220;
    --bg-card: #111a2e;
    --bg-elevated: #182640;

    /* Gold Palette */
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 40%, #AA8C2C 100%);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.25);
    --gold-glow-strong: 0 0 60px rgba(212, 175, 55, 0.35);

    /* Accent */
    --emerald: #10B981;
    --emerald-bg: rgba(16, 185, 129, 0.1);
    --emerald-border: rgba(16, 185, 129, 0.25);
    --red: #EF4444;
    --blue: #3B82F6;

    /* Text */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    --text-inverse: #020408;

    /* Glass */
    --glass-bg: rgba(12, 18, 32, 0.75);
    --glass-bg-light: rgba(24, 38, 64, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* =========================================================================
   BASE RESET
   ========================================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* =========================================================================
   UTILITIES
   ========================================================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* =========================================================================
   SECTION HEADERS
   ========================================================================= */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-inverse);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-strong);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full { width: 100%; }

.btn-nav {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 4, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-king { color: var(--text-primary); }
.logo-capper { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration-fast) var(--ease-out);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Notification Bell */
.nav-bell {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 8px;
    transition: color var(--duration-fast);
    cursor: pointer;
}

.nav-bell:hover { color: var(--gold); }

.bell-dot {
    position: absolute;
    top: 6px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hamburger Menu */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    position: absolute;
    left: 0;
}

.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }

.mobile-toggle.active .hamburger { background: transparent; }
.mobile-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-deep);
    border-left: 1px solid var(--glass-border);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right var(--duration-normal) var(--ease-out);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    transition: color var(--duration-fast);
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
    margin-top: 12px;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    overflow: hidden;
}

/* Gradient background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(12, 18, 32, 0.8) 0%, var(--bg-void) 100%);
}

/* Animated grid lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--emerald-border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--emerald);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 40px auto;
    max-width: 620px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Visual — floating cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-card {
    width: 340px;
    padding: 24px;
    position: relative;
    z-index: 2;
    animation: float-card 6s var(--ease-out) infinite;
    box-shadow: var(--shadow-lg);
}

.hero-card-mini {
    position: absolute;
    bottom: 10px;
    right: -10px;
    width: 220px;
    padding: 16px;
    z-index: 3;
    animation: float-card-reverse 5s var(--ease-out) infinite;
    box-shadow: var(--shadow-md);
}

.hero-notification {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 240px;
    padding: 14px 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-card 7s var(--ease-out) infinite 1s;
    box-shadow: var(--shadow-md);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float-card-reverse {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Card internals */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-badge.win {
    background: var(--emerald-bg);
    color: var(--emerald);
}

.card-date {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.card-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.card-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.team-badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    border: 1px solid var(--glass-border);
}

.team-badge.alt {
    color: var(--text-secondary);
}

.card-score-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.card-vs {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.win-color { color: var(--gold); }

.card-details {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.detail > span:first-child { color: var(--text-tertiary); }
.detail-val { font-weight: 600; }
.detail-val.highlight { color: var(--gold); }

/* Confidence bar */
.confidence-bar {
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    transition: width 1.5s var(--ease-out);
}

/* Mini card */
.mini-pick {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.mini-units {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-family: var(--font-mono);
}

/* Notification in hero */
.notification-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 0.82rem;
    font-weight: 600;
}

.notification-sub {
    font-size: 0.72rem;
    color: var(--text-tertiary);
}

/* =========================================================================
   STATS BAR
   ========================================================================= */
.hero-stats-bar {
    position: relative;
    margin-top: -30px;
    z-index: 10;
    padding: 0 24px;
}

.stats-bar-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-pill .stat-number,
.stat-pill .stat-prefix,
.stat-pill .stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-pill .stat-prefix,
.stat-pill .stat-suffix {
    font-size: 1.3rem;
}

.stat-pill .stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
}

/* =========================================================================
   LIVE TICKER
   ========================================================================= */
.ticker-strip {
    background: rgba(212, 175, 55, 0.04);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    padding: 14px 0;
    margin-top: 60px;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-secondary);
}

.ticker-item strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.sport-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.ticker-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ticker-tag.win {
    background: var(--emerald-bg);
    color: var(--emerald);
}

.ticker-tag.push {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.ticker-tag.loss {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red);
}

/* =========================================================================
   FEATURES — BENTO GRID
   ========================================================================= */
.features {
    padding: var(--section-pad) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-md);
}

.bento-card:hover::before { opacity: 1; }

/* Bento size variants */
.bento-large {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 22px;
}

.bento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Mini chart visual in bento-large */
.bento-visual {
    margin-top: 24px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 4px 4px 0 0;
    transition: background var(--duration-normal);
}

.chart-bar.active {
    background: var(--gold-gradient);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* Bento tags */
.bento-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how-it-works {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 40px 28px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 70px;
    width: 60px;
    flex-shrink: 0;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.05));
    position: relative;
}

.connector-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-right: 2px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

/* =========================================================================
   RESULTS / TESTIMONIALS — MARQUEE
   ========================================================================= */
.results {
    padding: var(--section-pad) 0 80px;
    overflow: hidden;
}

.marquee-wrap {
    overflow: hidden;
    margin-top: 20px;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 360px;
    flex-shrink: 0;
    padding: 32px 28px;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-card > p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--bg-void);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--gold);
}

.author-name {
    font-weight: 600;
    font-size: 0.92rem;
    display: block;
}

.author-tier {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: 2px;
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-tertiary);
    transition: color var(--duration-fast);
    cursor: pointer;
}

.toggle-label.active { color: var(--text-primary); }

.save-badge {
    background: var(--emerald-bg);
    color: var(--emerald);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: var(--duration-normal);
}

.switch-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform var(--duration-normal) var(--ease-spring);
}

input:checked + .switch-slider::before {
    transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Featured card */
.pricing-card.featured {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, var(--bg-surface) 40%);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--gold-glow);
    z-index: 2;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--text-inverse);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tier-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}

.tier-name {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.tier-price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 12px;
}

.tier-price .currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.tier-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.tier-price .period {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    margin-left: 4px;
}

.tier-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Pricing features */
.pricing-features {
    flex-grow: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.pricing-features li i.fa-check {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.pricing-features li i.fa-times {
    color: var(--text-tertiary);
    width: 16px;
    text-align: center;
}

.pricing-features li.disabled {
    opacity: 0.45;
}

/* =========================================================================
   NEWSLETTER CTA
   ========================================================================= */
.newsletter-cta {
    padding: 80px 0 var(--section-pad);
}

.newsletter-card {
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 400px;
}

.newsletter-form {
    flex-shrink: 0;
    min-width: 380px;
}

.input-group {
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--duration-fast);
}

.input-group:focus-within {
    border-color: var(--gold);
}

.input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-tertiary);
}

.input-group .btn {
    border-radius: 0;
    padding: 14px 24px;
}

.form-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 10px;
}

.form-note i { margin-right: 4px; }

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.faq {
    padding: 80px 0 var(--section-pad);
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--duration-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-question i {
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: var(--bg-deep);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-about {
    color: var(--text-tertiary);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--duration-fast);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-inverse);
}

.footer-links h4 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--text-tertiary);
    font-size: 0.88rem;
    transition: all var(--duration-fast);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.disclaimer {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    max-width: 700px;
    line-height: 1.5;
    opacity: 0.7;
}

/* =========================================================================
   NOTIFICATION BANNER
   ========================================================================= */
.notif-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    width: calc(100% - 40px);
    max-width: 600px;
    transition: bottom var(--duration-slow) var(--ease-spring);
}

.notif-banner.visible {
    bottom: 24px;
}

.notif-banner-inner {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.notif-banner-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.notif-banner-content {
    flex-grow: 1;
}

.notif-banner-content strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.notif-banner-content span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.notif-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-notif {
    padding: 10px 18px;
    font-size: 0.82rem;
}

.notif-dismiss {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1rem;
    padding: 8px;
    transition: color var(--duration-fast);
}

.notif-dismiss:hover { color: var(--text-primary); }

/* Toast */
.notif-toast {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2001;
    transition: top var(--duration-slow) var(--ease-spring);
}

.notif-toast.visible {
    top: 24px;
}

.notif-toast-inner {
    background: var(--bg-card);
    border: 1px solid var(--emerald-border);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.notif-toast-icon { color: var(--emerald); }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* =========================================================================
   RESPONSIVE — TABLET
   ========================================================================= */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .hero-visual {
        margin-top: 40px;
        min-height: 340px;
    }

    .hero-notification { display: none; }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large, .bento-wide {
        grid-column: span 2;
    }

    .steps-grid {
        flex-wrap: wrap;
        gap: 0;
    }

    .step-connector { display: none; }
    .step-card { min-width: 200px; }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .newsletter-content p { margin: 0 auto; }
    .newsletter-form { min-width: auto; width: 100%; max-width: 450px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar-inner {
        padding: 20px 24px;
        gap: 16px;
    }

    .stat-pill .stat-number { font-size: 1.6rem; }
    .stat-pill .stat-prefix, .stat-pill .stat-suffix { font-size: 1rem; }
}

/* =========================================================================
   RESPONSIVE — MOBILE
   ========================================================================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta .btn { display: none; }
    .mobile-toggle { display: block; }

    .hero { padding: 120px 0 40px; }
    .hero-title { letter-spacing: -1px; }

    .hero-card { width: 100%; max-width: 300px; }
    .hero-card-mini { right: 0; width: 180px; }

    .stats-bar-inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-divider { display: none; }

    .stat-pill {
        min-width: 100px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large, .bento-wide {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .notif-banner-inner {
        flex-wrap: wrap;
    }

    .notif-banner-actions {
        width: 100%;
        margin-top: 8px;
    }

    .btn-notif { flex-grow: 1; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero { width: 100%; }

    .hero-card-mini { display: none; }

    .stats-bar-inner { padding: 20px; }
}
