/* ==============================================
   SWIMHUB — Styles
   ============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors — from brandbook */
    --navy: #000028;
    --cyan: #00ddff;
    --light-cyan: #deffff;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Ubuntu', sans-serif;
    --font-body: 'Ubuntu', sans-serif;

    /* Desktop Typography Scale */
    --font-size-hero: 3.8rem;
    --font-size-h1: 3.5rem;
    --font-size-h2: 3rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-large: 1.3rem;
    --font-size-body: 1.125rem;
    --font-size-base: 1.05rem;
    --font-size-small: 0.9rem;
    --font-size-nav: 0.925rem;
    --font-size-button: 1.05rem;
    --font-size-score: 6rem;
    --font-size-stat: 2.75rem;
    --font-size-quote: 2.25rem;

    /* Line Heights */
    --line-height-tight: 1.15;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --line-height-loose: 1.85;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--navy);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain Texture Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* Selection */
::selection {
    background: rgba(0, 221, 255, 0.25);
    color: var(--white);
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==============================================
   NAVIGATION
   ============================================== */

body>nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideDown 0.8s var(--ease-out-expo);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.nav-container {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(0, 0, 40, 0.72);
    border: 1px solid rgba(0, 221, 255, 0.12);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 12px rgba(0, 221, 255, 0.4));
    transition: transform 0.3s var(--ease-out-back);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-nav);
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--cyan);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 221, 255, 0.18);
    background: rgba(0, 221, 255, 0.06);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: all 0.3s var(--ease-out-back);
    flex-shrink: 0;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.theme-toggle:hover {
    background: rgba(0, 221, 255, 0.14);
    border-color: rgba(0, 221, 255, 0.35);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(0, 221, 255, 0.2);
}

.theme-toggle:active {
    transform: scale(0.92);
}

.theme-toggle-icon {
    position: absolute;
    transition: transform 0.5s var(--ease-out-back), opacity 0.3s ease;
}

/* Dark mode (default): show sun icon to indicate "switch to light" */
.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light mode: show moon icon to indicate "switch to dark" */
[data-theme="light"] .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Language Toggle Button */
.lang-toggle {
    position: relative;
    height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(0, 221, 255, 0.18);
    background: rgba(0, 221, 255, 0.06);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: all 0.3s var(--ease-out-back);
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lang-toggle:hover {
    background: rgba(0, 221, 255, 0.14);
    border-color: rgba(0, 221, 255, 0.35);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(0, 221, 255, 0.2);
}

.lang-toggle:active {
    transform: scale(0.95);
}

.lang-toggle-text {
    pointer-events: none;
}

/* Mobile Language Switch */
.mobile-lang-switch {
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.lang-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 221, 255, 0.06);
    border: 1px solid rgba(0, 221, 255, 0.15);
    border-radius: 20px;
    padding: 8px 16px;
    color: var(--cyan);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.lang-pill:hover {
    background: rgba(0, 221, 255, 0.12);
    border-color: rgba(0, 221, 255, 0.3);
}

.lang-pill-icon {
    display: flex;
    align-items: center;
}

/* Light mode overrides */
html[data-theme="light"] .lang-toggle {
    border-color: rgba(0, 40, 80, 0.15);
    background: rgba(0, 40, 80, 0.05);
    color: #003366;
}

html[data-theme="light"] .lang-toggle:hover {
    background: rgba(0, 40, 80, 0.1);
    border-color: rgba(0, 40, 80, 0.25);
    box-shadow: 0 0 16px rgba(0, 40, 80, 0.1);
}

html[data-theme="light"] .lang-pill {
    border-color: rgba(0, 40, 80, 0.12);
    background: rgba(0, 40, 80, 0.04);
    color: #003366;
}

html[data-theme="light"] .lang-pill:hover {
    background: rgba(0, 40, 80, 0.08);
    border-color: rgba(0, 40, 80, 0.2);
}

/* Mobile Menu Button — hidden on desktop */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 221, 255, 0.18);
    background: rgba(0, 221, 255, 0.06);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease-out-back);
}

.hamburger-line {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--cyan);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out-back), opacity 0.3s ease, width 0.3s var(--ease-out-back);
    transform-origin: center;
}

/* Hamburger → X animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu Dropdown — hidden on desktop */
.mobile-menu {
    display: none;
}

/* Theme Pill Switch (mobile only) */
.mobile-theme-switch {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.theme-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.theme-pill-track {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(0, 221, 255, 0.12);
    border: 1px solid rgba(0, 221, 255, 0.25);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 3px;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.theme-pill-thumb {
    position: absolute;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--cyan);
    border-radius: 50%;
    transition: transform 0.4s var(--ease-out-back), background 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 221, 255, 0.4);
    z-index: 2;
}

/* Sun sits on the left, Moon on the right */
.theme-pill-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.theme-pill-sun {
    left: 6px;
    color: var(--navy);
    opacity: 1;
}

.theme-pill-moon {
    right: 6px;
    color: rgba(0, 221, 255, 0.5);
    opacity: 0.6;
}

/* Dark mode = thumb on left (sun side) */
/* Light mode = thumb on right (moon side) */
[data-theme="light"] .theme-pill-thumb {
    transform: translateX(24px);
    background: #0099bb;
    box-shadow: 0 2px 8px rgba(0, 153, 187, 0.4);
}

[data-theme="light"] .theme-pill-sun {
    color: rgba(0, 60, 80, 0.4);
    opacity: 0.5;
}

[data-theme="light"] .theme-pill-moon {
    color: #ffffff;
    opacity: 1;
}

[data-theme="light"] .theme-pill-track {
    background: rgba(0, 153, 187, 0.12);
    border-color: rgba(0, 153, 187, 0.25);
}

.theme-pill-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

[data-theme="light"] .theme-pill-label {
    color: #0099bb;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 4rem 8rem;
    background: linear-gradient(180deg, #001433 0%, var(--navy) 100%);
    overflow: hidden;
    width: 100%;
}

/* Animated grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(0, 221, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 221, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    animation: gridPulse 6s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle--1 { left: 15%; top: 20%; animation-delay: 0s; }
.particle--2 { left: 75%; top: 30%; animation-delay: 1.5s; }
.particle--3 { left: 45%; top: 70%; animation-delay: 3s; }
.particle--4 { left: 85%; top: 60%; animation-delay: 4.5s; width: 3px; height: 3px; }
.particle--5 { left: 25%; top: 80%; animation-delay: 2s; width: 5px; height: 5px; }
.particle--6 { left: 60%; top: 15%; animation-delay: 5.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 0.7; transform: translateY(-20px) scale(1); }
    85% { opacity: 0.4; transform: translateY(-80px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

/* Artistic logo background — full bleed */
.hero-logo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: drop-shadow(0 0 120px rgba(0, 221, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 221, 255, 0.15));
    animation: logoPulse 8s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.06;
        filter: drop-shadow(0 0 120px rgba(0, 221, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 221, 255, 0.15));
    }
    50% {
        opacity: 0.1;
        filter: drop-shadow(0 0 160px rgba(0, 221, 255, 0.45)) drop-shadow(0 0 80px rgba(0, 221, 255, 0.25));
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-headline {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline h1 {
    font-family: var(--font-display);
    font-size: var(--font-size-hero);
    text-align: left;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-text p {
    font-size: var(--font-size-large);
    color: var(--light-cyan);
    margin-bottom: 3rem;
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
    text-align: left;
    max-width: 500px;
    font-weight: 300;
}

/* ===== Hero Mockups Showcase ===== */
.hero-mockups {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* 3D stage — holds all cards in perspective */
.mockup-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

/* Orbit rings */
.hero-mockup-orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 221, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring--1 {
    width: 380px;
    height: 380px;
    animation: orbitSpin 30s linear infinite;
}

.orbit-ring--2 {
    width: 520px;
    height: 520px;
    animation: orbitSpin 45s linear infinite reverse;
    border-style: dashed;
    border-color: rgba(0, 221, 255, 0.04);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Glow under mockups */
.hero-mockup-glow {
    position: absolute;
    width: 340px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 221, 255, 0.18) 0%, rgba(0, 221, 255, 0.06) 40%, transparent 70%);
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.12); }
}

/* ---- Individual mockup cards ---- */
.hero-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.6s ease,
                filter 0.6s ease;
    /* Staggered entrance */
    opacity: 0;
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes mockupEntrance {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.6) translateZ(-200px);
    }
    to {
        opacity: 1;
    }
}

/* Mockup frame — holds image + shine */
.mockup-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 221, 255, 0.05), rgba(0, 0, 0, 0.2));
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 221, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mockup-frame img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/* Holographic sweep shine */
.mockup-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 70%
    );
    background-size: 300% 100%;
    animation: shineSweep 5s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes shineSweep {
    0%   { background-position: 200% 0; }
    40%  { background-position: -100% 0; }
    100% { background-position: -100% 0; }
}

/* ---- CENTER mockup — hero piece ---- */
.hero-mockup--center {
    width: 210px;
    z-index: 5;
    transform: translate(-50%, -50%) translateZ(60px);
    animation-delay: 0.1s;
}

.hero-mockup--center .mockup-frame {
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(0, 221, 255, 0.08),
        0 0 0 1px rgba(0, 221, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Animated gradient border glow on center card */
.mockup-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    z-index: -1;
    background: conic-gradient(
        from 0deg,
        rgba(0, 221, 255, 0.4),
        rgba(0, 221, 255, 0.02) 25%,
        rgba(0, 153, 255, 0.4) 50%,
        rgba(0, 221, 255, 0.02) 75%,
        rgba(0, 221, 255, 0.4)
    );
    animation: borderGlowSpin 4s linear infinite;
    filter: blur(4px);
    opacity: 0.7;
}

@keyframes borderGlowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reflection under center phone */
.mockup-reflection {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    max-height: 80px;
    margin-top: -2px;
}

.mockup-reflection img {
    display: block;
    width: 100%;
    height: auto;
    transform: scaleY(-1);
    opacity: 0.15;
    filter: blur(2px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
}

/* Center float */
.hero-mockup--center {
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               mockupFloat 6s ease-in-out 1s infinite;
    animation-delay: 0.1s, 1s;
}

@keyframes mockupFloat {
    0%, 100% { transform: translate(-50%, -50%) translateZ(60px) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateZ(60px) translateY(-10px); }
}

.hero-mockup--center:hover .mockup-frame {
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 221, 255, 0.15),
        0 0 0 1px rgba(0, 221, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-mockup--center:hover .mockup-border-glow {
    opacity: 1;
    filter: blur(3px);
}

/* ---- LEFT mockup ---- */
.hero-mockup--left {
    width: 175px;
    z-index: 3;
    transform: translate(-50%, -50%) translateX(-145px) translateZ(0px) rotateY(12deg);
    animation-delay: 0.25s;
}

.hero-mockup--left {
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               mockupFloatLeft 7s ease-in-out 1.2s infinite;
    animation-delay: 0.25s, 1.2s;
}

@keyframes mockupFloatLeft {
    0%, 100% { transform: translate(-50%, -50%) translateX(-145px) translateZ(0px) rotateY(12deg) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateX(-145px) translateZ(0px) rotateY(12deg) translateY(-8px); }
}

/* ---- RIGHT mockup ---- */
.hero-mockup--right {
    width: 175px;
    z-index: 3;
    transform: translate(-50%, -50%) translateX(145px) translateZ(0px) rotateY(-12deg);
    animation-delay: 0.3s;
}

.hero-mockup--right {
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               mockupFloatRight 7s ease-in-out 1.4s infinite;
    animation-delay: 0.3s, 1.4s;
}

@keyframes mockupFloatRight {
    0%, 100% { transform: translate(-50%, -50%) translateX(145px) translateZ(0px) rotateY(-12deg) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateX(145px) translateZ(0px) rotateY(-12deg) translateY(-8px); }
}

/* ---- BACK-LEFT mockup ---- */
.hero-mockup--back-left {
    width: 140px;
    z-index: 1;
    transform: translate(-50%, -50%) translateX(-260px) translateZ(-80px) rotateY(18deg);
    opacity: 0.55;
    filter: blur(1px) brightness(0.7);
    animation-delay: 0.45s;
}

.hero-mockup--back-left {
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               mockupFloatBackLeft 9s ease-in-out 1.6s infinite;
    animation-delay: 0.45s, 1.6s;
}

@keyframes mockupFloatBackLeft {
    0%, 100% { transform: translate(-50%, -50%) translateX(-260px) translateZ(-80px) rotateY(18deg) translateY(0); opacity: 0.55; }
    50%      { transform: translate(-50%, -50%) translateX(-260px) translateZ(-80px) rotateY(18deg) translateY(-6px); opacity: 0.6; }
}

/* ---- BACK-RIGHT mockup ---- */
.hero-mockup--back-right {
    width: 140px;
    z-index: 1;
    transform: translate(-50%, -50%) translateX(260px) translateZ(-80px) rotateY(-18deg);
    opacity: 0.55;
    filter: blur(1px) brightness(0.7);
    animation-delay: 0.5s;
}

.hero-mockup--back-right {
    animation: mockupEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               mockupFloatBackRight 9s ease-in-out 1.8s infinite;
    animation-delay: 0.5s, 1.8s;
}

@keyframes mockupFloatBackRight {
    0%, 100% { transform: translate(-50%, -50%) translateX(260px) translateZ(-80px) rotateY(-18deg) translateY(0); opacity: 0.55; }
    50%      { transform: translate(-50%, -50%) translateX(260px) translateZ(-80px) rotateY(-18deg) translateY(-6px); opacity: 0.6; }
}

/* Hover — lift any card */
.hero-mockup:hover .mockup-frame {
    transform: scale(1.04);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.hero-mockup:hover .mockup-shine {
    animation-duration: 2s;
    opacity: 1;
}

.cta-button {
    display: inline-flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.15rem 2.8rem;
    background: linear-gradient(135deg, var(--cyan) 0%, #00a8cc 100%);
    color: var(--navy);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--font-size-button);
    box-shadow: 0 16px 48px rgba(0, 221, 255, 0.35);
    transition: all 0.4s var(--ease-out-back);
    position: relative;
    overflow: hidden;
    z-index: 10;
    letter-spacing: 0.01em;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 64px rgba(0, 221, 255, 0.5);
}


/* ==============================================
   FEATURES SECTION
   ============================================== */

.features {
    position: relative;
    margin-top: 0;
    padding: 6rem 2.5rem 8rem;
    background: linear-gradient(180deg, #001a40 0%, #00203d 50%, #001a40 100%);
    border-radius: 60px 60px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 221, 255, 0.08);
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--font-size-body);
    color: var(--light-cyan);
    opacity: 0.75;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(0, 221, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 221, 255, 0.12);
    border-radius: 24px;
    padding: 2.75rem;
    transition: transform 0.5s var(--ease-out-back), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 221, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 221, 255, 0.35);
    box-shadow: 0 24px 48px rgba(0, 221, 255, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--cyan) 0%, #0088aa 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 221, 255, 0.3);
    transition: transform 0.3s var(--ease-out-back);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotateZ(3deg);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-h3);
    margin-bottom: 0.85rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--light-cyan);
    line-height: var(--line-height-relaxed);
    opacity: 0.85;
    font-weight: 300;
}

/* ==============================================
   VISUAL SHOWCASE SECTION
   ============================================== */

.showcase {
    padding: 8rem 2.5rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.showcase-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

.showcase-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    display: block;
}

.showcase-text h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h2);
    margin-bottom: 2rem;
    color: var(--cyan);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.showcase-text p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--light-cyan);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-weight: 300;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(0, 221, 255, 0.06);
    padding: 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 221, 255, 0.12);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 221, 255, 0.12);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--font-size-stat);
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--light-cyan);
    font-size: var(--font-size-small);
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ==============================================
   SWIMHUB SCORE SECTION
   ============================================== */

.score-section {
    padding: 8rem 2.5rem;
    background: linear-gradient(135deg, #000028 0%, #001a3d 50%, #002244 100%);
    position: relative;
    overflow: hidden;
}

.score-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 221, 255, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.score-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.score-text h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--light-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.score-text p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-loose);
    color: var(--light-cyan);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-weight: 300;
}

.score-features {
    list-style: none;
    margin-top: 2.5rem;
}

.score-features li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: var(--font-size-base);
    color: var(--light-cyan);
    font-weight: 300;
}

.score-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Score Visual Card */
.score-visual {
    background: rgba(0, 221, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 221, 255, 0.2);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 221, 255, 0.15);
}

/* Score Ring */
.score-ring-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
}

.score-ring {
    width: 100%;
    height: 100%;
}

.score-ring-bg {
    fill: none;
    stroke: rgba(0, 221, 255, 0.08);
    stroke-width: 7;
}

.score-ring-fill {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 2.5s var(--ease-out-expo);
}

.score-ring-wrap .score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: var(--font-size-score);
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    line-height: 1;
}

.score-label {
    font-family: var(--font-display);
    font-size: var(--font-size-h4);
    color: var(--light-cyan);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.score-rank {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(0, 221, 255, 0.06);
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.score-rank p {
    color: var(--cyan);
    font-weight: 600;
    font-size: var(--font-size-base);
    padding: 0.25rem 0;
}

/* Lucide inline icons */
.score-rank svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 3px;
}


/* ==============================================
   FAQ SECTION
   ============================================== */

.faq-section {
    padding: 8rem 2.5rem;
    background: linear-gradient(180deg, var(--navy) 0%, #001028 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 221, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(0, 221, 255, 0.03);
    border: 1px solid rgba(0, 221, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

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

.faq-item[open] {
    border-color: rgba(0, 221, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 221, 255, 0.08);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
    content: '';
}

.faq-question {
    font-family: var(--font-display);
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--cyan);
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.75rem;
    animation: faqReveal 0.4s var(--ease-out-expo);
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: var(--font-size-base);
    color: var(--light-cyan);
    line-height: var(--line-height-relaxed);
    opacity: 0.85;
    font-weight: 300;
}

/* ==============================================
   PARTNERS SECTION
   ============================================== */

.partners-section {
    padding: 7rem 2.5rem;
    background: linear-gradient(180deg, var(--navy) 0%, #001020 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(26, 82, 118, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.partners-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-eyebrow {
    font-family: var(--font-display);
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #5ba3c9;
    margin-bottom: 1rem;
}

.partners-header h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h2);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
    background: linear-gradient(135deg, var(--white) 30%, #5ba3c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.partners-subtitle {
    font-size: var(--font-size-body);
    color: var(--light-cyan);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 300;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.partner-card {
    flex: 1;
    max-width: 340px;
    background: rgba(26, 82, 118, 0.06);
    border: 1px solid rgba(91, 163, 201, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.partner-card:hover {
    border-color: rgba(91, 163, 201, 0.3);
    box-shadow: 0 12px 40px rgba(26, 82, 118, 0.15);
    transform: translateY(-4px);
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    margin-bottom: 1.5rem;
}

.partner-logo-wrap img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-expo), filter 0.4s ease;
}

.partner-card:hover .partner-logo-wrap img {
    transform: scale(1.06);
}

/* Dark mode: KOE logo is light/silver — already visible on dark bg */
.partner-card--koe .partner-logo-wrap img {
    filter: brightness(1.1) contrast(1.1);
}

.partner-card--koe:hover .partner-logo-wrap img {
    filter: brightness(1.3) contrast(1.15);
}

/* Dark mode: Microplus logo is dark teal — needs brightening + invert for dark bg */
.partner-card--microplus .partner-logo-wrap img {
    filter: brightness(2.2) contrast(0.9);
}

.partner-card--microplus:hover .partner-logo-wrap img {
    filter: brightness(2.5) contrast(0.95);
}

.partner-info h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.partner-info p {
    font-size: var(--font-size-small);
    color: #5ba3c9;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.partners-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(91, 163, 201, 0.08);
    border: 1px solid rgba(91, 163, 201, 0.18);
    color: #5ba3c9;
}

.divider-icon svg,
.divider-icon i {
    width: 24px;
    height: 24px;
}

/* ==============================================
   CTA SECTION
   ============================================== */

.cta-section {
    padding: 8rem 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #001a40 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 221, 255, 0.08) 0%, transparent 50%);
    animation: rotate-slow 25s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: var(--font-size-large);
    color: var(--light-cyan);
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-weight: 300;
}

.app-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: all 0.3s ease;
}

.store-badge img {
    height: 80px;
    width: auto;
    display: block;
    border-radius: 10px;
}

.store-badge:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 8px 24px rgba(0, 221, 255, 0.25));
}

.store-badge-disabled {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(0.5);
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.85rem 2.8rem;
    border: 2px solid var(--cyan);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--font-size-button);
    color: var(--cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 221, 255, 0.15), inset 0 0 20px rgba(0, 221, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 221, 255, 0.3), inset 0 0 30px rgba(0, 221, 255, 0.1);
    }
}

/* ==============================================
   NEWSLETTER
   ============================================== */

.newsletter-wrap {
    margin-top: 3rem;
    text-align: center;
}

.newsletter-divider {
    width: 60px;
    height: 1px;
    background: rgba(0, 221, 255, 0.2);
    margin: 0 auto 2rem;
}

.newsletter-heading {
    font-family: var(--font-display);
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.newsletter-sub {
    font-size: var(--font-size-base);
    color: var(--light-cyan);
    opacity: 0.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(0, 221, 255, 0.2);
    background: rgba(0, 221, 255, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input-wrap:focus-within {
    border-color: rgba(0, 221, 255, 0.45);
    box-shadow: 0 0 30px rgba(0, 221, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-body);
    font-size: var(--font-size-small);
    color: var(--white);
    outline: none;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(222, 255, 255, 0.35);
}

.newsletter-btn {
    flex-shrink: 0;
    border: none;
    background: linear-gradient(135deg, var(--cyan) 0%, #00aacc 100%);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--font-size-small);
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #00eeff 0%, var(--cyan) 100%);
    box-shadow: 0 4px 20px rgba(0, 221, 255, 0.3);
}

.newsletter-btn:active {
    transform: scale(0.97);
}

/* Consent checkbox */
.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    max-width: 480px;
    margin: 1rem auto 0;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.newsletter-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.newsletter-checkmark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid rgba(0, 221, 255, 0.3);
    background: rgba(0, 221, 255, 0.04);
    margin-top: 1px;
    transition: all 0.2s ease;
    position: relative;
}

.newsletter-checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--navy);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s var(--ease-out-back);
}

.newsletter-checkbox:checked ~ .newsletter-checkmark {
    background: var(--cyan);
    border-color: var(--cyan);
}

.newsletter-checkbox:checked ~ .newsletter-checkmark::after {
    transform: rotate(45deg) scale(1);
}

.newsletter-checkbox:focus-visible ~ .newsletter-checkmark {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.newsletter-consent-text {
    font-size: 0.75rem;
    color: var(--light-cyan);
    opacity: 0.6;
    line-height: 1.5;
    font-weight: 300;
}

.newsletter-consent-text a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
}

.newsletter-consent-text a:hover {
    text-decoration: underline;
}

/* Disabled subscribe button */
.newsletter-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Light theme */
html[data-theme="light"] .newsletter-checkmark {
    border-color: rgba(0, 60, 80, 0.2);
    background: rgba(0, 153, 187, 0.04);
}

html[data-theme="light"] .newsletter-checkbox:checked ~ .newsletter-checkmark {
    background: #0099bb;
    border-color: #0099bb;
}

html[data-theme="light"] .newsletter-checkmark::after {
    border-color: #ffffff;
}

html[data-theme="light"] .newsletter-consent-text a {
    color: #0099bb;
}

.newsletter-message {
    display: none;
    max-width: 480px;
    margin: 1rem auto 0;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: var(--font-size-small);
    font-weight: 500;
}

.newsletter-success {
    background: rgba(19, 206, 102, 0.1);
    border: 1px solid rgba(19, 206, 102, 0.25);
    color: #13ce66;
}

.newsletter-error {
    background: rgba(255, 73, 73, 0.1);
    border: 1px solid rgba(255, 73, 73, 0.25);
    color: #ff4949;
}

.newsletter-message.visible {
    display: block;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--light-cyan);
    opacity: 0.4;
    margin-top: 1rem;
    font-weight: 300;
}

/* Light theme */
html[data-theme="light"] .newsletter-divider {
    background: rgba(0, 153, 187, 0.15);
}

html[data-theme="light"] .newsletter-input-wrap {
    border-color: rgba(0, 60, 80, 0.15);
    background: rgba(0, 153, 187, 0.04);
}

html[data-theme="light"] .newsletter-input-wrap:focus-within {
    border-color: rgba(0, 153, 187, 0.4);
    box-shadow: 0 0 30px rgba(0, 153, 187, 0.08);
}

html[data-theme="light"] .newsletter-input {
    color: #0a1628;
}

html[data-theme="light"] .newsletter-input::placeholder {
    color: rgba(58, 80, 104, 0.4);
}

html[data-theme="light"] .newsletter-btn {
    background: linear-gradient(135deg, #0099bb 0%, #007a99 100%);
    color: #ffffff;
}

html[data-theme="light"] .newsletter-btn:hover {
    background: linear-gradient(135deg, #00aacc 0%, #0099bb 100%);
    box-shadow: 0 4px 20px rgba(0, 153, 187, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-heading {
        font-size: 1.3rem;
    }

    .newsletter-input-wrap {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-input {
        padding: 1rem 1.25rem;
        text-align: center;
    }

    .newsletter-btn {
        padding: 1rem;
        border-radius: 0;
    }
}

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: rgba(0, 221, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 221, 255, 0.2);
    color: var(--cyan);
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-back);
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) {
    #scrollTopBtn:hover {
        background: var(--cyan);
        color: var(--navy);
        box-shadow: 0 8px 24px rgba(0, 221, 255, 0.35);
        transform: translateY(-4px);
    }
}

/* ==============================================
   FOOTER
   ============================================== */

footer {
    background: #000000;
    padding: 5rem 2.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at bottom, rgba(0, 221, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 180px;
    border-radius: 10px;
    filter: drop-shadow(0 0 16px rgba(0, 221, 255, 0.4));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 24px rgba(0, 221, 255, 0.7));
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.footer-nav a:hover {
    color: var(--cyan);
    transform: translateY(-2px);
}

.footer-nav-legal {
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    opacity: 0.45;
    letter-spacing: 0.02em !important;
}

.footer-nav-legal:hover {
    opacity: 1;
}

.footer-divider {
    width: 100%;
    max-width: 350px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 221, 255, 0.2), transparent);
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-title {
    color: var(--light-cyan);
    font-size: var(--font-size-small);
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--light-cyan);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(0, 221, 255, 0.1);
    border-color: rgba(0, 221, 255, 0.3);
    color: var(--cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--light-cyan);
    opacity: 0.5;
    font-size: var(--font-size-small);
}

.footer-bottom a {
    color: var(--light-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--cyan);
}

.footer-bottom span {
    font-weight: 600;
    color: var(--white);
}

/* ==============================================
   LIGHT MODE THEME
   ============================================== */

/* Smooth theme transition */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition: background-color 0.4s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.4s ease,
                filter 0.3s ease,
                opacity 0.3s ease !important;
}

/* Core palette flip */
[data-theme="light"] {
    --navy: #f8fafb;
    --cyan: #0099bb;
    --light-cyan: #3a5068;
    --white: #0a1628;
}

/* --- Body & grain --- */
html[data-theme="light"] body {
    background: #f8fafb;
    color: #0a1628;
}

html[data-theme="light"] body::after {
    opacity: 0.015;
}

html[data-theme="light"] ::selection {
    background: rgba(0, 153, 187, 0.2);
    color: #0a1628;
}

html[data-theme="light"] :focus-visible {
    outline-color: #0099bb;
}

/* --- Navigation --- */
html[data-theme="light"] .nav-container {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 60, 80, 0.1);
    box-shadow: 0 8px 32px rgba(0, 20, 40, 0.08);
}

html[data-theme="light"] .logo-container img {
    filter: drop-shadow(0 0 12px rgba(0, 153, 187, 0.25));
}

html[data-theme="light"] .nav-links a {
    color: #3a5068;
}

html[data-theme="light"] .nav-links a:hover {
    color: #0099bb;
}

html[data-theme="light"] .nav-links a::after {
    background: #0099bb;
}

html[data-theme="light"] .theme-toggle {
    background: rgba(0, 153, 187, 0.06);
    border-color: rgba(0, 60, 80, 0.12);
    color: #0099bb;
}

html[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 153, 187, 0.12);
    border-color: rgba(0, 153, 187, 0.3);
    box-shadow: 0 0 20px rgba(0, 153, 187, 0.15);
}

/* --- Hero --- */
html[data-theme="light"] .hero {
    background: linear-gradient(180deg, #daeaf2 0%, #eef4f7 100%);
}

html[data-theme="light"] .hero-logo-image {
    opacity: 0.04;
    filter: drop-shadow(0 0 120px rgba(0, 153, 187, 0.12)) drop-shadow(0 0 60px rgba(0, 153, 187, 0.06));
}

html[data-theme="light"] .hero-headline h1 {
    background: linear-gradient(135deg, #0a1628 0%, #0099bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .hero-text p {
    color: #4a6278;
}

html[data-theme="light"] .hero-grid-bg {
    background-image:
        linear-gradient(rgba(0, 153, 187, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 153, 187, 0.04) 1px, transparent 1px);
}

html[data-theme="light"] .particle {
    background: #0099bb;
}

html[data-theme="light"] .orbit-ring {
    border-color: rgba(0, 153, 187, 0.08);
}

html[data-theme="light"] .orbit-ring--2 {
    border-color: rgba(0, 153, 187, 0.05);
}

html[data-theme="light"] .hero-mockup-glow {
    background: radial-gradient(ellipse, rgba(0, 153, 187, 0.08) 0%, transparent 70%);
}

html[data-theme="light"] .mockup-frame {
    background: linear-gradient(145deg, rgba(0, 153, 187, 0.04), rgba(255, 255, 255, 0.3));
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 153, 187, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .hero-mockup--center .mockup-frame {
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(0, 153, 187, 0.05),
        0 0 0 1px rgba(0, 153, 187, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .mockup-border-glow {
    background: conic-gradient(
        from 0deg,
        rgba(0, 153, 187, 0.25),
        rgba(0, 153, 187, 0.02) 25%,
        rgba(0, 119, 187, 0.25) 50%,
        rgba(0, 153, 187, 0.02) 75%,
        rgba(0, 153, 187, 0.25)
    );
    opacity: 0.5;
}

html[data-theme="light"] .mockup-shine {
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 70%
    );
    background-size: 300% 100%;
}

html[data-theme="light"] .cta-button {
    background: linear-gradient(135deg, #0099bb 0%, #007a99 100%);
    color: #ffffff;
    box-shadow: 0 16px 48px rgba(0, 153, 187, 0.25);
}

html[data-theme="light"] .cta-button:hover {
    box-shadow: 0 24px 64px rgba(0, 153, 187, 0.35);
}

html[data-theme="light"] .cta-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* --- Features --- */
html[data-theme="light"] .features {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 50%, #ffffff 100%);
    box-shadow: 0 -20px 60px rgba(0, 60, 80, 0.06);
    border-top: 1px solid rgba(0, 60, 80, 0.06);
}

html[data-theme="light"] .section-header h2 {
    background: linear-gradient(135deg, #0a1628 0%, #0099bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .section-header p {
    color: #4a6278;
}

html[data-theme="light"] .feature-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 60, 80, 0.08);
    box-shadow: 0 4px 32px rgba(0, 20, 40, 0.07);
}

html[data-theme="light"] .feature-card::before {
    background: linear-gradient(135deg, rgba(0, 153, 187, 0.04), transparent);
}

html[data-theme="light"] .feature-card:hover {
    border-color: rgba(0, 153, 187, 0.25);
    box-shadow: 0 16px 48px rgba(0, 153, 187, 0.1);
}

html[data-theme="light"] .feature-icon {
    background: linear-gradient(135deg, #0099bb 0%, #007a99 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 153, 187, 0.2);
}

html[data-theme="light"] .feature-card h3 {
    color: #0a1628;
}

html[data-theme="light"] .feature-card p {
    color: #4a6278;
}

/* --- Showcase --- */
html[data-theme="light"] .showcase {
    background: linear-gradient(180deg, #e8f1f5 0%, #dfeaf0 50%, #e8f1f5 100%);
}

html[data-theme="light"] .showcase-image {
    box-shadow: 0 24px 64px rgba(0, 20, 40, 0.12);
}

html[data-theme="light"] .showcase-text h2 {
    color: #0099bb;
}

html[data-theme="light"] .showcase-text p {
    color: #4a6278;
}

html[data-theme="light"] .stat-item {
    background: rgba(0, 153, 187, 0.05);
    border: 1px solid rgba(0, 153, 187, 0.1);
}

html[data-theme="light"] .stat-item:hover {
    background: rgba(0, 153, 187, 0.09);
}

html[data-theme="light"] .stat-number {
    color: #0099bb;
}

html[data-theme="light"] .stat-label {
    color: #4a6278;
}

/* --- Score section --- */
html[data-theme="light"] .score-section {
    background: linear-gradient(135deg, #f5f8fa 0%, #ffffff 50%, #f5f8fa 100%);
}

html[data-theme="light"] .score-section::before {
    background: radial-gradient(circle, rgba(0, 153, 187, 0.08) 0%, transparent 70%);
}

html[data-theme="light"] .score-text h2 {
    background: linear-gradient(135deg, #0099bb 0%, #006680 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .score-text p {
    color: #4a6278;
}

html[data-theme="light"] .score-features li {
    color: #4a6278;
}

html[data-theme="light"] .score-features li::before {
    color: #0099bb;
}

html[data-theme="light"] .score-visual {
    background: #ffffff;
    border: 1px solid rgba(0, 60, 80, 0.1);
    box-shadow: 0 24px 64px rgba(0, 153, 187, 0.1);
}

html[data-theme="light"] .score-ring-bg {
    stroke: rgba(0, 153, 187, 0.1);
}

html[data-theme="light"] .score-ring-wrap .score-number {
    background: linear-gradient(135deg, #0099bb 0%, #0a1628 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .score-label {
    color: #3a5068;
}

html[data-theme="light"] .score-rank {
    background: rgba(0, 153, 187, 0.06);
}

html[data-theme="light"] .score-rank p {
    color: #0099bb;
}

/* --- FAQ --- */
html[data-theme="light"] .faq-section {
    background: linear-gradient(180deg, #e4edf2 0%, #dce7ed 50%, #e4edf2 100%);
}

html[data-theme="light"] .faq-section::before {
    background: radial-gradient(circle, rgba(0, 153, 187, 0.05) 0%, transparent 70%);
}

html[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 60, 80, 0.08);
}

html[data-theme="light"] .faq-item:hover {
    border-color: rgba(0, 153, 187, 0.2);
}

html[data-theme="light"] .faq-item[open] {
    border-color: rgba(0, 153, 187, 0.25);
    box-shadow: 0 8px 32px rgba(0, 153, 187, 0.06);
}

html[data-theme="light"] .faq-question {
    color: #0a1628;
}

html[data-theme="light"] .faq-chevron {
    color: #0099bb;
}

html[data-theme="light"] .faq-answer p {
    color: #4a6278;
}

/* --- Partners --- */
html[data-theme="light"] .partners-section {
    background: linear-gradient(180deg, #e4edf2 0%, #f0f5f8 50%, #e4edf2 100%);
}

html[data-theme="light"] .partners-section::before {
    background: radial-gradient(ellipse, rgba(26, 82, 118, 0.06) 0%, transparent 70%);
}

html[data-theme="light"] .partners-eyebrow {
    color: #1a5276;
}

html[data-theme="light"] .partners-header h2 {
    background: linear-gradient(135deg, #0a1628 30%, #1a5276 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .partners-subtitle {
    color: #4a6278;
}

html[data-theme="light"] .partner-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(26, 82, 118, 0.1);
}

html[data-theme="light"] .partner-card:hover {
    border-color: rgba(26, 82, 118, 0.25);
    box-shadow: 0 12px 40px rgba(26, 82, 118, 0.1);
}

html[data-theme="light"] .partner-info h3 {
    color: #0a1628;
}

html[data-theme="light"] .partner-info p {
    color: #1a5276;
}

html[data-theme="light"] .divider-icon {
    background: rgba(26, 82, 118, 0.06);
    border-color: rgba(26, 82, 118, 0.12);
    color: #1a5276;
}

/* Light mode: KOE logo is very light/silver — darken significantly so it's visible on light bg */
html[data-theme="light"] .partner-card--koe .partner-logo-wrap img {
    filter: brightness(0.45) contrast(1.6) saturate(1.4);
}

html[data-theme="light"] .partner-card--koe:hover .partner-logo-wrap img {
    filter: brightness(0.35) contrast(1.7) saturate(1.5);
}

/* Light mode: Microplus logo is dark teal — naturally visible on light bg */
html[data-theme="light"] .partner-card--microplus .partner-logo-wrap img {
    filter: brightness(1) contrast(1.1);
}

html[data-theme="light"] .partner-card--microplus:hover .partner-logo-wrap img {
    filter: brightness(0.9) contrast(1.2);
}

/* --- CTA --- */
html[data-theme="light"] .cta-section {
    background: linear-gradient(135deg, #f5f8fa 0%, #ffffff 50%, #f5f8fa 100%);
}

html[data-theme="light"] .cta-section::before {
    background: radial-gradient(circle, rgba(0, 153, 187, 0.06) 0%, transparent 50%);
}

html[data-theme="light"] .cta-content h2 {
    background: linear-gradient(135deg, #0a1628 0%, #0099bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .cta-content p {
    color: #4a6278;
}

html[data-theme="light"] .coming-soon-badge {
    border-color: #0099bb;
    color: #0099bb;
}

html[data-theme="light"] .store-badge:hover {
    filter: drop-shadow(0 8px 24px rgba(0, 153, 187, 0.2));
}

/* --- Scroll-to-top button --- */
html[data-theme="light"] #scrollTopBtn {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 60, 80, 0.1);
    color: #0099bb;
    box-shadow: 0 4px 16px rgba(0, 20, 40, 0.08);
}

/* --- Footer stays dark in both modes --- */
html[data-theme="light"] footer {
    background: #0a1628;
}

html[data-theme="light"] footer::before {
    background: radial-gradient(ellipse at bottom, rgba(0, 153, 187, 0.08) 0%, transparent 70%);
}

html[data-theme="light"] .footer-nav a {
    color: #ffffff;
}

html[data-theme="light"] .footer-nav a:hover {
    color: #00ddff;
}

html[data-theme="light"] .footer-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 221, 255, 0.2), transparent);
}

html[data-theme="light"] .footer-social-title {
    color: #deffff;
}

html[data-theme="light"] .social-icons a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #deffff;
}

html[data-theme="light"] .social-icons a:hover {
    background: rgba(0, 221, 255, 0.1);
    border-color: rgba(0, 221, 255, 0.3);
    color: #00ddff;
}

html[data-theme="light"] .footer-bottom {
    color: #deffff;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .footer-bottom a {
    color: #deffff;
}

html[data-theme="light"] .footer-bottom a:hover {
    color: #00ddff;
}

html[data-theme="light"] .footer-bottom span {
    color: #ffffff;
}

html[data-theme="light"] .footer-logo img {
    filter: drop-shadow(0 0 16px rgba(0, 221, 255, 0.4));
}

/* --- Cookie banner --- */
html[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 60, 80, 0.1);
}

html[data-theme="light"] .cookie-content p {
    color: #4a6278;
}

html[data-theme="light"] .cookie-content a {
    color: #0099bb;
}

html[data-theme="light"] .cookie-btn-accept {
    background: #0099bb;
    color: #ffffff;
}

html[data-theme="light"] .cookie-btn-accept:hover {
    box-shadow: 0 4px 16px rgba(0, 153, 187, 0.3);
}

html[data-theme="light"] .cookie-btn-decline {
    color: #4a6278;
    border: 1px solid rgba(0, 60, 80, 0.15);
}

html[data-theme="light"] .cookie-btn-decline:hover {
    border-color: rgba(0, 153, 187, 0.3);
    background: rgba(0, 153, 187, 0.04);
}

/* --- Light mode keyframe overrides --- */
@keyframes logoPulseLight {
    0%, 100% {
        opacity: 0.04;
        filter: drop-shadow(0 0 120px rgba(0, 153, 187, 0.12)) drop-shadow(0 0 60px rgba(0, 153, 187, 0.06));
    }
    50% {
        opacity: 0.07;
        filter: drop-shadow(0 0 160px rgba(0, 153, 187, 0.18)) drop-shadow(0 0 80px rgba(0, 153, 187, 0.1));
    }
}

html[data-theme="light"] .hero-logo-image {
    animation: logoPulseLight 8s ease-in-out infinite;
}

@keyframes badgePulseLight {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 153, 187, 0.1), inset 0 0 20px rgba(0, 153, 187, 0.03);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 153, 187, 0.18), inset 0 0 30px rgba(0, 153, 187, 0.06);
    }
}

html[data-theme="light"] .coming-soon-badge {
    animation: badgePulseLight 3s ease-in-out infinite;
}

/* --- Light mode hover overrides --- */
@media (hover: hover) {
    html[data-theme="light"] .cta-button:hover {
        box-shadow: 0 24px 64px rgba(0, 153, 187, 0.35);
    }

    html[data-theme="light"] .feature-card:hover {
        border-color: rgba(0, 153, 187, 0.25);
        box-shadow: 0 24px 48px rgba(0, 153, 187, 0.1);
    }

    html[data-theme="light"] .stat-item:hover {
        background: rgba(0, 153, 187, 0.09);
    }

    html[data-theme="light"] .store-badge:hover {
        filter: drop-shadow(0 8px 24px rgba(0, 153, 187, 0.2));
    }

    html[data-theme="light"] #scrollTopBtn:hover {
        background: #0099bb;
        color: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 153, 187, 0.2);
    }

    html[data-theme="light"] .footer-logo img:hover {
        filter: drop-shadow(0 0 24px rgba(0, 221, 255, 0.7));
    }

    html[data-theme="light"] .footer-nav a:hover {
        color: #00ddff;
    }

    html[data-theme="light"] .social-icons a:hover {
        background: rgba(0, 221, 255, 0.1);
        border-color: rgba(0, 221, 255, 0.3);
        color: #00ddff;
    }

    html[data-theme="light"] .footer-bottom a:hover {
        color: #00ddff;
    }
}

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

/* ==============================================
   RESPONSIVE — 1024px
   ============================================== */

@media (max-width: 1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-headline {
        align-items: center;
    }

    .hero-headline h1 {
        text-align: center;
    }

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

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

    .hero-mockups {
        height: 480px;
    }

    .hero-mockup--left {
        transform: translate(-50%, -50%) translateX(-120px) translateZ(0px) rotateY(10deg);
    }

    .hero-mockup--right {
        transform: translate(-50%, -50%) translateX(120px) translateZ(0px) rotateY(-10deg);
    }

    .hero-mockup--back-left {
        transform: translate(-50%, -50%) translateX(-220px) translateZ(-60px) rotateY(15deg);
    }

    .hero-mockup--back-right {
        transform: translate(-50%, -50%) translateX(220px) translateZ(-60px) rotateY(-15deg);
    }

    .showcase-container,
    .score-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero {
        padding: 8rem 2rem 6rem;
    }

    .hero-headline h1 {
        font-size: 2.6rem;
    }


    .section-header h2 {
        font-size: 2.5rem;
    }

    .showcase-image {
        transform: none;
    }

    .score-features {
        text-align: left;
    }

    .footer-container {
        gap: 2rem;
    }
}

/* ==============================================
   RESPONSIVE — 768px (Mobile)
   ============================================== */

@media (max-width: 768px) {
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Navigation */
    body>nav {
        top: 1rem;
        width: 92%;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-container {
        padding: 0.65rem 1.1rem;
        gap: 0.75rem;
        width: 100%;
        justify-content: space-between;
        border-radius: 20px;
    }

    /* Hide desktop nav links and theme toggle on mobile */
    .nav-links {
        display: none;
    }

    .theme-toggle {
        display: none;
    }

    .lang-toggle {
        display: none;
    }

    /* Show hamburger button */
    .mobile-menu-btn {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .logo-container img {
        width: 30px;
        height: 30px;
    }

    /* Mobile Menu Dropdown */
    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s ease;
        opacity: 0;
    }

    .mobile-menu.open {
        max-height: 400px;
        opacity: 1;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 1rem 1rem 1.25rem;
    }

    .mobile-menu-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        color: var(--light-cyan);
        text-decoration: none;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.01em;
        border-radius: 12px;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out-back);
        position: relative;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: rgba(0, 221, 255, 0.08);
        color: var(--cyan);
    }

    /* Staggered entrance for mobile menu links */
    .mobile-menu.open .mobile-menu-link:nth-child(1) {
        animation: menuItemSlide 0.4s var(--ease-out-expo) 0.05s both;
    }
    .mobile-menu.open .mobile-menu-link:nth-child(2) {
        animation: menuItemSlide 0.4s var(--ease-out-expo) 0.1s both;
    }
    .mobile-menu.open .mobile-menu-link:nth-child(3) {
        animation: menuItemSlide 0.4s var(--ease-out-expo) 0.15s both;
    }
    .mobile-menu.open .mobile-lang-switch {
        animation: menuItemSlide 0.4s var(--ease-out-expo) 0.18s both;
    }

    .mobile-menu.open .mobile-theme-switch {
        animation: menuItemSlide 0.4s var(--ease-out-expo) 0.24s both;
    }

    @keyframes menuItemSlide {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Divider before theme switch */
    .mobile-theme-switch {
        margin-top: 0.5rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(0, 221, 255, 0.1);
        width: 60%;
    }

    /* Adjust nav container border radius when menu is open */
    .nav-container:has(+ .mobile-menu.open) {
        border-radius: 20px 20px 0 0;
    }

    /* Rounded bottom on the entire nav when menu is open */
    body > nav:has(.mobile-menu.open) .nav-container {
        border-radius: 20px 20px 0 0;
        border-bottom: none;
    }

    body > nav .mobile-menu {
        background: rgba(0, 0, 40, 0.72);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(0, 221, 255, 0.12);
        border-top: 1px solid rgba(0, 221, 255, 0.06);
        border-radius: 0 0 20px 20px;
        margin-top: -1px;
    }

    /* Light mode mobile menu */
    html[data-theme="light"] body > nav .mobile-menu {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(0, 60, 80, 0.1);
        border-top: 1px solid rgba(0, 60, 80, 0.05);
    }

    html[data-theme="light"] .mobile-menu-link {
        color: #3a5068;
    }

    html[data-theme="light"] .mobile-menu-link:hover,
    html[data-theme="light"] .mobile-menu-link:active {
        background: rgba(0, 153, 187, 0.06);
        color: #0099bb;
    }

    html[data-theme="light"] .mobile-lang-switch .lang-pill {
        border-color: rgba(0, 60, 80, 0.12);
        background: rgba(0, 60, 80, 0.04);
        color: #003366;
    }

    html[data-theme="light"] .mobile-theme-switch {
        border-top-color: rgba(0, 60, 80, 0.08);
    }

    html[data-theme="light"] .mobile-menu-btn {
        background: rgba(0, 153, 187, 0.06);
        border-color: rgba(0, 60, 80, 0.12);
    }

    html[data-theme="light"] .hamburger-line {
        background: #0099bb;
    }

    /* Hero Section */
    .hero {
        padding: 8rem 1rem 5rem;
        min-height: auto;
        overflow: hidden;
    }

    .hero-content {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0 0 1rem 0;
        gap: 2.5rem;
    }

    .hero-left {
        align-items: center;
    }

    .hero-headline {
        align-items: center;
    }

    .hero-logo-image {
        animation: none;
        opacity: 0.05;
    }

    .hero-headline h1 {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
        width: 100%;
        padding: 0 0.5rem;
    }

    .hero-text {
        width: 100%;
        padding: 0 1rem;
        align-items: center;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-headline h1,
    .hero-text {
        will-change: opacity;
        transform: none !important;
    }

    /* Mobile mockups — stacked fan of 3 */
    .hero-mockups {
        height: 320px;
        perspective: 800px;
        overflow: hidden;
    }

    .mockup-stage {
        transform-style: preserve-3d;
        width: 100%;
        height: 100%;
        transition: none;
    }

    .hero-mockup {
        animation: mockupEntranceMobile 0.8s ease-out forwards !important;
        filter: none !important;
    }

    @keyframes mockupEntranceMobile {
        from { opacity: 0; transform: translate(-50%, -40%) scale(0.7); }
        to   { opacity: 1; }
    }

    /* Center — front and center */
    .hero-mockup--center {
        width: 155px;
        z-index: 5;
        transform: translate(-50%, -50%) translateZ(30px);
        animation-delay: 0.1s !important;
    }

    /* Left */
    .hero-mockup--left {
        width: 130px;
        z-index: 3;
        opacity: 1;
        transform: translate(-50%, -50%) translateX(-95px) translateZ(0px) rotateY(8deg);
        animation-delay: 0.2s !important;
    }

    /* Right */
    .hero-mockup--right {
        width: 130px;
        z-index: 3;
        opacity: 1;
        transform: translate(-50%, -50%) translateX(95px) translateZ(0px) rotateY(-8deg);
        animation-delay: 0.25s !important;
    }

    /* Hide back cards on mobile */
    .hero-mockup--back-left,
    .hero-mockup--back-right {
        display: none;
    }

    .mockup-frame {
        border-radius: 14px;
    }

    .mockup-border-glow { display: none; }
    .mockup-reflection { display: none; }
    .hero-mockup-orbit { display: none; }
    .hero-mockup-glow { display: none; }

    .hero-grid-bg { display: none; }
    .hero-particles { display: none; }

    .cta-button {
        width: auto;
        max-width: 85%;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-bottom: 2rem;
        white-space: nowrap;
    }

    /* Features Section */
    .features {
        padding: 4rem 1.25rem;
        margin-top: 2rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    /* Showcase Section */
    .showcase {
        padding: 4rem 1.25rem;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .showcase-text p {
        font-size: 1.1rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Score Section */
    .score-section {
        padding: 4rem 1.25rem;
    }

    .score-text h2 {
        font-size: 2rem;
    }

    .score-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .score-features li {
        font-size: 1.1rem;
    }

    .score-ring-wrap {
        width: 180px;
        height: 180px;
    }

    .score-ring-wrap .score-number {
        font-size: 4rem;
    }

    .score-label {
        font-size: 1.2rem;
    }

    .score-rank p {
        font-size: 1.1rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 4rem 1.25rem;
    }

    .faq-item summary {
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Partners Section */
    .partners-section {
        padding: 4rem 1.25rem;
    }

    .partners-header h2 {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .partners-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .partner-card {
        max-width: 100%;
        width: 100%;
        padding: 2rem 1.5rem 1.5rem;
    }

    .partners-divider {
        transform: rotate(90deg);
    }

    .partner-logo-wrap {
        height: 70px;
        margin-bottom: 1rem;
    }

    .partner-logo-wrap img {
        max-height: 65px;
    }

    .partner-info h3 {
        font-size: 1.25rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 1.25rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .store-badge img {
        height: 80px;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 1.25rem 2rem;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-nav a {
        font-size: 1.2rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .footer-social-title {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-bottom: 4rem;
    }

    /* Scroll-to-top button mobile adjustment */
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    /* Disable grain overlay on mobile for performance */
    body::after {
        display: none;
    }
}

/* ==============================================
   RESPONSIVE — 375px (Small phones)
   ============================================== */

@media (max-width: 375px) {
    .hero-headline h1 {
        font-size: 1.5rem;
    }

    .hero-mockups { height: 270px; }
    .hero-mockup--center { width: 130px; }
    .hero-mockup--left {
        width: 110px;
        transform: translate(-50%, -50%) translateX(-78px) translateZ(0px) rotateY(8deg);
    }
    .hero-mockup--right {
        width: 110px;
        transform: translate(-50%, -50%) translateX(78px) translateZ(0px) rotateY(-8deg);
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
    }

    .hamburger-line {
        width: 14px;
        gap: 4px;
    }

    .logo-container img {
        width: 26px;
        height: 26px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .showcase-text h2,
    .score-text h2,
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 0.85rem 1.4rem;
        gap: 0.5rem;
    }

    .score-visual {
        padding: 2.5rem 1.5rem;
    }

    .score-ring-wrap {
        width: 160px;
        height: 160px;
    }

    .score-ring-wrap .score-number {
        font-size: 3.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .store-badge img {
        height: 70px;
    }

    .footer-nav a {
        font-size: 1.1rem;
    }
}

/* ==============================================
   HOVER EFFECTS (devices that support it)
   ============================================== */

@media (hover: hover) {
    .nav-links a:hover {
        color: var(--cyan);
    }

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

    .cta-button:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 24px 64px rgba(0, 221, 255, 0.5);
    }

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

    .feature-card:hover {
        transform: translateY(-12px);
        border-color: rgba(0, 221, 255, 0.35);
        box-shadow: 0 24px 48px rgba(0, 221, 255, 0.2);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.08) rotateZ(3deg);
    }

    .showcase-image:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.03);
    }

    .stat-item:hover {
        background: rgba(0, 221, 255, 0.12);
        transform: translateY(-4px);
    }

    .store-badge:hover {
        transform: translateY(-4px);
        filter: drop-shadow(0 8px 24px rgba(0, 221, 255, 0.25));
    }

    .footer-logo img:hover {
        filter: drop-shadow(0 0 24px rgba(0, 221, 255, 0.7));
        transform: scale(1.05);
    }

    .footer-nav a:hover {
        color: var(--cyan);
        transform: translateY(-2px);
    }

    .social-icons a:hover {
        background: rgba(0, 221, 255, 0.1);
        border-color: rgba(0, 221, 255, 0.3);
        color: var(--cyan);
        transform: translateY(-3px);
    }

    .footer-bottom a:hover {
        color: var(--cyan);
    }
}

/* ==============================================
   EMBLEM TROPHY CASE — Banner (inside score-visual)
   ============================================== */

.trophy-case-banner {
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 165, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.18);
    transition: all 0.4s var(--ease-out-expo);
}

.trophy-case-banner:hover {
    border-color: rgba(255, 215, 0, 0.45);
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(255, 215, 0, 0.12),
        0 0 60px rgba(255, 215, 0, 0.04);
}

.trophy-case-banner:active {
    transform: translateY(0) scale(0.98);
}

.trophy-case-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.trophy-case-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    position: relative;
    z-index: 1;
}

.trophy-case-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    animation: trophyFloat 3s ease-in-out infinite;
}

.trophy-case-icon svg {
    width: 28px;
    height: 28px;
}

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

.trophy-case-text {
    flex: 1;
    min-width: 0;
}

.trophy-case-eyebrow {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFD700;
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.trophy-case-text h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 40%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trophy-case-arrow {
    flex-shrink: 0;
    color: rgba(255, 215, 0, 0.4);
    transition: transform 0.3s var(--ease-out-back), color 0.3s ease;
    display: flex;
}

.trophy-case-banner:hover .trophy-case-arrow {
    transform: translateX(3px);
    color: #FFD700;
}

.trophy-case-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.trophy-case-particles::before,
.trophy-case-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

.trophy-case-particles::before {
    top: 25%;
    left: 12%;
    animation-delay: 0s;
}

.trophy-case-particles::after {
    top: 65%;
    right: 18%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.7; transform: scale(1); }
}


/* ==============================================
   EMBLEM MODAL — Hearthstone-style Reveal
   ============================================== */

.emblem-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.emblem-modal.open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.emblem-modal-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 45%, rgba(30, 20, 0, 0.85) 0%, rgba(0, 0, 5, 0.96) 70%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Stage — centers everything */
.emblem-reveal-stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Energy Burst */
.emblem-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.burst-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.15);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.burst-ring--1 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 215, 0, 0.2);
}

.burst-ring--2 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 215, 0, 0.1);
}

.burst-ring--3 {
    width: 800px;
    height: 800px;
    border-color: rgba(255, 215, 0, 0.05);
}

.emblem-modal.open .burst-ring--1 {
    animation: burstExpand 1.2s 0.1s var(--ease-out-expo) forwards;
}

.emblem-modal.open .burst-ring--2 {
    animation: burstExpand 1.4s 0.2s var(--ease-out-expo) forwards;
}

.emblem-modal.open .burst-ring--3 {
    animation: burstExpand 1.6s 0.3s var(--ease-out-expo) forwards;
}

@keyframes burstExpand {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Golden rays radiating outward */
.burst-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg, rgba(255, 215, 0, 0.04) 5deg, transparent 10deg,
            transparent 30deg, rgba(255, 215, 0, 0.03) 35deg, transparent 40deg,
            transparent 60deg, rgba(255, 215, 0, 0.04) 65deg, transparent 70deg,
            transparent 90deg, rgba(255, 215, 0, 0.03) 95deg, transparent 100deg,
            transparent 120deg, rgba(255, 215, 0, 0.04) 125deg, transparent 130deg,
            transparent 150deg, rgba(255, 215, 0, 0.03) 155deg, transparent 160deg,
            transparent 180deg, rgba(255, 215, 0, 0.04) 185deg, transparent 190deg,
            transparent 210deg, rgba(255, 215, 0, 0.03) 215deg, transparent 220deg,
            transparent 240deg, rgba(255, 215, 0, 0.04) 245deg, transparent 250deg,
            transparent 270deg, rgba(255, 215, 0, 0.03) 275deg, transparent 280deg,
            transparent 300deg, rgba(255, 215, 0, 0.04) 305deg, transparent 310deg,
            transparent 330deg, rgba(255, 215, 0, 0.03) 335deg, transparent 340deg,
            transparent 360deg
        );
    pointer-events: none;
}

.emblem-modal.open .burst-rays {
    animation: raysReveal 2s 0.3s ease-out forwards, raysSpin 30s 0.3s linear infinite;
}

@keyframes raysReveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes raysSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Title at top */
.emblem-reveal-title {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    text-align: center;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.6s ease, transform 0.6s var(--ease-out-expo);
    white-space: nowrap;
}

.emblem-modal.open .emblem-reveal-title {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.6s;
}

.emblem-reveal-title h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 30%, #FFD700 60%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    letter-spacing: -0.01em;
}

.emblem-reveal-title p {
    font-size: 0.8rem;
    color: rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Close button */
.emblem-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0;
}

.emblem-modal.open .emblem-modal-close {
    opacity: 1;
    transition-delay: 1s;
}

.emblem-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* ==============================================
   CARD FAN LAYOUT
   ============================================== */

.emblem-fan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    gap: 2rem 0;
    height: auto;
    padding: 0 1rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Cards in the fan */
.emblem-card {
    perspective: 1000px;
    width: clamp(130px, 16vw, 185px);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.3) translateY(80px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    position: relative;
    /* Fan overlap */
    margin: 0 -8px;
}

/* Two-row grid reveal — Row 1: cards 0-2, Row 2: cards 3-5 */
.emblem-modal.open .emblem-card[data-fan-index="0"] {
    opacity: 1;
    transform: rotate(-6deg) translateY(-8px);
    transition-delay: 0.3s;
}

.emblem-modal.open .emblem-card[data-fan-index="1"] {
    opacity: 1;
    transform: rotate(0deg) translateY(-14px);
    transition-delay: 0.45s;
    z-index: 3;
}

.emblem-modal.open .emblem-card[data-fan-index="2"] {
    opacity: 1;
    transform: rotate(6deg) translateY(-8px);
    transition-delay: 0.6s;
}

.emblem-modal.open .emblem-card[data-fan-index="3"] {
    opacity: 1;
    transform: rotate(-6deg) translateY(-8px);
    transition-delay: 0.75s;
}

.emblem-modal.open .emblem-card[data-fan-index="4"] {
    opacity: 1;
    transform: rotate(0deg) translateY(-14px);
    transition-delay: 0.9s;
    z-index: 3;
}

.emblem-modal.open .emblem-card[data-fan-index="5"] {
    opacity: 1;
    transform: rotate(6deg) translateY(-8px);
    transition-delay: 1.05s;
}

.emblem-card-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.emblem-card-inner img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

/* Holographic shine overlay */
.emblem-card-shine {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.emblem-card-inner:hover .emblem-card-shine {
    opacity: 1;
}

/* Elite tier (90+) — Teal/Cyan glow */
.emblem-card--elite .emblem-card-inner {
    box-shadow:
        0 4px 24px rgba(0, 200, 255, 0.2),
        0 0 0 1px rgba(0, 200, 255, 0.08);
}

.emblem-card--elite .emblem-card-inner:hover {
    transform: scale(1.08);
    box-shadow:
        0 16px 50px rgba(0, 200, 255, 0.35),
        0 0 80px rgba(0, 200, 255, 0.12),
        0 0 0 1px rgba(0, 200, 255, 0.25);
}

.emblem-card--elite .emblem-card-inner:active {
    transform: scale(1.12);
}

.emblem-card--elite .emblem-card-rarity {
    background: linear-gradient(135deg, #00ddff, #0099bb);
    color: #001020;
    box-shadow: 0 2px 12px rgba(0, 200, 255, 0.3);
}

/* Gold tier (80-89) */
.emblem-card--gold .emblem-card-inner {
    box-shadow:
        0 4px 24px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.06);
}

.emblem-card--gold .emblem-card-inner:hover {
    transform: scale(1.08);
    box-shadow:
        0 16px 50px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 215, 0, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.2);
}

.emblem-card--gold .emblem-card-inner:active {
    transform: scale(1.12);
}

.emblem-card--gold .emblem-card-rarity {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1000;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.25);
}

/* Rarity badge */
.emblem-card-rarity {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out-back);
    z-index: 3;
}

.emblem-card-inner:hover .emblem-card-rarity {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 3D tilt override */
.emblem-card-inner.tilting {
    transition: box-shadow 0.4s ease;
}


/* ---- Light Theme — Trophy Banner ---- */
html[data-theme="light"] .trophy-case-banner {
    background: linear-gradient(135deg, rgba(180, 140, 20, 0.06) 0%, rgba(255, 200, 50, 0.04) 100%);
    border-color: rgba(180, 140, 20, 0.2);
}

html[data-theme="light"] .trophy-case-banner:hover {
    border-color: rgba(180, 140, 20, 0.4);
    box-shadow:
        0 8px 32px rgba(180, 140, 20, 0.12),
        0 0 40px rgba(255, 215, 0, 0.05);
}

html[data-theme="light"] .trophy-case-glow {
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

html[data-theme="light"] .trophy-case-text h3 {
    background: linear-gradient(135deg, #8B6914 0%, #B8860B 50%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .trophy-case-eyebrow {
    color: #8B6914;
}

html[data-theme="light"] .trophy-case-arrow {
    color: rgba(139, 105, 20, 0.35);
}

html[data-theme="light"] .trophy-case-banner:hover .trophy-case-arrow {
    color: #8B6914;
}

html[data-theme="light"] .trophy-case-particles::before,
html[data-theme="light"] .trophy-case-particles::after {
    background: #B8860B;
}

/* ---- Light Theme — Modal ---- */
html[data-theme="light"] .emblem-modal-backdrop {
    background: radial-gradient(ellipse at 50% 45%, rgba(255, 248, 230, 0.9) 0%, rgba(240, 235, 215, 0.96) 70%);
}

html[data-theme="light"] .emblem-reveal-title h2 {
    background: linear-gradient(135deg, #8B6914 0%, #B8860B 30%, #8B6914 60%, #6B4F0A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

html[data-theme="light"] .emblem-reveal-title p {
    color: rgba(139, 105, 20, 0.5);
}

html[data-theme="light"] .emblem-modal-close {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.4);
}

html[data-theme="light"] .emblem-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #0a1628;
}

html[data-theme="light"] .burst-ring {
    border-color: rgba(180, 140, 20, 0.15);
}

html[data-theme="light"] .burst-rays {
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg, rgba(180, 140, 20, 0.04) 5deg, transparent 10deg,
            transparent 30deg, rgba(180, 140, 20, 0.03) 35deg, transparent 40deg,
            transparent 60deg, rgba(180, 140, 20, 0.04) 65deg, transparent 70deg,
            transparent 90deg, rgba(180, 140, 20, 0.03) 95deg, transparent 100deg,
            transparent 120deg, rgba(180, 140, 20, 0.04) 125deg, transparent 130deg,
            transparent 150deg, rgba(180, 140, 20, 0.03) 155deg, transparent 160deg,
            transparent 180deg, rgba(180, 140, 20, 0.04) 185deg, transparent 190deg,
            transparent 210deg, rgba(180, 140, 20, 0.03) 215deg, transparent 220deg,
            transparent 240deg, rgba(180, 140, 20, 0.04) 245deg, transparent 250deg,
            transparent 270deg, rgba(180, 140, 20, 0.03) 275deg, transparent 280deg,
            transparent 300deg, rgba(180, 140, 20, 0.04) 305deg, transparent 310deg,
            transparent 330deg, rgba(180, 140, 20, 0.03) 335deg, transparent 340deg,
            transparent 360deg
        );
}


/* ==============================================
   EMBLEM — Responsive
   ============================================== */

@media (max-width: 768px) {
    .trophy-case-inner {
        padding: 0.75rem 0.85rem;
        gap: 0.6rem;
    }

    .trophy-case-icon {
        width: 28px;
        height: 28px;
    }

    .trophy-case-icon svg {
        width: 22px;
        height: 22px;
    }

    .trophy-case-text h3 {
        font-size: 0.95rem;
    }

    .trophy-case-eyebrow {
        font-size: 0.6rem;
    }

    .trophy-case-arrow {
        display: none;
    }

    .emblem-reveal-title h2 {
        font-size: 1.6rem;
    }

    .emblem-reveal-title p {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .emblem-fan {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        padding: 0 0.75rem;
        max-width: none;
        justify-items: center;
    }

    .emblem-card {
        width: clamp(130px, 40vw, 170px);
        margin: 0;
    }

    .emblem-card-rarity {
        font-size: 0.6rem;
    }

    /* On mobile, lay cards in a grid instead of fan */
    .emblem-modal.open .emblem-card[data-fan-index="0"],
    .emblem-modal.open .emblem-card[data-fan-index="1"],
    .emblem-modal.open .emblem-card[data-fan-index="2"],
    .emblem-modal.open .emblem-card[data-fan-index="3"],
    .emblem-modal.open .emblem-card[data-fan-index="4"],
    .emblem-modal.open .emblem-card[data-fan-index="5"] {
        transform: rotate(0deg) translateY(0);
    }

    .emblem-modal-close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
    }

    .emblem-reveal-title {
        top: 4%;
    }
}

@media (max-width: 480px) {
    .emblem-card {
        width: clamp(130px, 42vw, 165px);
    }

    .emblem-reveal-title h2 {
        font-size: 1.4rem;
    }

    .emblem-reveal-title p {
        font-size: 0.7rem;
    }
}

@media (max-width: 375px) {
    .trophy-case-text h3 {
        font-size: 0.9rem;
    }

    .emblem-card {
        width: clamp(120px, 40vw, 155px);
    }

    .emblem-reveal-title h2 {
        font-size: 1.25rem;
    }
}

/* ==============================================
   MOCKUP LIGHTBOX
   ============================================== */
.mockup-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mockup-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.mockup-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 8, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mockup-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-height: 90vh;
}

.mockup-lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    width: auto;
    border-radius: 24px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 221, 255, 0.1),
        0 0 0 1px rgba(0, 221, 255, 0.1);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    object-fit: contain;
}

.mockup-lightbox.open .mockup-lightbox-img {
    transform: scale(1) translateY(0);
}

.mockup-lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.mockup-lightbox.open .mockup-lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.mockup-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mockup-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

/* Nav arrows */
.mockup-lightbox-nav {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.mockup-lightbox-prev,
.mockup-lightbox-next {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mockup-lightbox-prev:hover,
.mockup-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: scale(1.1);
}

/* Light theme */
html[data-theme="light"] .mockup-lightbox-backdrop {
    background: rgba(220, 235, 245, 0.94);
}

html[data-theme="light"] .mockup-lightbox-caption {
    color: rgba(10, 22, 40, 0.6);
}

html[data-theme="light"] .mockup-lightbox-close {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0a1628;
}

html[data-theme="light"] .mockup-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .mockup-lightbox-prev,
html[data-theme="light"] .mockup-lightbox-next {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
    color: #0a1628;
}

html[data-theme="light"] .mockup-lightbox-prev:hover,
html[data-theme="light"] .mockup-lightbox-next:hover {
    background: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .mockup-lightbox-img {
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 153, 187, 0.1);
}

@media (max-width: 768px) {
    .mockup-lightbox-img {
        max-height: 70vh;
        max-width: 85vw;
        border-radius: 16px;
    }

    .mockup-lightbox-prev,
    .mockup-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .mockup-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
    }
}

/* ==============================================
   COOKIE CONSENT BANNER
   ============================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 221, 255, 0.15);
    padding: 1.25rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    font-size: var(--font-size-small);
    color: var(--light-cyan);
    opacity: 0.8;
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

.cookie-content a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--font-size-small);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--cyan);
    color: var(--navy);
}

.cookie-btn-accept:hover {
    box-shadow: 0 4px 16px rgba(0, 221, 255, 0.35);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--light-cyan);
    border: 1px solid rgba(0, 221, 255, 0.2);
}

.cookie-btn-decline:hover {
    border-color: rgba(0, 221, 255, 0.4);
    background: rgba(0, 221, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner {
        padding: 1.25rem 1.25rem 1.5rem;
    }

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