/* ============================================================
   SPACE — Cinematic Liquid Glass Design System
   Deep Void · Frosted Glass · Instrument Serif · Barlow
   ============================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Barlow:wght@300;400;500;600&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --bg: #02040A;
    --bg-card: rgba(255, 255, 255, 0.015);
    --bg-card-strong: rgba(255, 255, 255, 0.02);

    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    /* Increased contrast */
    --text-tertiary: rgba(255, 255, 255, 0.50);
    /* Increased contrast */
    --text-highlight: rgba(255, 255, 255, 0.95);

    --accent: #8B5CF6;
    --accent-2: #EC4899;
    --accent-3: #34D399;
    --neon-blue: #3B82F6;
    --gold: #FBBF24;
    --indigo: #6366F1;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --radius: 20px;
    --radius-lg: 2.5rem;
    --radius-pill: 100px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Barlow', sans-serif;
    --font-brand: 'Space Mono', monospace;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-size: 17px;
    /* Increased base size for readability */
}

main {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

::selection {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
    color: inherit;
}

/* ---------- LIQUID GLASS CSS ---------- */
.liquid-glass {
    background: rgba(255, 255, 255, 0.015);
    background-blend-mode: luminosity;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.05) 80%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.liquid-glass-strong {
    background: rgba(255, 255, 255, 0.02);
    background-blend-mode: luminosity;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.liquid-glass-strong::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 10px currentColor;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 20px currentColor;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 250% center;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal.delay-1 {
    transition-delay: 0.12s;
}

.reveal.delay-2 {
    transition-delay: 0.24s;
}

.reveal.delay-3 {
    transition-delay: 0.36s;
}

.reveal.delay-4 {
    transition-delay: 0.48s;
}

.reveal.delay-5 {
    transition-delay: 0.60s;
}

/* Blur text word animation */
.blur-word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(40px);
    transition: all 0.6s var(--ease);
}

.blur-word.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: #fff;
    color: var(--bg);
    font-weight: 600;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.15);
}

.btn-glass {
    padding: 14px 32px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

/* ---------- SECTION SHARED ---------- */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.section-label.centered {
    text-align: center;
}

.section-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 24px;
}

.section-heading .accent {
    color: var(--accent);
}

.section-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 540px;
    letter-spacing: 0.01em;
}

.section-desc.centered {
    margin: 0 auto;
    text-align: center;
}

/* ---------- NAVBAR ---------- */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 6px;
    transition: all 0.5s var(--ease);
    width: calc(100% - 48px);
    max-width: 1200px;
}

.nav-logo {
    font-family: var(--font-brand);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.04em;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 6px;
    border-radius: var(--radius-pill);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: var(--bg);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.12);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 900;
    margin-left: auto;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 10, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 850;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 36px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--text);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Animated gradient background */
.hero-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-bg canvas {
    width: 100%;
    height: 100%;
}

/* Gradient overlay to fade hero bottom to bg */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ambient orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.12);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.08);
    top: 10%;
    right: -150px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.06);
    bottom: 10%;
    left: 20%;
}

/* Hero content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s var(--ease) both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-3);
    animation: pulse-glow 2s ease-in-out infinite;
    color: var(--accent-3);
}

.hero-title {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.hero-title .brand-text {
    font-family: var(--font-brand);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.85;
    display: block;
    color: #FF2D2D;
    -webkit-text-fill-color: transparent;
    background: radial-gradient(circle, #FF2D2D 1px, transparent 1px);
    background-size: 4px 4px;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(255, 45, 45, 0.3)) drop-shadow(0 0 80px rgba(255, 45, 45, 0.15));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-highlight);
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.15s var(--ease) both;
}

.hero-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 44px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.2s var(--ease) both;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.25s var(--ease) both;
    margin-bottom: 20px;
}

.hero-note {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.3s var(--ease) both;
    margin-bottom: 60px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.6s 0.35s var(--ease) both;
    padding: 20px 12px;
    border-radius: var(--radius);
}

.hero-stat {
    text-align: center;
    padding: 0 36px;
}

.hero-stat:not(:last-child) {
    border-right: 1px solid var(--border);
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 32px;
    color: var(--text);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ---------- PHONE SHOWCASE ---------- */
.showcase {
    padding: 0 24px 160px;
    display: flex;
    justify-content: center;
    position: relative;
}

.showcase-wrap {
    position: relative;
    width: 300px;
}

.phone-3d {
    width: 300px;
    border-radius: 12px;
    background: transparent;
    box-shadow:
        0 60px 160px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(139, 92, 246, 0.1);
    position: relative;
    animation: float 7s ease-in-out infinite;
    transition: transform 0.3s var(--ease);
}

.phone-3d .notch {
    display: none;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.phone-screen {
    padding: 50px 16px 18px;
    height: 600px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Floating cards */
.float-card {
    position: absolute;
    padding: 14px 20px;
    border-radius: 16px;
    white-space: nowrap;
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.float-card .fc-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.float-card .fc-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
}

.fc-left-1 {
    left: -170px;
    top: 80px;
    animation-delay: 0.5s;
}

.fc-right-1 {
    right: -165px;
    top: 190px;
    animation-delay: 1s;
}

.fc-left-2 {
    left: -155px;
    bottom: 170px;
    animation-delay: 1.5s;
}

.highlight-green {
    color: var(--accent-3);
}

.highlight-pink {
    color: var(--accent-2);
}

/* ---------- MISSION STATEMENT ---------- */
.mission {
    padding: 120px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.mission-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    margin-bottom: 60px;
}

.mission-quote {
    font-family: var(--font-body);
    /* Changed from cursive --font-heading to readable body font */
    font-style: normal;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.4;
    max-width: 900px;
    letter-spacing: -0.01em;
    text-wrap: balance;
    position: relative;
    z-index: 1;
    color: var(--text-highlight);
}

.mission .ambient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ---------- MARQUEE ---------- */
.marquee-section {
    padding: 0 0 100px;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 35s linear infinite;
    gap: 16px;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-tertiary);
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}

.marquee-item .emoji {
    font-size: 16px;
}

/* ---------- APP SHOWCASE (SPLIT LAYOUT) ---------- */
.app-showcase {
    padding: 140px 24px;
    position: relative;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-phone {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 80px rgba(139, 92, 246, 0.08);
    transition: transform 0.6s var(--ease);
}

.showcase-phone:hover {
    transform: scale(1.02);
}

.showcase-phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.showcase-phone-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.showcase-content .section-heading {
    font-size: clamp(36px, 5vw, 64px);
}

/* Spec grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.spec-card {
    padding: 24px;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.spec-icon {
    font-size: 20px;
    margin-bottom: 12px;
}

.spec-value {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 4px;
}

.spec-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- FEATURES BENTO GRID ---------- */
.features-section {
    padding: 140px 24px;
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 80px;
}

.features-section .ambient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
    filter: blur(120px);
    top: 20%;
    right: -200px;
    pointer-events: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    padding: 40px;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.bento-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.bento-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-card-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ---------- JOURNEY TIMELINE ---------- */
.timeline-section {
    padding: 140px 24px;
    position: relative;
}

.timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 100px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Center vertical line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Alternating layout */
.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(odd) .timeline-card {
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-card {
    text-align: left;
}

.timeline-card {
    flex: 1;
    padding: 32px;
    border-radius: var(--radius);
}

/* Timeline node (center dot) */
.timeline-node {
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
    z-index: 2;
}

.timeline-step-num {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.timeline-step-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 28px;
    margin-bottom: 12px;
}

.timeline-step-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ---------- THREE MODES (BENTO DESTINATIONS) ---------- */
.modes-section {
    padding: 140px 24px;
}

.modes-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.modes-header .section-heading {
    margin-bottom: 0;
}

.modes-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    white-space: nowrap;
}

.modes-link:hover {
    color: var(--text);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.mode-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid var(--border);
}

.mode-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(10, 10, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px 20px 80px;
}

.mode-card-bg img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s var(--ease);
}

.mode-card:hover .mode-card-bg img {
    transform: scale(1.03);
}

.mode-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 4, 10, 0.95) 0%, rgba(2, 4, 10, 0.5) 40%, rgba(2, 4, 10, 0.1) 100%);
    z-index: 1;
}

.mode-card-content {
    position: relative;
    z-index: 2;
}

.mode-card-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-3);
    margin-bottom: 10px;
}

.mode-card-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.mode-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.mode-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s var(--ease);
    width: fit-content;
}

.mode-card-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ---------- FAQ ACCORDION ---------- */
.faq-section {
    padding: 140px 24px;
}

.faq-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-radius: 16px;
    transition: all 0.3s var(--ease);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ---------- PRICING ---------- */
.pricing-section {
    padding: 140px 24px;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    padding: 48px 40px;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card.pro {
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.price-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.price-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 28px;
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 48px;
    margin-bottom: 8px;
}

.price-amount sup {
    font-size: 24px;
    vertical-align: super;
}

.price-amount .period {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-tertiary);
    font-style: normal;
}

.price-period {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check-icon {
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.ci-green {
    color: var(--accent-3);
}

.ci-purple {
    color: var(--accent);
}

.pricing-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
}

.cta-section .ambient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.06);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* ---------- FOOTER ---------- */
footer {
    border-top: 1px solid var(--border);
    padding: 80px 24px 40px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo {
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 24px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 28px;
}

.footer-email-wrap {
    display: flex;
    gap: 8px;
}

.footer-email {
    flex: 1;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    border: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(8px);
    outline: none;
    transition: all 0.3s;
}

.footer-email:focus {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.footer-email::placeholder {
    color: var(--text-tertiary);
}

.footer-subscribe {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--bg);
    background: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.footer-subscribe:hover {
    transform: scale(1.03);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-partners {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 14px;
    color: var(--text-tertiary);
    display: flex;
    gap: 16px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.legal-back {
    font-size: 13px;
    color: var(--text-tertiary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.legal-back:hover {
    color: var(--text);
}

.legal-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}

.legal-subtitle {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 60px;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 28px;
    margin: 48px 0 16px;
}

.legal-body h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 12px;
}

.legal-body p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-body ul,
.legal-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-body li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 6px;
    list-style: disc;
}

.legal-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .nav-pill {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .showcase-content .section-desc {
        margin: 0 auto;
    }

    .spec-grid {
        max-width: 400px;
        margin: 48px auto 0;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        max-width: 600px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .float-card {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-step,
    .timeline-step:nth-child(odd),
    .timeline-step:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
        gap: 0;
    }

    .timeline-step:nth-child(odd) .timeline-card,
    .timeline-step:nth-child(even) .timeline-card {
        text-align: left;
    }

    .timeline-node {
        left: 20px;
        top: 32px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .showcase {
        display: none;
    }

    .showcase-phone-wrap {
        display: none;
    }

    .hero-stat {
        padding: 12px 24px;
    }

    .hero-stat:not(:last-child) {
        border-right: 1px solid var(--border);
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    nav {
        top: 12px;
        padding: 0 4px;
        width: calc(100% - 24px);
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero-title .brand-text {
        font-size: clamp(60px, 18vw, 120px);
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .hero-stat {
        padding: 16px 0;
        width: 50%;
    }

    .hero-stat:not(:last-child) {
        border-right: none;
        border-bottom: none;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .hero-stat:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .showcase-wrap {
        width: 260px;
    }

    .phone-3d {
        width: 260px;
        border-radius: 36px;
    }

    .mode-card {
        min-height: 380px;
    }

    .timeline-step {
        padding-left: 48px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 36px 28px;
    }

    .footer-email-wrap {
        flex-direction: column;
    }
}