@import url('./tokens.css');

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--void); color: var(--bone); }
body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.55;
  font-weight: var(--weight-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--void);
  color: var(--bone);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--ion); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  letter-spacing: var(--track-display-tight);
  line-height: 1.1;
  color: var(--bone);
}
h1 { font-size: var(--display-xl); }
h2 { font-size: var(--display-l); }
h3 { font-size: var(--display-m); }
h4 { font-size: var(--h1); letter-spacing: -0.01em; }

p { color: var(--bone); }
p + p { margin-top: 1em; }
em { font-style: italic; color: var(--bone); }

::selection { background: var(--ion); color: var(--void); }

/* ─── Layout primitives ───────────────────────────────────────────── */

.shell {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: 64px; }

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 16px;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ion);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.lede {
  font-size: var(--body-l);
  color: var(--ash);
  line-height: 1.6;
  max-width: 64ch;
}

.muted { color: var(--ash); }
.dim { color: var(--ash-dim); }
.ion { color: var(--ion); }
.ember { color: var(--ember); }
.plasma { color: var(--plasma); }
.bone { color: var(--bone); }

.mono {
  font-family: var(--font-mono);
  font-size: var(--mono);
  letter-spacing: var(--track-mono-label);
}

.divider {
  height: 1px;
  background: var(--steel);
  border: 0;
}

/* ─── Header / Navigation ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 18, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--steel);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand .sigil { width: 28px; height: 28px; }
.nav__brand .wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: var(--track-wordmark);
  font-size: 16px;
  color: var(--bone);
}
.nav__brand:hover { text-decoration: none; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ash);
}
.nav__links a:hover { color: var(--bone); text-decoration: none; }
.nav__links a.active { color: var(--bone); position: relative; }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--ion);
}
.nav__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  border: 1px solid var(--steel);
  padding: 9px 16px;
}
.nav__cta:hover { border-color: var(--ion); color: var(--ion); text-decoration: none; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--steel);
  cursor: pointer;
  padding: 0;
}
.nav__toggle .bars {
  display: flex; flex-direction: column; gap: 4px;
}
.nav__toggle .bars span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--bone);
}
.nav__toggle:hover { border-color: var(--ion); }
.nav__toggle:hover .bars span { background: var(--ion); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 100;
  padding: 96px 24px 24px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms var(--ease-soft), visibility 200ms var(--ease-soft);
}
.nav__mobile.is-open { visibility: visible; opacity: 1; }
.nav__mobile-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--steel);
  background: var(--void);
}
.nav__mobile-close {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--steel);
  padding: 9px 14px;
  cursor: pointer;
}
.nav__mobile-close:hover { border-color: var(--ion); color: var(--ion); }
.nav__mobile-links { display: grid; gap: 0; max-width: 540px; margin: 0 auto; }
.nav__mobile-links a {
  display: block;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  color: var(--bone);
  border-bottom: 1px solid var(--steel);
}
.nav__mobile-links a:hover { color: var(--ion); text-decoration: none; }
.nav__mobile-cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--ion);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  max-width: 540px;
  margin-inline: auto;
}
.nav__mobile-cta:hover { text-decoration: none; background: var(--bone); }

body.nav-locked { overflow: hidden; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* ─── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--steel);
  background: transparent;
  color: var(--bone);
  transition: border-color 200ms var(--ease-soft), color 200ms var(--ease-soft), background 200ms var(--ease-soft);
}
.btn:hover { border-color: var(--ion); color: var(--ion); text-decoration: none; }
.btn--primary { background: var(--ion); color: var(--void); border-color: var(--ion); }
.btn--primary:hover { background: var(--bone); border-color: var(--bone); color: var(--void); }
.btn--ghost { border-color: var(--steel); color: var(--ash); }
.btn--lg { padding: 17px 26px; font-size: 16px; }

.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ─── Cards ───────────────────────────────────────────────────────── */

.card {
  background: var(--carbon);
  border: 1px solid var(--steel);
  padding: 28px;
  position: relative;
}
.card--bare { background: transparent; }
.card__corner {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-eyebrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ash-dim);
  text-transform: uppercase;
}
.card__title {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card__icon {
  width: 32px; height: 32px;
  color: var(--bone);
  margin-bottom: 20px;
}
.card__icon svg { width: 100%; height: 100%; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.card-grid > .card {
  border: 0;
  background: var(--carbon);
}

/* ─── Hero ambient glow (replaces hairline grid) ──────────────────── */

.hairline-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 15% 0%, rgba(93, 211, 255, 0.10), transparent 65%),
    radial-gradient(60% 55% at 92% 25%, rgba(232, 226, 210, 0.035), transparent 60%),
    radial-gradient(40% 60% at 50% 110%, rgba(93, 211, 255, 0.04), transparent 70%);
}

/* ─── Hero ────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-block: 120px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--steel);
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--ion);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--weight-medium);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--ion); }
.hero__subtitle {
  font-size: var(--body-l);
  color: var(--ash);
  max-width: 56ch;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--steel);
}
.hero__meta-item .k {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-bottom: 8px;
  display: block;
}
.hero__meta-item .v {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  color: var(--bone);
  letter-spacing: -0.01em;
}
.hero__meta-item .v small {
  font-size: var(--body-s);
  color: var(--ash);
  font-weight: var(--weight-regular);
  margin-left: 4px;
}

/* ─── Section heading ─────────────────────────────────────────────── */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: var(--display-l);
  max-width: 22ch;
}
.section-head .lede { max-width: 48ch; }

/* ─── Pitch / two-column prose ────────────────────────────────────── */

.prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.prose p { font-size: var(--body-l); line-height: 1.65; color: var(--bone); }
.prose p + p { margin-top: 1em; }
.prose .sub { color: var(--ash); font-size: var(--body); }
@media (max-width: 880px) { .prose { grid-template-columns: 1fr; gap: 24px; } }

/* ─── Capability list ─────────────────────────────────────────────── */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.cap {
  background: var(--carbon);
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.cap__num {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-bottom: 18px;
}
.cap__title {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cap__sub { color: var(--ash); font-size: var(--body-s); margin-bottom: 16px; }
.cap__list { font-size: var(--body-s); color: var(--bone); display: grid; gap: 8px; margin-top: auto; }
.cap__list li { display: flex; gap: 10px; }
.cap__list li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--ion);
  flex: 0 0 auto;
  margin-top: 9px;
}
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cap-grid { grid-template-columns: 1fr; } }

/* ─── Differentiator tiles ────────────────────────────────────────── */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.diff {
  background: var(--carbon);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.diff__badge {
  font-family: var(--font-eyebrow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ion);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.diff__title {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.diff__body { color: var(--ash); font-size: var(--body-s); line-height: 1.55; }
@media (max-width: 1080px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* ─── Build status table ──────────────────────────────────────────── */

.status-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: var(--mono);
  border: 1px solid var(--steel);
  background: var(--carbon);
}
.status-table th, .status-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--steel);
  vertical-align: top;
}
.status-table thead th {
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  color: var(--ash);
  background: var(--void);
}
.status-table tbody tr:hover { background: rgba(93, 211, 255, 0.04); }
.status-table .phase-num {
  width: 60px;
  color: var(--ash-dim);
}
.status-table .status-pill {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--steel);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
}
.status-pill--live { border-color: var(--ion); color: var(--ion); background: rgba(93, 211, 255, 0.08); }
.status-pill--build { border-color: var(--ember); color: var(--ember); background: rgba(255, 138, 61, 0.08); }
.status-pill--queued { color: var(--ash); }

/* ─── Footer ──────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--steel);
  padding-block: 56px 40px;
  margin-top: 64px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand .lockup { display: flex; align-items: center; gap: 12px; }
.footer__brand .lockup .sigil { width: 24px; height: 24px; }
.footer__brand .lockup .wordmark {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: var(--track-wordmark);
  font-size: 14px;
  color: var(--bone);
}
.footer__brand p { color: var(--ash); font-size: var(--body-s); max-width: 36ch; }
.footer__col h5 {
  font-family: var(--font-eyebrow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: var(--bone); font-size: var(--body-s); }
.footer__col a:hover { color: var(--ion); text-decoration: none; }
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--steel);
  color: var(--ash-dim);
  font-family: var(--font-body);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 880px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ─── Architecture diagram block ──────────────────────────────────── */

.arch-block {
  background: var(--carbon);
  border: 1px solid var(--steel);
  padding: 48px;
  position: relative;
}
.arch-block__caption {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 24px;
  display: flex; gap: 16px;
}
.arch-block__caption span { display: flex; align-items: center; gap: 6px; }
.arch-block__caption .swatch { width: 10px; height: 10px; display: inline-block; }

/* ─── UI mockup chrome ────────────────────────────────────────────── */

.mockup {
  background: var(--carbon);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.mockup__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--void);
  border-bottom: 1px solid var(--steel);
}
.mockup__dots { display: flex; gap: 6px; }
.mockup__dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--steel);
}
.mockup__url {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-label);
  color: var(--ash);
  padding: 4px 10px;
  background: var(--carbon);
  border: 1px solid var(--steel);
  margin-left: 12px;
  text-align: center;
  max-width: 480px;
}
.mockup__url .ion { color: var(--ion); }

/* ─── Dashboard mockup grid ───────────────────────────────────────── */

.dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
  font-size: var(--body-s);
}
.dash__sidebar {
  background: var(--void);
  border-right: 1px solid var(--steel);
  padding: 24px 0;
}
.dash__nav {
  display: flex; flex-direction: column;
}
.dash__nav-section {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  color: var(--ash-dim);
  padding: 12px 24px 4px;
}
.dash__nav-item {
  padding: 8px 24px;
  color: var(--ash);
  display: flex; align-items: center; gap: 10px;
  font-size: var(--body-s);
}
.dash__nav-item.active {
  color: var(--bone);
  background: var(--carbon);
  border-left: 2px solid var(--ion);
  padding-left: 22px;
}
.dash__main { padding: 28px 32px; background: var(--carbon); }
.dash__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--steel);
  margin-bottom: 24px;
}
.dash__title {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
}
.dash__pill {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--steel);
  color: var(--ash);
}
.dash__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  margin-bottom: 24px;
}
.dash__stat { background: var(--carbon); padding: 18px 20px; }
.dash__stat .k {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  color: var(--ash);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.dash__stat .v {
  font-family: var(--font-display);
  font-size: var(--display-m);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
}
.dash__stat .delta {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  margin-left: 8px;
  color: var(--ion);
}
.dash__stat .delta--down { color: var(--ember); }

.dash__split {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.dash__panel { background: var(--carbon); padding: 24px; }
.dash__panel-title {
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 18px;
  display: flex; justify-content: space-between;
}

/* ─── Chart bars ──────────────────────────────────────────────────── */

.bar-chart {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-label);
}
.bar-row .lbl { color: var(--ash); }
.bar-row .val { color: var(--bone); text-align: right; }
.bar-track { height: 8px; background: var(--void); border: 1px solid var(--steel); position: relative; }
.bar-fill { height: 100%; background: var(--ion); }
.bar-fill--ember { background: var(--ember); }
.bar-fill--ash { background: var(--ash); }

/* ─── Code block ──────────────────────────────────────────────────── */

.code {
  background: var(--void);
  border: 1px solid var(--steel);
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: var(--mono);
  color: var(--bone);
  overflow-x: auto;
  white-space: pre;
}
.code .c-comment { color: var(--ash-dim); }
.code .c-key { color: var(--ion); }
.code .c-str { color: var(--ember); }
.code .c-num { color: var(--bone); }

/* ─── Inline KV list ──────────────────────────────────────────────── */

.kv-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  border-top: 1px solid var(--steel);
  padding-top: 20px;
}
.kv-list dt {
  font-family: var(--font-eyebrow);
  color: var(--ash);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 3px;
}
.kv-list dd { color: var(--bone); }

/* ─── Step flow (onboarding) ──────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--steel);
  background: var(--carbon);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--steel);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: var(--display-m);
  font-weight: var(--weight-medium);
  color: var(--ion);
  letter-spacing: -0.02em;
}
.step__title {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step__body { color: var(--ash); font-size: var(--body-s); line-height: 1.6; }
.step__meta {
  font-family: var(--font-eyebrow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.step__meta .duration { color: var(--bone); display: block; margin-top: 4px; }
@media (max-width: 720px) {
  .step { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px; }
  .step__meta { grid-column: 1 / -1; }
}

/* ─── Q&A blocks ──────────────────────────────────────────────────── */

.qa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.qa__item {
  background: var(--carbon);
  padding: 32px;
}
.qa__q {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  display: flex; gap: 12px;
}
.qa__q::before {
  content: "Q.";
  color: var(--ion);
  font-family: var(--font-mono);
  font-size: var(--body);
  letter-spacing: var(--track-mono-label);
  flex: 0 0 auto;
}
.qa__a { color: var(--ash); font-size: var(--body-s); line-height: 1.65; }
@media (max-width: 760px) { .qa { grid-template-columns: 1fr; } }

/* ─── Pricing tiers ───────────────────────────────────────────────── */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
}
.tier {
  background: var(--carbon);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.tier--featured { background: linear-gradient(180deg, rgba(93,211,255,0.06), var(--carbon) 60%); border: 1px solid var(--ion); margin: -1px; }
.tier__name {
  font-family: var(--font-eyebrow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ion);
}
.tier__price {
  font-family: var(--font-display);
  font-size: var(--display-m);
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
}
.tier__price small { color: var(--ash); font-size: var(--body); margin-left: 6px; font-weight: var(--weight-regular); }
.tier__desc { color: var(--ash); font-size: var(--body-s); }
.tier__features { display: grid; gap: 10px; font-size: var(--body-s); margin-top: 12px; }
.tier__features li { display: flex; gap: 10px; color: var(--bone); }
.tier__features li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 7px; flex: 0 0 auto;
  background: var(--ion);
}
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

/* ─── Form ────────────────────────────────────────────────────────── */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ash);
}
.field input, .field select, .field textarea {
  background: var(--void);
  border: 1px solid var(--steel);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--bone);
  outline: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ion); }
.field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ─── Misc ────────────────────────────────────────────────────────── */

.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.gap-32 { gap: 32px; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }

.tag {
  display: inline-block;
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: var(--mono-s);
  letter-spacing: var(--track-mono-caption);
  text-transform: uppercase;
  border: 1px solid var(--steel);
  color: var(--ash);
}
.tag--ion { color: var(--ion); border-color: var(--ion); }
.tag--ember { color: var(--ember); border-color: var(--ember); }
