/* ============================================================
   Coynitt — Vision A2
   The one stylesheet for the marketing site. Ported from the
   Claude Design project "Coynitt Website Redesign Vision"
   (Coynitt Home Vision A2 Click Timewarp + the ten inner pages).

   The design source carried every rule as an inline style plus
   non-standard style-hover attributes; those are real CSS here so
   hovers, focus rings, media queries and reduced-motion work.
   ============================================================ */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
a { color: var(--deep); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: rgba(67, 197, 204, .4); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ---------- tokens ---------- */
:root {
  --cream:    #FDF6EC;
  --cream2:   #F7ECDA;
  --ink:      #102A49;
  --soft:     #45607E;
  --teal:     #2BA9B0;
  --tealBr:   #43C5CC;
  --gold:     #74D6DB;
  --blue:     #124478;
  --blueSoft: #2C5C86;
  --deep:     #178A91;

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --disp: 'Gabarito', 'Plus Jakarta Sans', sans-serif;

  /* the frosted surface used across every card and panel */
  --glass-bg:     rgba(255, 253, 248, .55);
  --glass-brd:    1px solid rgba(255, 255, 255, .62);
  --glass-blur:   blur(16px) saturate(165%);
  --glass-shadow: 0 18px 44px -22px rgba(16, 38, 66, .4), inset 0 1px 0 rgba(255, 255, 255, .7);

  --gutter: 42px;
  --maxw:   1240px;
}

/* ---------- keyframes ---------- */
@keyframes tw-marquee  { from { transform: translateX(0) }   to { transform: translateX(-50%) } }
@keyframes tw-name     { from { transform: translateX(0) }   to { transform: translateX(-50%) } }
@keyframes tw-float    { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@keyframes tw-spin     { from { transform: rotate(0) }       to { transform: rotate(360deg) } }
@keyframes tw-spin-r   { from { transform: rotate(0) }       to { transform: rotate(-360deg) } }
@keyframes tw-fill     { 0% { height: 46% }                  100% { height: 74% } }
@keyframes tw-caret    { 0%,49% { opacity: 1 }               50%,100% { opacity: 0 } }
@keyframes tw-sheen    { 0% { transform: translateX(-130%) } 100% { transform: translateX(360%) } }
@keyframes tw-blink    { 0%,49% { opacity: 1 }               50%,100% { opacity: .25 } }
@keyframes tw-old-marq { from { transform: translateX(100%) } to { transform: translateX(-100%) } }
@keyframes tw-sweep    { from { transform: rotate(0) }       to { transform: rotate(360deg) } }
@keyframes tw-waveX    { from { transform: translateX(0) }   to { transform: translateX(-50%) } }
@keyframes tw-bub      { 0% { transform: translateY(6px) scale(.5); opacity: 0 } 25% { opacity: .7 } 100% { transform: translateY(-62px) scale(1); opacity: 0 } }
@keyframes tw-draw     { 0% { stroke-dashoffset: 320 }       55%,100% { stroke-dashoffset: 0 } }
@keyframes tw-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(43, 169, 176, .6) }
  70%  { box-shadow: 0 0 0 10px rgba(43, 169, 176, 0) }
  100% { box-shadow: 0 0 0 0 rgba(43, 169, 176, 0) }
}
@keyframes tw-node {
  0%,9%    { background: #74D6DB; box-shadow: 0 0 0 5px rgba(116,214,219,.3); transform: scale(1.4) }
  18%,100% { background: rgba(255,255,255,.58); box-shadow: 0 0 0 0 rgba(116,214,219,0); transform: scale(1) }
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section { padding: 110px var(--gutter) 0; }
.section--tight { padding-top: 96px; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.kicker--light { color: var(--gold); }
.kicker--white { color: rgba(255, 255, 255, .9); }

.h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(32px, 3.8vw, 56px); line-height: 1.02;
  letter-spacing: -.032em; margin-top: 14px;
}
.h2--sm { font-size: clamp(30px, 3.4vw, 50px); line-height: 1.04; }
.lede { font-size: 17px; color: var(--soft); margin-top: 14px; max-width: 60ch; }
.note { font-size: 12.5px; color: var(--soft); margin-top: 16px; line-height: 1.6; }

/* the frosted surface */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-brd);
  box-shadow: var(--glass-shadow);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 999px; border: none; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 700;
  text-align: center; transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn .car { font-family: var(--mono); }
.btn--primary {
  padding: 16px 30px; color: #fff;
  background: linear-gradient(140deg, var(--teal), var(--deep));
  box-shadow: 0 16px 34px -14px rgba(43, 169, 176, .75);
}
.btn--primary:hover { transform: translateY(-3px); color: #fff; }
.btn--primary:active { transform: translateY(-1px); }
.btn--ghost {
  padding: 16px 28px; background: none;
  border: 1.5px solid rgba(16, 42, 73, .16); color: var(--ink);
}
.btn--ghost:hover { background: rgba(16, 42, 73, .07); color: var(--ink); }
.btn--dark {
  padding: 11px 21px; font-size: 13.5px; color: var(--cream); background: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(16, 42, 73, .7); white-space: nowrap;
}
.btn--dark:hover { transform: translateY(-2px); color: var(--cream); }
.btn--white {
  padding: 16px 30px; background: #fff; color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .4);
}
.btn--white:hover { transform: translateY(-2px); }
.btn[disabled] { opacity: .55; cursor: default; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.navbar {
  position: sticky; top: 16px; z-index: 70; height: 0;
  padding: 16px 24px 0; display: flex; justify-content: center;
  align-items: flex-start; pointer-events: none;
}
.navbar__pill {
  pointer-events: auto; display: flex; align-items: center; gap: 22px;
  width: min(1160px, 100%); padding: 10px 12px 10px 22px; border-radius: 999px;
  background: rgba(253, 246, 236, .66);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: 0 14px 36px -16px rgba(16, 38, 66, .42), inset 0 1px 0 rgba(255, 255, 255, .72);
}
.navbar__brand { display: flex; align-items: center; flex: 0 0 auto; }
.navbar__brand img { height: 24px; width: auto; display: block; }
.navbar__links {
  display: flex; gap: 2px; margin-left: auto;
  font-size: 13.5px; font-weight: 600; color: var(--soft);
}
.navbar__links a {
  color: inherit; padding: 7px 13px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.navbar__links a:hover { color: var(--ink); background: rgba(16, 42, 73, .07); }
.navbar__links a[aria-current="page"] { color: var(--ink); background: rgba(16, 42, 73, .07); font-weight: 700; }
.navbar__cta { margin-left: 0; }

/* mobile menu — the design is desktop-only, so this is an addition */
.navbar__toggle {
  display: none; margin-left: auto; width: 42px; height: 42px;
  align-items: center; justify-content: center; padding: 0;
  border-radius: 999px; background: rgba(16, 42, 73, .07);
  border: 1px solid rgba(16, 42, 73, .1); cursor: pointer;
}
.navbar__toggle span {
  display: block; position: relative; width: 17px; height: 1.6px;
  border-radius: 2px; background: var(--ink); transition: transform .25s ease, background .2s ease;
}
.navbar__toggle span::before,
.navbar__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.6px;
  border-radius: 2px; background: var(--ink); transition: transform .25s ease, top .25s ease;
}
.navbar__toggle span::before { top: -5.5px; }
.navbar__toggle span::after  { top:  5.5px; }
.navbar__toggle[aria-expanded="true"] span { background: transparent; }
.navbar__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.navbar__drawer {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  padding: 14px; border-radius: 22px; flex-direction: column; gap: 2px;
  background: rgba(253, 246, 236, .96);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: 0 26px 56px -26px rgba(16, 38, 66, .5);
}
.navbar__drawer a {
  padding: 12px 14px; border-radius: 14px; font-size: 15px;
  font-weight: 700; color: var(--ink);
}
.navbar__drawer a:hover { background: rgba(16, 42, 73, .07); }
.navbar__drawer.is-open { display: flex; }

/* ============================================================
   COMPLIANCE STRIP
   ============================================================ */
.compliance {
  display: flex; flex-wrap: wrap; align-items: center; gap: 26px;
  border-radius: 26px; padding: 26px 30px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-brd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}
.compliance__item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; }
.compliance__dot { width: 9px; height: 9px; border-radius: 99px; background: var(--teal); animation: tw-pulse 2.4s infinite; }
.compliance__rule { width: 1px; height: 22px; background: rgba(16, 42, 73, .14); }
.compliance__text { font-size: 13.5px; color: var(--soft); font-weight: 600; }
.compliance__link { margin-left: auto; font-size: 13.5px; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 74px var(--gutter) 44px; margin-top: 80px; border-top: 1px solid rgba(16, 42, 73, .12); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 28px; width: auto; display: block; }
.footer__blurb { font-size: 14px; line-height: 1.62; color: var(--soft); margin-top: 16px; max-width: 38ch; }
.footer__head { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); }
.footer__list { display: flex; flex-direction: column; gap: 8px; margin-top: 13px; font-size: 14px; }
.footer__legal {
  max-width: var(--maxw); margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(16, 42, 73, .1);
  font-size: 12px; color: var(--soft); line-height: 1.7;
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   HERO — the click-driven time warp
   Four era worlds stacked on one stage. Only the active era is
   opaque; the rest sit blurred and scaled back. The design drove
   these from computed inline styles — here the stage carries
   data-era and CSS does the rest.
   ============================================================ */
.tw { position: relative; }
.tw__stage {
  position: relative; height: 100vh; min-height: 620px; overflow: hidden;
  cursor: none; transition: background .7s ease; background: #ECE9D8;
}
.tw__stage[data-era="0"] { background: rgb(236, 233, 216); }
.tw__stage[data-era="1"] { background: rgb(220, 218, 208); }
.tw__stage[data-era="2"] { background: rgb(238, 241, 246); }
.tw__stage[data-era="3"] { background: rgb(253, 246, 236); }

.tw__world {
  position: absolute; inset: 0; padding: 0 var(--gutter) 0 366px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .65s ease;
  perspective: 1400px;
}
.tw__world--now { padding-left: 0; display: block; }
.tw__stage[data-era="0"] .tw__world--2003,
.tw__stage[data-era="1"] .tw__world--2011,
.tw__stage[data-era="2"] .tw__world--2019,
.tw__stage[data-era="3"] .tw__world--now { opacity: 1; }

/* the moving inner block of each era */
.tw__slab {
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .65s ease;
  display: flex; align-items: center; gap: 38px;
}
.tw__world--2011 .tw__slab,
.tw__world--2019 .tw__slab { transform: scale(.9); filter: blur(4px); }
.tw__stage[data-era="1"] .tw__world--2011 .tw__slab,
.tw__stage[data-era="2"] .tw__world--2019 .tw__slab { transform: scale(1); filter: blur(0); }

/* ---- 2003 · the agent-counter web page ---- */
.tw__world--2003 {
  transform-style: preserve-3d;
  flex-direction: column; gap: 16px;
  padding: 70px var(--gutter) 70px 366px;
}
/* the context header above the 2003 window */
.xp__head {
  width: 784px; max-width: 100%; flex: 0 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 26px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.xp__headK { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; color: #1F4E8C; }
.xp__headH { font-family: var(--disp); font-size: 22px; font-weight: 800; letter-spacing: -.03em; line-height: 1.06; margin-top: 4px; color: var(--ink); }
.xp__headStats { display: flex; gap: 18px; margin-top: 8px; }
.xp__headStats b { display: block; font-family: var(--disp); font-size: 16px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.xp__headStats span { display: block; font-size: 10px; font-weight: 700; color: var(--soft); }

/* the two-column "what else happened that year" note under the 2003 window */
.xp__ctx {
  width: 620px; max-width: 100%; flex: 0 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.ctx__k { font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; color: #1F4E8C; }
.ctx__k--soft { color: var(--soft); }
.ctx__p { font-size: 11.5px; line-height: 1.45; color: var(--soft); margin-top: 4px; }
.xp {
  width: 784px; max-width: 94vw; font-family: Verdana, Geneva, sans-serif;
  background: #FFFFFF; border: 2px solid #ACA899;
  box-shadow: 0 0 0 1px #7F9DB9, 4px 4px 0 rgba(0, 0, 0, .18);
  transform-origin: 50% 40%;
  transform: rotateX(-16deg) scale(.86); filter: grayscale(1) blur(4px);
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .65s ease;
}
.tw__stage[data-era="0"] .xp { transform: rotateX(0) scale(1); filter: grayscale(0) blur(0); }
.xp__bar {
  background: linear-gradient(#4C7CB4, #1F4E8C); padding: 9px 12px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #143A6B;
}
.xp__title { color: #fff; font-weight: bold; font-size: 19px; letter-spacing: -.02em; text-shadow: 1px 1px 1px rgba(0, 0, 0, .5); }
.xp__title sup { font-size: 10px; vertical-align: super; }
.xp__est { color: #C9DCF2; font-size: 10px; }
.xp__menu { background: #ECE9D8; padding: 5px 12px; font-size: 11px; color: #00309C; border-bottom: 1px solid #ACA899; }
.xp__menu span { text-decoration: underline; margin-right: 14px; }
.xp__menu span:last-child { margin-right: 0; }
.xp__marq { background: #FFFFCC; border-bottom: 1px solid #ACA899; overflow: hidden; white-space: nowrap; padding: 4px 0; }
.xp__marq span { display: inline-block; font-size: 11px; color: #B00; font-weight: bold; animation: tw-old-marq 12s linear infinite; }
.xp__body { display: flex; gap: 0; }
.xp__main { flex: 1; padding: 16px 18px; border-right: 1px solid #ACA899; }
.xp__h { font-size: 17px; font-weight: bold; color: #1F4E8C; margin-bottom: 4px; }
.xp__p { font-size: 11px; color: #444; line-height: 1.5; margin-bottom: 12px; }
.xp__table { width: 100%; border-collapse: collapse; font-size: 11px; }
.xp__table td { padding: 5px 8px; border: 1px solid #ACA899; }
.xp__table td:first-child { background: #ECE9D8; width: 42%; }
.xp__pick { display: inline-block; padding: 2px 26px 2px 5px; border: 1px solid #7F9DB9; background: #fff; }
.xp__pick--wide { padding-right: 40px; }
.xp__fee { color: #B00; font-weight: bold; }
.xp__dim { color: #666; }
.xp__actions { margin-top: 14px; display: flex; gap: 8px; align-items: center; }
.xp__btn {
  display: inline-block; padding: 4px 14px; font-size: 11px; font-weight: bold; color: #000;
  background: linear-gradient(#FDFDFD, #D4D0C8); border: 2px outset #F0F0F0; box-shadow: 1px 1px 0 #888;
}
.xp__link { font-size: 10px; color: #00309C; text-decoration: underline; }
.xp__side { width: 190px; padding: 14px; background: #F4F4EC; font-size: 10.5px; color: #333; }
.xp__sideh { font-weight: bold; color: #1F4E8C; margin-bottom: 6px; border-bottom: 1px solid #ACA899; padding-bottom: 3px; }
.xp__sidelist { line-height: 1.6; }
.xp__secure { margin-top: 14px; padding: 8px; border: 1px dashed #ACA899; background: #fff; text-align: center; }
.xp__secure b { display: block; font-size: 9px; color: #666; font-weight: normal; }
.xp__lock { font-size: 22px; color: #B8860B; }
.xp__ssl { font-size: 8px; color: #666; }
.xp__hits { margin-top: 14px; font-size: 9px; color: #666; text-align: center; }
.xp__hits span { font-family: var(--mono); background: #000; color: #0F0; padding: 2px 5px; letter-spacing: .16em; }
.xp__foot {
  background: #ECE9D8; border-top: 1px solid #ACA899; padding: 7px 12px;
  font-size: 9.5px; color: #555; display: flex; justify-content: space-between; gap: 12px;
}
.xp__blink { animation: tw-blink 1s steps(1) infinite; color: #B00; font-weight: bold; }

/* ---- 2011 · USSD on a feature phone ---- */
.ussd {
  width: 238px; border-radius: 26px; padding: 16px 14px 20px;
  background: linear-gradient(160deg, #3A3A36, #22221F);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .14);
  font-family: var(--mono); flex: 0 0 auto;
}
.ussd__status { display: flex; justify-content: space-between; align-items: center; padding: 0 4px 8px; font-size: 9px; color: #9A9A90; letter-spacing: .08em; }
.ussd__screen {
  border-radius: 6px; padding: 12px 11px; background: #AFC169;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .35);
  color: #1C2410; font-size: 10.5px; line-height: 1.7; letter-spacing: .01em;
}
.ussd__head { font-weight: 600; border-bottom: 1px dashed rgba(28, 36, 16, .5); padding-bottom: 4px; margin-bottom: 5px; }
.ussd__rule { margin-top: 5px; border-top: 1px dashed rgba(28, 36, 16, .5); padding-top: 5px; }
.ussd__ok { margin-top: 6px; font-weight: 600; }
.ussd__keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 12px; }
.ussd__keys i {
  height: 20px; border-radius: 5px; background: #4A4A44; font-style: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  display: flex; align-items: center; justify-content: center; font-size: 9px; color: #D9D9CE;
}

/* ---- 2019 · a prettier app ---- */
.app19 { width: 274px; border-radius: 36px; padding: 9px; background: #1B1B1F; box-shadow: 0 34px 70px -28px rgba(20, 30, 50, .5); flex: 0 0 auto; }
.app19__screen { border-radius: 29px; overflow: hidden; background: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.app19__status { display: flex; justify-content: space-between; align-items: center; padding: 9px 16px 5px; font-size: 10px; font-weight: 700; color: #111; }
.app19__status span:last-child { letter-spacing: .12em; }
.app19__hero { background: linear-gradient(150deg, #2660E8, #1544C4); padding: 18px 18px 22px; color: #fff; }
.app19__label { font-size: 11px; opacity: .8; font-weight: 700; }
.app19__amt { font-size: 32px; font-weight: 800; letter-spacing: -.03em; margin-top: 5px; }
.app19__pair { font-size: 11.5px; opacity: .85; margin-top: 2px; }
.app19__rows { padding: 16px 18px 18px; }
.app19__row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 9px 0; border-bottom: 1px solid #EDEFF3; }
.app19__row span:first-child { color: #69707D; }
.app19__row span:last-child { font-weight: 700; color: #111; }
.app19__fine { font-size: 10px; color: #98A0AC; margin-top: 7px; line-height: 1.5; }
.app19__cta { margin-top: 14px; padding: 13px; border-radius: 12px; background: #2660E8; color: #fff; text-align: center; font-size: 14px; font-weight: 700; }
.app19__eta { text-align: center; font-size: 10px; color: #98A0AC; margin-top: 9px; }

/* ---- the caption beside 2011 / 2019 ---- */
.tw__cap { max-width: 330px; }
.tw__capYear { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: #1F4E8C; }
.tw__capH { font-family: var(--disp); font-size: 34px; font-weight: 800; letter-spacing: -.032em; line-height: 1.04; margin-top: 8px; color: var(--ink); }
.tw__capP { font-size: 15.5px; line-height: 1.62; color: var(--soft); margin-top: 12px; }
.tw__capStats { display: flex; gap: 18px; margin-top: 18px; flex-wrap: wrap; }
.tw__capStats b { display: block; font-family: var(--disp); font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.tw__capStats span { font-size: 11.5px; font-weight: 700; color: var(--soft); }

.tw__ctx { margin-top: 0; }
.tw__ctx hr { height: 1px; border: none; background: rgba(16, 42, 73, .13); margin: 16px 0 12px; }
.tw__ctxK { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; color: #1F4E8C; }
.tw__ctxK--soft { color: var(--soft); margin-top: 11px; }
.tw__ctxP { font-size: 13.5px; line-height: 1.55; color: var(--soft); margin-top: 5px; }

/* ---- 2026 · the arrival ---- */
.tw__now { position: absolute; inset: 0; }
.tw__nowVeil { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 45% 40%, rgba(253, 246, 236, .34), rgba(253, 246, 236, .72) 72%); }
.tw__nowGrid {
  position: relative; height: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter); display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: center; gap: 36px;
  transform: scale(1.06); transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}
.tw__stage[data-era="3"] .tw__nowGrid { transform: scale(1); }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 17px; border-radius: 999px;
  background: rgba(255, 253, 248, .6);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .62);
  box-shadow: 0 6px 18px -10px rgba(16, 38, 66, .32);
  font-size: 12.5px; font-weight: 700; color: var(--soft);
}
.badge__dot { width: 8px; height: 8px; border-radius: 99px; background: var(--teal); animation: tw-pulse 2s infinite; }
.tw__h1 {
  /* the <br>s set a three-line break; above ~62px "Twenty-three years" no longer
     fits the grid column, wraps to a fourth line and pushes the hero taller than
     the 100vh stage, shoving the badge up behind the sticky nav. Cap it there. */
  font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 4.4vw, 62px);
  line-height: .97; letter-spacing: -.033em; margin-top: 22px;
}
.grad {
  background: linear-gradient(102deg, var(--deep), var(--teal) 42%, var(--tealBr));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tw__sub { font-size: 17.5px; line-height: 1.62; color: var(--soft); max-width: 54ch; margin-top: 20px; }
.tw__ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.tw__stats { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.tw__stats b { display: block; font-family: var(--disp); font-size: 27px; font-weight: 800; letter-spacing: -.03em; }
.tw__stats span { font-size: 12px; font-weight: 700; color: var(--soft); }
.tw__orb { position: relative; height: min(74vh, 640px); display: flex; align-items: center; justify-content: center; }
.tw__orb coynitt-globe { position: absolute; inset: 0; width: 100%; height: 100%; }
.chip {
  position: absolute; border-radius: 20px;
  background: rgba(255, 253, 248, .74);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 20px 46px -22px rgba(16, 38, 66, .45);
}
.chip--quote { left: -4%; top: 10%; padding: 13px 17px; animation: tw-float 7s ease-in-out infinite; }
.chip--rail  { right: -2%; bottom: 14%; padding: 12px 16px; animation: tw-float 8.6s ease-in-out .9s infinite; }
.chip__k { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; color: var(--soft); }
.chip__v { font-family: var(--disp); font-size: 26px; font-weight: 800; letter-spacing: -.03em; margin-top: 3px; }
.chip__v em { font-style: normal; font-size: 15px; color: var(--deep); }
.chip__m { font-family: var(--mono); font-size: 11px; color: var(--soft); }
.chip__row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.chip__dot { width: 7px; height: 7px; border-radius: 99px; background: var(--teal); }
.chip__rail { font-family: var(--disp); font-size: 18px; font-weight: 800; }

/* ---- era rail (left) ---- */
.tw__rail {
  position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2px; z-index: 20;
  transition: opacity .6s ease;
}
.tw__stage[data-era="3"] .tw__rail { opacity: 0; pointer-events: none; }
.tw__railBtn {
  display: flex; align-items: center; gap: 14px; padding: 9px 10px 9px 0;
  border: none; background: none; border-radius: 10px; cursor: none; text-align: left;
  opacity: .34; transition: opacity .4s ease, transform .4s ease;
}
.tw__railBtn::before { content: ""; width: 3px; height: 34px; border-radius: 3px; background: rgba(69, 96, 126, .3); transition: background .4s ease; }
.tw__railBtn[aria-current="true"] { opacity: 1; transform: translateX(8px); }
.tw__railBtn[aria-current="true"]::before { background: #1F4E8C; }
.tw__railBtn[data-era="3"][aria-current="true"]::before { background: var(--teal); }
.tw__railYear { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: rgba(69, 96, 126, .7); }
.tw__railLabel { font-family: var(--disp); font-size: 15px; font-weight: 700; letter-spacing: -.015em; color: rgba(69, 96, 126, .8); }
.tw__railBtn[aria-current="true"] .tw__railYear { color: var(--teal); }
.tw__railBtn[aria-current="true"] .tw__railLabel { color: var(--ink); }

/* ---- big year (right) ---- */
.tw__year { position: absolute; right: var(--gutter); bottom: 34px; text-align: right; z-index: 5; pointer-events: none; }
.tw__yearN {
  font-family: var(--disp); font-size: clamp(64px, 9vw, 140px); font-weight: 800;
  letter-spacing: -.05em; line-height: .85; opacity: .9; color: rgba(31, 78, 140, .2);
}
.tw__stage[data-era="3"] .tw__yearN { color: rgba(16, 42, 73, .13); }

/* ---- stepper ---- */
.tw__step { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; gap: 14px; }
.tw__back {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 999px; cursor: none; background: rgba(255, 253, 248, .72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 42, 73, .14);
  box-shadow: 0 10px 26px -14px rgba(16, 38, 66, .5);
  font-family: var(--mono); font-size: 16px; color: var(--ink);
  transition: opacity .3s ease;
}
.tw__stage[data-era="0"] .tw__back { opacity: 0; pointer-events: none; }
.tw__next {
  display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 999px;
  cursor: none; border: none; background: var(--ink); color: var(--cream);
  box-shadow: 0 14px 32px -14px rgba(16, 38, 66, .55);
  font-size: 14.5px; font-weight: 700; transition: background .4s ease, color .4s ease;
}
.tw__stage[data-era="3"] .tw__next { background: linear-gradient(140deg, var(--teal), var(--deep)); color: #fff; }
.tw__dots { display: flex; gap: 7px; margin-left: 6px; }
.tw__dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 99px; cursor: none;
  background: rgba(69, 96, 126, .34); transition: background .3s ease, transform .3s ease;
}
.tw__dot[aria-current="true"] { background: var(--teal); transform: scale(1.35); }

/* ---- the era's own pointer ---- */
.tw__cursor { position: absolute; left: 0; top: 0; z-index: 40; pointer-events: none; opacity: 0; will-change: transform; }
.tw__cursor > * { display: none; }
.tw__stage[data-era="0"] .tw__cursor .cur-xp,
.tw__stage[data-era="1"] .tw__cursor .cur-aqua,
.tw__stage[data-era="2"] .tw__cursor .cur-flat,
.tw__stage[data-era="3"] .tw__cursor .cur-agent { display: block; }
.tw__stage[data-era="0"][data-busy="true"] .tw__cursor .cur-xp { display: none; }
.tw__stage[data-era="0"][data-busy="true"] .tw__cursor .cur-wait { display: block; }
.cur-xp   { filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, .28)); }
.cur-wait { filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .35)); }
.cur-aqua { filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .4)); }
.cur-flat { filter: drop-shadow(0 4px 8px rgba(20, 30, 50, .35)); }
.cur-agent { position: relative; width: 34px; height: 34px; margin: -17px 0 0 -17px; }
.cur-agent i { position: absolute; border-radius: 999px; font-style: normal; }
.cur-agent .a1 { inset: 0; background: radial-gradient(circle, rgba(43, 169, 176, .34), rgba(43, 169, 176, 0) 70%); }
.cur-agent .a2 { inset: 9px; border: 1.5px solid rgba(23, 138, 145, .85); box-shadow: 0 0 12px -2px rgba(43, 169, 176, .9); }
.cur-agent .a3 { left: 50%; top: 50%; width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: var(--deep); }
.cur-agent .a4 { inset: 0; border: 1px dashed rgba(23, 138, 145, .5); animation: tw-spin 6s linear infinite; }

/* ---- name ticker ---- */
.ticker {
  padding: 24px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 253, 248, .42);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.ticker__row {
  display: inline-flex; animation: tw-name 52s linear infinite;
  font-family: var(--disp); font-size: clamp(26px, 3.2vw, 50px); font-weight: 600;
  letter-spacing: -.03em; color: rgba(16, 42, 73, .22);
}
.ticker__row span { padding: 0 22px; }
.ticker__row .alt { color: rgba(43, 169, 176, .62); }

/* ============================================================
   THEN vs NOW LEDGER
   ============================================================ */
.ledger { margin-top: 44px; border-radius: 26px; overflow: hidden; }
.ledger__head, .ledger__row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.ledger__head {
  padding: 16px 26px; background: rgba(247, 236, 218, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--soft);
}
.ledger__head .now { color: var(--deep); }
.ledger__row { align-items: center; padding: 17px 26px; border-bottom: 1px solid rgba(16, 42, 73, .08); transition: background .25s ease; }
.ledger__row:last-child { border-bottom: none; }
.ledger__row:hover { background: rgba(67, 197, 204, .09); }
.ledger__k { font-weight: 700; font-size: 15px; }
.ledger__then { font-family: var(--mono); font-size: 14px; color: var(--blueSoft); }
.ledger__now { font-family: var(--mono); font-size: 14px; color: var(--deep); font-weight: 600; }

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; perspective: 1500px; }
.pillar {
  border-radius: 26px; padding: 28px; color: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s ease;
}
.pillar h3 { font-family: var(--disp); font-size: 31px; font-weight: 800; letter-spacing: -.03em; margin-top: 20px; }
.pillar__tag { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .86; margin-top: 5px; }
.pillar p { font-size: 15px; line-height: 1.6; margin-top: 12px; opacity: .95; }
.pillar__note { font-size: 14px; font-style: italic; margin-top: 14px; opacity: .86; }
.pillar__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pillar__chips span { padding: 5px 11px; border-radius: 999px; background: rgba(255, 255, 255, .18); font-size: 11.5px; font-weight: 700; }

.pillar--transfers {
  background: linear-gradient(152deg, var(--teal), var(--deep) 62%, #0E6E74);
  box-shadow: 0 26px 56px -26px rgba(16, 60, 66, .6), inset 0 1px 0 rgba(255, 255, 255, .34);
}
.pillar--transfers:hover { transform: rotateY(-6deg) rotateX(4deg) translateY(-10px); box-shadow: 0 48px 84px -32px rgba(16, 60, 66, .62); }
.pillar--rounds {
  background: linear-gradient(152deg, #1B5490, var(--blue) 58%, #0C2A49);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 26px 56px -26px rgba(12, 34, 60, .66), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.pillar--rounds:hover { transform: rotateX(5deg) translateY(-14px); box-shadow: 0 48px 84px -32px rgba(12, 34, 60, .7); }
.pillar--harambee {
  background: linear-gradient(152deg, #1E3A5E, var(--ink) 60%, #0A1B31);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 26px 56px -26px rgba(10, 27, 49, .7), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.pillar--harambee:hover { transform: rotateY(6deg) rotateX(4deg) translateY(-10px); box-shadow: 0 48px 84px -32px rgba(10, 27, 49, .72); }

/* ============================================================
   RIE
   ============================================================ */
.rie { border-radius: 34px; overflow: hidden; position: relative; background: var(--ink); box-shadow: 0 50px 110px -54px rgba(16, 42, 73, .75); }
.rie__blobA { position: absolute; width: 340px; height: 340px; border-radius: 999px; background: radial-gradient(circle, rgba(67, 197, 204, .34), transparent 70%); top: -90px; right: -70px; }
.rie__blobB { position: absolute; width: 300px; height: 300px; border-radius: 999px; background: radial-gradient(circle, rgba(18, 68, 120, .6), transparent 70%); bottom: -100px; left: -60px; }
.rie__grid { position: relative; display: grid; grid-template-columns: 1fr 1.04fr; gap: 48px; padding: 62px 50px; }
.rie__h { font-family: var(--disp); font-weight: 800; font-size: clamp(34px, 3.6vw, 56px); line-height: 1; letter-spacing: -.035em; margin-top: 15px; color: var(--cream); }
.rie__sub { font-family: var(--disp); font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; font-style: italic; color: var(--gold); margin-top: 8px; }
.rie__p { font-size: 16px; line-height: 1.64; color: rgba(253, 246, 236, .8); margin-top: 22px; max-width: 50ch; }
.rie__p em { color: var(--cream); font-weight: 600; font-style: italic; }
.rie__vars { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.rie__vars span {
  padding: 7px 13px; border-radius: 999px; background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(116, 214, 219, .3); font-family: var(--mono); font-size: 11.5px; color: #9FE3E5;
}
.rie__panel {
  border-radius: 22px; background: rgba(8, 20, 36, .62);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(116, 214, 219, .22);
  box-shadow: 0 30px 70px -40px #000; overflow: hidden; display: flex; flex-direction: column;
}
.rie__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(116, 214, 219, .18); }
.rie__bar i { width: 9px; height: 9px; border-radius: 99px; }
.rie__bar .r { background: #C0261B; } .rie__bar .y { background: var(--gold); } .rie__bar .g { background: var(--teal); }
.rie__bar span { font-family: var(--mono); font-size: 11px; color: rgba(253, 246, 236, .5); margin-left: 8px; }
.rie__log { flex: 1; padding: 20px 22px; font-family: var(--mono); font-size: 12.5px; line-height: 1.85; min-height: 344px; }
.rie__log div { white-space: pre-wrap; }
.rie__caret { display: inline-block; width: 8px; height: 14px; background: var(--tealBr); animation: tw-caret 1s steps(1) infinite; vertical-align: -2px; }
.rie__foot { grid-column: 1 / -1; font-size: 15.5px; line-height: 1.66; color: rgba(253, 246, 236, .66); margin-top: 34px; }

/* ============================================================
   SETTLEMENT RACE
   ============================================================ */
.race { margin-top: 46px; border-radius: 28px; overflow: hidden; padding: 34px 34px 30px; }
.race__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.race__head + .race__head { margin-top: 26px; }
.race__name { display: flex; align-items: center; gap: 10px; font-family: var(--disp); font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.race__name i { width: 10px; height: 10px; border-radius: 99px; background: var(--teal); box-shadow: 0 0 0 4px rgba(43, 169, 176, .22); }
.race__name--bank { color: var(--soft); }
.race__name--bank i { background: var(--blueSoft); box-shadow: none; }
.race__t { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--deep); }
.race__t--bank { color: var(--blueSoft); }
.race__track { position: relative; height: 16px; margin-top: 12px; border-radius: 99px; background: var(--cream2); overflow: hidden; }
.race__track::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 2px; background: rgba(16, 42, 73, .28); }
.race__fill { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--deep), var(--tealBr)); box-shadow: 0 0 18px -2px rgba(43, 169, 176, .7); }
.race__fill--bank { background: var(--blueSoft); box-shadow: none; }
.race__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(16, 42, 73, .1); }
.race__stats b { display: block; font-family: var(--disp); font-size: clamp(30px, 3vw, 44px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.race__stats span { display: block; font-size: 13px; font-weight: 700; color: var(--soft); margin-top: 5px; }
.race__stats .teal { color: var(--deep); } .race__stats .soft { color: var(--soft); }

/* ============================================================
   FEES
   ============================================================ */
.fees { display: grid; grid-template-columns: .68fr 1.32fr; gap: 20px; margin-top: 40px; align-items: stretch; }
.fees__card {
  border-radius: 26px; padding: 30px; color: #fff; display: flex; flex-direction: column;
  background: linear-gradient(150deg, var(--teal), var(--deep));
  box-shadow: 0 26px 56px -26px rgba(16, 60, 66, .6), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.fees__k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; opacity: .85; }
.fees__big { font-family: var(--disp); font-size: 58px; font-weight: 800; letter-spacing: -.045em; line-height: 1; margin-top: 8px; }
.fees__pct { font-family: var(--disp); font-size: 21px; font-weight: 700; margin-top: 2px; opacity: .92; }
.fees__hr { height: 1px; background: rgba(255, 255, 255, .28); margin: 20px 0; }
.fees__lines { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.fees__line { display: flex; justify-content: space-between; }
.fees__line span:first-child { opacity: .85; }
.fees__line span:last-child { font-family: var(--mono); }
.fees__then { margin-top: auto; padding: 12px 14px; border-radius: 14px; background: rgba(255, 255, 255, .16); font-size: 13.5px; line-height: 1.5; }
.fees__table { border-radius: 26px; overflow: hidden; }
.fees__thead {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 20px 26px;
  background: rgba(247, 236, 218, .5); border-bottom: 1px solid rgba(255, 255, 255, .5);
}
.fees__title { font-family: var(--disp); font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.fees__stamp { font-size: 12px; font-weight: 800; color: var(--blue); background: rgba(18, 68, 120, .12); padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.fees__cols, .fees__row { display: grid; grid-template-columns: 1.5fr 1.25fr .85fr .7fr; }
.fees__cols {
  padding: 12px 26px; font-size: 11px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--soft); border-bottom: 1px solid rgba(16, 42, 73, .08);
}
.fees__cols span:last-child, .fees__row span:last-child { text-align: right; }
.fees__row { align-items: center; padding: 15px 26px; border-bottom: 1px solid rgba(16, 42, 73, .07); transition: background .25s ease; }
.fees__row:hover { background: var(--cream2); }
.fees__c { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 9px; }
.fees__flag {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  background-size: cover; background-position: center; box-shadow: 0 0 0 1px rgba(16, 42, 73, .12);
}
.fees__m { font-family: var(--mono); font-size: 13.5px; }
.fees__m--cost { color: var(--deep); font-weight: 600; }
.fees__m--t { color: var(--soft); }
.fees__fine { padding: 16px 26px; font-size: 12.5px; line-height: 1.6; color: var(--soft); }

/* ============================================================
   WHY / MARKET SPLIT
   ============================================================ */
.why { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.why__p { font-size: 16.5px; line-height: 1.66; color: var(--soft); margin-top: 18px; max-width: 58ch; }
.why__punch { font-family: var(--disp); font-size: 28px; font-weight: 800; letter-spacing: -.03em; margin-top: 20px; }
.split { border-radius: 28px; padding: 32px; box-shadow: 0 22px 52px -26px rgba(16, 38, 66, .45), inset 0 1px 0 rgba(255, 255, 255, .7); }
.split__k { font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--soft); }
.split__row { margin-top: 22px; }
.split__row + .split__row { margin-top: 24px; }
.split__lab { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.split__lab b { font-size: 14px; font-weight: 700; color: var(--soft); }
.split__lab span { font-family: var(--mono); font-size: 14px; color: var(--blueSoft); }
.split__row--now .split__lab b, .split__row--now .split__lab span { color: var(--deep); }
.split__bar { height: 16px; border-radius: 99px; background: var(--cream2); margin-top: 9px; overflow: hidden; }
.split__bar i { display: block; height: 100%; border-radius: 99px; background: var(--blueSoft); }
.split__row--now .split__bar i { background: linear-gradient(90deg, var(--teal), var(--tealBr)); }
.split__hr { height: 1px; background: rgba(16, 42, 73, .12); margin: 28px 0 20px; }
.split__total { font-family: var(--disp); font-size: 62px; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.split__cap { font-size: 14px; color: var(--soft); margin-top: 4px; font-weight: 600; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.trust__card {
  padding: 26px; border-radius: 22px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: var(--glass-brd); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .4s ease, box-shadow .4s ease;
}
.trust__card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -28px rgba(16, 38, 66, .45), inset 0 1px 0 rgba(255, 255, 255, .7); }
.trust__h { font-family: var(--disp); font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.trust__b { font-size: 14px; line-height: 1.6; color: var(--soft); margin-top: 9px; }

/* ============================================================
   JOIN BAND
   ============================================================ */
.join {
  position: relative; border-radius: 34px; overflow: hidden;
  background: linear-gradient(140deg, var(--teal), var(--deep) 55%, var(--blue));
  box-shadow: 0 50px 110px -54px rgba(16, 60, 66, .7);
}
.join coynitt-globe { position: absolute; right: -12%; top: -18%; width: 64%; height: 136%; opacity: .5; }
.join__in { position: relative; padding: 74px 50px; max-width: 640px; color: #fff; }
.join__h { font-family: var(--disp); font-weight: 800; font-size: clamp(36px, 4.2vw, 64px); line-height: 1; letter-spacing: -.038em; margin-top: 16px; }
.join__p { font-size: 17px; line-height: 1.62; margin-top: 18px; max-width: 46ch; opacity: .94; }
.join__form { display: flex; gap: 11px; margin-top: 28px; flex-wrap: wrap; }
.join__input {
  flex: 1; min-width: 250px; padding: 16px 22px; border-radius: 999px;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .4);
  color: #fff; font-family: inherit; font-size: 16px; outline: none;
}
.join__input::placeholder { color: rgba(255, 255, 255, .7); }
.join__input:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.join__status { flex-basis: 100%; font-size: 14px; font-weight: 600; margin-top: 4px; min-height: 20px; opacity: .95; }
.join__tag { font-family: var(--disp); font-size: clamp(20px, 2.3vw, 30px); font-weight: 800; margin-top: 40px; }

/* ============================================================
   INNER-PAGE PRIMITIVES
   Shared by the ten routed pages.
   ============================================================ */
.page { padding: 150px var(--gutter) 0; }
.page__h1 { font-family: var(--disp); font-weight: 800; font-size: clamp(38px, 4.6vw, 68px); line-height: 1; letter-spacing: -.035em; margin-top: 16px; }
.page__lede { font-size: 18px; line-height: 1.62; color: var(--soft); margin-top: 20px; max-width: 62ch; }

.cards { display: grid; gap: 18px; margin-top: 40px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 28px; border-radius: 22px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: var(--glass-brd); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .4s ease, box-shadow .4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -28px rgba(16, 38, 66, .45), inset 0 1px 0 rgba(255, 255, 255, .7); }
.card__n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--teal); }
.card__h { font-family: var(--disp); font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-top: 10px; }
.card__b { font-size: 14.5px; line-height: 1.62; color: var(--soft); margin-top: 9px; }
.card--flat:hover { transform: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7); }

/* numbered steps */
.steps { display: grid; gap: 18px; margin-top: 40px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding: 28px 24px; border-radius: 22px; background: var(--glass-bg); border: var(--glass-brd); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7); }
.step__n {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 999px; background: var(--ink); color: var(--cream);
  font-family: var(--disp); font-weight: 800; font-size: 15px;
}
.step__h { font-family: var(--disp); font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin-top: 14px; }
.step__b { font-size: 14px; line-height: 1.6; color: var(--soft); margin-top: 8px; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat b { display: block; font-family: var(--disp); font-size: clamp(30px, 3.2vw, 46px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stat span { display: block; font-size: 13px; font-weight: 700; color: var(--soft); margin-top: 6px; }

/* dark feature panel */
.panel { border-radius: 30px; padding: 54px 46px; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; box-shadow: 0 50px 110px -54px rgba(16, 42, 73, .75); }
.panel__blob { position: absolute; width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle, rgba(67, 197, 204, .3), transparent 70%); top: -100px; right: -80px; }
.panel__h { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 3vw, 44px); line-height: 1.04; letter-spacing: -.032em; margin-top: 14px; position: relative; }
.panel__p { font-size: 16px; line-height: 1.66; color: rgba(253, 246, 236, .8); margin-top: 16px; max-width: 62ch; position: relative; }

/* definition rows */
.rows { margin-top: 40px; border-radius: 26px; overflow: hidden; }
.row {
  display: grid; grid-template-columns: .9fr 2.1fr; gap: 24px; align-items: start;
  padding: 22px 26px; border-bottom: 1px solid rgba(16, 42, 73, .08); transition: background .25s ease;
}
.row:last-child { border-bottom: none; }
.row:hover { background: rgba(67, 197, 204, .09); }
.row__k { font-family: var(--disp); font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.row__v { font-size: 14.5px; line-height: 1.64; color: var(--soft); }

/* FAQ */
.faq { margin-top: 40px; border-radius: 26px; overflow: hidden; }
.faq details { border-bottom: 1px solid rgba(16, 42, 73, .08); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--disp); font-size: 17px; font-weight: 800; letter-spacing: -.02em;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  transition: background .25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 20px; color: var(--teal); flex: 0 0 auto; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { background: rgba(67, 197, 204, .09); }
.faq p { padding: 0 26px 22px; font-size: 14.5px; line-height: 1.66; color: var(--soft); max-width: 78ch; }

/* CTA pair */
.ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }

/* prose for legal-ish inner copy */
.prose { margin-top: 22px; max-width: 72ch; }
.prose p { font-size: 15.5px; line-height: 1.7; color: var(--soft); margin-top: 14px; }
.prose h3 { font-family: var(--disp); font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-top: 30px; color: var(--ink); }
.prose ul { margin: 12px 0 0; padding-left: 20px; }
.prose li { font-size: 15.5px; line-height: 1.7; color: var(--soft); margin-top: 8px; }

/* ============================================================
   RESPONSIVE
   The design source is desktop-only (fixed 3-up grids, a 366px
   hero inset, a 784px era window). Everything below is an
   addition so the site holds together on tablet and phone.
   ============================================================ */
@media (max-width: 1180px) {
  :root { --gutter: 30px; }
  .rie__grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 34px; }
  .fees { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 34px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1000px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__pill { position: relative; gap: 12px; }
  .navbar__cta { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar:hover { transform: translateY(-6px); }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .join__in { padding: 56px 32px; }
  .join coynitt-globe { opacity: .3; }
  .page { padding-top: 132px; }
}

@media (max-width: 860px) {
  .section { padding-top: 84px; }
  .ledger__head, .ledger__row { grid-template-columns: 1fr; gap: 4px; }
  .ledger__head { display: none; }
  .ledger__row { padding: 16px 20px; }
  .ledger__k { font-size: 16px; }
  .ledger__then::before { content: "2003 · "; color: var(--soft); }
  .ledger__now::before  { content: "2026 · "; color: var(--soft); }
  .fees__cols { display: none; }
  .fees__row { grid-template-columns: 1fr 1fr; gap: 6px 12px; padding: 16px 20px; }
  .fees__c { grid-column: 1 / -1; }
  .fees__row span:last-child { text-align: left; }
  .race__stats { grid-template-columns: 1fr; gap: 16px; }
  .row { grid-template-columns: 1fr; gap: 8px; }
  .trust, .cards--2, .cards--3, .cards--4, .steps, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .compliance { gap: 16px 20px; padding: 22px; }
  .compliance__rule { display: none; }
  .compliance__link { margin-left: 0; flex-basis: 100%; }
}

/* ---- hero on small screens ---- */
@media (max-width: 1080px) {
  .tw__world { padding-left: 190px; }
  .tw__nowGrid { grid-template-columns: 1fr; align-content: center; gap: 18px; }
  .tw__orb { height: min(38vh, 300px); }
  .chip { display: none; }
}

@media (max-width: 860px) {
  .tw__stage { height: auto; min-height: 100svh; cursor: auto; }
  .tw__world { padding: 100px 20px 150px; align-items: center; }
  .tw__slab { flex-direction: column; gap: 26px; text-align: left; }
  .tw__rail { display: none; }
  .tw__cursor { display: none; }
  .tw__year { right: 20px; bottom: 120px; }
  .tw__yearN { font-size: clamp(46px, 16vw, 90px); }
  .tw__step { bottom: 22px; gap: 10px; }
  .tw__next, .tw__back, .tw__dot { cursor: pointer; }
  .tw__cap { max-width: none; }

  /* The eras are stacked absolutely so they can cross-fade. With the era
     context copy added they are taller than one phone screen, so the ACTIVE
     era flows normally and drives the stage height instead of being clipped. */
  .tw__stage[data-era="0"] .tw__world--2003,
  .tw__stage[data-era="1"] .tw__world--2011,
  .tw__stage[data-era="2"] .tw__world--2019,
  .tw__stage[data-era="3"] .tw__world--now { position: relative; inset: auto; }

  /* 2003: reflow the period window rather than scaling it off-screen */
  .tw__world--2003 { padding: 100px 20px 150px; gap: 14px; align-items: stretch; }
  .xp__head, .xp__ctx { width: 100%; max-width: none; }
  .xp__ctx { grid-template-columns: 1fr; gap: 14px; }
  .xp { width: 100%; max-width: none; transform: none; filter: none; }
  .tw__stage[data-era="0"] .xp { transform: none; filter: none; }
  .xp__body { flex-direction: column; }
  .xp__main { border-right: none; border-bottom: 1px solid #ACA899; }
  .xp__side { width: 100%; }
  .xp__foot { flex-direction: column; gap: 4px; }
  .xp__title { font-size: 15px; }
  .xp__marq span { animation-duration: 18s; }

  .tw__nowGrid { padding: 100px 20px 150px; height: auto; align-items: start; }
  .tw__world--now { display: flex; align-items: center; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .tw__h1 { font-size: clamp(32px, 9.4vw, 46px); }
  .tw__sub { font-size: 16px; }
  .tw__stats { gap: 16px; }
  .tw__stats b { font-size: 21px; }
  .btn--primary, .btn--ghost, .btn--white { padding: 14px 22px; font-size: 15px; }
  .join__in { padding: 46px 22px; }
  .rie__grid { padding: 36px 22px; }
  .race { padding: 24px 20px 22px; }
  .split, .panel { padding: 26px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .fees__thead { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ticker__row { font-size: 26px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tw__stage { cursor: auto; }
  .tw__cursor { display: none; }
  .ticker__row { animation: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .navbar, .tw__step, .tw__rail, .tw__cursor, .ticker, .join { display: none !important; }
  body { background: #fff; }
  .tw__stage { height: auto; min-height: 0; }
}

/* ---------- a11y ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- lifecycle rail (Rounds) ---------- */
.life { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.life::before { content: ""; position: absolute; left: 16px; right: calc(16.6667% - 16px); top: 15px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue)); }
.life__i { position: relative; padding-right: 18px; }
.life__n {
  width: 32px; height: 32px; border-radius: 99px; background: #fff; border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
  font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--deep);
}
.life__h { font-family: var(--disp); font-size: 16.5px; font-weight: 800; letter-spacing: -.02em; margin-top: 14px; }
.life__b { font-size: 13.5px; line-height: 1.55; color: var(--soft); margin-top: 7px; }
@media (max-width: 1000px) { .life { grid-template-columns: repeat(3, 1fr); gap: 24px 0; } .life::before { display: none; } }
@media (max-width: 620px)  { .life { grid-template-columns: 1fr 1fr; } }

/* ---------- member list on a dark card ---------- */
.mem { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.mem:last-child { border-bottom: none; }
.mem__i { width: 30px; height: 30px; border-radius: 99px; background: rgba(255, 255, 255, .16); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex: 0 0 auto; }
.mem__n { font-size: 14px; font-weight: 600; flex: 1; }
.mem__s { font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, .7); }
.mem__s--on { color: var(--gold); }

/* ---------- staged-release milestones (Harambee) ---------- */
.mile { display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: start; padding: 15px 0; border-bottom: 1px solid rgba(16, 42, 73, .1); }
.mile:last-child { border-bottom: none; }
.mile__d { width: 11px; height: 11px; border-radius: 99px; background: var(--deep); box-shadow: 0 0 0 4px rgba(43, 169, 176, .18); margin-top: 5px; }
.mile__d--next { background: var(--teal); box-shadow: 0 0 0 4px rgba(43, 169, 176, .3); }
.mile__h { display: block; font-size: 14.5px; font-weight: 700; }
.mile__b { display: block; font-size: 13.5px; line-height: 1.55; color: var(--soft); margin-top: 3px; }
.mile__v { font-family: var(--mono); font-size: 12.5px; color: var(--deep); white-space: nowrap; }
@media (max-width: 620px) { .mile { grid-template-columns: 22px 1fr; } .mile__v { grid-column: 2; } }

/* ---------- "what we don't charge" rows ---------- */
.nofee { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(16, 42, 73, .1); }
.nofee:last-child { border-bottom: none; }
.nofee__z { width: 24px; height: 24px; border-radius: 99px; background: rgba(43, 169, 176, .14); color: var(--deep); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex: 0 0 auto; }
.nofee__k { font-size: 15.5px; font-weight: 600; flex: 1; }
.nofee__v { font-family: var(--mono); font-size: 12.5px; color: var(--soft); white-space: nowrap; }

/* ---------- comparison bars on the dark panel ---------- */
.bars { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.bars__lab { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: 14px; font-weight: 600; color: rgba(253, 246, 236, .88); }
.bars__v { font-family: var(--mono); color: rgba(253, 246, 236, .8); }
.bars__v--on { color: var(--gold); }
.bars__t { height: 12px; border-radius: 99px; background: rgba(255, 255, 255, .14); margin-top: 8px; overflow: hidden; }
.bars__t i { display: block; height: 100%; border-radius: 99px; background: rgba(255, 255, 255, .42); }
.bars__t i.on { background: linear-gradient(90deg, var(--teal), var(--gold)); }
.bars__t i.faint { background: rgba(255, 255, 255, .28); }
.bars__note { font-size: 12.5px; line-height: 1.6; color: rgba(253, 246, 236, .6); margin-top: 6px; }

/* ---------- formula strip ---------- */
.formula { margin-top: 16px; border-radius: 22px; padding: 24px 28px; background: rgba(247, 236, 218, .6); border: 1px solid rgba(255, 255, 255, .6); display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px; }
.formula__m { font-family: var(--mono); font-size: 14px; color: var(--soft); }
.formula__r { font-family: var(--disp); font-size: 26px; font-weight: 800; letter-spacing: -.03em; }

/* ---------- milestone table ---------- */
.miles { border-radius: 26px; overflow: hidden; margin-top: 40px; }
.miles__r { display: grid; grid-template-columns: 150px 1fr 130px; align-items: center; gap: 20px; padding: 18px 26px; border-bottom: 1px solid rgba(16, 42, 73, .07); }
.miles__r:last-child { border-bottom: none; }
.miles__d { font-family: var(--mono); font-size: 13px; color: var(--soft); }
.miles__b { font-size: 15.5px; font-weight: 600; }
.miles__s { font-size: 11.5px; font-weight: 800; text-align: center; padding: 5px 10px; border-radius: 999px; }
.miles__s--done { background: rgba(43, 169, 176, .14); color: #0E6E74; }
.miles__s--pend { background: rgba(18, 68, 120, .12); color: var(--blue); }
.miles__s--now  { background: rgba(116, 214, 219, .3); color: #0E6E74; }
.miles__s--next { background: rgba(16, 42, 73, .08); color: var(--soft); }
@media (max-width: 780px) { .miles__r { grid-template-columns: 1fr auto; gap: 6px 14px; } .miles__b { grid-column: 1 / -1; order: 3; } }

/* ---------- founder panel ---------- */
.founder { margin-top: 40px; border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; }
.founder__mark {
  position: relative; min-height: 420px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px; padding: 42px; text-align: center;
  background: linear-gradient(152deg, var(--teal), var(--deep) 60%, var(--blue));
  color: #fff;
}
.founder__mark img { width: 92px; height: auto; opacity: .95; }
.founder__cities { font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; color: rgba(255, 255, 255, .82); line-height: 2 }
.founder__body { padding: 44px 42px; }
.founder__dashed { padding: 26px; border-radius: 22px; background: rgba(255, 253, 248, .4); border: 1px dashed rgba(16, 42, 73, .18); }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; } .founder__mark { min-height: 260px; } .founder__body { padding: 32px 26px; } }

/* ---------- 4-step process rail ---------- */
.life--4 { grid-template-columns: repeat(4, 1fr); }
.life--4::before { right: calc(25% - 16px); }
@media (max-width: 1000px) { .life--4 { grid-template-columns: repeat(2, 1fr); gap: 24px 0; } }
@media (max-width: 620px)  { .life--4 { grid-template-columns: 1fr; } }

/* ---------- open roles ---------- */
.role { display: grid; grid-template-columns: 1.5fr 1.8fr .9fr .8fr auto; gap: 20px; align-items: center; padding: 22px 26px; border-bottom: 1px solid rgba(16, 42, 73, .07); transition: background .25s ease; }
.role:hover { background: var(--cream2); }
.role__t { font-family: var(--disp); font-size: 19px; font-weight: 800; letter-spacing: -.025em; }
.role__team { font-family: var(--mono); font-size: 11.5px; color: var(--deep); margin-top: 5px; }
.role__b { font-size: 14px; line-height: 1.55; color: var(--soft); }
.role__loc { font-size: 13.5px; font-weight: 600; color: var(--soft); }
.role__pay { font-family: var(--mono); font-size: 13px; color: var(--soft); }
@media (max-width: 1000px) {
  .role { grid-template-columns: 1fr auto; gap: 10px 16px; }
  .role__b { grid-column: 1 / -1; }
  .role__loc, .role__pay { font-size: 13px; }
}

/* ---------- benefit rows ---------- */
.ben { display: grid; grid-template-columns: 1fr 1.15fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(16, 42, 73, .1); }
.ben:last-child { border-bottom: none; }
.ben__k { font-size: 14.5px; font-weight: 700; }
.ben__v { font-size: 14px; color: var(--soft); line-height: 1.55; }
@media (max-width: 620px) { .ben { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- regulatory status table ---------- */
.regs__r { display: grid; grid-template-columns: 1.1fr 1.6fr .8fr; align-items: center; padding: 17px 26px; border-bottom: 1px solid rgba(16, 42, 73, .07); }
.regs__k { font-weight: 700; font-size: 14.5px; }
.regs__b { font-size: 14px; color: var(--soft); line-height: 1.5; }
.regs__s { font-family: var(--mono); font-size: 12.5px; text-align: right; }
.regs__s--ok { color: var(--deep); } .regs__s--pend { color: var(--blue); } .regs__s--rev { color: var(--soft); }
@media (max-width: 860px) { .regs__r { grid-template-columns: 1fr auto; gap: 6px 14px; } .regs__b { grid-column: 1 / -1; order: 3; } .regs__s { text-align: right; } }

/* ---------- key/value rows on the dark panel ---------- */
.kv { display: grid; grid-template-columns: 1fr 1.3fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.kv:last-child { border-bottom: none; }
.kv__k { font-size: 14px; font-weight: 700; color: var(--gold); }
.kv__v { font-size: 14px; color: rgba(253, 246, 236, .85); line-height: 1.5; }
@media (max-width: 620px) { .kv { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- contact rows ---------- */
.contact { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-radius: 18px; background: rgba(247, 236, 218, .55); border: 1px solid rgba(255, 255, 255, .6); }
.contact + .contact { margin-top: 12px; }
.contact__k { font-size: 14px; font-weight: 700; }
.contact__v { font-family: var(--mono); font-size: 13px; color: var(--deep); }

/* ---------- waitlist form ---------- */
.wl { border-radius: 28px; padding: 34px; }
.wl__field { margin-top: 20px; }
.wl__label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.wl__hint { font-weight: 500; color: var(--soft); }
.wl__input, .wl__select {
  width: 100%; padding: 14px 18px; border-radius: 14px; font-family: inherit; font-size: 15px;
  background: #fff; border: 1px solid rgba(16, 42, 73, .14); color: var(--ink);
}
.wl__input:focus-visible, .wl__select:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.wl__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.wl__check {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, .6); border: 1px solid rgba(16, 42, 73, .12);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s ease, border-color .2s ease;
}
.wl__check:hover { background: #fff; border-color: rgba(43, 169, 176, .5); }
.wl__check input { accent-color: var(--teal); width: 16px; height: 16px; }
.wl__check img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 42, 73, .12); }
.wl__actions { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.wl__status { font-size: 14px; font-weight: 600; color: #B0341F; }
.wl__ref { font-family: var(--mono); font-size: 15px; background: rgba(43, 169, 176, .14); color: #0E6E74; padding: 6px 12px; border-radius: 8px; display: inline-block; }
@media (max-width: 900px) { .wl__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .wl__grid { grid-template-columns: 1fr; } .wl { padding: 24px 20px; } }

/* ---------- confirmation band ---------- */
.confirm { position: relative; border-radius: 34px; overflow: hidden; background: linear-gradient(140deg, var(--teal), var(--deep) 55%, var(--blue)); box-shadow: 0 50px 110px -54px rgba(16, 60, 66, .7); }
.confirm__orb { position: absolute; right: -4%; top: -12%; width: 56%; height: 124%; pointer-events: none; }
.confirm__orb::before { content: ""; position: absolute; inset: -10%; z-index: 1; background: radial-gradient(circle at 50% 46%, rgba(8, 26, 48, .5), rgba(8, 26, 48, .22) 46%, rgba(8, 26, 48, 0) 68%); }
.confirm__orb coynitt-globe { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.confirm__in { position: relative; z-index: 2; padding: 76px 50px; max-width: 660px; color: #fff; }
.confirm__pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .34); font-size: 12.5px; font-weight: 800; letter-spacing: .06em; }
.confirm__pill i { width: 8px; height: 8px; border-radius: 99px; background: var(--gold); animation: tw-pulse 2.4s infinite; }
.confirm__h { font-family: var(--disp); font-weight: 800; font-size: clamp(38px, 4.6vw, 70px); line-height: 1; letter-spacing: -.04em; margin-top: 20px; }
.confirm__p { font-size: 17px; line-height: 1.62; margin-top: 20px; opacity: .94; }
.confirm__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 34px; }
.confirm__stats b { display: block; font-family: var(--disp); font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.confirm__stats span { display: block; font-size: 12.5px; font-weight: 600; opacity: .8; margin-top: 5px; }
@media (max-width: 900px) { .confirm__in { padding: 52px 26px; } .confirm__orb { display: none; } }

/* ---------- service-level table ---------- */
.sys__r { display: grid; grid-template-columns: 1.4fr 1fr 130px; align-items: center; padding: 16px 26px; border-bottom: 1px solid rgba(16, 42, 73, .07); }
.sys__k { font-size: 14.5px; font-weight: 700; }
.sys__m { font-family: var(--mono); font-size: 13px; color: var(--soft); }
.sys__s { display: flex; align-items: center; justify-content: flex-end; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--deep); }
.sys__s i { width: 8px; height: 8px; border-radius: 99px; background: currentColor; }
@media (max-width: 700px) { .sys__r { grid-template-columns: 1fr auto; gap: 4px 14px; } .sys__m { grid-column: 1 / -1; } }

/* ---------- transfer tracker preview ---------- */
.track__stage { display: grid; grid-template-columns: 20px 1fr auto; gap: 14px; align-items: center; padding: 10px 0; }
.track__d { width: 11px; height: 11px; border-radius: 99px; background: var(--deep); box-shadow: 0 0 0 4px rgba(43, 169, 176, .18); }
.track__d--last { background: var(--teal); box-shadow: 0 0 0 4px rgba(43, 169, 176, .28); }
.track__k { font-size: 14px; font-weight: 600; }
.track__t { font-family: var(--mono); font-size: 12px; color: var(--soft); }

/* ============================================================
   LEGAL DOCUMENTS
   Long-form policy pages: terms, privacy, AML/KYC, GDPR.
   ============================================================ */
.legal { border-radius: 28px; padding: 46px 48px; }
.legal .prose { max-width: 78ch; margin-top: 0; }
.legal .prose h2 {
  font-family: var(--disp); font-size: clamp(21px, 2.1vw, 27px); font-weight: 800;
  letter-spacing: -.025em; color: var(--ink); margin-top: 40px;
  padding-top: 26px; border-top: 1px solid rgba(16, 42, 73, .1);
  scroll-margin-top: 110px;
}
.legal .prose h2:first-of-type { margin-top: 28px; }
.legal .prose h3 { font-size: 18px; margin-top: 26px; }
.legal .prose p, .legal .prose li { font-size: 15.5px; line-height: 1.72; }
.legal .prose strong { color: var(--ink); font-weight: 700; }
.legal .prose a { font-weight: 600; }
.legal .prose ul { padding-left: 22px; }
.legal .prose li { margin-top: 10px; }
.legal .prose li::marker { color: var(--teal); }

.last-updated {
  display: inline-block; font-family: var(--mono); font-size: 12px;
  letter-spacing: .06em; color: var(--deep);
  background: rgba(43, 169, 176, .12); padding: 7px 14px; border-radius: 999px;
  margin: 0 0 6px;
}

.legal-toc {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 18px;
  margin: 26px 0 8px; padding: 22px 24px; border-radius: 18px;
  background: rgba(247, 236, 218, .55); border: 1px solid rgba(255, 255, 255, .6);
}
.legal-toc a {
  display: block; padding: 7px 0; font-size: 14.5px; font-weight: 600;
  color: var(--soft); border-bottom: 1px solid rgba(16, 42, 73, .07);
  transition: color .2s ease, padding-left .2s ease;
}
.legal-toc a:hover { color: var(--deep); padding-left: 5px; }

@media (max-width: 760px) {
  .legal { padding: 30px 22px; }
  .legal-toc { grid-template-columns: 1fr; padding: 18px 18px; }
}

/* ============================================================
   404
   ============================================================ */
.nf { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; }
.nf__code {
  font-family: var(--disp); font-size: clamp(90px, 18vw, 200px); font-weight: 800;
  letter-spacing: -.06em; line-height: .82; color: rgba(16, 42, 73, .13);
}
.nf__links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.nf__links a {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
  background: rgba(255, 253, 248, .7); border: 1px solid rgba(255, 255, 255, .7); color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.nf__links a:hover { background: #fff; transform: translateY(-2px); color: var(--ink); }

/* ---------- era context blocks, small screens ----------
   Guarded with min-width: the phone layout below is defined earlier in this
   file, so an unguarded max-width rule here would win on source order and
   put the 190px rail inset back on a 375px screen. */
@media (max-width: 1080px) and (min-width: 861px) {
  .tw__world--2003 { padding: 60px var(--gutter) 60px 190px; }
}
@media (max-width: 860px) {
  .xp__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 560px) {
  .xp__head, .xp__ctx { width: 100%; }
  .xp__headH { font-size: 18px; }
  .xp__headStats { gap: 12px; }
  .tw__ctxP, .ctx__p { font-size: 12.5px; }
}

/* ---------- 2026 hero on shorter viewports ----------
   The stage is locked to 100vh, so on a 900px-tall laptop the arrival column
   (badge, headline, lede, CTAs, pre-launch note, stats) runs taller than the
   pane and rides up behind the sticky nav. Tighten the rhythm rather than let
   it clip. */
@media (max-height: 980px) {
  .tw__h1   { font-size: clamp(36px, 3.9vw, 54px); margin-top: 16px; }
  .tw__sub  { margin-top: 14px; font-size: 16.5px; }
  .tw__ctas { margin-top: 20px; }
  .tw__nowGrid .note { margin-top: 12px; }
  .tw__stats { margin-top: 20px; gap: 18px; }
  .tw__stats b { font-size: 24px; }
  .badge { padding: 8px 15px; font-size: 12px; }
}
@media (max-height: 820px) {
  .tw__h1   { font-size: clamp(32px, 3.5vw, 46px); margin-top: 12px; }
  .tw__sub  { margin-top: 11px; font-size: 15.5px; }
  .tw__ctas { margin-top: 16px; }
  .tw__stats { margin-top: 16px; }
  .tw__orb { height: min(60vh, 460px); }
}
