/* ---------- Tokens ---------- */
:root {
  --bg: #080E1C;             /* deep navy */
  --bg-tint: #0C1428;        /* slightly lighter navy */
  --bg-elev: #111E38;        /* card surface */
  --ink: #F0F2F6;            /* near-white text */
  --ink-soft: #A8B8D0;       /* secondary text */
  --ink-mute: #5E7099;       /* muted/captions */
  --line: rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.14);
  --accent: #E8673A;         /* orange */
  --accent-soft: rgba(232, 103, 58, 0.18);
  --chrome-1: #FF9A6C;       /* light orange */
  --chrome-2: #E8673A;       /* mid orange */
  --chrome-3: #C04A1F;       /* deep orange */
  --sky: #E8673A;
  --sky-soft: rgba(232, 103, 58, 0.15);
  --navy-mid: #0D2044;
  --dark: #020610;
  --white: #ffffff;

  --max: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --t-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg); padding: 10px 14px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 14, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-word {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FF9A6C 0%, #E8673A 60%, #C04A1F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-mark { color: var(--ink); }
.brand-img { height: 32px; width: auto; display: block; }
.brand-img-footer { height: 26px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s var(--t-ease);
}
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid rgba(232, 103, 58, 0.4);
  color: var(--chrome-1) !important;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s var(--t-ease), color 0.2s var(--t-ease), border-color 0.2s var(--t-ease);
}
.nav-cta:hover { background: rgba(232, 103, 58, 0.12); border-color: var(--chrome-2); }
@media (max-width: 760px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--t-ease), background 0.2s var(--t-ease), color 0.2s var(--t-ease), border-color 0.2s var(--t-ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #FF9A6C 0%, #E8673A 100%);
  color: #080E1C;
  box-shadow: 0 1px 0 rgba(255,180,130,0.4) inset, 0 12px 28px -12px rgba(232, 103, 58, 0.5);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--chrome-1); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(232, 103, 58, 0.5); color: var(--chrome-1); }
.btn-on-dark {
  background: linear-gradient(180deg, #FF9A6C 0%, #E8673A 100%);
  color: #080E1C;
  font-weight: 600;
}
.btn-on-dark:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--chrome-1);
  box-shadow: 0 0 0 4px rgba(232, 103, 58, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 103, 58, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(232, 103, 58, 0.06); }
}
.kicker {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 16px;
}
.kicker-light { color: rgba(255,255,255,0.65); }

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #C8D4E8 60%, #7A9AC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #FF9A6C 0%, #E8673A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.h2-wide { max-width: 22ch; }
.h2-light { color: var(--white); }
.h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 32px;
}
.body { font-size: 16px; color: var(--ink-soft); margin: 0 0 18px; max-width: 60ch; }
.body-light { color: rgba(255,255,255,0.78); }
.micro { font-size: 13px; color: var(--ink-mute); margin: 16px 0 0; }
.micro a { color: var(--chrome-1); border-bottom: 1px solid rgba(232, 103, 58, 0.3); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 9vw, 110px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

/* Diagonal light beam background (inspired by the orb image) */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(125deg, transparent 30%, rgba(20, 50, 100, 0.35) 50%, transparent 70%),
    linear-gradient(130deg, transparent 40%, rgba(14, 36, 80, 0.5) 55%, transparent 72%),
    radial-gradient(ellipse 900px 500px at 80% -5%, rgba(13, 32, 68, 0.6), transparent 65%),
    radial-gradient(ellipse 600px 400px at -10% 110%, rgba(232, 103, 58, 0.06), transparent 60%);
  pointer-events: none;
}

/* Star-field dots */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.75), transparent 60%),
    radial-gradient(1px 1px at 78% 32%, rgba(255,200,150,0.5), transparent 60%),
    radial-gradient(1px 1px at 35% 72%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 88% 84%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 55% 8%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 65% 55%, rgba(255,200,150,0.4), transparent 60%),
    radial-gradient(1px 1px at 42% 28%, rgba(255,255,255,0.35), transparent 60%);
  pointer-events: none;
  opacity: 0.8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { font-size: 14px; color: var(--ink-soft); margin: 0; }
.hero-meta strong { color: var(--chrome-1); font-weight: 600; }

/* ---------- Floating Orbs ---------- */
.orb-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Large orb – upper area, blue-green toned */
.orb-1 {
  width: 260px; height: 260px;
  right: 8%; top: -60px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.22) 0%, transparent 35%),
    radial-gradient(circle at 65% 70%, rgba(100, 180, 120, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20, 60, 100, 0.7) 0%, rgba(8, 20, 50, 0.95) 80%);
  box-shadow:
    0 0 60px rgba(8, 20, 50, 0.5),
    inset 0 1px 1px rgba(255,255,255,0.25),
    inset -4px -4px 20px rgba(0,0,0,0.4);
  animation: orb-float 8s ease-in-out infinite;
}

/* Medium orb – right side, warm/orange toned */
.orb-2 {
  width: 170px; height: 170px;
  right: 28%; top: 30px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.18) 0%, transparent 30%),
    radial-gradient(circle at 60% 60%, rgba(232, 103, 58, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(40, 25, 10, 0.8) 0%, rgba(15, 10, 5, 0.95) 80%);
  box-shadow:
    0 0 40px rgba(232, 103, 58, 0.15),
    inset 0 1px 1px rgba(255,180,100,0.3),
    inset -3px -3px 14px rgba(0,0,0,0.5);
  animation: orb-float 6s ease-in-out infinite 1.5s;
}

/* Tiny reflection orb */
.orb-3 {
  width: 68px; height: 68px;
  right: 20%; top: 40%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.3) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(30, 60, 110, 0.6) 0%, rgba(8, 18, 45, 0.9) 80%);
  box-shadow:
    0 0 20px rgba(8, 18, 45, 0.6),
    inset 0 1px 1px rgba(255,255,255,0.35);
  animation: orb-float 7s ease-in-out infinite 3s;
}

/* Small orb – far right tiny */
.orb-4 {
  width: 44px; height: 44px;
  right: 6%; top: 45%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.25) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(180, 110, 60, 0.5) 0%, rgba(40, 20, 5, 0.92) 80%);
  box-shadow:
    0 0 16px rgba(232, 103, 58, 0.2),
    inset 0 1px 0 rgba(255,200,150,0.3);
  animation: orb-float 5s ease-in-out infinite 0.8s;
}

/* Large lower orb – dark/moon-like */
.orb-5 {
  width: 200px; height: 200px;
  right: 2%; bottom: -40px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,0.14) 0%, transparent 30%),
    radial-gradient(circle at 55% 65%, rgba(40, 80, 160, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 25, 60, 0.85) 0%, rgba(5, 10, 30, 0.97) 80%);
  box-shadow:
    0 0 50px rgba(5, 10, 30, 0.6),
    inset 0 1px 1px rgba(255,255,255,0.18),
    inset -3px -3px 16px rgba(0,0,0,0.5);
  animation: orb-float 9s ease-in-out infinite 2s;
}

/* Diagonal light beam overlay on orb field */
.orb-beam {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 60px;
  background: linear-gradient(120deg, transparent, rgba(180, 80, 20, 0.55), transparent);
  transform: rotate(-30deg) translateX(30px) translateY(20px);
  transform-origin: bottom right;
  pointer-events: none;
  filter: blur(4px);
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .orb-1 { width: 180px; height: 180px; right: 2%; top: -40px; }
  .orb-2 { width: 110px; height: 110px; right: 40%; top: 10px; }
  .orb-3, .orb-4 { display: none; }
  .orb-5 { width: 130px; height: 130px; right: 0; }
}

.hero-card {
  background: linear-gradient(180deg, rgba(13, 32, 68, 0.7), rgba(8, 14, 28, 0.6));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 24px 48px -24px rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.js .hero-card { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--t-ease), transform 0.7s var(--t-ease); }
.js .hero-card.in { opacity: 1; transform: none; }
.card-eyebrow { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 18px; }
.dose-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.dose-list li {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.dose-label { color: var(--ink-soft); }
.dose-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.dose-bar > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: linear-gradient(90deg, #1A3566, #2A5090);
  border-radius: 999px;
  transform: scaleX(0); transform-origin: left;
  animation: grow 1.1s var(--t-ease) 0.3s forwards;
}
.dose-list li.highlight .dose-bar > span { background: linear-gradient(90deg, var(--chrome-3), var(--chrome-1)); }
.dose-list li.highlight .dose-label,
.dose-list li.highlight .dose-value { color: var(--ink); font-weight: 600; }
.dose-value { font-variant-numeric: tabular-nums; font-size: 14px; }
.dose-value small { color: var(--ink-mute); font-weight: 400; }
.card-foot { font-size: 12px; color: var(--ink-mute); margin: 18px 0 0; }
@keyframes grow { to { transform: scaleX(1); } }

/* ---------- Strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 24px;
}
.strip-num {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: var(--chrome-1);
}
.strip-num small { font-size: 0.55em; color: var(--ink-mute); font-weight: 400; margin-left: 2px; }
.strip-label { font-size: 13px; color: var(--ink-soft); margin-top: 4px; max-width: 22ch; }
@media (max-width: 760px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; gap: 20px 16px; }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.js .section {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.8s var(--t-ease), transform 0.8s var(--t-ease);
}
.js .section.in { opacity: 1; transform: none; }
.section-tint {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 16px; }
}
.col-label .kicker { margin-top: 6px; }

.bullets { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; max-width: 60ch; }
.bullets li {
  position: relative; padding-left: 22px;
  font-size: 16px; color: var(--ink-soft);
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: var(--chrome-2);
}
.bullets li strong { color: var(--ink); font-weight: 600; }

/* Why grid */
.section-head { max-width: 800px; margin: 0 0 48px; }
.section-lede { margin: 16px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: linear-gradient(180deg, rgba(13, 32, 68, 0.5), rgba(8, 14, 28, 0.4));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.why-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #FF9A6C, #E8673A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 6px;
}
.why-text { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, rgba(13, 32, 68, 0.5), rgba(8, 14, 28, 0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--t-ease), box-shadow 0.3s var(--t-ease), border-color 0.3s var(--t-ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px rgba(0,0,0,0.6);
  border-color: rgba(232, 103, 58, 0.3);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--sky-soft);
  color: var(--chrome-1);
  margin-bottom: 18px;
}
.card-body { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- IAC ---------- */
.iac {
  background: linear-gradient(180deg, #020610 0%, #080E1C 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.iac::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 80% 20%, rgba(232, 103, 58, 0.10), transparent 60%),
    radial-gradient(500px 300px at 10% 80%, rgba(13, 32, 68, 0.4), transparent 60%);
  pointer-events: none;
}
.iac-grid {
  display: grid; grid-template-columns: 1.2fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center;
  position: relative;
}
@media (max-width: 820px) { .iac-grid { grid-template-columns: 1fr; } }
.iac-card {
  background: rgba(13, 32, 68, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
}
.iac-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
}
.iac-row:last-child { border-bottom: 0; }
.iac-row span { color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.iac-row strong { color: var(--white); font-weight: 500; font-family: 'Fraunces', serif; font-size: 17px; }

/* ---------- IAC (stacked) ---------- */
.iac-stack { position: relative; max-width: 1080px; }
.iac-stack .h2 { max-width: 22ch; margin-top: 8px; }
.iac-lede { max-width: 70ch; color: rgba(255,255,255,0.82); margin-bottom: 40px; }

.iac-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 8px 0 36px;
}
@media (max-width: 820px) { .iac-meta-grid { grid-template-columns: 1fr; } }
.iac-meta-card {
  background: rgba(13, 32, 68, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
}
.iac-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  gap: 16px;
}
.iac-meta-row:last-child { border-bottom: 0; }
.iac-meta-row span { color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; flex-shrink: 0; }
.iac-meta-row strong { color: var(--white); font-weight: 500; font-family: 'Fraunces', serif; font-size: 15px; text-align: right; line-height: 1.3; }
.iac-callouts { display: flex; flex-direction: column; gap: 14px; }
.iac-callout {
  background: rgba(13, 32, 68, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.iac-callout p { margin: 0; color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.5; }
.iac-callout-eyebrow { color: var(--chrome-1) !important; font-size: 11px !important; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 6px !important; }

/* ---------- Papers ---------- */
.paper-card {
  background: linear-gradient(180deg, rgba(13, 32, 68, 0.45), rgba(8, 14, 28, 0.35));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  transition: border-color 0.2s var(--t-ease);
}
.paper-card:hover { border-color: rgba(232, 103, 58, 0.3); }
.paper-card-upcoming { background: linear-gradient(180deg, rgba(13, 32, 68, 0.6), rgba(8, 14, 28, 0.45)); }
.paper-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.paper-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.paper-tag-muted { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); }
.paper-tag-accent {
  background: linear-gradient(180deg, #FF9A6C, #E8673A);
  color: #080E1C;
}
.paper-title { margin: 0 0 12px; font-size: 24px; max-width: 28ch; }
.paper-authors { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; }
.paper-authors strong { color: var(--ink); font-weight: 600; }
.paper-abs { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; max-width: 70ch; }
.paper-links { margin: 0; }
.paper-link {
  font-size: 14px;
  color: var(--chrome-1);
  border-bottom: 1px solid rgba(232, 103, 58, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s var(--t-ease), border-color 0.2s var(--t-ease);
}
.paper-link:hover { color: #FF9A6C; border-color: var(--chrome-1); }

/* ---------- Founders ---------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .founders-grid { grid-template-columns: 1fr; } }
.founder-card {
  background: linear-gradient(180deg, rgba(13, 32, 68, 0.45), rgba(8, 14, 28, 0.35));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.founder-avatar { margin-bottom: 20px; }
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 24px;
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(232, 103, 58, 0.1), rgba(13, 32, 68, 0.05) 60%, transparent 75%),
    linear-gradient(180deg, rgba(13, 32, 68, 0.3), rgba(8, 14, 28, 0.2));
  border: 1px solid rgba(232, 103, 58, 0.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 18px 36px -22px rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-name { margin: 0 0 4px; font-size: 22px; color: var(--ink); }
.founder-title { font-size: 14px; color: var(--chrome-2); margin: 0 0 2px; font-weight: 500; }
.founder-loc { font-size: 13px; color: var(--ink-mute); margin: 0 0 18px; }
.founder-bio { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; }
.founder-links { display: flex; gap: 14px; flex-wrap: wrap; }
.founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 0.2s var(--t-ease), color 0.2s var(--t-ease), border-color 0.2s var(--t-ease);
}
.founder-link:hover { background: rgba(232, 103, 58, 0.1); color: var(--chrome-1); border-color: rgba(232, 103, 58, 0.4); }
.founder-link svg { color: currentColor; }

/* ---------- Research ---------- */
.research-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
}

/* ---------- Waitlist ---------- */
.waitlist { max-width: 760px; margin: 0 auto; text-align: center; }
.waitlist-head { margin-bottom: 32px; }
.waitlist .h2 { margin-left: auto; margin-right: auto; }
.waitlist .body { margin-left: auto; margin-right: auto; }
.waitlist .body a { color: var(--chrome-1); border-bottom: 1px solid rgba(232, 103, 58, 0.3); }
.waitlist-form {
  display: grid;
  grid-template-columns: 2fr 1.2fr auto;
  gap: 8px;
  background: rgba(13, 32, 68, 0.4);
  border: 1px solid var(--line-strong);
  padding: 8px;
  border-radius: 999px;
  max-width: 640px;
  margin: 0 auto;
}
.waitlist-form input,
.waitlist-form select {
  border: 0;
  background: transparent;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.waitlist-form select { color: var(--ink-soft); appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4 L6 8 L10 4' stroke='%237B8896' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 32px; }
.waitlist-form .btn { padding: 12px 18px; }
@media (max-width: 720px) {
  .waitlist-form { grid-template-columns: 1fr; border-radius: var(--radius); padding: 10px; gap: 8px; }
  .waitlist-form input, .waitlist-form select { border: 1px solid var(--line); border-radius: 999px; }
  .waitlist-form .btn { width: 100%; }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

.waitlist-status {
  min-height: 1.4em;
  margin: 18px auto 0;
  font-size: 14px;
  max-width: 540px;
  text-align: center;
  transition: color 0.2s var(--t-ease);
}
.waitlist-status.is-sending { color: var(--ink-mute); }
.waitlist-status.is-success { color: #3BAD6A; font-weight: 500; }
.waitlist-status.is-error { color: #E85A3A; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
}
.brand-footer { color: var(--ink); }
.footer-tag { font-size: 14px; color: var(--ink-soft); margin: 12px 0 0; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 14px; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--chrome-1); }
.footer-fine { grid-column: 1 / -1; font-size: 12px; color: var(--ink-mute); margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}
