/* ═══════════════════════════════════════════════════
   DIGITAL DISCONNECTIONS — Investor Pitch Deck
   Cinematic Editorial Aesthetic
   ═══════════════════════════════════════════════════ */

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

:root {
    /* ── Palette ── */
    --ink:        #080c14;
    --night:      #0b1120;
    --deep:       #0f172a;
    --slate-900:  #0f172a;
    --slate-800:  #1e293b;
    --slate-700:  #334155;
    --slate-600:  #475569;
    --slate-500:  #64748b;
    --slate-400:  #94a3b8;
    --slate-300:  #cbd5e1;
    --slate-200:  #e2e8f0;
    --slate-100:  #f1f5f9;
    --slate-50:   #f8fafc;
    --white:      #ffffff;

    --blue-400:   #60a5fa;
    --blue-500:   #3b82f6;
    --blue-600:   #2563eb;
    --blue-700:   #1d4ed8;

    --emerald-300:#6ee7b7;
    --emerald-400:#34d399;
    --emerald-500:#10b981;
    --emerald-600:#059669;

    --copper:     #b87333;
    --copper-light:#d4976a;
    --warm:       #fef3e2;

    /* ── Type ── */
    --font-display: Didot, 'Bodoni MT', 'Noto Serif Display', 'GFS Didot', serif;
    --font-body: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;

    /* ── Layout ── */
    --max-w:      1200px;
    --max-w-narrow: 800px;
    --gutter:     clamp(20px, 4vw, 48px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font-body);
    color: var(--slate-300);
    background: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Paragraph readability — prevent overlong lines */
p { max-width: 65ch; }

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

/* ── Skip navigation link (WCAG 2.4.1) ── */
.skip-link {
    position: absolute;
    top: -999px;
    left: 8px;
    z-index: 9999;
    padding: 8px 16px;
    background: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}
.skip-link:focus { top: 8px; }
a { color: inherit; }

/* ═══════════════════════════════════════════════════
   GRAIN OVERLAY — Subtle film texture
   ═══════════════════════════════════════════════════ */
body::after {
    content: '';
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,12,20,.82);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
    background: rgba(8,12,20,.95);
    box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav-inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--gutter); height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--white);
}
.nav-brand img {
    height: 42px; width: auto;
    filter: brightness(1.1);
}
.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: -.02em; line-height: 1.2;
}
.nav-brand-text span { color: var(--blue-400); }
.nav-links {
    display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
    text-decoration: none; color: var(--slate-400);
    font-size: .88rem; font-weight: 500;
    letter-spacing: .01em;
    transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--emerald-500) !important;
    color: var(--ink) !important;
    padding: 10px 24px !important; border-radius: 8px;
    font-weight: 700 !important;
    letter-spacing: .02em;
    transition: background .25s, transform .25s !important;
}
.nav-cta:hover {
    background: var(--emerald-400) !important;
    transform: translateY(-1px);
}
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 22px; position: relative;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--slate-300); position: absolute; left: 0;
    transition: .3s ease;
    border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px var(--gutter) 80px;
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(37,99,235,.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(16,185,129,.05) 0%, transparent 60%),
        linear-gradient(175deg, var(--ink) 0%, var(--night) 40%, #081018 100%);
}
.hero::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 60%);
    pointer-events: none;
    animation: heroPulse 8s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.hero-logo {
    width: clamp(90px, 12vw, 140px);
    margin-bottom: 40px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 0 40px rgba(59,130,246,.15));
    animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hero-content { position: relative; z-index: 1; max-width: 840px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.2);
    padding: 8px 22px; border-radius: 100px;
    font-size: .78rem; font-weight: 700;
    color: var(--emerald-400);
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-tag::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--emerald-400);
    animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 28px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue-400), var(--emerald-400));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    white-space: nowrap;
}
.hero-deck {
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 500;
    color: var(--white);
    letter-spacing: .02em;
    margin-bottom: 32px;
}
.hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--slate-400);
    max-width: 600px; margin: 0 auto 44px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 64px;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 34px; border-radius: 10px;
    font-size: .95rem; font-weight: 700;
    text-decoration: none; transition: all .3s;
    cursor: pointer; border: none;
    font-family: var(--font-body);
    letter-spacing: .01em;
}
.btn-primary {
    background: var(--emerald-500); color: var(--ink);
}
.btn-primary:hover {
    background: var(--emerald-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,.3);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.18);
}
.btn-outline:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--slate-400); font-size: .72rem;
    letter-spacing: .12em; text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-chevron {
    color: var(--slate-400);
    opacity: 0.6;
    width: 28px; height: 28px;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%      { transform: translateX(-50%) translateY(8px); opacity: .4; }
}

/* ═══════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════ */
.section {
    padding: clamp(80px, 10vw, 130px) var(--gutter);
    position: relative;
}
.section-inner {
    max-width: var(--max-w); margin: 0 auto;
}
.section-narrow {
    max-width: var(--max-w-narrow); margin: 0 auto;
}
.section-label {
    font-size: .72rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 20px;
}
.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--slate-400);
    max-width: 580px;
    line-height: 1.85;
    margin-bottom: 56px;
}

/* Dark/light alternating backgrounds */
.section--dark {
    background: var(--ink);
}
.section--deep {
    background: var(--night);
}
.section--gradient {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37,99,235,.04) 0%, transparent 70%),
        var(--ink);
}
.section--warm {
    background:
        radial-gradient(ellipse 50% 60% at 30% 50%, rgba(184,115,51,.03) 0%, transparent 60%),
        var(--night);
}

/* ═══════════════════════════════════════════════════
   THE PROBLEM
   ═══════════════════════════════════════════════════ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}
.problem-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 44px 32px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.problem-number {
    font-family: var(--font-display);
    font-size: 3.4rem; font-weight: 700;
    color: rgba(255,255,255,.06);
    line-height: 1; margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.problem-card p {
    font-size: .93rem; color: var(--slate-400);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   STORY / MISSION — The editorial heart
   ═══════════════════════════════════════════════════ */
.story-intro {
    text-align: center;
    margin-bottom: 80px;
}
.story-intro .section-title {
    max-width: 700px; margin-left: auto; margin-right: auto;
}

/* Editorial photo + text layout */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.story-block--reverse {
    direction: rtl;
}
.story-block--reverse > * {
    direction: ltr;
}
.story-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.story-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    filter: contrast(1.05) saturate(.85);
    transition: transform .6s ease;
}
.story-photo:hover img {
    transform: scale(1.03);
}
/* Warm nostalgic overlay */
.story-photo::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(184,115,51,.12) 0%, transparent 60%),
        linear-gradient(to top, rgba(8,12,20,.3) 0%, transparent 40%);
    border-radius: 16px;
    pointer-events: none;
}
.story-photo-caption {
    position: absolute; bottom: 20px; left: 20px;
    font-size: .75rem; font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .06em;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.story-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}
.story-text p {
    font-size: 1.05rem;
    color: var(--slate-400);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -.015em;
    padding: 40px 0;
    max-width: 700px;
    margin: 20px auto 20px;
    text-align: center;
    position: relative;
}
.pull-quote::before {
    content: '';
    display: block;
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--blue-400), var(--emerald-400));
    margin: 0 auto 28px;
}
.pull-quote em {
    font-style: normal;
    color: var(--emerald-400);
}

/* Manifesto aside */
.story-aside {
    font-size: 1rem;
    color: var(--slate-400);
    font-style: italic;
    padding: 22px 28px;
    border-left: 3px solid var(--copper);
    background: rgba(184,115,51,.04);
    border-radius: 0 12px 12px 0;
    margin: 28px 0;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   SOLUTION
   ═══════════════════════════════════════════════════ */
.solution-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.pillar {
    text-align: center;
    padding: 44px 24px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 18px;
    transition: all .35s;
}
.pillar:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.1);
    transform: translateY(-4px);
}
.pillar-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 22px;
    border: 1px solid rgba(255,255,255,.06);
}
.pillar-icon--privacy  { background: rgba(37,99,235,.1); }
.pillar-icon--autonomy { background: rgba(16,185,129,.1); }
.pillar-icon--price    { background: rgba(184,115,51,.1); }
.pillar-icon--ads      { background: rgba(239,68,68,.08); }
.pillar h4 {
    font-size: .95rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.pillar p {
    font-size: .88rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 960px) {
    .products-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
.product-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 40px 34px;
    display: flex; flex-direction: column;
    transition: all .4s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}
.product-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,.06);
}
.product-status {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .7rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 16px; width: fit-content;
}
.status-testing {
    background: rgba(16,185,129,.08);
    color: var(--emerald-400);
    border: 1px solid rgba(16,185,129,.15);
}
.status-testing::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--emerald-400);
}
.status-dev {
    background: rgba(139,92,246,.06);
    color: #a78bfa;
    border: 1px solid rgba(139,92,246,.12);
}
.status-dev::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: #a78bfa;
}
.status-live {
    background: rgba(37,99,235,.08);
    color: var(--blue-400);
    border: 1px solid rgba(37,99,235,.15);
}
.status-live::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--blue-400);
}
.product-card h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 12px; letter-spacing: -.01em;
}
.product-card p {
    font-size: .92rem; color: var(--slate-400);
    line-height: 1.8; margin-bottom: 24px; flex: 1;
}
.product-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto;
}
.tag {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    color: var(--slate-400);
    padding: 5px 13px; border-radius: 6px;
    font-size: .74rem; font-weight: 600;
}
.play-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(37,99,235,.1);
    border: 1px solid rgba(37,99,235,.2);
    color: var(--blue-400);
    padding: 11px 20px; border-radius: 8px;
    text-decoration: none; font-size: .85rem; font-weight: 600;
    margin-top: 16px; width: fit-content;
    transition: all .25s;
}
.play-btn:hover {
    background: rgba(37,99,235,.18);
    transform: translateY(-2px);
}
.play-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Product card thumb + highlights ── */
.pcard-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.pcard-thumb {
    width: 30%;
    max-width: 120px;
    min-width: 64px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 30%;
    border: 2px solid rgba(255,255,255,.12);
    background: var(--slate-800);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    position: relative;
}
.pcard-thumb--light {
    background: #fdf2f2;
    border-color: rgba(0,0,0,.1);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.pcard-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pcard-header {
    flex: 1;
    min-width: 0;
}

.pcard-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.pcard-chip {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--slate-300);
}
.pcard-chip--accent {
    background: rgba(37,99,235,.1);
    border-color: rgba(37,99,235,.2);
    color: var(--blue-400);
}
.pcard-chip--price {
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.2);
    color: var(--emerald-400);
    font-size: .85rem;
}
.pcard-chip--metric {
    background: rgba(184,115,51,.1);
    border-color: rgba(184,115,51,.2);
    color: var(--copper-light);
}
.pcard-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.pcard-bullets li {
    font-size: .88rem;
    color: var(--slate-400);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    line-height: 1.55;
}
.pcard-bullets li:last-child { border-bottom: none; }
.pcard-bullets strong {
    color: var(--slate-200);
    font-weight: 600;
}

/* ── Light card variant (Cara) ── */
.product-card--light {
    background: #fff;
    border-color: rgba(0,0,0,.08);
}
.product-card--light:hover {
    border-color: rgba(0,0,0,.15);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    background: #fff;
}
.product-card--light h3 { color: var(--ink); }
.product-card--light p { color: var(--slate-600); }
.product-card--light .product-status { background: rgba(0,0,0,.04); }
.product-card--light .pcard-chip {
    background: rgba(0,0,0,.04);
    border-color: rgba(0,0,0,.08);
    color: var(--slate-600);
}
.product-card--light .pcard-chip--accent {
    background: rgba(37,99,235,.08);
    border-color: rgba(37,99,235,.15);
    color: var(--blue-600);
}
.product-card--light .pcard-bullets { border-top-color: rgba(0,0,0,.06); }
.product-card--light .pcard-bullets li {
    color: var(--slate-400);
    border-bottom-color: rgba(0,0,0,.04);
}
.product-card--light .pcard-bullets strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   MARKET OPPORTUNITY
   ═══════════════════════════════════════════════════ */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}
.stat-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 44px 32px;
    text-align: center;
    transition: all .35s;
}
.stat-card:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-3px);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.03em;
}
.stat-number--blue { color: var(--blue-400); }
.stat-number--emerald { color: var(--emerald-400); }
.stat-number--copper { color: var(--copper-light); }
.stat-label {
    font-size: .82rem; font-weight: 700;
    color: var(--slate-300);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.stat-desc {
    font-size: .88rem; color: var(--slate-400);
    line-height: 1.6;
}
.market-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.insight {
    padding: 36px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
}
.insight h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
}
.insight p {
    font-size: .92rem; color: var(--slate-400);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.team-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 40px 24px 34px;
    text-align: center;
    transition: all .35s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
    border-color: rgba(255,255,255,.1);
}
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0 auto 22px;
}
.av-blue    { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.av-emerald { background: linear-gradient(135deg, #047857, #10b981); }
.av-violet  { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
.av-rose    { background: linear-gradient(135deg, #be123c, #f43f5e); }
.av-amber   { background: linear-gradient(135deg, #b45309, #f59e0b); }
.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.team-credential {
    font-size: .75rem;
    color: var(--emerald-400);
    font-weight: 600;
    letter-spacing: .02em;
    margin-top: 6px;
    line-height: 1.4;
}
.team-role {
    font-size: .68rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--emerald-400);
    margin-bottom: 8px;
}
.team-card h3 {
    font-size: 1.05rem; color: var(--white);
    font-weight: 700; margin-bottom: 6px;
}
.team-nickname {
    font-family: var(--font-display);
    font-style: italic;
    font-size: .9rem; color: var(--slate-400);
    margin-bottom: 14px;
}
.team-edu {
    font-size: .8rem; color: var(--slate-400);
    line-height: 1.5; font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   INVEST / CONTACT
   ═══════════════════════════════════════════════════ */
.invest-section {
    background:
        radial-gradient(ellipse 60% 50% at 50% 80%, rgba(16,185,129,.04) 0%, transparent 60%),
        var(--night);
}
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}
.invest-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white); line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}
.invest-info > p {
    font-size: 1.05rem; color: var(--slate-400);
    line-height: 1.85; margin-bottom: 40px;
}
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 22px;
}
.ci-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.contact-item h4 {
    font-size: .72rem; font-weight: 700;
    color: var(--slate-400);
    margin-bottom: 4px;
    text-transform: uppercase; letter-spacing: .08em;
}
.contact-item a, .contact-item p {
    font-size: .98rem; color: var(--slate-300);
    text-decoration: none; font-weight: 500;
}
.contact-item a:hover { color: var(--emerald-400); }

/* Form */
.contact-form {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 22px;
    padding: 48px;
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; color: var(--white);
    margin-bottom: 6px;
}
.contact-form > p {
    font-size: .87rem; color: var(--slate-400); margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: .82rem; font-weight: 600;
    color: var(--slate-300); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 13px 18px;
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 10px;
    font-family: var(--font-body); font-size: .94rem;
    color: var(--white);
    background: rgba(255,255,255,.03);
    transition: border-color .25s, box-shadow .25s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-600);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group select option {
    background: var(--slate-800);
    color: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%; padding: 16px;
    background: var(--emerald-500); color: var(--ink);
    border: none; border-radius: 10px;
    font-family: var(--font-body);
    font-size: .95rem; font-weight: 700;
    cursor: pointer; transition: all .3s;
    margin-top: 8px;
    letter-spacing: .02em;
}
.form-submit:hover {
    background: var(--emerald-400);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(16,185,129,.25);
}
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-status {
    margin-top: 16px; padding: 14px 18px;
    border-radius: 10px; font-size: .9rem; display: none;
}
.form-status.success {
    display: block;
    background: rgba(16,185,129,.1);
    color: var(--emerald-400);
    border: 1px solid rgba(16,185,129,.2);
}
.form-status.error {
    display: block;
    background: rgba(239,68,68,.1);
    color: #f87171;
    border: 1px solid rgba(239,68,68,.15);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 52px var(--gutter) 32px;
}
.footer-inner {
    max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
    display: flex; justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px; flex-wrap: wrap; gap: 36px;
}
.footer-brand {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 10px;
}
.footer-brand img { height: 32px; width: auto; }
.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: var(--white);
}
.footer-brand-text span { color: var(--blue-400); }
.footer-tagline {
    font-size: .85rem; color: var(--slate-400);
    max-width: 300px; line-height: 1.65;
}
.footer-links { display: flex; gap: 56px; }
.footer-col h4 {
    font-size: .72rem; font-weight: 800; color: var(--slate-400);
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    text-decoration: none; color: var(--slate-400);
    font-size: .87rem; transition: color .2s;
}
.footer-col a:hover { color: var(--emerald-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    align-items: center;
    font-size: .8rem; flex-wrap: wrap; gap: 12px;
    color: var(--slate-600);
}
.footer-pledge strong { color: var(--emerald-400); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Stagger children */
.stagger-children > .reveal:nth-child(1) { transition-delay: .05s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: .19s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: .26s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: .33s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .solution-pillars { grid-template-columns: repeat(2, 1fr); }
    .market-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .story-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .story-block--reverse { direction: ltr; }
    .invest-grid { grid-template-columns: 1fr; gap: 44px; }
    .market-insights { grid-template-columns: 1fr; }
    .footer-links { gap: 36px; }
    .problem-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGES
   ═══════════════════════════════════════════════════ */
.product-detail { max-width: 960px; margin: 0 auto; }
.product-detail-header {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 48px;
}
.product-detail-icon {
    width: 72px; height: 72px; min-width: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255,255,255,.08);
}
.product-detail-thumb {
    width: 80px; height: 80px; min-width: 80px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--slate-800);
}
.product-detail-thumb--light {
    background: #fdf2f2;
    border-color: rgba(0,0,0,.08);
}
.product-detail-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.product-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--white);
    line-height: 1.15; letter-spacing: -.02em;
    margin-bottom: 4px;
}
.product-detail-sub {
    font-size: 1.05rem; color: var(--slate-400);
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}
.product-detail-main h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 14px; margin-top: 36px;
    letter-spacing: -.01em;
}
.product-detail-main h3:first-child { margin-top: 0; }
.product-detail-main p {
    font-size: 1rem; color: var(--slate-400);
    line-height: 1.85; margin-bottom: 14px;
}
.product-detail-sidebar {
    position: sticky; top: 100px;
}
.product-spec {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.product-spec:first-child { padding-top: 0; }
.product-spec h4 {
    font-size: .7rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--slate-400); margin-bottom: 6px;
}
.product-spec p {
    font-size: .92rem; color: var(--slate-300);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   TEAM DETAIL PAGES
   ═══════════════════════════════════════════════════ */
.team-detail { max-width: 960px; margin: 0 auto; }
.team-detail-header {
    display: flex; align-items: center; gap: 28px;
    margin-bottom: 44px;
}
.team-detail-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700; color: var(--white);
    line-height: 1.15; letter-spacing: -.02em;
    margin-bottom: 4px;
}
.team-detail-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}
.team-detail-main p {
    font-size: 1rem; color: var(--slate-400);
    line-height: 1.85; margin-bottom: 16px;
}
.team-detail-sidebar {
    position: sticky; top: 100px;
}

/* ═══════════════════════════════════════════════════
   MANIFESTO PAGE
   ═══════════════════════════════════════════════════ */
.manifesto-body p {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    color: var(--slate-400);
    line-height: 1.9;
    margin-bottom: 18px;
}
.manifesto-lead {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem) !important;
    font-weight: 700;
    color: var(--white) !important;
    line-height: 1.4 !important;
}
.story-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--blue-400); text-decoration: none;
    font-size: .9rem; font-weight: 600;
    margin-bottom: 48px;
    transition: color .25s;
}
.story-back-link:hover { color: var(--emerald-400); }

/* ═══════════════════════════════════════════════════
   RESEARCH PAGE
   ═══════════════════════════════════════════════════ */

/* Lab infrastructure cards */
.lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 8px;
}
.lab-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 40px 34px;
    transition: all .4s;
    position: relative;
}
.lab-card:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.lab-card--highlight {
    border-color: rgba(16,185,129,.15);
    background: rgba(16,185,129,.02);
}
.lab-card--highlight::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-500), transparent);
}
.lab-card-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
}
.lab-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.12);
    color: var(--blue-400);
}
.lab-icon--gpu {
    background: rgba(16,185,129,.08);
    border-color: rgba(16,185,129,.12);
    color: var(--emerald-400);
}
.lab-card h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 12px; letter-spacing: -.01em;
}
.lab-card-desc {
    font-size: .93rem; color: var(--slate-400);
    line-height: 1.8; margin-bottom: 28px;
}
.lab-specs {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 20px;
}
.lab-spec {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
}
.lab-spec:last-child { border-bottom: none; }
.lab-spec-label {
    font-size: .75rem; font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.lab-spec-value {
    font-size: .9rem; color: var(--slate-300);
    text-align: right;
}
.lab-spec-mono {
    font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
    font-size: .82rem;
}

/* Research pillars */
.research-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.research-pillar {
    padding: 44px 32px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}
.research-pillar:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.rp-number {
    font-family: var(--font-display);
    font-size: 3.4rem; font-weight: 700;
    color: rgba(255,255,255,.06);
    line-height: 1; margin-bottom: 20px;
}
.research-pillar h3 {
    font-size: 1.15rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.research-pillar p {
    font-size: .93rem; color: var(--slate-400);
    line-height: 1.8;
}

/* Case study meta grid */
.case-study {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}
.case-study-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-meta-item {
    display: flex; flex-direction: column; gap: 6px;
}
.case-meta-label {
    font-size: .7rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--slate-400);
}
.case-meta-value {
    font-size: .95rem; color: var(--slate-300);
    font-weight: 500;
}
.case-meta-value a {
    color: var(--blue-400);
    text-decoration: none;
    transition: color .25s;
}
.case-meta-value a:hover { color: var(--emerald-400); }

/* Paper highlight */
.paper-highlight {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.paper-highlight::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), var(--emerald-500), var(--blue-500));
}
.paper-highlight-inner {
    padding: 48px 44px;
}
.paper-badge {
    display: inline-flex;
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.15);
    color: var(--blue-400);
    padding: 6px 14px; border-radius: 100px;
    font-size: .7rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 20px;
}
.paper-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700; color: var(--white);
    line-height: 1.25; letter-spacing: -.02em;
    margin-bottom: 10px;
}
.paper-authors {
    font-size: .9rem; color: var(--slate-400);
    margin-bottom: 20px; font-weight: 500;
}
.paper-abstract {
    font-size: .98rem; color: var(--slate-400);
    line-height: 1.85; margin-bottom: 32px;
    max-width: 720px;
}
.paper-abstract em {
    font-style: italic;
    color: var(--emerald-400);
}
.paper-links {
    display: flex; gap: 14px; flex-wrap: wrap;
}

/* Findings grid */
.findings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.finding-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 40px 34px;
    transition: all .4s;
    display: flex; flex-direction: column;
}
.finding-card:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    border-color: rgba(255,255,255,.1);
}
.finding-number {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 700;
    color: rgba(255,255,255,.06);
    line-height: 1; margin-bottom: 16px;
}
.finding-card h3 {
    font-size: 1.1rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -.01em;
    line-height: 1.3;
}
.finding-card p {
    font-size: .9rem; color: var(--slate-400);
    line-height: 1.8; flex: 1;
    margin-bottom: 24px;
}
.finding-card em, .finding-card strong {
    color: var(--slate-300);
}
.finding-stat {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 18px;
    margin-top: auto;
}
.finding-stat-num {
    display: block;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 1.3rem; font-weight: 600;
    color: var(--emerald-400);
    margin-bottom: 4px;
}
.finding-stat-desc {
    font-size: .78rem; color: var(--slate-400);
    font-weight: 500;
}

/* Figure gallery */
.figure-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.figure-item {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s;
}
.figure-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    border-color: rgba(255,255,255,.1);
}
.figure-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #0d1117;
    padding: 12px;
}
.figure-caption {
    padding: 16px 20px;
    font-size: .82rem; color: var(--slate-400);
    line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,.04);
}
.figure-caption strong {
    color: var(--slate-300);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lab-grid { grid-template-columns: 1fr; }
    .research-pillars { grid-template-columns: 1fr; }
    .findings-grid { grid-template-columns: 1fr; }
    .case-study-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .figure-gallery { grid-template-columns: 1fr; }
    .case-study-meta { grid-template-columns: 1fr; }
    .case-study { padding: 28px 22px; }
    .paper-highlight-inner { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
/* Nav hamburger activates at 900px — 8 nav items overflow below that */
@media (max-width: 900px) {
    .nav-links {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(8,12,20,.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 28px var(--gutter);
        gap: 18px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        box-shadow: 0 12px 40px rgba(0,0,0,.5);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }
    .nav-links a { font-size: .95rem; padding: 4px 0; }
    .nav-links .nav-cta { padding: 12px 28px !important; }
}

@media (max-width: 640px) {
    .solution-pillars { grid-template-columns: 1fr; }
    .market-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 140px var(--gutter) 80px; min-height: auto; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 28px; }
    .contact-form { padding: 28px 22px; }
    .pull-quote { font-size: clamp(1.2rem, 5vw, 1.5rem); }
    .team-grid { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .team-detail-body { grid-template-columns: 1fr; }
    .team-detail-header { flex-direction: column; text-align: center; }
    .product-detail-header { flex-direction: column; text-align: center; }
    .product-detail-sidebar,
    .team-detail-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════
   TRACTION TIMELINE
   ═══════════════════════════════════════════════════ */
.traction-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 40px;
}
.traction-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--emerald-500) 0%, var(--blue-500) 60%, rgba(255,255,255,.08) 100%);
}
.traction-item {
    position: relative;
    margin-bottom: 32px;
}
.traction-item:last-child { margin-bottom: 0; }
.traction-marker {
    position: absolute;
    left: -40px;
    top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--slate-600);
    background: var(--ink);
    z-index: 1;
}
.traction-item--done .traction-marker {
    border-color: var(--emerald-500);
    background: var(--emerald-500);
    box-shadow: 0 0 12px rgba(16,185,129,.3);
}
.traction-item--done .traction-marker::after {
    content: '\2713';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ink);
    font-size: .7rem;
    font-weight: 800;
}
.traction-item--active .traction-marker {
    border-color: var(--blue-400);
    background: var(--blue-500);
    box-shadow: 0 0 12px rgba(59,130,246,.3);
    animation: pulse-marker 2s infinite;
}
.traction-item--next .traction-marker {
    border-color: var(--slate-600);
    border-style: dashed;
}
@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 12px rgba(59,130,246,.3); }
    50% { box-shadow: 0 0 20px rgba(59,130,246,.5); }
}
.traction-content {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all .35s;
}
.traction-item--done .traction-content {
    border-color: rgba(16,185,129,.1);
}
.traction-item--active .traction-content {
    border-color: rgba(59,130,246,.15);
    background: rgba(59,130,246,.03);
}
.traction-content:hover {
    background: rgba(255,255,255,.04);
    transform: translateX(4px);
}
.traction-status {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.traction-status--done {
    background: rgba(16,185,129,.1);
    color: var(--emerald-400);
    border: 1px solid rgba(16,185,129,.15);
}
.traction-status--active {
    background: rgba(59,130,246,.1);
    color: var(--blue-400);
    border: 1px solid rgba(59,130,246,.15);
}
.traction-status--next {
    background: rgba(255,255,255,.04);
    color: var(--slate-400);
    border: 1px solid rgba(255,255,255,.08);
}
.traction-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.traction-content p {
    font-size: .9rem;
    color: var(--slate-400);
    line-height: 1.75;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   USE OF FUNDS
   ═══════════════════════════════════════════════════ */
.funds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.fund-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all .35s;
}
.fund-card:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.fund-percent {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--emerald-400);
    line-height: 1;
    margin-bottom: 16px;
}
.fund-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.fund-card p {
    font-size: .85rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   ADDITIONAL RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .funds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .funds-grid { grid-template-columns: 1fr; }
    .traction-timeline { padding-left: 32px; }
    .traction-marker { left: -32px; width: 20px; height: 20px; }
    .traction-content { padding: 22px 20px; }
    .products-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   HERO PROOF BAR
   ═══════════════════════════════════════════════════ */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hero-proof-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.hero-proof-sep {
    color: var(--slate-400);
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .hero-proof { flex-direction: column; gap: 6px; }
    .hero-proof-sep { display: none; }
}

/* ═══════════════════════════════════════════════════
   TRACTION METRICS CARDS
   ═══════════════════════════════════════════════════ */
.traction-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.traction-metric-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}
.traction-metric-number {
    font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'GFS Didot', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1.1;
    margin-bottom: 8px;
}
.traction-metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 6px;
}
.traction-metric-detail {
    font-size: 0.82rem;
    color: var(--slate-400);
    line-height: 1.5;
}
@media (max-width: 900px) {
    .traction-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .traction-metrics { grid-template-columns: 1fr; }
    .traction-metric-number { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════
   COMPETITIVE MOAT SECTION
   ═══════════════════════════════════════════════════ */
.section--moat {
    background: linear-gradient(170deg, var(--deep-navy) 0%, #0a1628 50%, var(--deep-navy) 100%);
    padding: 100px 0;
}
.moat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.moat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.moat-card:hover {
    transform: translateY(-4px);
    border-color: var(--emerald);
}
.moat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: rgba(96,165,250,.08);
    border: 1px solid rgba(96,165,250,.12);
}
.moat-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-100);
    margin-bottom: 12px;
}
.moat-card p {
    font-size: 0.92rem;
    color: var(--slate-400);
    line-height: 1.7;
}
@media (max-width: 900px) {
    .moat-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   TEAM ACHIEVEMENT HIGHLIGHTS
   ═══════════════════════════════════════════════════ */
.team-highlight {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald);
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(52, 211, 153, 0.08);
    border-radius: 8px;
    line-height: 1.4;
}


/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════
   MOBILE AUDIT — DIG-108 — March 2026
   Mobile-first responsive fixes + anti-AI-template polish
   ═══════════════════════════════════════════════════ */

/* ── 1. Fix missing CSS variable definitions ── */
:root {
    --card-bg:       rgba(255,255,255,.025);
    --card-border:   rgba(255,255,255,.07);
    --deep-navy:     #080e1c;
    --emerald:       #34d399;
    --emerald-700:   #047857;
}

/* ── 2. Section padding — reduce on mobile ── */
@media (max-width: 640px) {
    .section { padding: 64px var(--gutter); }
    .section-desc { margin-bottom: 36px; }
    .section-title { margin-bottom: 14px; }
}
@media (max-width: 480px) {
    :root { --gutter: 18px; }
    .section { padding: 52px var(--gutter); }
}

/* ── 3. Hero — tighten on small phones ── */
@media (max-width: 480px) {
    .hero {
        padding: 110px 20px 64px;
        min-height: auto;
    }
    .hero-logo {
        width: 72px;
        margin-bottom: 24px;
    }
    .hero h1 {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
        letter-spacing: -.025em;
    }
    .hero-deck {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    .hero-sub {
        font-size: .96rem;
        margin-bottom: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 36px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .hero-tag { font-size: .7rem; }
}

/* ── 4. Problem grid — numbered list on mobile ── */
@media (max-width: 640px) {
    .problem-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: none;
    }
    .problem-card {
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
        border-radius: 0;
        padding: 30px 0;
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        gap: 0 16px;
        transform: none !important;
        box-shadow: none !important;
    }
    .problem-card:first-child { padding-top: 0; }
    .problem-card:last-child { border-bottom: none; }
    .problem-card::before { display: none; }
    .problem-number {
        font-size: 2rem;
        grid-row: 1 / 3;
        grid-column: 1;
        line-height: 1.1;
        color: rgba(255,255,255,.09);
        margin-bottom: 0;
    }
    .problem-card h3 {
        grid-column: 2;
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .problem-card p {
        grid-column: 2;
        font-size: .86rem;
    }
}

/* ── 5. Solution pillars — horizontal on mobile ── */
@media (max-width: 640px) {
    .solution-pillars {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .pillar {
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        text-align: left;
        padding: 20px 18px;
        border-radius: 12px;
    }
    .pillar-icon {
        grid-row: 1 / 3;
        grid-column: 1;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 1.25rem;
        margin: 0;
    }
    .pillar h4 {
        grid-column: 2;
        font-size: .9rem;
        margin-bottom: 4px;
    }
    .pillar p {
        grid-column: 2;
        font-size: .82rem;
        line-height: 1.6;
    }
}

/* ── 6. Market stats — 2-col on mobile ── */
@media (max-width: 640px) {
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 44px;
    }
    .stat-card {
        padding: 28px 18px;
        border-radius: 14px;
    }
    .stat-card:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
    .stat-number { font-size: 2.2rem; }
}

/* ── 7. Traction metrics — keep 2×2 on mobile ── */
@media (max-width: 640px) {
    .traction-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }
    .traction-metric-card {
        padding: 22px 14px;
        border-radius: 12px;
    }
    .traction-metric-number { font-size: 1.55rem; }
    .traction-metric-label { font-size: .8rem; }
    .traction-metric-detail { font-size: .72rem; }
}

/* ── 8. Funds grid — horizontal scroll on mobile ── */
@media (max-width: 640px) {
    .funds-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,.1) transparent;
        /* Bleed to edges */
        margin-left: calc(-1 * var(--gutter));
        margin-right: calc(-1 * var(--gutter));
        padding-left: var(--gutter);
        padding-right: var(--gutter);
        /* Override grid */
        grid-template-columns: unset;
    }
    .funds-grid::-webkit-scrollbar { height: 2px; }
    .funds-grid::-webkit-scrollbar-track { background: transparent; }
    .funds-grid::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.12);
        border-radius: 2px;
    }
    .fund-card {
        flex: 0 0 210px;
        min-width: 210px;
        scroll-snap-align: start;
    }
    .fund-percent { font-size: 2.4rem; }
}

/* Funds scroll hint text */
.funds-scroll-hint {
    display: none;
    font-size: .73rem;
    color: var(--slate-400);
    text-align: right;
    margin-top: 10px;
    letter-spacing: .04em;
}
@media (max-width: 640px) {
    .funds-scroll-hint { display: block; }
}

/* ── 9. Team grid — 2-col on mobile ── */
@media (max-width: 640px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .team-card { padding: 28px 16px 22px; }
    .team-card h3 { font-size: .95rem; }
    .team-role { font-size: .62rem; }
    .team-credential { font-size: .7rem; }
    .team-highlight { font-size: .74rem; padding: 5px 10px; }
    .team-edu { font-size: .74rem; }
}
@media (max-width: 360px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ── 10. Moat cards — compact on mobile ── */
@media (max-width: 640px) {
    .moat-card { padding: 26px 20px; border-radius: 12px; }
    .moat-icon { width: 48px; height: 48px; margin-bottom: 12px; }
    .moat-card h4 { font-size: 1rem; }
}

/* ── 11. Contact form — compact on mobile ── */
@media (max-width: 480px) {
    .contact-form { padding: 24px 18px; }
    .invest-section { padding-bottom: 100px; }
}

/* ── 12. Footer — compact on mobile ── */
@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: .78rem;
    }
    .footer-pledge { font-size: .75rem; }
}

/* ── 13. Traction timeline — tighter on mobile ── */
@media (max-width: 640px) {
    .traction-content { padding: 20px 18px; border-radius: 10px; }
    .traction-timeline { margin-bottom: 48px; }
}

/* ── 15. Anti-AI-template polish ── */

/* Vary hover behaviors — not every card needs translateY */
.stat-card:hover { transform: none; background: rgba(255,255,255,.035); }
.insight:hover { background: rgba(255,255,255,.035); }

/* Problem section: top accent line only on desktop */
@media (min-width: 641px) {
    .problem-card { border-radius: 16px; padding: 36px 28px; }
}

/* Solution pillars: left border accent on desktop hover */
@media (min-width: 641px) {
    .pillar {
        border-left: 3px solid transparent;
        border-radius: 0 16px 16px 0;
        transition: border-color .3s, background .3s, transform .3s;
    }
    .pillar:nth-child(1):hover { border-left-color: var(--blue-400); }
    .pillar:nth-child(2):hover { border-left-color: var(--emerald-400); }
    .pillar:nth-child(3):hover { border-left-color: var(--copper); }
    .pillar:nth-child(4):hover { border-left-color: #f87171; }
}

/* Insight cards — remove card border, use offset instead */
@media (min-width: 641px) {
    .insight {
        border-radius: 12px;
        border-color: rgba(255,255,255,.05);
    }
    .insight h4::before {
        content: '';
        display: block;
        width: 32px; height: 2px;
        background: var(--emerald-400);
        margin-bottom: 12px;
    }
}

/* Nav touch targets — slightly larger on mobile */
@media (max-width: 900px) {
    .hamburger {
        width: 32px;
        height: 26px;
        padding: 2px;
    }
}

/* ═══════════════════════════════════════════════════
   POEM / MISSION STATEMENT — Continuous flow
   ═══════════════════════════════════════════════════ */
.poem {
    background:
        radial-gradient(ellipse 50% 60% at 30% 20%, rgba(184,115,51,.03) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 70% 80%, rgba(37,99,235,.03) 0%, transparent 60%),
        var(--night);
    padding: 160px var(--gutter) 80px;
}
.poem-inner {
    max-width: 680px;
    margin: 0 auto;
}

/* Base line */
.poem-line {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.6vw, 1.18rem);
    color: var(--slate-200);
    line-height: 1.85;
    margin-bottom: 1.5em;
}

/* Color emphasis — blue→emerald gradient (same as homepage h1 em) */
.poem-line em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue-400), var(--emerald-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Heart/passion emphasis — warm red, underlined */
.poem-heart {
    color: #f87171;
    text-decoration: underline;
    text-decoration-color: rgba(248,113,113,.4);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    font-weight: 600;
}

/* Opening lines — biggest, commanding */
.poem-line--opening {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -.02em;
}

/* Dramatic lines — big, from the chest */
.poem-line--dramatic {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: -.015em;
    margin-top: .5em;
    margin-bottom: 1em;
}

/* Accent lines — slightly larger, confident */
.poem-line--accent {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* Closing crescendo */
.poem-line--closing {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin-top: 2em;
}

/* Indentation levels */
.poem-line--indent1 {
    padding-left: 2em;
}
.poem-line--indent2 {
    padding-left: 4em;
}

/* Poem photos — float beside text */
.poem-photo {
    margin: 1.5em 0;
    max-width: 240px;
    border-radius: 12px;
    overflow: visible;
}
.poem-photo--right {
    float: right;
    margin-left: 2em;
    margin-right: 0;
}
.poem-photo--left {
    float: left;
    margin-right: 2em;
    margin-left: 0;
}
.poem-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    filter: contrast(1.05) saturate(.85);
}
.poem-photo figcaption {
    font-size: .72rem;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 8px;
    text-align: center;
}
.poem-cta {
    text-align: center;
    margin-top: 3em;
    clear: both;
}

/* Clear floats */
.poem-inner::after {
    content: '';
    display: table;
    clear: both;
}

/* Mobile */
@media (max-width: 640px) {
    .poem {
        padding-top: 110px;
    }
    .poem-photo {
        max-width: 130px;
    }
    .poem-photo--right {
        margin-left: 1.2em;
    }
    .poem-photo--left {
        margin-right: 1.2em;
    }
    .poem-line {
        font-size: 1rem;
    }
    .poem-line--opening {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }
    .poem-line--dramatic {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    .poem-line--accent {
        font-size: clamp(1.05rem, 4vw, 1.25rem);
    }
    .poem-line--closing {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
    }
    .poem-line--indent1 {
        padding-left: 1.2em;
    }
    .poem-line--indent2 {
        padding-left: 2.4em;
    }
}

/* ═══════════════════════════════════════════════════
   FORWARD-LOOKING STATEMENT DISCLAIMER
   ═══════════════════════════════════════════════════ */
.footer-legal {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 20px 0 8px;
}
.fls-disclaimer {
    font-size: .72rem;
    line-height: 1.6;
    color: var(--slate-600);
    max-width: 900px;
}
.fls-disclaimer strong {
    color: var(--slate-400);
}

/* Self-hosted badge in footer */
.footer-selfhosted {
    display: block;
    width: 100%;
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    margin-top: 8px;
    letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════
   HACKATHON WIN SECTION
   ═══════════════════════════════════════════════════ */
.hackathon-win-section {
    border-top: 1px solid rgba(80,70,229,.35);
    border-bottom: 1px solid rgba(80,70,229,.35);
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(80,70,229,.09) 0%, transparent 70%),
        var(--night);
    position: relative;
    overflow: hidden;
}
.hackathon-win-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.hackathon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.hackathon-trophy {
    font-size: 1.5rem;
    line-height: 1;
}
.hackathon-title {
    margin-bottom: 8px;
}
.hackathon-venue {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 36px;
}
.hackathon-body {
    max-width: 580px;
    margin: 0 auto 32px;
    text-align: left;
}
.hackathon-body p {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.85;
    margin-bottom: 16px;
}
.hackathon-question {
    font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
    font-family: var(--font-display);
    color: var(--white) !important;
    font-weight: 600;
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin: 24px 0 !important;
}
.hackathon-link {
    color: var(--violet-400, #818cf8);
    text-decoration: none;
    border-bottom: 1px solid rgba(129,140,248,.3);
    transition: border-color .2s;
}
.hackathon-link:hover {
    border-color: var(--violet-400, #818cf8);
}
.hackathon-invite {
    font-size: .95rem;
    color: var(--slate-400);
    margin-bottom: 24px;
    text-align: center;
}
.hackathon-cta {
    text-align: center;
}
.hackathon-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hackathon-btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--violet-600, #5046e5);
    border-color: var(--violet-600, #5046e5);
    color: #fff;
}
.hackathon-btn-phone:hover {
    background: var(--violet-500, #6366f1);
    border-color: var(--violet-500, #6366f1);
}
