/* =========================================================
   Foreword — design system
   ========================================================= */

:root {
  --bg: #0d0c0a;
  --bg-2: #15130f;
  --bg-3: #1a1814;
  --panel: #1f1c17;
  --line: #2a261f;
  --line-2: #3a3528;
  --text: #f5f1ea;
  --text-dim: #c4bdaf;
  --muted: #8a8273;
  --accent: #f06f1d;
  --accent-2: #ffae6a;
  --accent-dim: #b3540f;
  --teal: #7cc6b8;
  --rose: #e26a73;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow: 0 30px 60px -30px rgba(0,0,0,.6), 0 8px 24px -12px rgba(0,0,0,.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #1a0f04; }

a { color: inherit; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #1a0f04; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.scroll-bar {
  position: fixed; left: 0; top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 60;
  transition: width 80ms linear;
  pointer-events: none;
}

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

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 400; }
h2 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 400; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--text-dim); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section__head { max-width: 760px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  color: var(--text);
}
.section__lede {
  font-size: 19px;
  color: var(--text-dim);
  margin-top: 18px;
  max-width: 60ch;
}
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

.prose p { font-size: 18px; max-width: 64ch; }
.prose p + p { margin-top: 1em; }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #1a0f04;
  box-shadow: 0 8px 24px -10px rgba(240,111,29,.6);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,.03); }

.btn--block { width: 100%; }

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,12,10,.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(13,12,10,.86); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-family: var(--serif); font-weight: 500;
}
.brand__mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #1a0f04;
  font-weight: 700; font-size: 18px;
  font-family: var(--serif);
}
.brand__word { font-size: 20px; letter-spacing: -0.01em; }

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none; color: var(--text-dim); font-size: 14px;
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a.active::after,
.nav__links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .2s ease, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-2); padding: 20px 24px;
    gap: 16px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__cta { display: flex; padding: 0 24px 20px; background: var(--bg-2); position: absolute; top: calc(68px + 180px); left: 0; right: 0; border-bottom: 1px solid var(--line); }
}

/* =========================================================
   Nav dropdown (Front Desk → vertical sub-pages)
   ─────────────────────────────────────────────────────────
   These rules live in styles.css (NOT front-desk.css) so they
   always load, even if /css/front-desk.css fails to deploy or
   is cached stale. Without this, the dropdown items render as
   plain visible inline text inside .nav__links — a UX bug we
   saw in production on 2026-05-18.
   Primary hide: display: none. The fancy animations live in
   front-desk.css and progressively enhance from there.
   ========================================================= */
.nav__item--has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__item--has-dropdown > a::after {
  content: "▾";
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  opacity: .6;
}
.nav__dropdown {
  display: none;                /* primary hide — survives ANY css load order */
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 8px;
  min-width: 240px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 0;
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  display: block;
}
.nav__dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
.nav__dropdown a:hover { background: var(--bg-3); }
.nav__dropdown a .nav__dropdown-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__dropdown__sep {
  height: 1px;
  background: var(--line);
  margin: 6px 12px;
}
.nav__dropdown__soon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--muted);
  opacity: .65;
  cursor: default;
}
.nav__dropdown__soon::after {
  content: "Soon";
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Mobile drawer: dropdown inlines into the stacked menu. */
@media (max-width: 880px) {
  .nav__item--has-dropdown { display: block; width: 100%; }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    margin-top: 4px;
  }
  .nav__dropdown a { padding: 8px 0; }
  /* On mobile, the dropdown only opens via the parent .nav.is-open menu;
     show it inline once the burger menu is open. */
  .nav.is-open .nav__item--has-dropdown .nav__dropdown { display: block; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero { position: relative; padding: 80px 0 80px; overflow: hidden; }
.hero--camp { padding: 70px 0 50px; }
.hero__inner { position: relative; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__noise {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 360px at 80% -10%, rgba(240,111,29,.18), transparent 60%),
    radial-gradient(700px 400px at 20% 110%, rgba(124,198,184,.10), transparent 60%);
  pointer-events: none;
}
.hero__art {
  position: absolute;
  top: 60px; right: -40px;
  width: min(560px, 50vw);
  height: auto;
  pointer-events: none;
  opacity: .85;
}
@media (max-width: 980px) { .hero__art { display: none; } }
.hero__line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLine 3s ease-out 0.6s forwards;
}
.hero__line--2 { animation-delay: 1s; }
.hero__pt {
  opacity: 0;
  animation: ptIn .5s ease 3.6s forwards, ptPulse 2.4s ease 4.1s infinite;
  transform-origin: 600px 30px;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes ptIn { to { opacity: 1; } }
@keyframes ptPulse {
  0%, 100% { r: 4; filter: drop-shadow(0 0 0 rgba(240,111,29,.6)); }
  50% { r: 6; filter: drop-shadow(0 0 8px rgba(240,111,29,.8)); }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  margin-bottom: 32px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(240,111,29,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240,111,29,.5); } 70% { box-shadow: 0 0 0 14px rgba(240,111,29,0); } 100% { box-shadow: 0 0 0 0 rgba(240,111,29,0); } }

.hero__title {
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 8.5vw, 120px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__title-accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero__title-accent::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.06em;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 1.2s ease 1.4s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero__title--small { font-size: clamp(40px, 5.6vw, 78px); max-width: 22ch; }

.hero__title-rotating {
  display: block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero__title-rotating .rot {
  display: block;
  position: absolute; left: 0; top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.hero__title-rotating .rot--in { opacity: 1; transform: translateY(0); }

.hero__sub {
  max-width: 56ch;
  font-size: 19px;
  color: var(--text-dim);
  margin: 32px 0 36px;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero__scroll {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 56px;
  transition: opacity .3s ease, color .2s;
  animation: scrollCue 2.4s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll svg { transition: transform .2s ease; }
.hero__scroll:hover svg { transform: translateY(2px); }
@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.stat__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.stat__label { color: var(--muted); font-size: 12px; margin-top: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--mono); }

/* =========================================================
   Ticker
   ========================================================= */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to right, transparent, var(--bg-2), transparent);
  padding: 18px 0;
  overflow: hidden;
}
.ticker__track { display: flex; }
.ticker__group {
  display: flex; gap: 24px; align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.ticker__group span:first-child { padding-left: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Sections, generic
   ========================================================= */

.section { padding: 130px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section + .section { border-top: 1px solid var(--line); }

/* HOWSTRIP — what we are, in three cards */
.howstrip { padding: 80px 0 90px; }
.howstrip__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  position: relative;
  overflow: hidden;
}
.howstrip__grid::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 200px at 50% 0%, rgba(240,111,29,.10), transparent 70%);
  pointer-events: none;
}
.howstep {
  position: relative;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease;
  z-index: 1;
}
.howstep:hover { background: var(--bg-3); transform: translateY(-2px); }
.howstep__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.howstep__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240,111,29,.20), rgba(240,111,29,.05));
  border: 1px solid rgba(240,111,29,.28);
  color: var(--accent);
  margin-bottom: 6px;
}
.howstep h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.howstep p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
.howstep__sep {
  display: grid; place-items: center;
  width: 80px;
  color: var(--line-2);
  align-self: center;
}
.howstep__sep svg {
  width: 80px; height: 12px;
  animation: stepArrow 2.6s ease-in-out infinite;
}
.howstep__sep:nth-of-type(2) svg { animation-delay: .4s; }
@keyframes stepArrow {
  0%, 100% { color: var(--line-2); transform: translateX(0); }
  50% { color: var(--accent); transform: translateX(4px); }
}
@media (max-width: 880px) {
  .howstrip__grid {
    grid-template-columns: 1fr;
  }
  .howstep__sep { display: none; }
  .howstep { padding: 24px; border-bottom: 1px solid var(--line); }
  .howstep:last-child { border-bottom: 0; }
}

/* PROBLEM */
.problem .section__title { font-style: italic; }
.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .problem__layout { grid-template-columns: 1fr; gap: 36px; } }

.inbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 0;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.inbox::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 28px;
  background: linear-gradient(to bottom, var(--bg-3), transparent);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}
.inbox__row {
  display: grid;
  grid-template-columns: 14px 100px 1fr;
  gap: 14px;
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  align-items: center;
  font-size: 14px;
  transition: background .25s ease;
}
.inbox__row:first-child { border-top: 0; padding-top: 36px; }
.inbox__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  justify-self: center;
}
.inbox__from { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.inbox__sub { color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox__row--gen { opacity: .55; }
.inbox__row--gen:hover { opacity: .8; background: rgba(255,255,255,.02); }
.inbox__row--you {
  background: linear-gradient(90deg, rgba(240,111,29,.10), transparent 70%);
  position: relative;
}
.inbox__row--you .inbox__dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(240,111,29,.15); }
.inbox__row--you .inbox__from { color: var(--accent); }
.inbox__row--you .inbox__sub { color: var(--text); font-weight: 500; }
.inbox__row--you::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
}
@media (max-width: 480px) {
  .inbox__row { grid-template-columns: 14px 1fr; padding: 11px 16px; }
  .inbox__from { display: none; }
}

/* FDC pills */
.fdc__pills {
  list-style: none; padding: 0; margin: 22px 0 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fdc__pills li span {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: border-color .2s, color .2s, background .2s;
}
.fdc__pills li:hover span { border-color: var(--accent); color: var(--accent); background: var(--bg-3); }

/* FDC */
.fdc__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .fdc__layout { grid-template-columns: 1fr; gap: 48px; } }
.fdc__copy .btn { margin-top: 16px; }

.orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
}
.orbit__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-dim));
  color: #1a0f04;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 60px -10px rgba(240,111,29,.5);
  z-index: 2;
}
.orbit__ring {
  position: absolute; inset: 0;
  border: 1px dashed var(--line-2);
  border-radius: 50%;
  animation: spin 50s linear infinite;
}
.orbit__ring--2 { inset: 16%; animation-duration: 35s; animation-direction: reverse; border-color: var(--line); }
.orbit__ring span {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  --r: 50%;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transform: rotate(calc(60deg * var(--i))) translate(0, calc(-1 * (100% / 2)));
  transform: translate(-50%, -50%) rotate(calc(60deg * var(--i))) translate(0, -50%) translate(0, -190px) rotate(calc(-60deg * var(--i)));
}
.orbit__ring--2 span {
  transform: translate(-50%, -50%) rotate(calc(60deg * var(--i))) translate(0, -50%) translate(0, -130px) rotate(calc(-60deg * var(--i)));
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .orbit__core { width: 96px; height: 96px; font-size: 22px; }
  .orbit__ring span { font-size: 10px; padding: 4px 8px; }
  .orbit__ring--1 span { transform: translate(-50%, -50%) rotate(calc(60deg * var(--i))) translate(0, -50%) translate(0, -140px) rotate(calc(-60deg * var(--i))); }
  .orbit__ring--2 span { transform: translate(-50%, -50%) rotate(calc(60deg * var(--i))) translate(0, -50%) translate(0, -95px) rotate(calc(-60deg * var(--i))); }
}

/* AGENT STACK */
.stack__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1080px) { .stack__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .stack__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .stack__grid { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(240,111,29,.10), transparent 60%);
  opacity: 0; transition: opacity .25s;
  pointer-events: none;
}
.tile:hover { transform: translateY(-2px); border-color: var(--line-2); background: var(--bg-3); }
.tile:hover::after { opacity: 1; }
.tile--accent {
  background: linear-gradient(180deg, rgba(240,111,29,.08), var(--bg-2) 70%);
  border-color: rgba(240,111,29,.35);
}
.tile--accent .tile__icon { background: linear-gradient(135deg, rgba(240,111,29,.30), rgba(240,111,29,.08)); border-color: rgba(240,111,29,.5); }

.tile__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(240,111,29,.18), rgba(240,111,29,.06));
  border: 1px solid rgba(240,111,29,.25);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.tile h3 { color: var(--text); margin-bottom: 8px; font-family: var(--sans); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.tile p { color: var(--text-dim); font-size: 14px; margin: 0; line-height: 1.55; }

.stack__note {
  margin-top: 32px;
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}

/* HOW */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .how__steps { grid-template-columns: 1fr; } }

.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.step__num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step__time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.step__title {
  font-family: var(--serif);
  font-size: 28px;
  margin: 14px 0 12px;
  color: var(--text);
}
.step p { color: var(--text-dim); margin-bottom: 16px; }
.step__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.step__list li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
}
.step__list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* GALLERY */
.gallery__rail {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.gallery__rail::-webkit-scrollbar { height: 8px; }
.gallery__rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.card {
  flex: 0 0 360px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  scroll-snap-align: start;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--line-2); }
.card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.pill { display: inline-flex; padding: 4px 10px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--accent); font-size: 11px; }
.card h3 { font-family: var(--serif); font-size: 22px; line-height: 1.15; color: var(--text); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-dim); margin: 0 0 16px; }
.card__foot { font-family: var(--mono); font-size: 11px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }

/* WHY */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 1080px) { .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }
.claim {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.claim:hover { transform: translateY(-3px); border-color: var(--line-2); }
.claim::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px 200px at var(--mx, 50%) var(--my, 0%), rgba(240,111,29,.10), transparent 60%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.claim:hover::after { opacity: 1; }
.claim__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(240,111,29,.18), rgba(240,111,29,.06));
  border: 1px solid rgba(240,111,29,.25);
  color: var(--accent);
  margin-bottom: 18px;
}
.claim h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.claim p { color: var(--text-dim); margin: 0; font-size: 14px; line-height: 1.55; }

/* Comparison strip */
.vs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
@media (max-width: 760px) {
  .vs { grid-template-columns: 1fr; }
  .vs__col { border-right: 0 !important; border-bottom: 1px solid var(--line); }
}
.vs__col {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.vs__col:last-child { border-right: 0; }
.vs__col--us {
  background: linear-gradient(180deg, rgba(240,111,29,.08), var(--bg-2) 60%);
  border-right: 0;
}
.vs__h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.vs__col--us .vs__h { color: var(--accent); }
.vs ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vs li { padding-left: 22px; position: relative; font-size: 14px; color: var(--text-dim); }
.vs__bad::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--rose); font-weight: 600; }
.vs__mid::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--muted); font-weight: 600; }
.vs__good::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.vs__col--us li { color: var(--text); }

/* PRICING */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing__grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.plan:hover { transform: translateY(-3px); border-color: var(--line-2); }
.plan--featured {
  border-color: rgba(240,111,29,.55);
  background: linear-gradient(180deg, rgba(240,111,29,.10), var(--bg-2) 70%);
  transform: translateY(-10px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(240,111,29,.18);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan__flag {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent); color: #1a0f04;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.plan__name {
  font-family: var(--serif); font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.plan__price--sub .amt { color: var(--text); }
.plan__price .amt { font-family: var(--serif); font-size: 46px; color: var(--text); font-weight: 400; letter-spacing: -0.03em; line-height: 1; }
.plan__price .cad { color: var(--muted); font-size: 14px; }
.plan__desc { color: var(--text-dim); margin: 18px 0 18px; font-size: 15px; }
.plan__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan__list li {
  position: relative; padding-left: 22px;
  color: var(--text-dim); font-size: 14px;
}
.plan__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.pricing__note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

/* CAMP */
.camp__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .camp__layout { grid-template-columns: 1fr; } }
.camp__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.weeks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.week {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .2s ease, border-color .2s ease, background .2s;
}
.week:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--bg-3); }
.week span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.week strong { font-family: var(--serif); font-size: 22px; color: var(--text); font-weight: 500; }

/* FAQ */
.faq__list { display: flex; flex-direction: column; gap: 8px; max-width: 880px; margin: 0 auto; }
.faq__list details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color .2s, background .2s;
}
.faq__list details[open] { border-color: var(--line-2); background: var(--bg-3); }
.faq__list summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; color: var(--accent); font-size: 24px; font-family: var(--sans);
  transition: transform .2s ease;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p { margin-top: 12px; color: var(--text-dim); font-size: 16px; max-width: 70ch; }

/* BOOK / APPLY */
.book__inner { max-width: 760px; margin: 0 auto; }
.book__form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 36px;
}
.book__form label { display: flex; flex-direction: column; gap: 8px; }
.book__form label span { font-size: 13px; color: var(--text-dim); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.book__form input, .book__form textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  transition: border-color .2s ease, background .2s;
}
.book__form input:focus, .book__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .row { grid-template-columns: 1fr; } }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form__note { color: var(--muted); font-size: 13px; margin: 0; }
.form__note.is-error { color: var(--rose); }
.form__note.is-ok { color: var(--teal); }

/* CURRICULUM */
.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) { .curriculum__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .curriculum__grid { grid-template-columns: 1fr; } }

.lesson {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.lesson__head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.lesson__num { font-family: var(--serif); font-size: 28px; color: var(--accent); font-weight: 500; letter-spacing: -0.03em; }
.lesson__time { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lesson h3 { font-family: var(--serif); font-size: 26px; color: var(--text); margin-bottom: 10px; }
.lesson p { color: var(--text-dim); font-size: 15px; margin-bottom: 14px; }
.lesson ul { padding-left: 18px; margin: 0; color: var(--text-dim); font-size: 14px; display: flex; flex-direction: column; gap: 6px; }
.lesson ul li::marker { color: var(--accent); }

/* WHO IT'S FOR */
.who__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .who__layout { grid-template-columns: 1fr; gap: 36px; } }
.who__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .who__list { grid-template-columns: 1fr; } }
.who__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.who__item h4 { color: var(--accent); font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.who__item ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.who__item li { padding-left: 20px; position: relative; color: var(--text-dim); font-size: 15px; }
.who__item li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* PLACEMENT */
.placement__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) { .placement__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.logo {
  background: var(--bg-2);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-sm);
  padding: 28px 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.placement__note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 80ch;
}

/* LOGISTICS */
.logistics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 900px) { .logistics__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .logistics__grid { grid-template-columns: 1fr; } }

.logistics__grid article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.logistics__grid h4 {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.logistics__grid p { color: var(--text-dim); font-size: 15px; margin: 0; }
.logistics__grid strong { color: var(--text); }

/* FOOTER */
.foot {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 64px 0 24px;
  margin-top: 0;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}
@media (max-width: 760px) { .foot__inner { grid-template-columns: 1fr; } }

.foot__brand p { color: var(--text-dim); margin-top: 14px; max-width: 30ch; font-size: 14px; }
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 520px) { .foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.foot__h {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.foot__cols a { display: block; padding: 4px 0; text-decoration: none; color: var(--text-dim); font-size: 14px; }
.foot__cols a:hover { color: var(--accent); }

.foot__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--muted); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.foot__badge { font-family: var(--mono); letter-spacing: 0.06em; }

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Login: header button + footer dropdown
   ========================================================= */

/* Header — Client Login button */
.btn--client {
  background: rgba(240,111,29,.08);
  color: var(--accent);
  border-color: rgba(240,111,29,.3);
  padding: 12px 18px;
  font-size: 14px;
}
.btn--client:hover {
  background: var(--accent);
  color: #1a0f04;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Footer — Login dropdown (native <details>) */
.foot__login {
  position: relative;
  font-size: 14px;
}
.foot__login > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: var(--muted);
  user-select: none;
  transition: color .2s ease;
}
.foot__login > summary::-webkit-details-marker { display: none; }
.foot__login > summary:hover { color: var(--text); }
.foot__login > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.foot__login-caret { transition: transform .2s ease; }
.foot__login[open] > summary .foot__login-caret { transform: rotate(180deg); }

.foot__login-menu {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  background: #14110b;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
  z-index: 20;
}
.foot__login-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.foot__login-menu a:hover {
  background: rgba(240,111,29,.1);
  color: var(--accent);
}

/* Mobile: stack the header CTAs */
@media (max-width: 720px) {
  .nav__cta { gap: 8px; }
  .btn--client { display: none; }   /* hidden on small screens; nav__toggle takes over */
}

/* =========================================================
   V2 — Jobs-voice homepage rewrite (2026-05-11)
   Sections: hero v2, thesis (contrast), threes (rule of three),
   brainshow (demo), disciplines (13-tile), moat (comparison),
   onemore (Personal Brand reveal), pricing v2, pilot (close).
   ========================================================= */

/* Kicker variants used by V2 */
.kicker--muted { color: var(--muted); }
.kicker--bright { color: var(--accent-2); }

/* ──────────── HERO V2 ─────────────────────────────────────
   One thesis. One CTA. One ornament: the brain seed SVG. */
.hero--v2 { padding: 120px 0 120px; }
.hero__inner--v2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero__title--v2 {
  max-width: 18ch;
  margin: 0 auto 32px;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.96;
}
.hero__sub--v2 {
  max-width: 60ch;
  margin: 0 auto 44px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--text-dim);
}
.hero__ctas--v2 {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* The brain seed — center-back ornament behind the hero copy. */
.hero__brain {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(960px, 90vw);
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.hero__brain .brainnode--center circle:last-child {
  animation: corePulse 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes corePulse {
  0%, 100% { r: 6; }
  50%      { r: 9; }
}
.hero__brain .brainring g {
  opacity: 0;
  animation: nodeIn 0.6s ease forwards;
}
.hero__brain .brainring g:nth-child(1) { animation-delay: 0.6s; }
.hero__brain .brainring g:nth-child(2) { animation-delay: 0.9s; }
.hero__brain .brainring g:nth-child(3) { animation-delay: 1.2s; }
.hero__brain .brainring g:nth-child(4) { animation-delay: 1.5s; }
.hero__brain .brainring g:nth-child(5) { animation-delay: 1.8s; }
.hero__brain .brainring g:nth-child(6) { animation-delay: 2.1s; }
@keyframes nodeIn { to { opacity: 1; } }

.hero__brain .brainedges path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: edgeDraw 0.9s ease forwards;
}
.hero__brain .brainedges path:nth-child(1) { animation-delay: 0.7s; }
.hero__brain .brainedges path:nth-child(2) { animation-delay: 1.0s; }
.hero__brain .brainedges path:nth-child(3) { animation-delay: 1.3s; }
.hero__brain .brainedges path:nth-child(4) { animation-delay: 1.6s; }
.hero__brain .brainedges path:nth-child(5) { animation-delay: 1.9s; }
.hero__brain .brainedges path:nth-child(6) { animation-delay: 2.2s; }
@keyframes edgeDraw { to { stroke-dashoffset: 0; } }

@media (max-width: 720px) {
  .hero--v2 { padding: 80px 0 80px; }
  .hero__brain { opacity: 0.25; }
}

/* ──────────── TICKER V2 ───────────────────────────────────
   Sparser content. Same machinery. */
.ticker--v2 { background: var(--bg-2); border-block: 1px solid var(--line); padding: 18px 0; }
.ticker--v2 .ticker__group span:not([aria-hidden]) { color: var(--text-dim); }

/* ──────────── THESIS — the contrast ───────────────────────
   Two columns, divider between. Cold. Spare. */
.thesis { padding: 120px 0; }
.thesis__layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: start;
}
.thesis__divider {
  width: 1px;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(to bottom, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}
.thesis__col p {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.55;
  max-width: 42ch;
}
.thesis__h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.thesis__col--bad .thesis__h { color: var(--text-dim); }
.thesis__col--good .thesis__h { color: var(--text); }

.thesis__close {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--serif);
  max-width: 36ch;
}
.thesis__close--bad { color: var(--rose); }
.thesis__close--good { color: var(--accent); }

@media (max-width: 880px) {
  .thesis { padding: 80px 0; }
  .thesis__layout { grid-template-columns: 1fr; gap: 40px; }
  .thesis__divider { display: none; }
}

/* ──────────── THREES — rule of three rows ─────────────────
   Alternating left/right. Big copy, small visual. */
.threes { padding: 140px 0; }
.three-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.three-row:last-child { border-bottom: 0; }
.three-row--alt { direction: rtl; }
.three-row--alt > * { direction: ltr; }

.three-row__num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.three-row__h {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.three-row__lede {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 48ch;
}
.three-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.three-row__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
}
.three-row__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* The FDC card visual */
.fdc-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.fdc-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: grid; place-items: center;
  color: #1a0f04;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.fdc-card__meta { margin-bottom: 20px; }
.fdc-card__name { font-weight: 600; font-size: 16px; }
.fdc-card__role { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.fdc-card__channels {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}
.fdc-card__channels li { display: flex; align-items: center; gap: 10px; }
.dot--on { background: #5fd49b; box-shadow: 0 0 8px rgba(95,212,155,.6); animation: pulse 2.4s infinite; }

/* The stack-mini visual */
.stack-mini {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stack-mini__row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}
.stack-mini__bar {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.stack-mini__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  animation: barIn 1.4s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes barIn { to { transform: scaleX(1); } }
.stack-mini__num { text-align: right; color: var(--text); }
.stack-mini__row--mute { opacity: 0.6; }

/* The graph-mini visual */
.graph-mini {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  height: 280px;
}
.graph-mini__edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.graph-mini__node {
  position: absolute;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
  white-space: nowrap;
}
.graph-mini__node--root {
  top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #1a0f04;
  border-color: var(--accent);
}
.graph-mini__node--p1 { top: 96px; left: 8%; }
.graph-mini__node--p2 { top: 96px; left: 50%; transform: translateX(-50%); }
.graph-mini__node--p3 { top: 96px; right: 8%; }
.graph-mini__node--proof { top: 184px; left: 8%; background: rgba(124,198,184,.08); border-color: rgba(124,198,184,.3); color: var(--teal); }
.graph-mini__node--persona { top: 184px; right: 8%; background: rgba(124,198,184,.08); border-color: rgba(124,198,184,.3); color: var(--teal); }

@media (max-width: 880px) {
  .threes { padding: 80px 0; }
  .three-row { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .three-row--alt { direction: ltr; }
  .graph-mini { height: 220px; }
}

/* ──────────── BRAINSHOW — the demo ────────────────────────
   A trigger event, then four discipline reactions fan in. */
.brainshow { padding: 140px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.brainshow__demo {
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto; margin-right: auto;
}
.brainshow__trigger {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--accent);
  color: #1a0f04;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 20px 50px -20px rgba(240,111,29,.6);
}
.brainshow__time { opacity: 0.7; font-weight: 500; }
.brainshow__title { font-size: 14px; }

.brainshow__fan {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.brainshow__react {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  position: relative;
  opacity: 0;
  animation: reactIn 0.7s ease forwards;
}
.brainshow__react::before {
  content: "";
  position: absolute;
  left: 20px; top: -16px;
  width: 1px; height: 16px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}
.brainshow__react--1 { animation-delay: 0.8s; }
.brainshow__react--2 { animation-delay: 1.2s; }
.brainshow__react--3 { animation-delay: 1.6s; }
.brainshow__react--4 { animation-delay: 2.0s; }
.brainshow__react--4 { border-color: rgba(226,106,115,.3); background: rgba(226,106,115,.05); }
.brainshow__react--4 .brainshow__react-disc { color: var(--rose); }
.brainshow__react--5 { animation-delay: 2.4s; }
.brainshow__react--5 { border-color: rgba(240,111,29,.45); background: rgba(240,111,29,.05); border-left-width: 3px; }
.brainshow__react--5 .brainshow__react-disc { color: var(--accent); font-weight: 600; letter-spacing: 0.02em; }

@keyframes reactIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.brainshow__react-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.brainshow__react-disc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.brainshow__react-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}

.brainshow__caption {
  margin-top: 64px;
  text-align: center;
}
.brainshow__caption p {
  font-size: 19px;
  color: var(--text);
  margin: 0;
}
.brainshow__caption--soft {
  margin-top: 8px !important;
  font-style: italic;
  font-family: var(--serif);
  color: var(--text-dim) !important;
}

@media (max-width: 720px) {
  .brainshow { padding: 80px 0; }
  .brainshow__fan { grid-template-columns: 1fr; }
}

/* ──────────── DISCIPLINES — 13-tile grid ──────────────────
   Clean. Numbered. One accent (Personal Brand). */
.disciplines { padding: 140px 0; }
.disciplines__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.disc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.disc:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.disc__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.disc h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.disc p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}
.disc--accent {
  background: linear-gradient(180deg, rgba(240,111,29,.08), rgba(240,111,29,.02));
  border-color: rgba(240,111,29,.3);
}
.disc--accent h3 { color: var(--accent); }
.disc--accent .disc__num { color: var(--accent-2); }

@media (max-width: 1080px) {
  .disciplines__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .disciplines { padding: 80px 0; }
  .disciplines__grid { grid-template-columns: 1fr; }
}

/* ──────────── MOAT — the comparison ───────────────────────
   Them vs Us. Sharp. */
.moat { padding: 140px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.moat__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.moat__h {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--text);
}
.moat__lede {
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text-dim);
  margin-bottom: 64px;
  line-height: 1.4;
}
.moat__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.moat__col {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}
.moat__col--us {
  border-color: rgba(240,111,29,.4);
  background: linear-gradient(180deg, rgba(240,111,29,.04), var(--bg));
}
.moat__h2 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.moat__col--us .moat__h2 { color: var(--accent); }
.moat__col ul { list-style: none; padding: 0; margin: 0; }
.moat__col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.5;
}
.moat__col--us li { color: var(--text); }
.moat__col li:last-child { border-bottom: 0; }

@media (max-width: 880px) {
  .moat { padding: 80px 0; }
  .moat__compare { grid-template-columns: 1fr; }
}

/* ──────────── ONE MORE THING — Personal Brand reveal ──────
   Jobs's classic beat. Centered. Big. Breathing. */
.onemore { padding: 160px 0; text-align: center; }
.onemore__inner { max-width: 800px; margin: 0 auto; }
.onemore__h {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 24px 0;
  color: var(--text);
}
.onemore__lede {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.5;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.onemore__soft {
  font-style: italic;
  font-family: var(--serif);
  color: var(--text-dim);
  margin: 0 auto 40px;
  max-width: 56ch;
}
.onemore__cta { margin-top: 12px; }

@media (max-width: 720px) {
  .onemore { padding: 100px 0; }
}

/* ──────────── PRICING V2 ─────────────────────────────────
   Simpler than the original. Three columns. No bloat. */
.pricing--v2 { padding: 140px 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.pricing__grid--v2 { grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 880px) {
  .pricing__grid--v2 { grid-template-columns: 1fr; }
}

/* ──────────── PILOT — the close ──────────────────────────
   Centered. Quiet. One form. */
.pilot { padding: 140px 0; }
.pilot__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pilot__h {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 24px 0 16px;
}
.pilot__lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.pilot__form {
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.pilot__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pilot__form label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pilot__form label > span { display: block; margin-bottom: 6px; }
.pilot__form input,
.pilot__form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}
.pilot__form input:focus,
.pilot__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.pilot__form .form__foot {
  display: flex; align-items: center; gap: 16px; margin-top: 20px;
  flex-wrap: wrap;
}
.pilot__form .form__note {
  margin: 0;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .pilot { padding: 80px 0; }
  .pilot__form .row { grid-template-columns: 1fr; }
}

/* ============================================================
   PROOF — three lines, large type, no scroll.
   Replaces the old ticker. Each line is a moment from a real
   engagement, set in large serif type with generous breathing room.
   ============================================================ */
.proof {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 56px 0;
}
.proof__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
}
.proof__line {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0;
}
.proof__line-soft {
  color: var(--text-dim);
  font-style: italic;
}
@media (max-width: 720px) {
  .proof { padding: 40px 0; }
  .proof__line { font-size: 19px; }
}

/* ============================================================
   WHAT ATLAS IS THINKING — a Monday-synthesis specimen.
   Quasi-document feel: timestamp header, body in sections, foot
   with a CTA. Reads like a real artefact the FDC opens on Monday.
   ============================================================ */
.thinking { padding: 120px 0; }

.synth {
  max-width: 980px;
  margin: 48px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.synth__head {
  padding: 22px 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(240, 111, 29, 0.04), transparent);
}
.synth__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.synth__stamp::before {
  content: "● ";
  color: var(--accent);
  margin-right: 4px;
}
.synth__client strong,
.synth__confidence strong {
  color: var(--text);
  font-family: var(--mono);
  font-weight: 600;
}
.synth__body { padding: 32px 36px; display: flex; flex-direction: column; gap: 28px; }
.synth__block { display: flex; flex-direction: column; gap: 10px; }
.synth__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.synth__thesis {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
.synth__block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}
.synth__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.synth__block--half { gap: 12px; }
.synth__focus,
.synth__risks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.synth__focus li,
.synth__risks li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.synth__focus li::before,
.synth__risks li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.synth__focus strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.synth__block--kill {
  border-top: 1px dashed var(--line);
  padding-top: 24px;
}
.synth__block--kill .synth__label { color: var(--rose); }
.synth__block--kill em {
  font-style: normal;
  color: var(--rose);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.synth__foot {
  padding: 18px 36px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.synth__foot a {
  color: var(--accent);
  text-decoration: none;
}
.synth__foot a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .thinking { padding: 80px 0; }
  .synth__head, .synth__body, .synth__foot { padding-left: 22px; padding-right: 22px; }
  .synth__split { grid-template-columns: 1fr; gap: 24px; }
  .synth__thesis { font-size: 18px; }
}

/* ============================================================
   MEET THE TEAM — fifteen specialists, one card each.
   Grid of small cards. Each card is a name, role, voice line.
   Accent variant for Eli (executive voice — the differentiator).
   ============================================================ */
.team { padding: 120px 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 56px;
}
.member {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.member:hover {
  border-color: rgba(240, 111, 29, 0.35);
  transform: translateY(-2px);
}
.member__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d35a14);
  color: #1a0f04;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.member__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.member__voice {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
.member--accent {
  border-color: rgba(240, 111, 29, 0.4);
  background: linear-gradient(180deg, rgba(240, 111, 29, 0.05), var(--bg-2));
}
.team__foot {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .team { padding: 80px 0; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
  .member { padding: 16px; }
  .member__name { font-size: 18px; }
  .member__voice { font-size: 12.5px; }
}
@media (max-width: 440px) {
  .team__grid { grid-template-columns: 1fr; }
}
