/* ============================================
   CUDOVIA - Aurora Design System
   Mobile Game Website Styles
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Palette */
    --primary: #4ade80;
    --primary-dim: #22c55e;
    --primary-glow: rgba(74, 222, 128, 0.4);
    --primary-subtle: rgba(74, 222, 128, 0.1);

    /* Secondary Palette */
    --secondary: #818cf8;
    --secondary-dim: #6366f1;
    --secondary-glow: rgba(129, 140, 248, 0.4);
    --secondary-subtle: rgba(129, 140, 248, 0.1);

    /* Accent Palette */
    --accent: #c084fc;
    --accent-dim: #a855f7;
    --accent-glow: rgba(192, 132, 252, 0.4);
    --accent-subtle: rgba(192, 132, 252, 0.1);

    /* Dark Backgrounds */
    --bg-deepest: #030712;
    --bg-deep: #0a0f1e;
    --bg-dark: #0f172a;
    --bg-medium: #1e293b;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --bg-glass: rgba(15, 23, 42, 0.6);

    /* Text Colors */
    --text-bright: #f8fafc;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #1e293b;

    /* Borders */
    --border-subtle: rgba(148, 163, 184, 0.1);
    --border-glow: rgba(74, 222, 128, 0.3);

    /* Gradients */
    --gradient-aurora: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --gradient-aurora-soft: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(129, 140, 248, 0.2), rgba(192, 132, 252, 0.2));
    --gradient-dark: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-deep) 100%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Quicksand', sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Sizes */
    --header-height: 80px;
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

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

    /* Shadows */
    --shadow-glow-sm: 0 0 20px rgba(74, 222, 128, 0.15);
    --shadow-glow-md: 0 0 40px rgba(74, 222, 128, 0.2);
    --shadow-glow-lg: 0 0 80px rgba(74, 222, 128, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-deepest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

a:hover {
    color: var(--primary-dim);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--primary);
    color: var(--bg-deepest);
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-dim), var(--accent-dim));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* === Utility / Container === */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
    animation: slideUpCookie 0.5s var(--ease-smooth) forwards;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-bright);
    margin-bottom: var(--space-xs);
}

.cookie-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-desc a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gradient-aurora);
    color: var(--bg-deepest);
    border: none;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-sm);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.cookie-btn-essential:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.cookie-btn-settings:hover {
    color: var(--primary);
}

.cookie-settings {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.cookie-setting-row {
    margin-bottom: var(--space-sm);
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cookie-settings .cookie-btn {
    margin-top: var(--space-md);
}

/* === HEADER / NAVIGATION === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-smooth);
}

.main-header.scrolled {
    background: rgba(3, 7, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
    color: var(--bg-deepest);
    font-size: 1.1rem;
    transition: transform 0.3s var(--ease-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-12deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-bright);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.nav-cta {
    background: var(--gradient-aurora);
    color: var(--bg-deepest) !important;
    -webkit-text-fill-color: var(--bg-deepest);
    font-weight: 700;
    padding: 0.5rem 1.25rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-sm);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 6px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    max-width: var(--container-max);
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Aurora Background */
.aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.aurora-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.aurora-layer-1 {
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: auroraFloat1 12s infinite alternate;
}

.aurora-layer-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, var(--secondary-glow) 0%, transparent 70%);
    top: 20%;
    right: -150px;
    animation: auroraFloat2 15s infinite alternate;
}

.aurora-layer-3 {
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: auroraFloat3 18s infinite alternate;
}

@keyframes auroraFloat1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(100px, 50px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-50px, 100px) scale(0.9); opacity: 0.3; }
}

@keyframes auroraFloat2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate(-80px, 60px) scale(1.1); opacity: 0.55; }
    100% { transform: translate(60px, -40px) scale(0.95); opacity: 0.4; }
}

@keyframes auroraFloat3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(50px, -70px) scale(1.15); opacity: 0.5; }
    100% { transform: translate(-70px, 30px) scale(1.05); opacity: 0.35; }
}

/* Aurora Particles */
.aurora-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.8; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.3; transform: translateY(-80px) scale(0.6); }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: var(--primary-subtle);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge i {
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-secondary);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.title-line-2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--text-bright);
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.title-line-3 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--text-bright);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.highlight {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out) 0.75s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-aurora);
    color: var(--bg-deepest);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-md);
    color: var(--bg-deepest);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-glow {
    box-shadow: var(--shadow-glow-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-subtle);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 1.05s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-bright);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.game-preview {
    position: relative;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0a0a1a 100%);
    border-radius: 36px;
    border: 2px solid rgba(148, 163, 184, 0.15);
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: #0a0a1a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 12px;
    position: relative;
}

.phone-notch::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 20px;
    box-shadow: inset 0 0 3px rgba(74, 222, 128, 0.5);
}

.phone-screen {
    width: 100%;
    height: calc(100% - 36px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--bg-deepest);
}

.screen-aurora {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(74, 222, 128, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(129, 140, 248, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    animation: screenAurora 8s ease-in-out infinite alternate;
}

@keyframes screenAurora {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.screen-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.screen-hud {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-bright);
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.hud-item i {
    font-size: 0.6rem;
}

.hud-item:nth-child(1) i { color: #ef4444; }
.hud-item:nth-child(2) i { color: #3b82f6; }
.hud-item:nth-child(3) i { color: var(--primary); }

.screen-character {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.character-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: characterPulse 3s ease-in-out infinite;
}

@keyframes characterPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.character-icon {
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: characterFloat 4s ease-in-out infinite;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.screen-terrain {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 var(--space-sm);
}

.terrain-line {
    height: 2px;
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.terrain-line:nth-child(1) {
    background: var(--primary);
    width: 100%;
}

.terrain-line:nth-child(2) {
    background: var(--secondary);
    width: 80%;
    margin-left: auto;
}

.terrain-line:nth-child(3) {
    background: var(--accent);
    width: 60%;
}

.screen-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    animation: orbFloat 5s ease-in-out infinite;
}

.orb-1 {
    top: 30%;
    right: 15%;
    background: rgba(74, 222, 128, 0.2);
    color: var(--primary);
    animation-delay: 0s;
}

.orb-2 {
    top: 55%;
    left: 10%;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation-delay: 1.5s;
}

.orb-3 {
    bottom: 25%;
    right: 20%;
    background: rgba(129, 140, 248, 0.2);
    color: var(--secondary);
    animation-delay: 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(5deg); }
    75% { transform: translateY(4px) rotate(-5deg); }
}

/* Glow Rings */
.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: glowRingPulse 4s ease-in-out infinite;
}

.glow-ring-1 {
    width: 320px;
    height: 580px;
    top: -30px;
    left: -30px;
    border-color: rgba(74, 222, 128, 0.1);
    animation-delay: 0s;
}

.glow-ring-2 {
    width: 380px;
    height: 640px;
    top: -60px;
    left: -60px;
    border-color: rgba(129, 140, 248, 0.08);
    animation-delay: 2s;
}

@keyframes glowRingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: fadeInUp 0.8s var(--ease-out) 1.5s both;
    z-index: 2;
}

.scroll-indicator i {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-tag i {
    font-size: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

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

/* === FEATURES SECTION === */
.features {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--bg-deep);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-deepest), transparent);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-aurora);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sm);
}

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

.feature-card-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-card-large .feature-desc {
    flex: 1;
}

.feature-card-highlight {
    background: linear-gradient(145deg, rgba(74, 222, 128, 0.08), rgba(129, 140, 248, 0.05));
    border-color: rgba(74, 222, 128, 0.15);
}

.feature-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora-soft);
    border-radius: var(--radius-md);
    transform: rotate(6deg);
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.feature-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-tag-row {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-subtle);
    border-radius: var(--radius-full);
    border: 1px solid rgba(74, 222, 128, 0.15);
}

/* === SOCIAL PROOF / COUNTERS === */
.social-proof {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--bg-deepest);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

.counter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.counter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-aurora);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.counter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sm);
}

.counter-card:hover::after {
    opacity: 1;
}

.counter-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-aurora-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon {
    font-size: 1.4rem;
    color: var(--primary);
}

.counter-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.2rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.counter-trend {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.counter-trend i {
    font-size: 0.7rem;
}

/* Live Activity Feed */
.live-feed {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-4xl);
    max-height: 300px;
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    animation: feedSlideIn 0.5s var(--ease-out) forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes feedSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.feed-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feed-item-icon.green {
    background: var(--primary-subtle);
    color: var(--primary);
}

.feed-item-icon.blue {
    background: var(--secondary-subtle);
    color: var(--secondary);
}

.feed-item-icon.purple {
    background: var(--accent-subtle);
    color: var(--accent);
}

.feed-item-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
}

.feed-item-text strong {
    color: var(--text-bright);
}

.feed-item-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all 0.4s var(--ease-smooth);
}

.testimonial-card:hover {
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-aurora-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-bright);
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === SHOWCASE / STEPS === */
.showcase {
    padding: var(--space-5xl) 0;
    background: var(--bg-deep);
    position: relative;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-deepest), transparent);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: var(--space-2xl);
}

.step-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.4s var(--ease-smooth);
}

.step-card:hover .step-icon {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-sm);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -var(--space-xl);
    width: calc(var(--space-2xl));
    height: 2px;
    background: var(--border-subtle);
}

.step-card:last-child .step-connector {
    display: none;
}

/* === SIGNUP SECTION === */
.signup-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-deepest);
    position: relative;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.signup-info {
    padding-top: var(--space-xl);
}

.signup-info .section-title {
    text-align: left;
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.signup-perks {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.signup-perks li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.signup-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Form Styles */
.signup-form-wrap {
    position: relative;
}

.signup-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-elevated);
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-aurora);
}

.form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s var(--ease-smooth);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-bright);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
    background: rgba(0, 0, 0, 0.4);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: var(--primary);
}

/* Fix: icon is before input in DOM, use sibling differently */
.input-wrap:focus-within .input-icon {
    color: var(--primary);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 0;
}

/* Checkboxes */
.form-checkbox-group {
    margin-bottom: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-subtle);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bg-deepest);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.btn .btn-text,
.btn .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
}

/* Success / Error states */
.signup-success,
.signup-error-msg {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow: var(--shadow-elevated);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    animation: successPop 0.6s var(--ease-bounce);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: var(--space-md);
}

.signup-success p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.success-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.error-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: var(--space-lg);
}

.signup-error-msg h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-bright);
    margin-bottom: var(--space-md);
}

.signup-error-msg p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* === FAQ SECTION === */
.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-deep);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-deepest), transparent);
    pointer-events: none;
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
    border-color: rgba(74, 222, 128, 0.15);
}

.faq-item.active {
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: var(--shadow-glow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-bright);
    text-align: left;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    padding-right: var(--space-md);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

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

.faq-answer p,
.faq-answer ul {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: calc(var(--space-xl) + var(--space-lg));
    list-style: disc;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* === TRUST SECTION === */
.trust-section {
    padding: var(--space-5xl) 0 var(--space-4xl);
    background: var(--bg-deepest);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 222, 128, 0.15);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-aurora-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

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

/* === FOOTER === */
.main-footer {
    position: relative;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.footer-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-aurora-layer {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 100%, rgba(74, 222, 128, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-bright);
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-smooth);
    text-decoration: none;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--text-muted);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-company {
    font-size: 0.8rem !important;
    margin-top: 4px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ef4444;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.8rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === LEGAL PAGES === */
.legal-page {
    padding-top: var(--header-height);
}

.legal-hero {
    position: relative;
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-hero .aurora-bg {
    z-index: 0;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

.legal-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.legal-content {
    background: #f8fafc;
    color: var(--text-dark);
    padding: var(--space-4xl) var(--space-xl);
}

.legal-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.legal-section p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-section ul,
.legal-section ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.legal-section a {
    color: var(--primary-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: var(--secondary-dim);
}

.legal-info-box {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
}

.legal-info-box p {
    margin-bottom: var(--space-xs);
    color: #334155;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: var(--space-xs);
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.gdpr-right-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all 0.3s var(--ease-smooth);
}

.gdpr-right-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-dim);
}

.gdpr-right-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(129, 140, 248, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-dim);
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.gdpr-right-card ul {
    padding-left: var(--space-lg);
    list-style: disc;
}

.gdpr-right-card li {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: var(--space-3xl);
    }

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

    .feature-card-large {
        grid-row: span 1;
    }

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

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

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .signup-info .section-title {
        text-align: center;
    }

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

    .signup-perks li {
        justify-content: center;
    }

    .signup-trust {
        align-items: center;
    }

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

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

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: var(--space-md);
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-2xl) var(--space-2xl);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        border-left: 1px solid var(--border-subtle);
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: var(--space-md) var(--space-lg);
        font-size: 1.15rem;
        text-align: center;
    }

    .nav-link.active::after {
        bottom: 4px;
    }

    .nav-cta {
        text-align: center;
        margin-top: var(--space-md);
    }

    .hero {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

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

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .step-connector {
        display: none;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-container {
        padding: 0 var(--space-md);
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

/* === PRINT STYLES === */
@media print {
    .main-header,
    .cookie-banner,
    .aurora-bg,
    .scroll-indicator,
    .footer-social {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .legal-content {
        padding: 0;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--bg-deepest);
    padding: var(--space-sm) var(--space-md);
    z-index: 10001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* === GRAIN OVERLAY (subtle texture) === */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
```

Now the JavaScript:

```js