/* ============================================================
   ORION ONE — marketing site
   Palette: ivory #F4F3EE · near-black #0D0D0D · copper #C15F3C
   Display: Space Grotesk · Body: Inter
   ============================================================ */

/* ---------- Self-hosted fonts (variable, latin subset) ---------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/inter-latin-var.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #F4F3EE;
  --ivory-2: #EFEDE4;
  --ink: #0D0D0D;
  --accent: #C15F3C;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --maxw: 1180px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(193, 95, 60, 0.22); }
input, textarea, button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Keyframes ---------- */
@keyframes twinkle   { 0%,100%{opacity:.2;} 50%{opacity:.9;} }
@keyframes spinSlow  { to { transform: rotate(360deg); } }
@keyframes spinRev   { to { transform: rotate(-360deg); } }
@keyframes floaty    { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
@keyframes glowPulse { 0%,100%{opacity:.42;transform:scale(1);} 50%{opacity:.82;transform:scale(1.07);} }
@keyframes breathe   { 0%,100%{transform:scale(1);} 50%{transform:scale(1.02);} }
@keyframes scanline  { 0%{transform:translateY(-100%);} 100%{transform:translateY(400%);} }
@keyframes ldrArrow  { 0%{transform:translate(-50%,0);} 100%{transform:translate(-50%,-62vh);} }
@keyframes ldrTrail  { 0%{transform:scaleY(0);opacity:0;} 10%{opacity:1;} 60%{transform:scaleY(1);opacity:.95;} 100%{transform:scaleY(1);opacity:0;} }
@keyframes ldrFlash  { 0%{opacity:0;transform:translate(-50%,-50%) scale(.2);} 45%{opacity:1;transform:translate(-50%,-50%) scale(1);} 100%{opacity:0;transform:translate(-50%,-50%) scale(2);} }
@keyframes ldrWord   { 0%{opacity:0;transform:translateY(10px);} 100%{opacity:1;transform:translateY(0);} }
@keyframes ldrVeil   { 0%,90%{opacity:1;} 100%{opacity:0;} }
@keyframes ldrBow    { 0%{opacity:0;} 30%{opacity:.85;} 100%{opacity:.85;} }

/* ---------- Utility ---------- */
.wrap        { max-width: var(--maxw); margin: 0 auto; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; }
.wrap-text   { max-width: 760px;  margin: 0 auto; }
.wrap-med    { max-width: 900px;  margin: 0 auto; }
.accent      { color: var(--accent); }
.starfield   { position: absolute; inset: 0; pointer-events: none; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.eyebrow.muted { color: rgba(13,13,13,0.45); }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink); overflow: hidden;
  animation: ldrVeil 5.8s ease forwards;
  pointer-events: none;
}
.loader.hidden { display: none; }
.loader__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 16% 22%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 72% 16%, rgba(193,95,60,0.8), transparent),
    radial-gradient(1.4px 1.4px at 42% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 86% 54%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 28% 80%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 62% 82%, rgba(193,95,60,0.6), transparent);
}
.loader__flash {
  position: absolute; top: 24vh; left: 50%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(193,95,60,0.6) 30%, transparent 65%);
  opacity: 0; animation: ldrFlash .9s ease 1.62s forwards;
}
.loader__shot {
  position: absolute; bottom: 14vh; left: 50%;
  transform: translateX(-50%); width: 2px; height: 0;
}
.loader__trail {
  position: absolute; bottom: 0; left: 0; width: 2px; height: 62vh;
  transform-origin: bottom; transform: scaleY(0);
  background: linear-gradient(to top, rgba(193,95,60,0), rgba(193,95,60,0.85));
  animation: ldrTrail 1.5s ease-out .82s forwards;
}
.loader__arrow {
  position: absolute; bottom: 0; left: 50%;
  transform: translate(-50%, 0);
  animation: ldrArrow 1s cubic-bezier(.3,.55,.15,1) .82s forwards;
}
.loader__bow {
  position: absolute; bottom: 11vh; left: 50%;
  transform: translateX(-50%); opacity: 0;
  animation: ldrBow 1s ease .1s forwards;
}
.loader__word {
  position: absolute; top: 44vh; left: 0; right: 0;
  text-align: center; opacity: 0;
  animation: ldrWord .7s ease 2.45s forwards;
}
.loader__word-mark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 7vw, 58px); letter-spacing: .14em; color: var(--ivory);
}
.loader__word-sub {
  margin-top: 12px; font-family: var(--display);
  font-size: clamp(11px, 1.6vw, 14px); letter-spacing: .24em;
  text-transform: uppercase; color: rgba(244,243,238,0.55);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.nav.solid {
  background: rgba(244,243,238,0.85);
  border-bottom: 1px solid rgba(13,13,13,0.07);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px); height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.nav__brand img { display: block; width: 34px; height: 34px; }
.wordmark {
  font-family: var(--display); font-weight: 700;
  font-size: 16px; letter-spacing: .24em;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px; font-weight: 500; cursor: pointer;
  color: rgba(13,13,13,0.72); transition: color .2s;
}
.nav__link:hover { color: var(--ink); }
.nav__github { display: flex; align-items: center; color: rgba(13,13,13,0.6); transition: color .2s; }
.nav__github:hover { color: var(--accent); }

.nav__burger {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: none; flex-direction: column; gap: 5px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink); display: block; }

.nav__mobile {
  display: none;
  background: rgba(244,243,238,0.98);
  border-top: 1px solid rgba(13,13,13,0.07);
  padding: 14px clamp(18px, 4vw, 36px) 22px;
  flex-direction: column; gap: 6px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 12px 4px; font-size: 16px; font-weight: 500; cursor: pointer;
  border-bottom: 1px solid rgba(13,13,13,0.06);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--display); font-weight: 600; cursor: pointer;
  border: none; border-radius: 9px; letter-spacing: .03em;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(193,95,60,0.32); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(13,13,13,0.22);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(13,13,13,0.03); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { transform: translateY(-2px); }

.nav__cta { font-size: 13px; letter-spacing: .04em; padding: 10px 20px; border-radius: 8px; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(193,95,60,0.35); }
.btn-hero { font-size: 15px; padding: 15px 30px; }
.btn-cta  { font-size: 16px; padding: 16px 34px; border-radius: 10px; }
.btn-cta:hover { box-shadow: 0 14px 34px rgba(193,95,60,0.4); }

/* ============================================================
   VIEWS
   ============================================================ */
.view { display: none; }
.view.active { display: block; }
.view--sub { padding-top: 66px; }

section { position: relative; }

/* ---------- Section rhythm ---------- */
.sec        { padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 36px); }
.sec-top    { border-top: 1px solid rgba(13,13,13,0.06); }
.sec-band   { background: var(--ivory-2); border-top: 1px solid rgba(13,13,13,0.05); border-bottom: 1px solid rgba(13,13,13,0.05); }
.sec-dark   { background: var(--ink); color: var(--ivory); overflow: hidden; }

.h2 { font-family: var(--display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; font-weight: 700; }
.lead { font-size: 16px; line-height: 1.7; color: rgba(13,13,13,0.62); }
.sec-dark .lead { color: rgba(244,243,238,0.66); }

/* ---------- HERO ---------- */
.hero {
  overflow: hidden;
  padding: 150px clamp(18px, 4vw, 36px) clamp(80px, 10vw, 130px);
  background: var(--ivory);
}
.hero__stars {
  background-image:
    radial-gradient(1px 1px at 12% 24%, rgba(193,95,60,0.5), transparent),
    radial-gradient(1px 1px at 82% 18%, rgba(13,13,13,0.28), transparent),
    radial-gradient(1.4px 1.4px at 68% 62%, rgba(193,95,60,0.4), transparent),
    radial-gradient(1px 1px at 26% 74%, rgba(13,13,13,0.22), transparent),
    radial-gradient(1px 1px at 91% 68%, rgba(13,13,13,0.2), transparent);
  opacity: .6;
}
.hero__inner {
  position: relative; max-width: 940px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.emblem {
  position: relative;
  width: clamp(180px, 27vw, 262px); height: clamp(180px, 27vw, 262px);
  margin-bottom: 34px;
}
.emblem__glow {
  position: absolute; inset: -16%; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,95,60,0.30), transparent 62%);
  filter: blur(9px); animation: glowPulse 7s ease-in-out infinite;
}
.emblem__ring1 {
  position: absolute; inset: -10%; border: 1px solid rgba(193,95,60,0.38);
  border-radius: 50%; border-top-color: transparent; border-left-color: transparent;
  animation: spinSlow 46s linear infinite;
}
.emblem__ring2 {
  position: absolute; inset: -2%; border: 1px solid rgba(13,13,13,0.10);
  border-radius: 50%; border-right-color: transparent;
  animation: spinRev 64s linear infinite;
}
.emblem__orbit { position: absolute; inset: -10%; animation: spinSlow 19s linear infinite; }
.emblem__orbit-dot {
  position: absolute; top: -3.5px; left: 50%; width: 7px; height: 7px;
  margin-left: -3.5px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px 2px rgba(193,95,60,0.65);
}
.emblem__img { position: relative; width: 100%; height: 100%; display: block; animation: breathe 9s ease-in-out infinite; }

.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(46px, 9vw, 104px); letter-spacing: .06em; line-height: .98;
}
.hero__tag {
  margin-top: 20px; font-family: var(--display);
  font-size: clamp(16px, 2.4vw, 24px); letter-spacing: .03em; font-weight: 500;
}
.hero__desc {
  margin: 20px auto 0; max-width: 560px;
  font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65; color: rgba(13,13,13,0.62);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid; gap: clamp(8px, 3vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.problem-grid p {
  font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25; font-weight: 500;
}

/* ---------- WHAT IT IS ---------- */
.split {
  display: grid; gap: clamp(36px, 5vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center;
}
.what__title {
  margin: 0 0 20px; font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.01em; font-weight: 700;
}
.what__desc { font-size: clamp(15px, 1.7vw, 18px); line-height: 1.75; color: rgba(13,13,13,0.66); }
.flow {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 2vw, 20px); flex-wrap: wrap; padding: 36px 20px;
  background: #fff; border: 1px solid rgba(13,13,13,0.07); border-radius: 16px;
}
.flow__node { text-align: center; }
.flow__node-t { font-family: var(--display); font-weight: 600; font-size: 15px; }
.flow__node-s { font-size: 11px; color: rgba(13,13,13,0.45); margin-top: 2px; }
.flow__core {
  text-align: center; padding: 14px 20px;
  border: 1.5px solid var(--accent); border-radius: 12px; background: rgba(193,95,60,0.06);
}
.flow__core-t { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--accent); letter-spacing: .08em; }
.flow__core-s { font-size: 11px; color: rgba(13,13,13,0.5); margin-top: 2px; }
.flow__arrow { color: var(--accent); font-size: 20px; }

/* ---------- PILLARS ---------- */
.pillars-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.pillar {
  padding: 26px; border: 1px solid rgba(244,243,238,0.14);
  border-radius: 14px; background: rgba(255,255,255,0.02);
}
.pillar__icon { color: var(--accent); margin-bottom: 16px; }
.pillar h3 { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: .02em; margin-bottom: 8px; }
.pillar p  { font-size: 14.5px; line-height: 1.6; color: rgba(244,243,238,0.6); }

/* ---------- WHAT IT DOES ---------- */
.feature {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center;
  padding: clamp(24px, 3vw, 44px); background: #fff;
  border: 1px solid rgba(13,13,13,0.07); border-radius: 18px; margin-bottom: 20px;
}
.tag {
  display: inline-block; font-family: var(--display);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  font-weight: 600; padding: 5px 11px; border: 1px solid rgba(193,95,60,0.3);
  border-radius: 999px; margin-bottom: 16px;
}
.feature__title { font-family: var(--display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; line-height: 1.15; margin-bottom: 12px; }
.feature__desc  { font-size: 16px; line-height: 1.7; color: rgba(13,13,13,0.62); }
.chat {
  background: var(--ink); border-radius: 16px; padding: 16px;
  box-shadow: 0 20px 50px rgba(13,13,13,0.18);
}
.chat__head { display: flex; align-items: center; gap: 9px; padding-bottom: 12px; border-bottom: 1px solid rgba(244,243,238,0.1); }
.chat__head img { border-radius: 50%; }
.chat__name { font-family: var(--display); font-size: 13px; color: var(--ivory); font-weight: 600; }
.chat__status { font-size: 10px; color: #4ea36a; }
.chat__time { margin-left: auto; font-size: 10px; color: rgba(244,243,238,0.4); }
.chat__bubble {
  margin-top: 14px; background: rgba(193,95,60,0.14);
  border: 1px solid rgba(193,95,60,0.25); border-radius: 12px; border-top-left-radius: 3px; padding: 14px 16px;
}
.chat__label { font-family: var(--display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.chat__body { font-size: 13px; line-height: 1.65; color: rgba(244,243,238,0.85); }
.chat__note { margin-top: 10px; font-size: 11px; color: rgba(244,243,238,0.35); text-align: right; }

.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card { border: 1px solid rgba(13,13,13,0.08); border-radius: 16px; overflow: hidden; background: #fff; }
.card__media {
  position: relative; aspect-ratio: 16/10; background: var(--ink);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.card__scan {
  position: absolute; left: 0; right: 0; height: 38%;
  background: linear-gradient(rgba(193,95,60,0.18), transparent);
  animation: scanline 4.8s linear infinite;
}
.card__scan.s1 { animation-duration: 4.5s; }
.card__scan.s2 { animation-duration: 5.2s; }
.card__scan.s3 { animation-duration: 4.8s; }
.card__badge {
  position: absolute; top: 12px; right: 12px; font-family: var(--display);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(193,95,60,0.4); border-radius: 999px; padding: 3px 9px;
}
.card__body { padding: 18px 20px; }
.card__body h4 { font-family: var(--display); font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.card__body p  { font-size: 14px; line-height: 1.55; color: rgba(13,13,13,0.6); }

/* ---------- HOW IT WORKS ---------- */
.how { text-align: center; }
.how__lead { margin: 0 auto 44px; max-width: 600px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.chip {
  padding: 14px 20px; background: #fff; border: 1px solid rgba(13,13,13,0.1);
  border-radius: 11px; font-family: var(--display); font-weight: 600; font-size: 14px;
}
.chip span { display: block; font-family: var(--body); font-weight: 400; font-size: 11px; color: rgba(13,13,13,0.5); }
.dot-sep { color: var(--accent); }

/* ---------- DUAL TRACK ---------- */
.dual {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.track { padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(13,13,13,0.1); border-radius: 18px; background: #fff; }
.track.dark { background: var(--ink); color: var(--ivory); }
.track__eyebrow { font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.track h3 { font-family: var(--display); font-size: clamp(22px, 2.6vw, 28px); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.track p  { font-size: 15.5px; line-height: 1.7; color: rgba(13,13,13,0.62); margin-bottom: 22px; }
.track.dark p { color: rgba(244,243,238,0.62); }
.track__link { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--accent); cursor: pointer; }

/* ---------- INTEGRATIONS ---------- */
.integrations { text-align: center; }
.integrations .chips { margin-top: 26px; }
.pill {
  padding: 10px 18px; border: 1px solid rgba(13,13,13,0.12); border-radius: 999px;
  font-family: var(--display); font-size: 14px; font-weight: 500;
}
.pill.accent { border-color: rgba(193,95,60,0.4); font-weight: 600; color: var(--accent); }

/* ---------- DEMO ---------- */
.demo { text-align: center; }
.demo .h2 { margin-bottom: 32px; }
.demo__frame {
  position: relative; aspect-ratio: 16/9; border-radius: 18px;
  border: 1px solid rgba(244,243,238,0.14);
  background: radial-gradient(circle at 50% 40%, rgba(193,95,60,0.08), transparent 60%), #111;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.demo__stars {
  background-image:
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.25), transparent);
}
.demo__play {
  position: relative; text-align: center;
}
.demo__play-btn {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1.5px solid rgba(193,95,60,0.6); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; background: rgba(193,95,60,0.1);
}
.demo__play-t { font-family: var(--display); font-size: 15px; letter-spacing: .04em; }
.demo__play-s { font-size: 12px; color: rgba(244,243,238,0.45); margin-top: 6px; }
.demo__foot { margin-top: 20px; font-size: 13px; color: rgba(244,243,238,0.4); }

/* ---------- OWN IT ---------- */
.own__title { max-width: 600px; margin-bottom: 40px; }
.own-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 36px;
}
.own-card { padding: 22px; border-top: 2px solid var(--accent); background: #fff; border-radius: 0 0 12px 12px; }
.own-card h4 { font-family: var(--display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.own-card p  { font-size: 14px; line-height: 1.55; color: rgba(13,13,13,0.6); }
.own__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.gh-btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--display);
  font-size: 15px; font-weight: 600; background: var(--ink); color: var(--ivory);
  padding: 14px 26px; border-radius: 9px; cursor: pointer; transition: transform .2s;
}
.gh-btn:hover { transform: translateY(-2px); }
.own__note { font-size: 13px; color: rgba(13,13,13,0.5); }

/* ---------- CLOSING CTA ---------- */
.closing { text-align: center; padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 36px); }
.closing__stars {
  background-image:
    radial-gradient(1.5px 1.5px at 50% 22%, rgba(193,95,60,0.8), transparent),
    radial-gradient(1px 1px at 25% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 78% 50%, rgba(255,255,255,0.3), transparent);
  opacity: .7;
}
.closing__inner { position: relative; max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: var(--display); font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.08; font-weight: 700; letter-spacing: .01em; margin-bottom: 26px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero__title {
  font-family: var(--display); font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.03; letter-spacing: -0.01em; font-weight: 700; margin: 16px 0 24px;
}
.about-hero__lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.7; color: rgba(13,13,13,0.66); }
.about-h2 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; font-weight: 700; margin: 14px 0 20px; }
.about-p { font-size: 17px; line-height: 1.75; color: rgba(13,13,13,0.66); }
.about-p + .about-p { margin-top: 18px; }
.pad-sm { padding: clamp(40px, 6vw, 70px) clamp(18px, 4vw, 36px); }
.pad-md { padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 36px); }
.pad-hero { padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 36px) clamp(40px, 6vw, 70px); }

.meaning {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center;
}
.meaning img { width: min(280px, 80%); justify-self: center; }
.meaning__eyebrow { margin-bottom: 14px; }
.meaning p { font-size: 17px; line-height: 1.7; color: rgba(244,243,238,0.82); }
.meaning p + p { margin-top: 18px; }
.meaning strong { font-family: var(--display); letter-spacing: .06em; }

.fusion__intro { max-width: 560px; margin-bottom: 36px; }
.fusion-grid {
  display: grid; gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: rgba(13,13,13,0.08); border: 1px solid rgba(13,13,13,0.08);
  border-radius: 14px; overflow: hidden;
}
.fusion-cell { padding: 22px; background: var(--ivory); }
.fusion-cell .k { font-family: var(--display); font-weight: 600; color: var(--accent); font-size: 15px; margin-bottom: 4px; }
.fusion-cell .v { font-size: 14px; color: rgba(13,13,13,0.6); }

.built__intro { max-width: 620px; margin-bottom: 36px; }
.built__title { max-width: 620px; }
.built-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.built-card { padding: 22px; border: 1px solid rgba(13,13,13,0.1); border-radius: 14px; background: #fff; }
.built-card h4 { font-family: var(--display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.built-card p  { font-size: 14px; line-height: 1.55; color: rgba(13,13,13,0.6); }

.roadmap { display: flex; flex-direction: column; }
.roadmap__row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(13,13,13,0.08); }
.roadmap__row:last-child { border-bottom: none; }
.roadmap__when { font-family: var(--display); font-size: 12px; color: var(--accent); font-weight: 600; min-width: 90px; }
.roadmap__what { font-size: 15.5px; line-height: 1.6; color: rgba(13,13,13,0.7); }
.center { text-align: center; }
.mt-44 { margin-top: 44px; }

/* ============================================================
   SKILLS
   ============================================================ */
.skills-hero__title {
  font-family: var(--display); font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.03; letter-spacing: -0.01em; font-weight: 700; max-width: 720px; margin: 16px 0 20px;
}
.skills-hero__lead { max-width: 600px; font-size: clamp(16px, 1.9vw, 20px); line-height: 1.7; color: rgba(13,13,13,0.64); margin-bottom: 32px; }
.tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.tab {
  font-family: var(--display); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  cursor: pointer; transition: all .25s ease;
  border: 1px solid rgba(13,13,13,0.14); background: transparent; color: rgba(13,13,13,0.6);
}
.tab.active { border-color: rgba(193,95,60,0.9); background: rgba(193,95,60,0.12); color: var(--accent); }

.skills-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.skill {
  padding: 26px; border: 1px solid rgba(13,13,13,0.1); border-radius: 16px; background: #fff;
  display: flex; flex-direction: column; gap: 10px; transition: transform .2s, box-shadow .2s;
}
.skill:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(13,13,13,0.08); }
.skill__top { display: flex; align-items: center; justify-content: space-between; }
.skill__n { font-family: var(--display); font-size: 12px; color: rgba(13,13,13,0.3); font-weight: 600; }
.skill__tag {
  font-family: var(--display); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(193,95,60,0.35); border-radius: 999px; padding: 4px 10px; font-weight: 600;
}
.skill h3 { font-family: var(--display); font-size: 20px; font-weight: 600; margin: 6px 0 0; }
.skill p  { font-size: 14.5px; line-height: 1.6; color: rgba(13,13,13,0.62); }

.write {
  display: grid; gap: clamp(28px, 4vw, 52px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.write h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 36px); line-height: 1.1; font-weight: 700; margin: 14px 0 16px; }
.write p  { font-size: 16px; line-height: 1.75; color: rgba(244,243,238,0.66); }
.code {
  background: #111; border: 1px solid rgba(244,243,238,0.12); border-radius: 14px; padding: 22px;
  font-family: var(--display), monospace; font-size: 13px; line-height: 1.8; color: rgba(244,243,238,0.75);
}
.code__file { color: rgba(244,243,238,0.35); }
.code__h { color: var(--accent); margin-top: 10px; }
.write-feats {
  margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(244,243,238,0.12);
  display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.write-feats h4 { font-family: var(--display); font-size: 16px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.write-feats p  { font-size: 14.5px; line-height: 1.6; color: rgba(244,243,238,0.6); }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  padding-top: 66px; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--ivory);
}
.waitlist__stars {
  background-image:
    radial-gradient(1px 1px at 14% 24%, rgba(193,95,60,0.4), transparent),
    radial-gradient(1px 1px at 84% 30%, rgba(13,13,13,0.22), transparent),
    radial-gradient(1.3px 1.3px at 70% 72%, rgba(193,95,60,0.35), transparent),
    radial-gradient(1px 1px at 26% 76%, rgba(13,13,13,0.18), transparent);
  opacity: .5;
}
.waitlist section { width: 100%; padding: clamp(50px, 7vw, 90px) clamp(18px, 4vw, 36px); }
.waitlist__inner { max-width: 520px; margin: 0 auto; }
.waitlist h1 { font-family: var(--display); line-height: 1.05; font-weight: 700; }

.form { display: flex; flex-direction: column; gap: 18px; }
.field-label {
  display: block; font-family: var(--display); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(13,13,13,0.55); font-weight: 600; margin-bottom: 8px;
}
.field-label .opt { text-transform: none; letter-spacing: 0; color: rgba(13,13,13,0.4); }
.input, .textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(13,13,13,0.18);
  border-radius: 10px; background: #fff; outline: none;
}
.input { font-size: 16px; }
.textarea { font-size: 15px; resize: vertical; font-family: var(--body); }
.input:focus, .textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193,95,60,0.12); }
.role-group { display: flex; gap: 10px; }
.role {
  flex: 1; font-family: var(--display); font-size: 13px; letter-spacing: .06em; font-weight: 600;
  padding: 13px; border-radius: 10px; cursor: pointer; transition: all .25s ease;
  border: 1px solid rgba(13,13,13,0.16); background: #fff; color: rgba(13,13,13,0.7);
}
.role.active { border-color: rgba(193,95,60,0.9); background: rgba(193,95,60,0.1); color: var(--accent); }
.form-error { font-size: 13.5px; color: var(--accent); }
.form-submit { font-size: 16px; padding: 16px; border-radius: 10px; }
.form-submit:hover { box-shadow: 0 12px 30px rgba(193,95,60,0.35); }
.form-note { text-align: center; font-size: 13px; color: rgba(13,13,13,0.45); margin-top: 2px; }

.success { text-align: center; }
.success__check {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(193,95,60,0.1); border: 1.5px solid rgba(193,95,60,0.5);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.success h1 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.1; margin-bottom: 14px; }
.success p  { font-size: 16px; line-height: 1.7; color: rgba(13,13,13,0.64); margin-bottom: 30px; }
.success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success__actions .btn { font-size: 14px; padding: 12px 22px; }
.hidden { display: none !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--ivory);
  padding: clamp(48px, 6vw, 72px) clamp(18px, 4vw, 36px) 36px;
}
.footer__grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand img { border-radius: 50%; }
.footer__tag { font-size: 14px; line-height: 1.6; color: rgba(244,243,238,0.5); max-width: 240px; }
.footer__h { font-family: var(--display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,243,238,0.4); margin-bottom: 14px; }
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 14.5px; color: rgba(244,243,238,0.75); cursor: pointer; transition: color .2s; }
.footer__link:hover { color: var(--accent); }
.footer__oss-p { font-size: 14px; line-height: 1.6; color: rgba(244,243,238,0.6); margin-bottom: 12px; }
.footer__gh { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--accent); }
.footer__company-a { display: block; font-size: 14.5px; font-weight: 500; color: rgba(244,243,238,0.75); margin-bottom: 8px; transition: color .2s; }
.footer__company-a:hover { color: var(--accent); }
.footer__company-sub { display: block; font-size: 14px; color: rgba(244,243,238,0.55); margin-bottom: 12px; transition: color .2s; }
.footer__company-sub:hover { color: var(--accent); }
.footer__hermes { font-size: 13px; line-height: 1.6; color: rgba(244,243,238,0.45); }
.footer__hermes span { color: rgba(244,243,238,0.7); }
.footer__bar {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(244,243,238,0.1);
  display: flex; flex-wrap: wrap; gap: 18px 26px; justify-content: space-between; align-items: center;
}
.footer__copy { font-size: 13px; color: rgba(244,243,238,0.4); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(244,243,238,0.5); transition: color .2s; }
.footer__legal a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE — mobile nav swaps at 900px
   ============================================================ */
@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; }
  html { scroll-behavior: auto; }
}
