/* ============================================================
   XFERA.AI — Design System
   ============================================================ */
:root {
  --bg:        #05040a;
  --bg-2:      #0a0814;
  --surface:   rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.05);
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(168,85,247,0.28);
  --text:      #ECEAF5;
  --text-dim:  #9c98b3;
  --text-mut:  #6b6880;
  --violet:    #7C3AED;
  --violet-2:  #A855F7;
  --violet-3:  #C084FC;
  --grad:      linear-gradient(120deg, #7C3AED 0%, #A855F7 50%, #C084FC 100%);
  --glow:      0 0 60px rgba(124,58,237,0.45);

  /* light section */
  --cream:     #F2EFE9;
  --ink:       #0C0B10;
  --ink-soft:  #514f5c;
  --ink-mut:   #8a8794;
  --violet-ink:#6D28D9;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ============================================================
   Background FX
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(ellipse at 50% -10%, #130a26 0%, var(--bg) 55%); }
.bg-grid { position: absolute; inset: -2px;
  background-image: linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%); }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.bg-glow--1 { width: 620px; height: 620px; top: -180px; left: -120px; background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%); }
.bg-glow--2 { width: 520px; height: 520px; bottom: -160px; right: -100px; background: radial-gradient(circle, rgba(168,85,247,.35), transparent 70%); }
.noise { position: absolute; inset: 0; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ============================================================
   Logo & Buttons
   ============================================================ */
.logo-mark { display: block; height: 34px; width: auto; color: #fff; }
.logo-mark--sm { height: 42px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: 100px; transition: all .3s var(--ease); white-space: nowrap; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px rgba(124,58,237,.4); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,.6); }
.btn--ghost { border: 1px solid var(--border-2); color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--violet-2); }

/* email pill */
.pill { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; border-radius: 100px; border: 1px solid var(--border-2); font-family: var(--font); font-weight: 600; font-size: 1rem; transition: all .3s var(--ease); }
.pill svg { width: 20px; height: 20px; }
.sec--dark .pill { color: #fff; }
.sec--dark .pill:hover { background: var(--surface-2); border-color: var(--violet-2); transform: translateY(-2px); }
.sec--light .pill { color: var(--ink); border-color: rgba(109,40,217,.3); }
.sec--light .pill:hover { background: rgba(109,40,217,.06); border-color: var(--violet-ink); transform: translateY(-2px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all .35s var(--ease); }
.nav.is-scrolled { padding: 12px 0; background: rgba(8,6,16,.72); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 15px; color: var(--text-dim); font-weight: 500; transition: color .25s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; gap: 4px; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--text-mut); }
.lang-switch__opt { padding: 3px 5px; border-radius: 6px; transition: color .2s; }
.lang-switch__opt.is-active { color: var(--violet-3); }
.lang-switch__opt:not(.is-active):hover { color: var(--text); }
.lang-switch__sep { opacity: .4; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (kept)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 90px; background: radial-gradient(ellipse 90% 60% at 50% 8%, #170b2e 0%, transparent 60%), #030208; }
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__brand { display: flex; flex-direction: column; align-items: center; }
.hero__aura { position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%); width: min(760px, 96vw); aspect-ratio: 1; z-index: 1; pointer-events: none; background: radial-gradient(circle, rgba(124,58,237,.28) 0%, rgba(124,58,237,.08) 34%, transparent 62%); }
.eclipse { position: relative; width: clamp(140px, 17vw, 210px); aspect-ratio: 1; margin-bottom: clamp(16px, 2.5vw, 30px); }
.eclipse__glow { position: absolute; inset: -14%; border-radius: 50%; background: radial-gradient(circle at 62% 30%, rgba(168,85,247,.34) 0%, rgba(124,58,237,.12) 38%, transparent 62%); filter: blur(8px); }
.eclipse__ring { position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(168,85,247,.32) 0deg, #ffffff 40deg, #efe0ff 60deg, rgba(168,85,247,.42) 104deg, rgba(124,58,237,.18) 190deg, rgba(124,58,237,.10) 285deg, rgba(148,90,220,.24) 340deg, rgba(168,85,247,.32) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  filter: drop-shadow(0 0 12px rgba(168,85,247,.55)); }
.eclipse__spark { position: absolute; top: 13%; right: 13%; width: 11px; height: 11px; border-radius: 50%; background: #fff; box-shadow: 0 0 16px 4px #fff, 0 0 40px 12px rgba(216,180,254,.9), 0 0 80px 28px rgba(124,58,237,.45); }
.hero__wordmark { width: clamp(320px, 58vw, 680px); margin: 0; }
.hero__wordmark img { display: block; width: 100%; height: auto; filter: drop-shadow(0 0 20px rgba(124,58,237,.35)); }
.hero__lead { margin-top: clamp(30px, 4.5vw, 50px); font-family: var(--font); font-weight: 700; line-height: 1.12; font-size: clamp(1.6rem, 3.8vw, 2.7rem); letter-spacing: -0.02em; }
.hero__lead span { display: inline; }
.hero__sub { font-size: clamp(.98rem, 1.8vw, 1.14rem); color: var(--text-dim); margin: 16px auto 0; max-width: 560px; }
.hero__cta { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.hero__horizon { position: absolute; left: 50%; bottom: -290%; transform: translateX(-50%); width: 300%; height: 300%; border-radius: 50%; z-index: 1; pointer-events: none; border-top: 1.5px solid rgba(216,180,254,.7); box-shadow: 0 -3px 100px 10px rgba(124,58,237,.35); background: radial-gradient(ellipse 50% 26% at 50% 0%, rgba(124,58,237,.12), transparent 55%); }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero__scroll-mouse { display: block; width: 24px; height: 40px; border: 2px solid var(--border-2); border-radius: 14px; position: relative; }
.hero__scroll-mouse::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--violet-3); border-radius: 3px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:1;top:8px} 70%{opacity:0;top:20px} 100%{opacity:0} }

/* ============================================================
   Generic sections (editorial)
   ============================================================ */
.sec { position: relative; padding: clamp(80px, 12vw, 150px) 0; }
.sec--dark { background: #060409; }
.sec--light { background: var(--cream); color: var(--ink-soft); }

.eyebrow { display: inline-block; font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 26px; }
.sec--dark .eyebrow { color: var(--violet-3); }
.sec--light .eyebrow { color: var(--violet-ink); }
.eyebrow--rule { display: flex; align-items: center; gap: 18px; }
.eyebrow--rule::before { content: ''; width: 46px; height: 1px; background: currentColor; opacity: .5; }

.sec__title { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 15ch; }
.sec__title--lg { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 20ch; line-height: 1.08; }
.sec--dark .sec__title { color: #fff; }
.sec--light .sec__title { color: var(--ink); }
.sec__lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); max-width: 62ch; margin-top: 26px; line-height: 1.65; }
.sec--dark .sec__lead { color: var(--text-dim); }
.sec--light .sec__lead { color: var(--ink-soft); }

/* ============================================================
   Intro statement
   ============================================================ */
.intro__sub { font-family: var(--font); font-weight: 600; font-size: clamp(1.2rem, 2.4vw, 1.7rem); color: var(--violet-ink); margin-top: 10px; }

/* ============================================================
   References / demand
   ============================================================ */
.refs__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 52px; margin-top: 34px; }
.refs__logo { font-family: var(--font); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); color: var(--text-dim); opacity: .7; letter-spacing: .02em; transition: opacity .3s, color .3s; }
.refs__logo:hover { opacity: 1; color: #fff; }

/* ============================================================
   Numbered points grid (thesis / why)
   ============================================================ */
.points { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); margin-top: clamp(50px, 7vw, 90px); }
.points--3 { grid-template-columns: repeat(3, 1fr); margin-top: clamp(30px, 4vw, 50px); }
.point__num { font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--violet-ink); display: block; margin-bottom: 18px; letter-spacing: .05em; }
.sec--dark .point__num { color: var(--violet-3); }
.point h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 14px; }
.sec--dark .point h3 { color: #fff; }
.sec--light .point h3 { color: var(--ink); }
.point p { font-size: 1.02rem; line-height: 1.6; }
.sec--dark .point p { color: var(--text-dim); }

/* ============================================================
   Pillars (investment focus) — dark
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: clamp(50px, 6vw, 80px); }
.pillar { padding: 38px 32px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); transition: all .4s var(--ease); }
.pillar:hover { transform: translateY(-6px); border-color: var(--border-2); }
.pillar__k { font-family: var(--font); font-weight: 700; color: var(--violet-3); font-size: .95rem; }
.pillar h3 { color: #fff; font-size: 1.4rem; margin: 20px 0 14px; }
.pillar p { color: var(--text-dim); font-size: 1rem; }

/* ============================================================
   Flow (how we create value)
   ============================================================ */
.flow { list-style: none; margin-top: clamp(50px, 6vw, 80px); border-top: 1px solid rgba(12,11,16,.12); }
.flow__item { display: flex; gap: clamp(24px, 5vw, 60px); align-items: baseline; padding: clamp(26px, 3vw, 40px) 0; border-bottom: 1px solid rgba(12,11,16,.12); }
.flow__num { font-family: var(--font); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--violet-ink); flex-shrink: 0; width: clamp(40px, 5vw, 70px); }
.flow__item p { font-size: clamp(1.15rem, 2vw, 1.5rem); font-family: var(--font); font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.sec--dark .flow,
.sec--dark .flow__item { border-color: var(--border); }
.sec--dark .flow__num { color: var(--violet-3); }
.sec--dark .flow__item p { color: #fff; }

/* ============================================================
   Asset manager
   ============================================================ */
.amgr__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 30px; margin-top: clamp(44px, 6vw, 70px); }
.amgr__item h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.amgr__item p { color: var(--text-dim); font-size: 1rem; }
.sec--light .amgr__item h3 { color: var(--ink); }
.sec--light .amgr__item p { color: var(--ink-soft); }

/* ============================================================
   Investors
   ============================================================ */
.invest { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(44px, 5vw, 64px); }
.invest__card { padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: all .35s var(--ease); }
.invest__card:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-4px); }
.invest__card h3 { color: #fff; font-size: 1.28rem; margin-bottom: 12px; }
.invest__card p { color: var(--text-dim); font-size: 1rem; }
.sec--light .invest__card { background: #fff; border-color: rgba(12,11,16,.08); box-shadow: 0 16px 40px rgba(12,11,16,.04); }
.sec--light .invest__card:hover { background: #fff; border-color: rgba(123,37,255,.28); }
.sec--light .invest__card h3 { color: var(--ink); }
.sec--light .invest__card p { color: var(--ink-soft); }

/* ============================================================
   Founders — light
   ============================================================ */
.founders__photo { position: relative; margin: clamp(40px, 5vw, 60px) auto 0; border-radius: var(--radius); overflow: hidden; max-width: 900px; aspect-ratio: 16/9; background: linear-gradient(135deg, #fff, #e9e3dc); border: 1px solid rgba(12,11,16,.1); display: grid; place-items: center; }
.founders__photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.founders__ph { position: absolute; z-index: 1; color: var(--ink-mut); font-size: .95rem; padding: 0 24px; text-align: center; }
.founders__people { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px auto 0; max-width: 900px; }
.founders__card { display: flex; flex-direction: column; height: 100%; padding: 30px 32px; border-radius: var(--radius); background: #fff; border: 1px solid rgba(12,11,16,.08); box-shadow: 0 16px 40px rgba(12,11,16,.04); }
.founders__card h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 6px; }
.founders__role { display: block; color: var(--ink-mut); font-size: 1rem; margin-bottom: 18px; }
.founders__bio { margin: 0; color: var(--ink); font-size: .98rem; line-height: 1.68; }
.founders__bio + .founders__bio { margin-top: 14px; }
.founders__link { display: inline-block; margin-top: auto; padding-top: 16px; color: var(--violet-ink); font-size: .95rem; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(109,40,217,.28); text-underline-offset: 4px; transition: color .2s ease, transform .2s ease, text-shadow .2s ease, text-decoration-color .2s ease; }
.founders__link:hover { color: var(--violet); transform: translateY(-2px); text-shadow: 0 0 18px rgba(124,58,237,.28); text-decoration-color: rgba(124,58,237,.9); }

/* ============================================================
   Contact
   ============================================================ */
.contact__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact .sec__title--lg, .contact .sec__lead { margin-left: auto; margin-right: auto; }
.contact .sec__lead { text-align: center; }
.contact .pill { margin-top: 40px; }

.contact-form { width: 100%; max-width: 640px; margin-top: clamp(36px, 5vw, 52px); text-align: left; background: #fff; border: 1px solid rgba(12,11,16,.08); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: 0 24px 60px rgba(12,11,16,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 22px; }
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--ink); background: #F5F4F1;
  border: 1px solid transparent; border-radius: 14px; padding: 15px 18px; transition: border-color .25s, background .25s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; background: #fff; border-color: var(--violet-ink); }

.form-honeypot {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.form-consent { font-size: 13px; color: var(--ink-mut); margin: 8px 0 26px; }

.form-note { margin-top: 16px; font-size: 14px; }
.form-note.is-ok { color: #157a4f; }
.form-note.is-error { color: #b42318; }
.contact-form .btn:disabled { cursor: wait; opacity: .65; transform: none; box-shadow: none; }
.contact__email { display: inline-block; margin-top: 26px; font-family: var(--font); font-weight: 600; color: var(--violet-ink); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #060409; border-top: 1px solid rgba(255,255,255,.04); padding: 22px 0 12px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.04); }
.footer__nav { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__nav a { color: rgba(255,255,255,.42); font-size: 11px; transition: color .25s; }
.footer__nav a:hover { color: var(--text); }
.footer__details { display: grid; justify-items: center; gap: 3px; padding: 12px 0 0; text-align: center; }
.footer__company { margin: 0 0 1px; color: rgba(255,255,255,.66); font-size: clamp(14px, 1.45vw, 16px); font-weight: 600; letter-spacing: 0; }
.footer__meta { margin: 0; color: rgba(255,255,255,.42); font-size: clamp(12px, 1.15vw, 13px); line-height: 1.3; }
.footer__contact { margin: 4px 0 0; }
.footer__contact a { color: rgba(255,255,255,.56); font-size: clamp(12px, 1.15vw, 13px); font-weight: 500; transition: color .25s; }
.footer__contact a:hover { color: var(--brand-2); }
.footer__bottom { padding-top: 10px; color: rgba(255,255,255,.30); font-size: 10px; text-align: center; }

/* ============================================================
   Scroll reveal
   ============================================================ */
/* Content is visible by default; only hidden when JS is active (progressive enhancement) */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: .06s; }
.js .reveal:nth-child(3) { transition-delay: .12s; }
.js .reveal:nth-child(4) { transition-delay: .18s; }

/* Hero is above the fold — always visible, animates via CSS (no JS dependency) */
.hero .reveal { opacity: 1; transform: none; animation: heroReveal .9s var(--ease) both; }
.hero__wordmark.reveal { animation-delay: .08s; }
.hero__lead.reveal { animation-delay: .22s; }
.hero__sub.reveal { animation-delay: .3s; }
.hero__cta.reveal { animation-delay: .38s; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Hero claim (light intro section headline)
   ============================================================ */
.hero-claim { font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.12; color: var(--ink); max-width: 18ch; }
.hero-claim__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.intro__divider { border-top: 1px solid rgba(12,11,16,.1); margin: clamp(44px, 6vw, 64px) 0; }

/* ============================================================
   Story blocks (inference / who-needs-it / X6000) — dark only
   ============================================================ */
.story-block + .story-block { margin-top: clamp(70px, 8vw, 100px); }
.refs__clients { border-top: 1px solid var(--border); padding-top: clamp(40px, 5vw, 56px); text-align: center; }
.refs__clients .refs__title { max-width: none; margin: 0 auto; color: #fff; font-size: clamp(1.1rem, 2vw, 1.4rem); text-align: center; }
.story-num { display: block; font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--violet-3); letter-spacing: .05em; margin-bottom: 14px; }
.story-block h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 26ch; }
.story-block > p { color: var(--text-dim); margin-top: 14px; max-width: 60ch; font-size: 1.02rem; }

.need-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 40px; margin-top: 30px; padding-left: 22px; color: var(--text-dim); }
.need-list li { padding-left: 4px; font-size: 1rem; }
.need-list li::marker { color: var(--violet-3); }

/* ============================================================
   First asset — XFERA X6000 (light)
   ============================================================ */
.asset { padding: clamp(64px, 8vw, 104px) 0; }
.asset__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(44px, 7vw, 96px); align-items: center; }
.asset__text { min-width: 0; }
.asset__title { color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); max-width: 12ch; }
.asset__name { color: var(--ink); font-size: clamp(2.2rem, 4vw, 3.15rem); }
.asset__subtitle { margin-top: 6px; color: var(--ink); font-family: var(--font); font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.2rem); }
.asset__spec { display: flex; flex-direction: column; margin-top: 24px; color: var(--ink-soft); font-family: var(--font); font-weight: 600; line-height: 1.45; }
.asset__highlights { margin-top: clamp(34px, 5vw, 54px); padding-top: 22px; border-top: 1px solid rgba(12,11,16,.3); }
.asset__highlights h3 { color: var(--ink); font-size: 1.05rem; }
.asset__visual { display: flex; flex-direction: column; justify-content: center; }
.asset__image { width: 100%; height: auto; }
.asset__caption { width: 100%; margin-top: clamp(22px, 3vw, 32px); color: var(--ink-soft); font-family: var(--font); font-weight: 600; font-size: .95rem; line-height: 1.55; text-align: center; }
.checklist { list-style: disc; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-left: 20px; max-width: 620px; }
.checklist li { padding-left: 2px; font-size: .95rem; color: var(--ink); }
.checklist li::marker { color: var(--ink-soft); }

/* ============================================================
   Contact — dark variant (contact section now sits in the dark run)
   ============================================================ */
.sec--dark .contact-form { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border-color: var(--border); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.sec--dark .form-field { color: #fff; }
.sec--dark .form-field input, .sec--dark .form-field textarea { color: #fff; background: rgba(255,255,255,.05); border-color: var(--border); }
.sec--dark .form-field input::placeholder, .sec--dark .form-field textarea::placeholder { color: var(--text-mut); }
.sec--dark .form-field input:focus, .sec--dark .form-field textarea:focus { background: rgba(255,255,255,.08); border-color: var(--violet-2); }
.sec--dark .form-consent { color: var(--text-mut); }
.sec--dark .form-note.is-ok { color: #5ee0a4; }
.sec--dark .form-note.is-error { color: #ff8a80; }
.sec--dark .contact__email { color: var(--violet-3); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1050px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(300px,80vw); flex-direction: column; gap: 8px; padding: 100px 28px; background: rgba(10,8,20,.96); backdrop-filter: blur(20px); border-left: 1px solid var(--border); transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 18px; padding: 10px 0; }
  .nav__burger { display: flex; }
}
@media (max-width: 900px) {
  .pillars, .amgr__grid, .invest, .founders__people, .refs__stats { grid-template-columns: 1fr 1fr; }
  .points--3 { grid-template-columns: 1fr; }
  .asset__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .points, .pillars, .amgr__grid, .invest, .founders__people, .form-row { grid-template-columns: 1fr; }
  .need-list { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
