/* ========================================
   ORDERNAUT — Premium Landing Page
   ======================================== */

:root {
    --space-black: #000000;
    --space-navy: #0f0f23;
    --space-deep: #1a1a2e;
    --space-blue: #16213e;
    --space-grey: #2C3539;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.12);
    --surface-border-hover: rgba(255, 255, 255, 0.2);
    --white: #ffffff;
    --text-primary: rgba(255, 255, 255, 1);
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-caption: rgba(255, 255, 255, 0.5);
    --accent-cyan: #03e9f4;
    --accent-teal: #00bcd4;
    --accent-blue: #4a90e2;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Navbar glass blur – change these to try different strengths (e.g. 4px, 8px, 12px, 20px) */
    --nav-blur: 12px;
    --nav-blur-scrolled: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--space-black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

body.loaded {
    opacity: 1;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ---- Grain Overlay ---- */
.grain-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
}

.grain-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    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;
}

/* ---- Container ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.8rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Center h1 titles in subpages (after section labels) */
.section-label + h1 {
    text-align: center;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
}

section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 18, 0.94);
    overflow-x: clip;
    max-width: 100%;
}

/* ---- Glass Card ---- */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--surface-border);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: var(--surface-border-hover);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(3, 233, 244, 0.04);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
}

.primary-cta {
    font-size: 1.2rem;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-teal) 50%, var(--accent-cyan) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--space-black);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(3, 233, 244, 0.25);
    position: relative;
    overflow: hidden;
}

.primary-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 45%, rgba(255,255,255,0.25) 50%, transparent 55%);
    background-size: 200% 100%;
    background-position: 200% 0;
    transition: background-position 0.5s var(--ease);
    pointer-events: none;
}

.primary-cta:hover::after {
    background-position: -200% 0;
}

.primary-cta:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(3, 233, 244, 0.35);
}

.primary-cta:focus-visible,
.ghost-cta:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}

.ghost-cta {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--text-secondary);
    padding: 16px 36px;
    font-size: 1.05rem;
}

.ghost-cta:hover {
    border-color: var(--surface-border-hover);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* ---- Starfield ---- */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.stars::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.2;
    animation: twinkle 6s ease-in-out infinite alternate;
}

.stars2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 125px 75px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 75px 125px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 100px 25px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 150px 150px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 175px 175px;
    opacity: 0.3;
    animation: twinkle 8s ease-in-out infinite alternate;
}

.stars3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 10px 10px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 30px 60px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 65px 15px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 85px 85px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 110px 45px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 140px 20px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 180px 100px;
    opacity: 0.15;
    animation: twinkle 12s ease-in-out infinite alternate;
}

/* ---- Nebula Haze ---- */
.nebula {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(3, 233, 244, 0.025) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 144, 226, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(3, 233, 244, 0.015) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Floating Stars ---- */
.floating-star {
    position: fixed;
    width: 2.5px;
    height: 2.5px;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 4px 1px rgba(255,255,255,0.2);
    z-index: 1;
    animation: float var(--dur, 8s) ease-in-out infinite;
}

.star-twinkle {
    position: fixed;
    width: 1px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    box-shadow: 0 0 2px 0.5px rgba(255,255,255,0.3);
    z-index: 1;
    animation: twinkle-star var(--dur, 5s) ease-in-out infinite;
}

/* ---- Floating Planet ---- */
.floating-planet {
    position: fixed;
    left: 4%;
    top: 50%;
    width: 90px;
    height: 90px;
    z-index: 1;
    opacity: 0.5;
    animation: planet-float 14s ease-in-out infinite;
}

/* ---- Animations ---- */
@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-8px); }
    66% { transform: translateY(4px); }
}

@keyframes twinkle-star {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(74, 144, 226, 0.15), 0 8px 32px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 0 35px rgba(74, 144, 226, 0.3), 0 8px 32px rgba(0,0,0,0.5); }
}

/* ---- Scroll Reveal ---- */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Navigation (dark glass) ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: rgba(8, 12, 28, 0.4);
    backdrop-filter: blur(var(--nav-blur)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--nav-blur)) saturate(1.2);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s var(--ease), backdrop-filter 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

/* On large screens, limit nav bar content to 75% width so options aren't stretched to the edges */
@media (min-width: 769px) {
    .navbar .nav-container {
        max-width: 75vw;
    }
}

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

.navbar.scrolled {
    background: rgba(8, 12, 28, 0.65);
    backdrop-filter: blur(var(--nav-blur-scrolled)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--nav-blur-scrolled)) saturate(1.2);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1001;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Burger button – hidden on desktop */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--white);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-burger:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}
.nav-burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar.open .nav-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.open .nav-burger-line:nth-child(2) {
    opacity: 0;
}
.navbar.open .nav-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay – full viewport, shown only on small screens when .navbar.open */
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 999;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.navbar.open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Let the full-screen overlay extend past the navbar when menu is open (stops clipping) */
.navbar.open {
    overflow: visible;
}
.nav-menu .nav-link-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s var(--ease);
}
.nav-menu .nav-link-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s var(--ease);
    padding: 0.5rem 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link:hover {
    color: var(--white);
}

/* Language switcher in navbar: inline next to contact */
.navbar .language-switcher {
    position: static;
    bottom: auto;
    right: auto;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    backdrop-filter: none;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ---- Hero ---- */
.hero {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(22, 33, 62, 0.6) 0%, transparent 60%),
        linear-gradient(180deg, var(--space-deep) 0%, var(--space-blue) 25%, var(--space-navy) 60%, var(--space-black) 100%);
    text-align: center;
    position: relative;
    overflow-x: clip;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 3rem;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(3, 233, 244, 0.04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

/* ---- Hero: Two-column layout (ordernaut-landing) ---- */
.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 0;
    flex: 0 0 auto;
    padding-bottom: 0.5rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 560px;
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 24px rgba(3, 233, 244, 0.4);
}

.hero-text .highlight-glow {
    animation: highlight-pulse 2.5s ease-in-out infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(3, 233, 244, 0.5), 0 0 40px rgba(3, 233, 244, 0.3);
    }
    50% {
        text-shadow: 0 0 35px rgba(3, 233, 244, 0.8), 0 0 60px rgba(3, 233, 244, 0.5);
    }
}

.hero-subline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-cta .primary-cta {
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
    margin-top: -1.5rem;
}

.astronaut-container {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.astronaut-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(3, 233, 244, 0.2));
    animation: astronaut-float 6s ease-in-out infinite 4s;
}

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

/* ---- Aurora (animated gradient waves) ---- */
.hero-aurora {
    position: absolute;
    inset: -20%;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(3, 233, 244, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 40% at 50% 20%, rgba(3, 233, 244, 0.08) 0%, transparent 45%);
    animation: aurora-shift 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora-shift {
    0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
    33% { opacity: 0.9; transform: scale(1.05) translate(2%, -1%); }
    66% { opacity: 1; transform: scale(0.98) translate(-1%, 2%); }
}

/* ---- Blast ring ---- */
.hero-blast {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border: 3px solid rgba(3, 233, 244, 0.6);
    border-radius: 50%;
    z-index: 2;
    animation: blast-ring 2s cubic-bezier(0.2, 0, 0.4, 1) 0.2s forwards;
    pointer-events: none;
}

@keyframes blast-ring {
    0% {
        transform: scale(0.3);
        opacity: 1;
        border-color: rgba(3, 233, 244, 0.9);
    }
    100% {
        transform: scale(4);
        opacity: 0;
        border-color: rgba(3, 233, 244, 0);
    }
}

/* ---- Split curtain ---- */
.hero-curtain-left,
.hero-curtain-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 51%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2;
    pointer-events: none;
}

.hero-curtain-left {
    left: 0;
    animation: curtain-slide-left 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-curtain-right {
    right: 0;
    animation: curtain-slide-right 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes curtain-slide-left {
    to { transform: translateX(-100%); }
}

@keyframes curtain-slide-right {
    to { transform: translateX(100%); }
}

/* ---- Scan line ---- */
.hero-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(3, 233, 244, 0.8), transparent);
    box-shadow: 0 0 20px rgba(3, 233, 244, 0.6);
    z-index: 2;
    animation: scan-sweep 2s cubic-bezier(0.2, 0, 0.4, 1) 1s forwards;
    pointer-events: none;
}

@keyframes scan-sweep {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

/* ---- Shooting Stars (3 paths) ---- */
.shooting-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    box-shadow:
        0 0 8px 4px rgba(255,255,255,0.95),
        0 0 40px 8px rgba(3, 233, 244, 0.8),
        0 0 100px 16px rgba(3, 233, 244, 0.4);
    z-index: 2;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 30%, rgba(3, 233, 244, 0.5) 100%);
    transform: translate(-100%, -50%) rotate(-45deg);
    transform-origin: right center;
}

.shooting-star-1 {
    top: -5%;
    left: -5%;
    animation: shooting-star 1.6s cubic-bezier(0.1, 0, 0.9, 1) 0.3s forwards;
}

.shooting-star-2 {
    top: 15%;
    left: -10%;
    animation: shooting-star-2 1.5s cubic-bezier(0.1, 0, 0.9, 1) 0.9s forwards;
}

.shooting-star-3 {
    top: -8%;
    right: -5%;
    left: auto;
    animation: shooting-star-3 1.7s cubic-bezier(0.1, 0, 0.9, 1) 1.5s forwards;
}

.shooting-star-2::before { transform: translate(-100%, -50%) rotate(-30deg); }
.shooting-star-3::before { transform: translate(-100%, -50%) rotate(-60deg); }

@keyframes shooting-star {
    0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
    8% { opacity: 1; transform: translate(10vw, 10vh) scale(1); }
    88% { opacity: 1; transform: translate(90vw, 90vh) scale(1); }
    100% { opacity: 0; transform: translate(100vw, 100vh) scale(0.3); }
}

@keyframes shooting-star-2 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
    10% { opacity: 1; transform: translate(12vw, 5vh) scale(1); }
    90% { opacity: 1; transform: translate(95vw, 75vh) scale(1); }
    100% { opacity: 0; transform: translate(105vw, 85vh) scale(0.3); }
}

@keyframes shooting-star-3 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
    8% { opacity: 1; transform: translate(-5vw, 12vh) scale(1); }
    90% { opacity: 1; transform: translate(85vw, 95vh) scale(1); }
    100% { opacity: 0; transform: translate(95vw, 105vh) scale(0.3); }
}

/* ---- Constellation ---- */
.constellation {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.constellation-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(3, 233, 244, 0.6);
    opacity: 0;
    animation: constellation-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(1.2s + var(--i, 0) * 0.15s);
}

@keyframes constellation-pop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    70% {
        opacity: 1;
        transform: scale(1.4);
    }
    100% {
        opacity: 0.85;
        transform: scale(1);
    }
}

/* ---- Hero title: word-by-word pop ---- */
.hero-title {
    overflow: hidden;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.5);
    filter: blur(10px);
    animation: hero-word-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .highlight.hero-word {
    animation: hero-word-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               highlight-pulse 2.5s ease-in-out 1.5s infinite;
}

@keyframes hero-word-pop {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.4);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.08);
        filter: blur(0);
    }
    80% {
        transform: translateY(3px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ---- Astronaut trail ---- */
.astronaut-trail {
    position: absolute;
    left: -80px;
    top: 50%;
    width: 120px;
    height: 60px;
    margin-top: -30px;
    background: linear-gradient(90deg, transparent, rgba(3, 233, 244, 0.25), rgba(3, 233, 244, 0.05));
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    animation: trail-fade 3s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes trail-fade {
    0% { opacity: 0.9; transform: scaleX(0.5); }
    100% { opacity: 0; transform: scaleX(1); }
}

/* ---- Hero Reveal: subline, CTAs, astronaut ---- */
.hero-reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(6px);
    animation: hero-reveal-dramatic 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-reveal-2 {
    animation-delay: 2s;
}

.hero-reveal-3 {
    animation-delay: 2.6s;
}

.hero-reveal-3 .primary-cta {
    animation: cta-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2.6s forwards;
}

@keyframes cta-pop {
    0% { opacity: 0; transform: scale(0.5); }
    70% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-reveal-4 {
    animation-delay: 1.4s;
    animation-name: hero-reveal-astronaut;
}

@keyframes hero-reveal-dramatic {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes hero-reveal-astronaut {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.5) rotate(-20deg);
        filter: blur(20px);
    }
    65% {
        opacity: 1;
        transform: translateX(-8%) scale(1.08) rotate(3deg);
        filter: blur(0);
    }
    82% {
        transform: translateX(3%) scale(1) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0);
        filter: blur(0);
    }
}

@keyframes hero-reveal-astronaut-mobile {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.6);
        filter: blur(14px);
    }
    70% {
        opacity: 1;
        transform: translateY(10px) scale(1.05);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
}

/* ---- Hero rotating word (typewriter-style) ---- */
.hero-headline {
    display: block;
    max-width: 100%;
}

.hero-brand {
    display: block;
    margin-bottom: 0.15em;
}

.hero-tagline {
    display: block;
    white-space: nowrap;
    font-size: 0.55em;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.15em;
}

.hero-rotating-large {
    display: block;
    font-size: 1em;
    font-weight: 700;
}

.rotating-word-wrap {
    display: inline-block;
    min-width: 0.5em;
    vertical-align: bottom;
    position: relative;
}

.rotating-word {
    display: inline-block;
    color: var(--accent-cyan);
    text-shadow: 0 0 24px rgba(3, 233, 244, 0.4);
    transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

.rotating-word-article {
    color: var(--text-secondary);
    text-shadow: none;
}

.rotating-word-noun {
    color: var(--accent-cyan);
    text-shadow: 0 0 24px rgba(3, 233, 244, 0.4);
}

.rotating-word.rotating-word-out {
    opacity: 0;
    transform: translateY(-8px);
}

.rotating-word.rotating-word-in {
    animation: rotating-word-in 0.35s var(--ease) forwards;
}

@keyframes rotating-word-in {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: 1.35rem;
    max-width: 640px;
    margin: 0 auto 0.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-subheadline-note {
    font-size: 0.85rem;
    max-width: 640px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding-top: 0.75rem;
    width: 100%;
    flex-shrink: 0;
}

.hero-benefits-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

/* Material Symbols – ensure font is applied (backup if Google stylesheet loads late) */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
}

.hero-benefit-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.hero-benefit-text {
    white-space: nowrap;
}

.hero-cta-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-scroll-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    padding: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.2s ease;
    animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
    color: var(--white);
    animation-play-state: paused;
}

.hero-scroll-indicator .material-symbols-outlined {
    font-size: 2.5rem;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---- Features ---- */
.features {
    background: rgba(0, 0, 5, 0.95);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 233, 244, 0.06) 0%, transparent 70%);
    z-index: -1;
}

.feature-icon {
    width: 32px;
    height: 32px;
    fill: var(--white);
    opacity: 0.9;
}

.feature-icon-material {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    width: auto;
    height: auto;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Kompatibel ---- */
.compat {
    background: rgba(0, 0, 5, 0.95);
}

.compat-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.compat-logo-wrap {
    flex-shrink: 0;
}

.compat-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.compat-text {
    flex: 1;
    min-width: 200px;
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.compat-coming-soon {
    margin-top: 2.5rem;
}

.compat-coming-soon-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compat-coming-soon-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.compat-partner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 140px;
}

.compat-partner span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.compat-logo-small {
    height: 32px;
    max-width: 100px;
}

@media (max-width: 640px) {
    .compat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .compat-logo {
        height: 40px;
    }

    .compat-partner {
        padding: 0.75rem 1rem;
        min-width: 0;
    }

    .compat-partner span {
        font-size: 0.9rem;
    }

    .compat-logo-small {
        height: 28px;
        max-width: 80px;
    }
}

/* ---- Pricing ---- */
.pricing {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(74, 144, 226, 0.04) 0%, transparent 50%),
        rgba(12, 12, 22, 0.96);
}

.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    transition: 0.3s var(--ease);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s var(--ease);
}

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

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

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
}

.pricing-card.featured {
    border-color: rgba(74, 144, 226, 0.4);
    animation: glow-pulse 4s ease-in-out infinite;
    transform: scale(1.02);
}

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

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 36px;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-icon {
    color: var(--accent-blue);
}

.pricing-price {
    margin: 1rem 0 0.5rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.pricing-card.featured .pricing-price .price {
    color: var(--accent-blue);
}

.pricing-card.featured .pricing-price .annual-price {
    color: var(--accent-blue);
    font-size: 2.5rem;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.captain-no-monthly,
.captain-monthly-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.annual-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.annual-price-line {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    white-space: nowrap;
}

.crossed-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.annual-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.annual-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.8rem;
}

.pricing-card.featured .pricing-features li i {
    color: var(--accent-blue);
}

.tax-compliance-note {
    text-align: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
}

.tax-compliance-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.3rem;
    font-weight: 500;
}

.tax-compliance-note p:last-child {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0;
}

.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    margin-left: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: background 0.3s var(--ease);
    vertical-align: middle;
}

.tooltip:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 400;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10000;
    max-width: 280px;
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Device Pricing (ordernaut-landing) */
.additional-pricing {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.device-pricing {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 720px;
    width: 100%;
    padding: 1.2rem 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.device-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.device-option strong {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.device-option span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.device-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* Screenshots */
.screenshots {
    background: linear-gradient(135deg, rgba(10,10,18,0.98) 0%, rgba(44,53,57,0.3) 50%, rgba(10,10,18,0.98) 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    padding: 2rem;
    text-align: center;
}

.screenshot-placeholder {
    width: 100%;
    max-width: 400px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-image {
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.lightbox-image:hover {
    transform: scale(1.02);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.close-lightbox {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
    z-index: 2010;
    transition: color 0.3s var(--ease);
}

.close-lightbox:hover {
    color: var(--accent-cyan);
}

.lightbox-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.lightbox-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.lightbox-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Payment Options */
.payment-options {
    margin: 3rem 0;
}

.payment-options h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.payment-card {
    padding: 2rem;
    text-align: center;
}

.payment-card.highlight {
    border-color: rgba(3, 233, 244, 0.3);
    background: rgba(3, 233, 244, 0.05);
}

.payment-icon {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.payment-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.payment-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.payment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-showcase {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(22, 33, 62, 0.45) 0%, transparent 65%),
        rgba(10, 10, 18, 0.94);
    padding-top: 6rem;
}

.testimonial-featured {
    padding: 2.2rem 2rem 1.8rem;
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(9, 28, 62, 0.65) 0%, rgba(10, 25, 54, 0.5) 100%), var(--surface);
    border-color: rgba(74, 144, 226, 0.28);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 6px;
    margin-left: auto;
}

.testimonial-featured blockquote {
    font-style: italic;
    color: var(--text-primary);
    font-size: 2rem;
    line-height: 1.7;
    margin: 0 0 0 1.2rem;
}

.testimonial-quote-icon {
    color: var(--accent-cyan);
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.7;
    text-shadow: 0 0 14px rgba(3, 233, 244, 0.4);
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--surface-border);
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(3, 233, 244, 0.22) 0%, rgba(3, 233, 244, 0.08) 70%);
    border: 1px solid rgba(3, 233, 244, 0.2);
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-author-meta {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.testimonial-author-meta strong {
    color: var(--white);
    font-weight: 600;
}

.testimonial-author-meta span {
    color: var(--text-muted);
    font-size: 1rem;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(3, 233, 244, 0.12);
    border: 1px solid rgba(3, 233, 244, 0.35);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Lead Form */
.lead-form {
    background: linear-gradient(180deg, rgba(10,10,18,0.98) 0%, rgba(44,53,57,0.4) 100%);
}

.lead-form .form-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 3rem;
}

/* Trust Row */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

/* ---- FAQ Section ---- */
.faq-section {
    background: rgba(12, 12, 22, 0.96);
}

.faq-list {
    max-width: 720px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    list-style: none;
    user-select: none;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-cyan);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.8rem 1.4rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-more a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.faq-more a:hover {
    color: var(--white);
}

.faq-page-section {
    padding-top: 10rem;
}

/* ---- Benefits ---- */
.benefits {
    background: rgba(0, 0, 5, 0.95);
}

.benefit-list {
    max-width: 720px;
    margin: 4rem auto 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.benefit-item p {
    margin: 0;
    font-weight: 600;
}

.benefit-item p span {
    display: block;
    font-weight: 300;
    margin-top: 0.2rem;
}

.benefit-item:hover {
    transform: translateY(-4px) scale(1.01);
}

.benefit-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    margin: 0.5rem 2rem;
}

.benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.08);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
    opacity: 0.85;
}

.benefit-icon-material {
    font-size: 1.75rem;
    color: var(--accent-cyan);
    width: auto;
    height: auto;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ---- Comparison ---- */
.comparison {
    background: rgba(12, 12, 22, 0.96);
}

.comparison-subtitle {
    font-size: 1.3rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 4rem !important;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    padding: 2.5rem 2rem;
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.comparison-x {
    color: rgba(255, 100, 100, 0.7);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.comparison-check {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.comparison-traditional {
    opacity: 0.7;
}

.comparison-ordernaut {
    border-color: rgba(3, 233, 244, 0.2);
    background: rgba(3, 233, 244, 0.03);
}

/* ---- Powered By ---- */
.powered-by {
    background: rgba(0, 0, 5, 0.95);
    display: none; /* deactivated for now – remove this line to show again */
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s var(--ease);
}

.partner-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.4s var(--ease);
}

.partner-logo img {
    height: 32px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1) brightness(2);
    transition: all 0.4s var(--ease);
}

.partner-logo:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.04);
}

.partner-logo:hover span,
.partner-logo:hover img {
    color: var(--white);
    opacity: 1;
}

/* ---- Contact ---- */
.contact {
    background:
        linear-gradient(180deg, rgba(10, 10, 18, 0.96) 0%, rgba(44, 53, 57, 0.4) 100%);
}

.form-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
}

.form-container h2 {
    margin-bottom: 0.8rem;
}

.form-container .section-subtitle {
    margin-bottom: 2rem;
}

.reassurance-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.reassurance-row > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reassurance-row i {
    color: var(--accent-cyan);
    font-size: 0.75rem;
}

/* ---- Footer ---- */
.footer {
    background: transparent;
    text-align: center;
    padding: 3rem 0 4rem;
    position: relative;
    z-index: 2;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin-bottom: 3rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.footer strong {
    color: var(--white);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-copy {
    font-size: 0.8rem !important;
    color: var(--text-caption) !important;
}

/* ---- Language Switcher ---- */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.8);
    border-radius: var(--radius-sm);
    padding: 6px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* In navbar: overridden by .navbar .language-switcher above in nav section */

.language-switcher button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 10px;
    margin: 2px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.language-switcher button.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.language-switcher button:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        padding-top: 5.5rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 0 5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero .container,
    .hero-content {
        min-height: 90vh;
        max-width: 100%;
        width: 100%;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        min-height: auto;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

    .hero-image {
        display: none;
    }

    .hero-reveal-4 {
        animation-name: hero-reveal-astronaut-mobile;
    }

    .hero-scroll-indicator {
        margin-top: 3rem;
    }

    .hero-subheadline {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .hero-subheadline-note {
        margin-bottom: 2rem;
    }

    .hero-benefits {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0;
        margin-top: 3rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .hero-benefits::-webkit-scrollbar {
        display: none;
    }

    .hero-benefits-track {
        display: flex;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: nowrap;
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .hero-benefits-track .hero-benefit {
        scroll-snap-align: center;
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-benefits-track .hero-benefit-icon {
        font-size: 1rem;
    }

    .cta-subtext {
        margin-bottom: 3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta {
        width: 100%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 16px 32px;
    }

    .ghost-cta {
        width: 100%;
        max-width: 320px;
    }

    .device-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .device-divider {
        height: 1px;
        width: 60%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-showcase {
        padding-top: 5rem;
    }

    .testimonial-featured {
        padding: 1.5rem;
    }

    .testimonial-featured blockquote {
        font-size: 1rem;
        margin-left: 0;
    }

    .testimonial-quote-icon {
        font-size: 3rem;
    }

    .testimonial-author-row {
        align-items: flex-start;
    }

    .testimonial-stars {
        width: 100%;
        margin-left: 0;
        letter-spacing: 4px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

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

    .benefit-item {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
        align-items: flex-start;
    }

    .benefit-text {
        align-items: flex-start;
    }

    .partner-logos {
        gap: 2rem;
    }

    .partner-logo {
        padding: 1.2rem 2rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }

    .reassurance-row {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .trust-row {
        gap: 1.5rem;
    }

    .floating-planet {
        width: 50px;
        height: 50px;
        left: 3%;
        top: 60%;
    }

    .comparison-subtitle {
        font-size: 1.1rem !important;
    }
}

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

    .section-label {
        font-size: 0.7rem;
    }
}

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

    .fade-in-section {
        opacity: 1;
        transform: none;
    }

    .hero-reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .shooting-star,
    .hero-blast,
    .hero-scan {
        display: none;
    }

    .hero-aurora {
        animation: none;
    }

    .hero-curtain-left,
    .hero-curtain-right {
        animation: none;
        opacity: 0;
        visibility: hidden;
    }

    .constellation-dot {
        animation: none;
        opacity: 0.85;
    }

    .hero-word {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-title .highlight.hero-word {
        animation: none;
    }

    .astronaut-trail {
        display: none;
    }

    .highlight-glow {
        animation: none;
    }

    .rotating-word,
    .rotating-word.rotating-word-out,
    .rotating-word.rotating-word-in {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }

    body {
        opacity: 1;
    }

    .scroll-progress {
        display: none;
    }
}
