/* ═══════════════════════════════════════════════════
   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: 'Playfair Display', 'Georgia', serif;
    --font-body:    'DM Sans', 'Helvetica Neue', sans-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.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
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;
}
.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-500); font-size: .72rem;
    letter-spacing: .12em; text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--slate-500), transparent);
}
@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-500);
    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(2, 1fr);
    gap: 28px;
}
.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; }

/* ═══════════════════════════════════════════════════
   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-500);
    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(4, 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%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; color: var(--white);
    margin: 0 auto 22px;
    letter-spacing: -.01em;
}
.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); }
.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-500);
    margin-bottom: 14px;
}
.team-edu {
    font-size: .8rem; color: var(--slate-500);
    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-500);
    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-500); 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-500);
    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-500);
    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; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 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-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-500); 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); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
    .solution-pillars { grid-template-columns: 1fr; }
    .market-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .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; }
    .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; }
}
