/* ==================================================================
   Stakehold: shared stylesheet ("New Industrial Age")
   Used by: /, /how-it-works/, /bloc/, /contact/
   Tokens, type, and components below are the single source of truth
   for the public site. Do not duplicate into page <style> blocks.
   ================================================================== */

:root {
  /* ---- Ground (blacked-out, "NEW INDUSTRIAL AGE") ---- */
  --ink:        #0b0b0a;
  --ink-deep:   #060605;
  --ink-raise:  #131210;
  --ink-raise-2:#1b1915;

  /* ---- Type on ink (bone) ---- */
  --cream:       #f2f0ea;
  --cream-card:  #ece9df;
  --cream-soft:  rgba(242, 240, 234, 0.74);
  --cream-mute:  rgba(242, 240, 234, 0.58);
  --cream-faint: rgba(242, 240, 234, 0.24);
  --cream-hair:  rgba(242, 240, 234, 0.12);
  --cream-ghost: rgba(242, 240, 234, 0.05);

  /* ---- Ink-on-bone (for the one light surface) ---- */
  --on-cream:       #0a0a0a;
  --on-cream-soft:  #46443e;
  --on-cream-mute:  rgba(10, 10, 10, 0.6);
  --on-cream-faint: rgba(10, 10, 10, 0.22);

  /* ---- Accent: brass, the ONLY hue ---- */
  --brass:      #b5895b;
  --brass-text: #cda678;
  --brass-deep: #a87e4f;
  --brass-soft: rgba(181, 137, 91, 0.14);

  /* Legacy --blue-* names carry brass so any stray ref renders as the accent */
  --blue:        #b5895b;
  --blue-bright: #cda678;
  --blue-deep:   #a87e4f;
  --blue-btn:    #b5895b;
  --blue-soft:   rgba(181, 137, 91, 0.14);

  --against:        #f2f0ea;
  --against-bright: #cda678;
  --good:        #cda678;
  --warn:        #cda678;

  --rule-strong: #f2f0ea;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif:   "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur:  140ms;
}

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
html { scroll-behavior: smooth; }
img, svg, video { max-width: 100%; display: block; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

::selection { background: var(--brass); color: var(--ink); }
.certificate ::selection, .phone ::selection { background: var(--ink); color: var(--cream); }

a:focus-visible, button:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 2px;
  border-radius: 0;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 540px) { .wrap { padding: 0 20px; } }

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.015em;
}
h1, h2 { text-wrap: balance; }

h1 { font-size: clamp(42px, 7.2vw, 100px); line-height: 1.02; }
h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.05; }
h3 { font-size: clamp(20px, 1.9vw, 26px); line-height: 1.2; font-weight: 600; }

em.swash {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  color: var(--brass-text);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-text);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

.label-mono {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

p.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream-soft);
  max-width: 60ch;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 15px 24px;
  border-radius: 0;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); transition-duration: 40ms; }
.btn .arrow { display: inline-block; transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn .txt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-blue {
  background: var(--brass);
  color: var(--ink);
}
.btn-blue:hover { background: var(--brass-text); }

.btn-ghost {
  border-color: var(--cream-faint);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: var(--cream-ghost);
}

.btn-ink {
  background: var(--on-cream);
  color: var(--cream);
}
.btn-ink:hover { background: #000; }

/* ============================================================
   Nav
   ============================================================ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  transition: background var(--dur) var(--ease);
}
nav.top.scrolled { background: var(--ink-deep); }

nav.top .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 540px) { nav.top .inner { padding: 13px 20px; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--cream);
  flex: none;
}
.brand .mark { width: 18px; height: 18px; flex: none; }
.brand .mark path { fill: var(--cream); transition: fill var(--dur) var(--ease); }
.brand:hover .mark path { fill: var(--brass); }
.brand .word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a.sect {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-links a.sect::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a.sect:hover { color: var(--cream); }
.nav-links a.sect:hover::after { transform: scaleX(1); }
.nav-links a.sect.active { color: var(--cream); }
.nav-links a.sect.active::after { transform: scaleX(1); }
@media (max-width: 760px) { .nav-links a.sect { display: none; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--cream-faint);
  padding: 10px 16px;
  border-radius: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--cream-ghost); border-color: var(--cream); color: var(--cream); }

.nav-cta.app {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.nav-cta.app:hover {
  background: var(--brass-text);
  border-color: var(--brass-text);
  color: var(--ink);
}
.nav-cta .arrow { display: inline-block; transition: transform var(--dur) var(--ease); }
.nav-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 920px) { .nav-links { gap: 20px; } }
@media (max-width: 760px) { .nav-links { gap: 0; } }
@media (max-width: 360px) {
  .nav-cta.app { padding: 9px 12px; letter-spacing: 0.12em; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 11vw, 130px) 0 0;
}
.hero .wrap { position: relative; }
.hero .eyebrow { margin-bottom: clamp(28px, 4vw, 44px); }

.hero h1 { max-width: 15ch; }
.hero h1 .swash { color: var(--brass-text); }

.hero .sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--cream-soft);
  max-width: 56ch;
  line-height: 1.6;
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: clamp(56px, 8vw, 96px);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.5s var(--ease) both; }
.d1 { animation-delay: 0.04s; }
.d2 { animation-delay: 0.10s; }
.d3 { animation-delay: 0.18s; }
.d4 { animation-delay: 0.28s; }
.d5 { animation-delay: 0.40s; }

/* ---- The proof strip: static mono facts, brass ticks, no motion ---- */
.proof-strip {
  position: relative;
  border-top: 1px solid var(--cream-hair);
  border-bottom: 1px solid var(--cream-hair);
  background: var(--ink-deep);
}
.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 34px;
  padding: 16px 32px;
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-mute);
  white-space: nowrap;
}
.proof-item .tick {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--brass);
  display: inline-block;
}
@media (max-width: 400px) {
  .proof-item { white-space: normal; }
}

/* ============================================================
   Sections
   ============================================================ */
section { position: relative; padding: clamp(76px, 10vw, 136px) 0; }
section.deep { background: var(--ink-deep); }
section.deep + section, section + section.deep { border-top: none; }

.section-head { margin-bottom: clamp(40px, 5.5vw, 72px); max-width: 86ch; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { max-width: 21ch; }
.section-head p.lead { margin-top: 22px; }

.rv {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv-2 { transition-delay: 0.06s; }
.rv-3 { transition-delay: 0.12s; }
.rv-4 { transition-delay: 0.18s; }
html.no-js .rv { opacity: 1; transform: none; }

/* ============================================================
   The asset: what a vote is worth (price cards)
   ============================================================ */
.quotes {
  margin-top: clamp(44px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }

.quote {
  background: var(--ink-raise);
  border: 1px solid var(--cream-hair);
  border-radius: 0;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.quote:hover { border-color: var(--brass); background: var(--ink-raise-2); }
.quote .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--cream-hair);
  padding-bottom: 12px;
}
.quote .kind {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.quote .ref {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--cream-mute);
}
.quote .px {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--brass-text);
}
.quote .px .unit {
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream-mute);
}
.quote .gloss {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cream-soft);
}
.quote .stamp {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-text);
  border: 1px solid var(--brass);
  border-radius: 0;
  padding: 5px 9px;
}

.asset-note {
  margin-top: clamp(30px, 4vw, 44px);
  max-width: 62ch;
}
.asset-note .src {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ============================================================
   Feature rows (numbered)
   ============================================================ */
.features {
  border-top: 1px solid var(--cream-hair);
  counter-reset: feat;
}
.features .row {
  counter-increment: feat;
  display: grid;
  grid-template-columns: 56px 130px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-hair);
  align-items: baseline;
  transition: background var(--dur) var(--ease);
}
.features .row:hover { background: var(--cream-ghost); }
.features .row::before {
  content: "[0" counter(feat) "]";
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass-text);
}
.features .row .text {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.32;
  color: var(--cream);
}
.features .row .fine {
  display: block;
  margin-top: 6px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-soft);
}
@media (max-width: 600px) {
  .features .row { grid-template-columns: 40px minmax(0, 1fr); gap: 10px; }
  .features .row .label-mono { grid-column: 2; }
  .features .row .text { grid-column: 2; }
}

/* ---- The instrument: a live-value readout panel ---- */
.instrument {
  background: var(--ink-raise);
  border: 1px solid var(--cream-faint);
  border-radius: 0;
  padding: 24px 22px 20px;
}
.instrument .title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-strong);
}
.instrument .title .name {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.instrument .title .state {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.instrument .title .state::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--brass);
  flex: none;
}
.instrument .rows { display: flex; flex-direction: column; }
.instrument .r {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--cream-hair);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.instrument .r:last-child { border-bottom: none; }
.instrument .r .k { color: var(--cream-mute); white-space: nowrap; }
.instrument .r .v { color: var(--cream); font-weight: 500; text-align: right; white-space: nowrap; }
@media (max-width: 540px) {
  .instrument .r {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .instrument .r .v { text-align: left; }
}
.instrument .r .v.live { color: var(--brass-text); }
.instrument .r .v.rest { color: var(--cream-faint); }
.instrument-note {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cream-mute);
  max-width: 44ch;
}
.instrument-block { max-width: 560px; }

/* ---- The per-ticker register table (bloc page) ---- */
.reg-table-scroll {
  margin-top: clamp(28px, 3.6vw, 44px);
  overflow-x: auto;
}
.reg-table { min-width: 460px; border-top: 1px solid var(--cream-hair); }
.reg-table .reg-head,
.reg-table .reg-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 16px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--cream-hair);
}
.reg-table .reg-head span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.reg-table .reg-row span {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}
.reg-table .reg-row span:first-child { color: var(--brass-text); font-weight: 600; }

/* ============================================================
   Product grid (features + phone mockup)
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }

.product-copy p {
  color: var(--cream-soft);
  max-width: 52ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
}
.product-copy p + p { margin-top: 20px; }
.product-copy .accent { color: var(--cream); font-weight: 600; }
.product-copy .features { margin-top: 44px; }

.proof-line {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-text);
  border: 1px solid var(--brass);
  padding: 8px 12px;
  max-width: 100%;
}
.proof-line .tick {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--brass);
  display: inline-block;
}
.proof-line .txt {
  min-width: 0;
  white-space: normal;
  line-height: 1.7;
}

.phone-wrap {
  display: flex;
  justify-content: center;
  padding: 26px 0;
}
.phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19;
  background: var(--ink-raise);
  border-radius: 0;
  border: 1px solid var(--cream-faint);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
  overflow: hidden;
}

.phone .greet {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cream-mute);
  text-transform: uppercase;
}
.phone .head {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
  line-height: 1.22;
  margin: 6px 0 14px;
  color: var(--cream);
}
.phone .tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.phone .tab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 0;
  border: 1px solid var(--cream-hair);
  background: transparent;
  color: var(--cream-mute);
}
.phone .tab.on { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.phone .card {
  background: var(--ink-deep);
  border: 1px solid var(--cream-hair);
  border-radius: 0;
  padding: 13px;
  margin-bottom: 9px;
}
.phone .card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 8px;
}
.phone .card .ticker {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.phone .card .date {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cream-mute);
}
.phone .card .what {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--cream-soft);
  margin-bottom: 9px;
  line-height: 1.4;
}
.phone .pills { display: flex; gap: 6px; flex-wrap: wrap; }
.phone .pill {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 0;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.phone .pill.for { background: var(--brass-soft); color: var(--brass-text); border-color: rgba(181, 137, 91, 0.3); }
.phone .pill.against { background: transparent; color: var(--cream-soft); border-color: var(--cream-faint); }
.phone .pill.mute { background: var(--cream-ghost); color: var(--cream-mute); }
.phone .nav {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--cream-hair);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--cream-mute);
  text-transform: uppercase;
}
.phone .nav .on { color: var(--cream); font-weight: 600; }

/* ============================================================
   Register (who it's for)
   ============================================================ */
.register { border-top: 1px solid var(--cream-hair); counter-reset: reg; }
.register .entry {
  counter-increment: reg;
  display: grid;
  grid-template-columns: 80px minmax(0, 0.95fr) minmax(0, 1.05fr) 56px;
  gap: clamp(16px, 2.4vw, 36px);
  padding: clamp(28px, 3.6vw, 44px) 0;
  border-bottom: 1px solid var(--cream-hair);
  align-items: start;
  transition: background var(--dur) var(--ease);
  position: relative;
}
.register .entry:hover { background: var(--cream-ghost); }
.register .entry::before {
  content: "[0" counter(reg) "]";
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass-text);
  padding-top: 8px;
}
.register .entry .who { display: flex; flex-direction: column; gap: 10px; }
.register .entry .role {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.12;
  color: var(--cream);
}
.register .entry .desc {
  color: var(--cream-soft);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.68;
  max-width: 46ch;
  padding-top: 6px;
}
.register .entry .go {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--cream-mute);
  justify-self: end;
  padding-top: 8px;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.register .entry:hover .go { transform: translateX(5px); color: var(--brass-text); }
@media (max-width: 760px) {
  .register .entry { grid-template-columns: 44px minmax(0, 1fr); }
  .register .entry .desc { grid-column: 2; padding-top: 0; }
  .register .entry .go { display: none; }
}

/* ============================================================
   Closing CTA band
   ============================================================ */
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.cta-band-inner h2 { max-width: 20ch; }
@media (min-width: 700px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

/* ============================================================
   Contact (the certificate)
   ============================================================ */
.certificate {
  background: var(--cream-card);
  color: var(--on-cream);
  border-radius: 0;
  padding: clamp(32px, 4.6vw, 64px);
  position: relative;
  border: 1px solid var(--on-cream);
}
.certificate::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--on-cream-faint);
  border-radius: 0;
  pointer-events: none;
}
.certificate > * { position: relative; }
.certificate .eyebrow { color: var(--on-cream-soft); }
.certificate .eyebrow::before { background: var(--brass-deep); }
.certificate h1, .certificate h2 {
  color: var(--on-cream);
  max-width: 18ch;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
}
.certificate p.lead { color: var(--on-cream-soft); }
.certificate .label-mono { color: var(--on-cream-mute); }

.cert-rule {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: 20px;
  border-top: 1px solid var(--on-cream-faint);
  display: flex;
  justify-content: space-between;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.cert-rule span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--rule-strong);
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
footer .left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
footer .left .mark { width: 15px; height: 15px; flex: none; }
footer .left .mark path { fill: var(--cream-mute); }
footer a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
footer a:hover { color: var(--cream); }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  .quote, .btn, .btn .arrow, .features .row, .register .entry .go,
  .nav-cta, .nav-cta .arrow, .brand .mark path { transition: none; }
  .nav-links a.sect::after { transition: none; }
  *, *::before, *::after { transition-duration: 0.001ms !important; }
}

/* Footer page links — every page reachable at every viewport (the top
   nav hides section links under 760px; this is the guaranteed path). */
.foot-links { display: inline-flex; flex-wrap: wrap; gap: 10px 20px; }

/* Small phones: keep the full contact address readable inside the
   certificate button (18 chars at 0.05em fits with slack at 320px). */
@media (max-width: 380px) {
  .certificate .btn { letter-spacing: 0.05em; padding-left: 16px; padding-right: 16px; }
}
