/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --primary: #1a365d;
    --primary-light: #234680;
    --primary-dark: #0f2240;
    --secondary: #f0f5ff;
    --accent: #5fb5d4;
    --accent-light: #8dd0e6;
    --accent-dark: #3a98b8;
    --ice-white: #f8faff;
    --frost-blue: #dce8f5;
    --glacier: #e8f0fa;
    --silver: #c0cfdf;
    --deep-blue: #0d1b33;
    --text-primary: #1a2a42;
    --text-secondary: #4a6180;
    --text-muted: #7a8ea5;
    --border-light: rgba(95, 181, 212, 0.2);
    --border-medium: rgba(95, 181, 212, 0.35);
    --shadow-cool: 0 4px 24px rgba(26, 54, 93, 0.08);
    --shadow-cool-lg: 0 12px 48px rgba(26, 54, 93, 0.12);
    --shadow-frost: 0 8px 32px rgba(95, 181, 212, 0.15);
    --glass-bg: rgba(240, 245, 255, 0.65);
    --glass-border: rgba(95, 181, 212, 0.18);
    --glass-blur: 20px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition-fast: 0.2s ease;
    --transition-med: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::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);
    color: var(--text-primary);
    background: var(--ice-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    display: block;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn-frost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-med);
    box-shadow: 0 4px 16px rgba(95, 181, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-frost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-frost:hover::before {
    left: 100%;
}

.btn-frost:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 181, 212, 0.4);
    color: #fff;
}

.btn-frost:active {
    transform: translateY(0);
}

.btn-frost-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-medium);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-med);
}

.btn-frost-outline:hover {
    background: rgba(95, 181, 212, 0.1);
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-frost-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-frost-ghost:hover {
    color: var(--accent-dark);
    background: rgba(95, 181, 212, 0.08);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===========================
   COOKIE CONSENT
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(240, 245, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 32px rgba(26, 54, 93, 0.1);
    padding: 0;
    animation: slideUp 0.5s var(--transition-slow) forwards;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

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

.cookie-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 4px;
}

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

.cookie-desc a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-settings {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 20px;
    border-top: 1px solid var(--border-light);
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(95, 181, 212, 0.08);
}

.cookie-setting-row div:first-child {
    flex: 1;
}

.cookie-setting-row strong {
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.cookie-setting-row p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.frost-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.frost-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--silver);
    border-radius: 26px;
    transition: var(--transition-med);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-med);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.frost-toggle input:checked + .toggle-slider {
    background: var(--accent);
}

.frost-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.frost-toggle.disabled .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

#cookie-save-settings {
    margin-top: 16px;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-med);
}

.nav-header.scrolled {
    background: rgba(248, 250, 255, 0.92);
    box-shadow: 0 2px 20px rgba(26, 54, 93, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-crystal {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-med);
}

.nav-logo:hover .logo-crystal {
    transform: rotate(30deg);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(95, 181, 212, 0.08);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff !important;
    border-radius: var(--radius-md);
    padding: 8px 20px;
    margin-left: 8px;
    box-shadow: 0 2px 12px rgba(95, 181, 212, 0.25);
}

.nav-cta:hover {
    box-shadow: 0 4px 16px rgba(95, 181, 212, 0.4);
    transform: translateY(-1px);
    color: #fff !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-med);
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(95, 181, 212, 0.1);
    color: var(--accent-dark);
}

.mobile-nav-link.cta {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: #fff;
    margin-top: 16px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-frost-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(95, 181, 212, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(26, 54, 93, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 100% 100% at 50% 0%, rgba(220, 232, 245, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, var(--ice-white) 0%, var(--glacier) 100%);
}

.crystal-grid {
    position: absolute;
    inset: 0;
}

.crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.12);
    background: rgba(95, 181, 212, 0.03);
    animation: float-crystal 20s ease-in-out infinite;
}

.crystal.c1 {
    width: 120px; height: 120px;
    top: 10%; left: 5%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.crystal.c2 {
    width: 80px; height: 80px;
    top: 20%; right: 10%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -3s;
    border-color: rgba(95, 181, 212, 0.08);
}

.crystal.c3 {
    width: 60px; height: 60px;
    bottom: 30%; left: 15%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: -6s;
}

.crystal.c4 {
    width: 100px; height: 100px;
    bottom: 15%; right: 20%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: -9s;
    border-color: rgba(95, 181, 212, 0.06);
}

.crystal.c5 {
    width: 40px; height: 40px;
    top: 40%; left: 30%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: -12s;
}

.crystal.c6 {
    width: 70px; height: 70px;
    top: 60%; right: 5%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -4s;
}

.crystal.c7 {
    width: 50px; height: 50px;
    top: 5%; left: 50%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: -7s;
}

.crystal.c8 {
    width: 90px; height: 90px;
    bottom: 5%; left: 40%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: -15s;
    border-color: rgba(95, 181, 212, 0.05);
}

@keyframes float-crystal {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-15px) rotate(5deg); opacity: 0.8; }
    50% { transform: translateY(-8px) rotate(-3deg); opacity: 0.5; }
    75% { transform: translateY(-20px) rotate(7deg); opacity: 0.7; }
}

.frost-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.frost-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(95, 181, 212, 0.4);
    border-radius: 50%;
    animation: drift var(--duration) linear infinite;
    opacity: 0;
}

@keyframes drift {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) translateX(var(--drift-x, 30px));
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.hero-badge i {
    font-size: 0.9rem;
    animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse-scroll 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes pulse-scroll {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   SOCIAL PROOF BAR
   =========================== */
.social-proof {
    position: relative;
    padding: 32px 0;
    background: var(--secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    position: relative;
}

.proof-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--accent-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.proof-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
}

.proof-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.proof-live-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: 100px 0;
    background: var(--ice-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--secondary), var(--ice-white));
    pointer-events: none;
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-frost);
    border-color: var(--border-medium);
}

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

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px;
}

.feature-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-large .feature-icon-wrap {
    margin-bottom: 0;
    width: 72px;
    height: 72px;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    transition: transform var(--transition-med);
}

.feature-card:hover .feature-icon-bg {
    transform: rotate(50deg);
}

.feature-icon-wrap i {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    color: var(--accent-dark);
}

.feature-large .feature-icon-wrap i {
    font-size: 1.6rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.feature-detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-bar span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 100px;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: rgba(95, 181, 212, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0;
}

/* ===========================
   GAMEPLAY SECTION
   =========================== */
.gameplay {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(95, 181, 212, 0.04) 0%, transparent 70%),
        var(--secondary);
}

.gameplay-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.gameplay-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.gameplay-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-med);
}

.step:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-cool);
    transform: translateX(4px);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Game Preview / Phone Mockup */
.game-preview {
    position: relative;
    display: flex;
    justify-content: center;
}

.preview-frame {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 280px;
    background: var(--primary-dark);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 
        0 24px 64px rgba(26, 54, 93, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.05);
    border: 2px solid rgba(95, 181, 212, 0.2);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--primary-dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: linear-gradient(180deg, #0d1b33, #162a4a);
    border-radius: 24px;
    padding: 16px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.screen-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.screen-stats-bar {
    display: flex;
    gap: 10px;
}

.screen-stats-bar span {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-mono);
}

.screen-stats-bar i {
    font-size: 0.55rem;
    margin-right: 2px;
}

.screen-stats-bar span:nth-child(1) i { color: #f87171; }
.screen-stats-bar span:nth-child(2) i { color: #60a5fa; }
.screen-stats-bar span:nth-child(3) i { color: #fbbf24; }

.screen-map {
    flex: 1;
    position: relative;
    background: 
        radial-gradient(circle at 30% 40%, rgba(95, 181, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(26, 54, 93, 0.3) 0%, transparent 50%);
    border-radius: 16px;
    border: 1px solid rgba(95, 181, 212, 0.1);
    overflow: hidden;
}

.hex-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 12px;
    opacity: 0.5;
}

.hex {
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.12);
    border-radius: 4px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all var(--transition-med);
}

.hex:nth-child(odd) {
    background: rgba(95, 181, 212, 0.12);
}

.hex:nth-child(3),
.hex:nth-child(7),
.hex:nth-child(10) {
    background: rgba(95, 181, 212, 0.2);
    border-color: rgba(95, 181, 212, 0.25);
}

.map-marker {
    position: absolute;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.65rem;
    animation: marker-pulse 3s ease-in-out infinite;
    z-index: 2;
}

.map-marker.m1 {
    top: 25%;
    left: 20%;
    background: rgba(248, 113, 113, 0.3);
    border: 1px solid rgba(248, 113, 113, 0.5);
    color: #f87171;
    animation-delay: 0s;
}

.map-marker.m2 {
    top: 50%;
    right: 25%;
    background: rgba(96, 165, 250, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #60a5fa;
    animation-delay: -1s;
}

.map-marker.m3 {
    bottom: 20%;
    left: 45%;
    background: rgba(251, 191, 36, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    animation-delay: -2s;
}

@keyframes marker-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.screen-bottom-bar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 4px;
    margin-top: 12px;
    border-top: 1px solid rgba(95, 181, 212, 0.1);
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.action-btn.primary {
    background: rgba(95, 181, 212, 0.2);
    border: 1px solid rgba(95, 181, 212, 0.3);
    color: var(--accent);
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(95, 181, 212, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews {
    padding: 100px 0;
    background: var(--ice-white);
}

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

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-med);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-frost);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0.9rem;
}

.review-author strong {
    font-size: 0.9rem;
    color: var(--primary);
    display: block;
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(95, 181, 212, 0.04) 0%, transparent 70%),
        var(--secondary);
}

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-med);
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-frost);
}

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

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

.faq-icon {
    color: var(--accent);
    font-size: 0.85rem;
    transition: transform var(--transition-med);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

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

.faq-answer a {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* ===========================
   SIGNUP SECTION
   =========================== */
.signup {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--ice-white);
}

.signup-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(95, 181, 212, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(26, 54, 93, 0.04) 0%, transparent 70%);
}

.signup-crystals {
    position: absolute;
    inset: 0;
}

.s-crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.08);
    background: rgba(95, 181, 212, 0.02);
    animation: float-crystal 25s ease-in-out infinite;
}

.s-crystal.sc1 {
    width: 100px; height: 100px;
    top: 10%; right: 5%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.s-crystal.sc2 {
    width: 60px; height: 60px;
    bottom: 20%; left: 8%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -5s;
}

.s-crystal.sc3 {
    width: 40px; height: 40px;
    top: 30%; left: 3%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: -10s;
}

.s-crystal.sc4 {
    width: 80px; height: 80px;
    bottom: 10%; right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: -8s;
}

.signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 32px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.benefit i {
    color: #22c55e;
    font-size: 0.85rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.signup-counter {
    margin-top: 32px;
}

.counter-bar {
    height: 8px;
    background: rgba(95, 181, 212, 0.12);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), #fbbf24);
    border-radius: 8px;
    width: 78.23%;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.signup-counter p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.signup-counter strong {
    color: var(--accent-dark);
    font-family: var(--font-mono);
}

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

.signup-form {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-cool-lg);
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-note {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
}

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

.input-wrap input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.input-wrap input:focus + i,
.input-wrap input:focus ~ i {
    color: var(--accent);
}

.input-wrap:has(input:focus) i {
    color: var(--accent);
}

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

.checkbox-group {
    margin-bottom: 14px;
}

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

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-medium);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    background: rgba(255,255,255,0.5);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* Signup Success */
.signup-success {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-cool-lg);
}

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.signup-success p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   TRUST SECTION
   =========================== */
.trust {
    padding: 80px 0;
    background: var(--secondary);
    border-top: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-med);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cool);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--accent-dark);
    font-size: 1.3rem;
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.trust-card a {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(95, 181, 212, 0.1);
}

.footer-logo .logo-text {
    -webkit-text-fill-color: initial;
    background: none;
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col a i {
    font-size: 0.75rem;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    padding: 6px 12px;
    border-radius: 100px;
}

.badge i {
    font-size: 0.7rem;
    color: var(--accent);
}

/* ===========================
   LEGAL CONTENT (shared with legal pages)
   =========================== */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    min-height: 80vh;
}

.legal-content .legal-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-cool);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.legal-content .legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 12px;
    padding-top: 16px;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin: 24px 0 10px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
}

.legal-content li {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content .contact-box {
    background: rgba(95, 181, 212, 0.06);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

.legal-content .contact-box p {
    margin-bottom: 6px;
}

/* ===========================
   ANIMATIONS
   =========================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
    }
    
    .gameplay-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .signup-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-large .feature-icon-wrap {
        margin-bottom: 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .signup-form {
        padding: 28px 20px;
    }
    
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-actions {
        justify-content: stretch;
    }
    
    .cookie-actions .btn-sm {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .phone-mockup {
        width: 240px;
    }
    
    .phone-screen {
        min-height: 380px;
    }
    
    .legal-content .legal-card {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}
