:root {
    --void: #0b0a14;
    --void-deep: #07060d;
    --surface: rgba(21, 19, 31, 0.72);
    --surface-solid: #15131f;
    --border: rgba(255, 255, 255, 0.08);
    --border-warm: rgba(245, 158, 11, 0.22);
    --border-pink: rgba(236, 72, 153, 0.22);
    --violet: #7c3aed;
    --violet-glow: rgba(124, 58, 237, 0.35);
    --pink: #ec4899;
    --pink-soft: rgba(236, 72, 153, 0.15);
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, 0.12);
    --cyan: #06b6d4;
    --cyan-soft: rgba(6, 182, 212, 0.12);
    --text: #f0f0f5;
    --text-muted: #9ca3af;
    --text-dim: #6b6b74;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   BACKGROUND
   ============================================================ */
.bg-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.bg-gradient {
    background:
        radial-gradient(ellipse 100% 60% at 15% 5%, rgba(124, 58, 237, 0.22), transparent 55%),
        radial-gradient(ellipse 80% 55% at 90% 10%, rgba(236, 72, 153, 0.16), transparent 48%),
        radial-gradient(ellipse 90% 50% at 50% 110%, rgba(245, 158, 11, 0.18), transparent 45%),
        radial-gradient(ellipse 60% 35% at 70% 60%, rgba(124, 58, 237, 0.08), transparent 50%);
}

.bg-warm-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 45% at 50% 100%, rgba(245, 158, 11, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 20% 90%, rgba(236, 72, 153, 0.07) 0%, transparent 50%);
    animation: warm-breathe 10s ease-in-out infinite alternate;
}

@keyframes warm-breathe {
    0% { opacity: 0.85; transform: scale(1); }
    100% { opacity: 1.15; transform: scale(1.04); }
}

.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
}

.bg-noise {
    opacity: 0.035;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.55;
}

.orb-1 {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    top: -25%;
    left: -15%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.55) 0%, transparent 62%);
    animation: aurora-drift 22s ease-in-out infinite alternate;
}

.orb-2 {
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    top: 18%;
    right: -20%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.42) 0%, transparent 56%);
    animation: aurora-drift 28s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 48vw;
    height: 48vw;
    max-width: 650px;
    max-height: 650px;
    bottom: -12%;
    left: 32%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.40) 0%, transparent 58%);
    animation: aurora-drift 32s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(6%, -4%) scale(1.06) rotate(4deg); }
    66% { transform: translate(-4%, 5%) scale(0.97) rotate(-3deg); }
    100% { transform: translate(3%, 2%) scale(1.03) rotate(2deg); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    background: rgba(11, 10, 20, 0.72);
    border-bottom: 1px solid var(--border);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(11, 10, 20, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
}

.nav-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--violet);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.45);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--amber), var(--pink));
    transition: width 0.25s ease;
}

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

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

.nav-link-cta {
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--amber-soft);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.18);
    color: var(--amber);
}

.nav-link-docs {
    color: var(--violet);
    border: 1px solid rgba(124, 58, 237, 0.35);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-link-docs::after {
    display: none;
}

.nav-link-docs:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.18);
    color: var(--violet);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.96rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: linear-gradient(135deg, var(--violet), var(--amber));
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.32), 0 0 30px rgba(245, 158, 11, 0.12);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45), 0 0 50px rgba(245, 158, 11, 0.22);
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--border-warm);
    background: var(--amber-soft);
    color: var(--text);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.btn-docs {
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--violet);
}

.btn-docs:hover {
    border-color: rgba(124, 58, 237, 0.55);
    background: rgba(124, 58, 237, 0.08);
    color: var(--violet);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.12);
}

.btn-arrow {
    transition: transform 0.25s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    position: relative;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(21, 19, 31, 0.35) 0%, rgba(21, 19, 31, 0.55) 50%, rgba(21, 19, 31, 0.35) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-warm {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245, 158, 11, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 80% 100%, rgba(236, 72, 153, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(21, 19, 31, 0.45) 0%, rgba(21, 19, 31, 0.65) 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.06);
    border-bottom: 1px solid rgba(245, 158, 11, 0.06);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-soft);
    border: 1px solid rgba(245, 158, 11, 0.18);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--violet), var(--pink), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.text-strike {
    text-decoration: line-through;
    opacity: 0.45;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.badge-accent {
    border-color: rgba(124, 58, 237, 0.35);
    color: var(--violet);
    background: rgba(124, 58, 237, 0.06);
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 10px var(--amber);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--violet), var(--pink), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 5s ease infinite;
}

.hero-title-highlight {
    color: var(--amber);
}

.typing-cursor {
    color: var(--pink);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

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

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 520px;
    line-height: 1.75;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--void);
    margin-right: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.proof-text strong {
    color: var(--text);
    font-weight: 600;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background:
        radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 30% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
    filter: blur(55px);
    animation: pulse-glow 6s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.6; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1.08); }
}

.hero-visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.12);
    animation: ring-spin 24s linear infinite;
}

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

.ring-2 {
    width: 125%;
    height: 125%;
    border-color: rgba(236, 72, 153, 0.08);
    animation-duration: 34s;
    animation-direction: reverse;
}

.ring-3 {
    width: 150%;
    height: 150%;
    border-color: rgba(245, 158, 11, 0.06);
    animation-duration: 46s;
}

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

.hero-image {
    width: 88%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(124, 58, 237, 0.18),
        0 0 120px rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.18);
    position: relative;
    z-index: 2;
    animation: hero-breathe 8s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-10px) scale(1.015); }
}

.floating-chip {
    position: absolute;
    z-index: 3;
    padding: 0.6rem 1.05rem;
    background: rgba(21, 19, 31, 0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    animation: chip-float 6s ease-in-out infinite;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(124, 58, 237, 0.12);
    transition: all 0.3s ease;
}

.floating-chip:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(245, 158, 11, 0.18);
    transform: translateY(-4px) scale(1.03);
}

.chip-1 {
    top: 10%;
    left: -6%;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 22%;
    right: -8%;
    animation-delay: 2.5s;
}

.chip-3 {
    top: 58%;
    left: -10%;
    animation-delay: 5s;
}

@keyframes chip-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.8deg); }
    50% { transform: translateY(-18px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-0.8deg); }
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.chip-dot.green {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.chip-dot.amber {
    background: var(--amber);
    box-shadow: 0 0 8px var(--amber);
}

.chip-dot.cyan {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.chip-icon {
    font-size: 0.9rem;
}

.scroll-hint {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.35;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================================
   VISION
   ============================================================ */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
    align-items: stretch;
}

.vision-card {
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.vision-old {
    background: var(--surface);
}

.vision-old:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.vision-new {
    background: var(--surface);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.08);
}

.vision-new:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.4),
        0 0 70px rgba(245, 158, 11, 0.12);
    transform: translateY(-6px);
}

.vision-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.04));
    z-index: 0;
}

.vision-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.label-accent {
    color: var(--amber);
}

.vision-comparison-list {
    position: relative;
    z-index: 1;
}

.vision-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem;
    border-radius: var(--radius-md);
}

.vision-item.faded {
    opacity: 0.55;
}

.vision-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vision-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: var(--text);
}

.vision-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.vision-divider-or {
    text-align: center;
    padding: 0.75rem 0;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-style: italic;
}

.vision-headline {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.vision-headline em {
    font-style: normal;
    color: var(--amber);
}

.vision-pillars {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    padding: 1.15rem 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.pillar:hover {
    border-color: var(--border-warm);
    background: var(--amber-soft);
    transform: translateY(-3px);
}

.pillar-icon {
    font-size: 1.6rem;
}

/* ============================================================
   SYMBIOSIS
   ============================================================ */
.symbiosis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.symbiosis-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.symbiosis-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.38),
        0 0 40px rgba(245, 158, 11, 0.08);
    transform: translateY(-6px);
}

.symbiosis-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

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

.symbiosis-problem {
    opacity: 0.85;
}

.symbiosis-card-icon {
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
}

.symbiosis-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.symbiosis-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.symbiosis-fails {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.symbiosis-fails li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.symbiosis-fails li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
}

.symbiosis-verdict {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pink);
    padding: 0.7rem 1rem;
    background: var(--pink-soft);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(236, 72, 153, 0.18);
    text-align: center;
}

.symbiosis-fusion {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    overflow: hidden;
}

.symbiosis-fusion-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

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

.symbiosis-fusion-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-soft);
    border: 1px solid rgba(245, 158, 11, 0.18);
    margin-bottom: 1.25rem;
}

.symbiosis-fusion h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-bottom: 2.25rem;
    line-height: 1.3;
}

.symbiosis-fusion em {
    font-style: normal;
    color: var(--amber);
}

.symbiosis-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.symbiosis-benefit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.symbiosis-benefit strong {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: var(--text);
}

.symbiosis-benefit p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.03) 30%, rgba(245, 158, 11, 0.02) 70%, transparent 100%);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cap-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
}

.cap-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cap-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(124, 58, 237, 0.18), transparent 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

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

.card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.cap-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.cap-card-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(55px);
    top: -40px;
    right: -40px;
    opacity: 0.25;
    transition: opacity 0.35s ease;
}

.cap-card:hover .cap-card-glow {
    opacity: 0.5;
}

.glow-cyan { background: var(--cyan); }
.glow-violet { background: var(--violet); }
.glow-pink { background: var(--pink); }
.glow-amber { background: var(--amber); }
.glow-mixed { background: linear-gradient(var(--violet), var(--pink)); }

.cap-hero-card {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr;
}

.cap-icon-large {
    font-size: 3.2rem;
    margin-bottom: 1.1rem;
}

.cap-icon {
    font-size: 2.1rem;
    margin-bottom: 0.85rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cap-card:hover .cap-icon {
    transform: scale(1.08);
}

.cap-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.cap-hero-card h3 {
    font-size: 1.7rem;
}

.cap-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.cap-demo-bar {
    margin-top: 1.75rem;
    height: 6px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.cap-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    border-radius: 4px;
    animation: scan 3.5s infinite linear;
}

@keyframes scan {
    0% { left: -35%; }
    100% { left: 100%; }
}

/* ============================================================
   DOCUMENTATION
   ============================================================ */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.docs-card {
    display: flex;
    flex-direction: column;
    padding: 1.85rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.docs-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-6px);
    background: rgba(21, 19, 31, 0.85);
    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(245, 158, 11, 0.1);
}

.docs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.docs-card:hover::before {
    left: 100%;
}

.docs-card-featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.05));
    border-color: rgba(124, 58, 237, 0.3);
}

.docs-card-featured:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.docs-card-icon {
    font-size: 2.1rem;
    margin-bottom: 0.85rem;
}

.docs-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: var(--text);
}

.docs-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    flex: 1;
}

.docs-card-link {
    color: var(--amber);
    font-size: 0.86rem;
    font-weight: 600;
    margin-top: 1.15rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.docs-card:hover .docs-card-link {
    gap: 0.55rem;
}

.docs-cta {
    text-align: center;
    margin-top: 2.75rem;
}

/* ============================================================
   STORIES / A DAY WITH EIDOLON
   ============================================================ */
.stories-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
    max-width: 820px;
    margin: 0 auto;
}

.story-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.75rem;
    align-items: start;
}

.story-time {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--amber);
    padding-top: 0.6rem;
    text-align: right;
    white-space: nowrap;
}

.story-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.story-content:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(245, 158, 11, 0.08);
    transform: translateX(6px);
}

.story-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.story-content:hover::before {
    opacity: 1;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.tag-morning {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.18);
}

.tag-work {
    background: rgba(124, 58, 237, 0.1);
    color: var(--violet);
    border: 1px solid rgba(124, 58, 237, 0.18);
}

.tag-life {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    border: 1px solid rgba(236, 72, 153, 0.18);
}

.tag-night {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.18);
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    color: var(--text);
}

.story-chat {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.chat-bubble {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    max-width: 92%;
}

.chat-ai {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 5px;
    color: var(--text);
    align-self: flex-start;
}

.chat-user {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-md) var(--radius-md) 5px var(--radius-md);
    color: var(--text-muted);
    align-self: flex-end;
}

.chat-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.chat-ai .chat-name {
    color: var(--amber);
}

.chat-user .chat-name {
    color: var(--text-dim);
}

.story-insight {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
    padding: 0.9rem 1.1rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.08);
}

.story-insight strong {
    color: var(--text);
}

.story-insight em {
    color: var(--amber);
    font-style: normal;
}

/* ============================================================
   SCENARIOS
   ============================================================ */
.scenario-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.scenario-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.scenario-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.38),
        0 0 40px rgba(245, 158, 11, 0.08);
}

.scenario-featured {
    border-color: rgba(124, 58, 237, 0.28);
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.1);
}

.scenario-featured:hover {
    transform: translateY(-14px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        0 0 55px rgba(245, 158, 11, 0.12);
}

.scenario-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.03));
    pointer-events: none;
}

.scenario-visual {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.scenario-emoji {
    font-size: 2rem;
}

.scenario-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.scenario-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.scenario-list li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scenario-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.02) 50%, transparent 100%);
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--violet), var(--pink), rgba(245, 158, 11, 0.25));
}

.timeline-item {
    position: relative;
    padding-left: 58px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    border-color: var(--amber);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
}

.timeline-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
}

.timeline-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
    transform: translateX(8px);
}

.timeline-item.active .timeline-card {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.32),
        0 0 35px rgba(245, 158, 11, 0.08);
}

.timeline-phase {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber);
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    color: var(--text);
}

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

.timeline-card li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timeline-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--violet);
    font-size: 0.8rem;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.partner-item {
    background: rgba(21, 19, 31, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.6rem 2.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    transition: all 0.35s ease;
    min-width: 140px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.partner-item:hover {
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateY(-5px) scale(1.03);
    background: rgba(21, 19, 31, 0.72);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(245, 158, 11, 0.1);
}

.partner-logo {
    color: var(--text-muted);
    transition: all 0.35s ease;
}

.partner-item:hover .partner-logo {
    color: var(--amber);
    transform: scale(1.1);
}

.partner-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.35s ease;
}

.partner-item:hover span {
    color: var(--text);
}

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
    padding: 2rem 0 4rem;
}

.waitlist-wrapper {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-xl);
    padding: 4.5rem 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(124, 58, 237, 0.1);
}

.waitlist-wrapper::before {
    content: '';
    position: absolute;
    top: -65%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 550px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 58%);
    filter: blur(70px);
    pointer-events: none;
    animation: pulse-glow 7s ease-in-out infinite alternate;
}

.waitlist-wrapper::after {
    content: '';
    position: absolute;
    bottom: -45%;
    right: -15%;
    width: 500px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 55%);
    filter: blur(60px);
    pointer-events: none;
    animation: pulse-glow 9s ease-in-out infinite alternate-reverse;
}

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

.waitlist-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0.75rem 0 1.1rem;
    letter-spacing: -0.03em;
}

.waitlist-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-bottom: 2.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.waitlist-input-group {
    display: flex;
    gap: 0.85rem;
}

.waitlist-input {
    flex: 1;
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.96rem;
    outline: none;
    transition: all 0.25s ease;
}

.waitlist-input:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.waitlist-input::placeholder {
    color: var(--text-dim);
}

.waitlist-btn {
    white-space: nowrap;
}

.waitlist-message {
    margin-top: 1rem;
    font-size: 0.92rem;
    min-height: 1.5em;
}

.waitlist-message.success {
    color: #22c55e;
}

.waitlist-message.error {
    color: var(--pink);
}

.waitlist-fine {
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.8;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 4.5rem 0 2.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 0.85rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: var(--text);
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    transition: all 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
    }

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

    .hero-social-proof {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        order: -1;
    }

    .cap-hero-card {
        grid-column: span 3;
    }

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

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

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

    .symbiosis-benefits {
        grid-template-columns: 1fr;
    }

    .floating-chip {
        display: none;
    }

    .partners-grid {
        gap: 1rem;
    }

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

    .docs-card-featured {
        grid-column: span 2;
    }

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

    .scenario-featured {
        transform: none;
    }

    .scenario-featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 10, 20, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1.1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.1rem, 8vw, 2.9rem);
    }

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

    .cap-hero-card {
        grid-column: span 1;
    }

    .partner-item {
        min-width: 110px;
        padding: 1.1rem 1.5rem;
    }

    .waitlist-wrapper {
        padding: 3rem 1.5rem;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .vision-pillars {
        flex-direction: column;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .story-card {
        grid-template-columns: 1fr;
    }

    .story-time {
        text-align: left;
        padding-top: 0;
    }

    .symbiosis-fusion {
        padding: 2.25rem 1.5rem;
    }

    .section-container {
        padding: 5rem 1.25rem;
    }

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

    .docs-card-featured {
        grid-column: span 1;
    }
}

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