:root {

  --paper:      #ffffff;
  --paper-2:    #eef3fb;
  --ink:        #0a2a66;
  --ink-2:      #1a3d80;
  --body:       #21345c;
  --muted:      #5a6b8f;
  --accent:     #2f6bff;
  --accent-ink: #ffffff;
  --line:       #cfdcf3;
  --line-soft:  #e4ecfa;

  --radius:  4px;
  --maxw:    1440px;
  --pad:     clamp(1.1rem, 4vw, 3rem);

  --h1:   clamp(2.9rem, 8vw, 6.5rem);
  --h2:   clamp(2.1rem, 5vw, 4rem);
  --h3:   clamp(1.15rem, 1.6vw, 1.4rem);
  --lead: clamp(1.1rem, 1.45vw, 1.35rem);

  --font-head: 'Familjen Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --grid: linear-gradient(var(--line-soft) 1px, transparent 1px) 0 0 / 100% 56px,
          linear-gradient(90deg, var(--line-soft) 1px, transparent 1px) 0 0 / 56px 100%;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 .4em;
  font-weight: 700;
}
h1 { font-size: var(--h1); font-weight: 800; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.15; letter-spacing: -.02em; }
p  { margin: 0 0 1rem; }
a  { color: inherit; }
img, svg { max-width: 100%; display: block; }
em { font-style: italic; color: var(--accent); }

.hold { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.slab   { padding: clamp(3.5rem, 8vw, 7.5rem) 0; position: relative; }
.slab--tint { background: var(--paper-2); }
.slab--dark  { background: var(--ink); color: rgba(255,255,255,.82); }
.slab--dark h1, .slab--dark h2, .slab--dark h3 { color: #fff; }
.slab--mesh { background-image: var(--grid); }

.standfirst { font-size: var(--lead); color: var(--muted); max-width: 60ch; }
.mid { text-align: center; margin-inline: auto; }

.overline {
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.3rem;
}
.overline::before {
  content: '';
  width: 11px; height: 11px;
  background: var(--accent);
  flex: 0 0 auto;
}
.slab--dark .overline { color: #7fa6ff; }
.slab--dark .overline::before { background: #7fa6ff; }

.slab-head { max-width: 70ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.slab-head .standfirst { margin-top: 1rem; }

.act {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.act--accent  { background: var(--accent); color: #fff; border-color: var(--accent); }
.act--accent:hover  { background: #1c52da; border-color: #1c52da; }
.act--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.act--ink:hover { background: #08214f; border-color: #08214f; }
.act--line { background: transparent; color: var(--ink); border-color: var(--line); }
.act--line:hover { border-color: var(--ink); }
.act--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.act--ghost:hover   { border-color: #fff; background: rgba(255,255,255,.08); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .6rem;
  letter-spacing: -.04em;
}
.logo .logo__bean {
  width: 30px; height: 30px;
  background: var(--ink);
  border-radius: 5px;
  position: relative;
  flex-shrink: 0;
}
.logo .logo__bean::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 46%, var(--accent) 46%, var(--accent) 54%, transparent 54%),
    radial-gradient(circle at 72% 30%, #fff 2px, transparent 2.6px);
}
.footplate .logo { color: #fff; }
.footplate .logo .logo__bean { background: #fff; }
.footplate .logo .logo__bean::after {
  background:
    linear-gradient(45deg, transparent 46%, var(--accent) 46%, var(--accent) 54%, transparent 54%),
    radial-gradient(circle at 72% 30%, var(--ink) 2px, transparent 2.6px);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0; padding: 0;
}
.navlinks a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-2);
  font-size: .9rem;
  transition: color .15s;
}
.navlinks a:hover { color: var(--accent); }
.navlinks .act { padding: .55rem 1.15rem; font-size: .85rem; }
.navlinks .act:hover { color: #fff; }
.navtoggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.navtoggle span { width: 26px; height: 2px; background: var(--ink); transition: .25s; display: block; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lede {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem);
  background-image: var(--grid);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.lede__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
}
.lede__stamp {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.1rem;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}
.lede__stamp span { display: inline-flex; align-items: center; gap: .5rem; }
.lede__stamp span::before { content: '▪'; color: var(--accent); }
.lede h1 { margin-bottom: .35em; }
.lede h1 .line { display: block; }
.lede__lead { font-size: var(--lead); color: var(--body); max-width: 46ch; margin-bottom: 2rem; }
.lede__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

.lede__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.lede__spec {
  flex: 1 1 0;
  min-width: 120px;
  padding: 1rem 1.2rem 1rem 0;
  border-right: 1px solid var(--line);
}
.lede__spec:last-child { border-right: none; }
.lede__spec b {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
}
.lede__spec span {
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.framecard { position: relative; }
.framecard__frame {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  position: relative;
}
.framecard__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.framecard__cap {
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--muted);
  margin-top: .65rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: .02em;
}
.framecard__cap b { color: var(--accent); font-weight: 600; }
.framecard__tag {
  position: absolute;
  top: -14px; left: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 3px;
}

.crawl {
  background: var(--ink);
  color: #fff;
  border-block: 1px solid var(--ink);
  overflow: hidden;
  padding: .85rem 0;
}
.crawl__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--font-mono);
  font-size: .9rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.crawl__track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.crawl__track span::after { content: '◆'; color: var(--accent); font-size: .7rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.crawl:hover .crawl__track { animation-play-state: paused; }

.roster { border-top: 1px solid var(--line); }
.roster__row {
  display: grid;
  grid-template-columns: 5rem 200px 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
  cursor: pointer;
}
.roster__row:hover { background: var(--paper-2); }
.roster__idx {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
}
.roster__media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.roster__media img { width: 100%; height: 100%; object-fit: cover; }
.roster__body h3 { margin-bottom: .35rem; }
.roster__body p { margin: 0; color: var(--muted); font-size: .98rem; max-width: 60ch; }
.roster__tag {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: .4rem .8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.roster__row:hover .roster__tag { border-color: var(--accent); color: var(--accent); }

.figs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fig { padding: 1.2rem 1.6rem; border-right: 1px solid rgba(255,255,255,.16); }
.fig:last-child { border-right: none; }
.fig__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: #fff;
  line-height: .95;
  margin-bottom: .4rem;
}
.fig__num em { color: #7fa6ff; }
.fig__cap {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
}

.curve { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.curve__step {
  padding: 1.8rem 1.6rem 1.8rem 0;
  border-top: 2px solid var(--ink);
  position: relative;
  padding-right: 1.6rem;
}
.curve__step::before {
  content: '';
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.curve__temp {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: .9rem;
  text-transform: uppercase;
}
.curve__step h3 { margin-bottom: .5rem; }
.curve__step p { margin: 0; color: var(--muted); font-size: .94rem; }

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
.pair__media {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 10px;
}
.pair__media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 2px;
}
.pair--rev .pair__media { order: 2; }

.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4.5rem);
}
.points__item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.points__n {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  padding-top: .2rem;
}
.points__item h3 { margin-bottom: .35rem; }
.points__item p { margin: 0; color: var(--muted); font-size: .96rem; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.tier {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
}
.tier:last-child { border-right: none; }
.tier--featured { background: var(--ink); color: rgba(255,255,255,.82); }
.tier--featured h3,
.tier--featured .tier__price strong { color: #fff; }
.tier--featured .tier__list li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.16); }
.tier--featured .tier__list li::before { color: #7fa6ff; }
.tier--featured .tier__desc { color: rgba(255,255,255,.68); }
.tier__badge {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.tier--featured .tier__badge { color: #7fa6ff; }
.tier .chip {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier--featured .chip { color: rgba(255,255,255,.6); }
.tier__price { margin: .5rem 0 1.1rem; font-family: var(--font-head); }
.tier__price strong { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; color: var(--ink); }
.tier__price span { font-family: var(--font-mono); font-size: .82rem; color: var(--muted); }
.tier__desc { font-size: .95rem; color: var(--muted); margin: 0 0 1.4rem; min-height: 3.5rem; }
.tier__list { list-style: none; padding: 0; margin: 0 0 1.8rem; flex: 1; }
.tier__list li {
  padding: .55rem 0 .55rem 1.6rem;
  position: relative;
  font-size: .93rem;
  border-bottom: 1px solid var(--line);
}
.tier__list li:last-child { border-bottom: none; }
.tier__list li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-family: var(--font-mono); }
.tier .act { width: 100%; justify-content: center; }
.tiers-note { margin-top: 1.6rem; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); max-width: 70ch; }

.seals { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.seal {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem;
  padding: 1.8rem 1.2rem;
  border-right: 1px solid var(--line);
}
.seal:last-child { border-right: none; }
.seal__logo {
  width: 54px; height: 54px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff;
  background: var(--ink);
}
.seal__logo--ra  { background: var(--accent); }
.seal__logo--utz { background: var(--ink-2); }
.seal__logo--iso { background: #0e3a86; }
.seal__logo--ucaf{ background: var(--accent); }
.seal__name { font-weight: 700; font-size: .92rem; color: var(--ink); font-family: var(--font-head); }
.seal__sub  { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); }

.voices { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; align-items: start; }
.voices__lead {
  background: var(--ink); color: #fff;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius);
  margin: 0;
}
.voices__lead p { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.25; letter-spacing: -.02em; margin: 0 0 1.2rem; }
.voices__lead cite { font-family: var(--font-mono); color: #7fa6ff; font-style: normal; font-size: .85rem; }
.voices__col { display: grid; gap: 1.5rem; }
.voices__sm { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 0; }
.voices__sm p { margin: 0 0 .8rem; color: var(--body); font-size: 1rem; }
.voices__sm cite { font-family: var(--font-mono); color: var(--muted); font-style: normal; font-size: .82rem; }

.wins { border-top: 1px solid var(--ink); }
.wins__row { display: grid; grid-template-columns: 8ch 1fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.wins__row strong { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--accent); line-height: 1; }
.wins__sector { font-weight: 600; color: var(--ink); }
.wins__tag { color: var(--muted); font-size: .9rem; text-align: right; font-family: var(--font-mono); }

.cols { display: grid; gap: 1.5rem; }
.cols--3 { grid-template-columns: repeat(3, 1fr); }
.cols--4 { grid-template-columns: repeat(4, 1fr); }
.journal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  background: #fff;
  transition: border-color .18s ease;
}
.journal:hover { border-color: var(--accent); }
.journal__meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; font-family: var(--font-mono); font-size: .76rem; }
.journal__meta .chip { color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.journal__date { color: var(--muted); }
.journal h3 { font-size: 1.1rem; margin-bottom: .6rem; flex: 0; }
.journal p { font-size: .93rem; color: var(--muted); margin: 0 0 1.2rem; flex: 1; }
.journal__link { font-family: var(--font-mono); font-size: .85rem; font-weight: 500; color: var(--accent); text-decoration: none; margin-top: auto; }
.journal__link:hover { text-decoration: underline; }

.endcta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  background-image:
    radial-gradient(circle at 88% 18%, rgba(127,166,255,.22), transparent 45%);
}
.endcta h2 { color: #fff; margin-bottom: .5rem; }
.endcta p { color: rgba(255,255,255,.75); margin: 0; max-width: 52ch; }
.endcta .act { white-space: nowrap; }

.masthead {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
}
.masthead .overline { color: #7fa6ff; }
.masthead .overline::before { background: #7fa6ff; }
.masthead h1 { color: #fff; max-width: 18ch; }
.masthead p { color: rgba(255,255,255,.74); max-width: 62ch; font-size: var(--lead); }

.ethos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ethos__item { padding: 1.9rem 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ethos__item:nth-child(3n) { border-right: none; }
.ethos__n { font-family: var(--font-mono); font-size: .8rem; color: var(--accent); margin-bottom: .8rem; display: block; }
.ethos__item h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.ethos__item p { margin: 0; font-size: .95rem; color: var(--muted); }

.story { position: relative; padding-left: clamp(2.5rem, 5vw, 5rem); }
.story::before { content: ''; position: absolute; left: clamp(.8rem, 2vw, 1.6rem); top: 0; bottom: 0; width: 2px; background: var(--line); }
.story__item { position: relative; margin-bottom: 2.4rem; display: grid; grid-template-columns: 100px 1fr; gap: 1.4rem; align-items: start; }
.story__item::before {
  content: ''; position: absolute;
  left: calc(-1 * clamp(2.5rem, 5vw, 5rem) + clamp(.8rem, 2vw, 1.6rem) - 6px);
  top: .4rem; width: 14px; height: 14px; background: var(--accent); border-radius: 50%;
  border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--accent);
}
.story__year { font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: var(--accent); text-align: right; padding-top: .25rem; }
.story__body { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.story__body h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.story__body p { margin: 0; font-size: .94rem; color: var(--muted); }

.roaster { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: left; }
.roaster__avatar {
  width: 60px; height: 60px; border-radius: 8px;
  background: var(--av-bg, var(--ink)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.roaster__name { font-size: 1.1rem; margin-bottom: .15rem; }
.roaster__role { font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: .9rem; }
.roaster__bio { font-size: .9rem; color: var(--muted); margin: 0; }

.qa { border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); padding: .4rem 0; }
.qa summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: -.02em;
  padding: 1.2rem 2.5rem 1.2rem 3.2rem;
  position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::before {
  content: '(' counter(faq, decimal-leading-zero) ')';
  counter-increment: faq;
  position: absolute; left: 0; top: 1.35rem;
  font-family: var(--font-mono); font-size: .85rem; color: var(--accent); font-weight: 500;
}
.qa summary::after { content: '+'; position: absolute; right: .4rem; top: 1rem; color: var(--accent); font-size: 1.6rem; font-weight: 300; line-height: 1; }
.qa details[open] summary::after { content: '\2212'; }
.qa { counter-reset: faq; }
.qa details p { margin: 0 0 1.4rem 3.2rem; color: var(--muted); max-width: 72ch; }

.reach { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.8rem, 5vw, 4rem); }
.fld { margin-bottom: 1.1rem; }
.fld label { display: block; font-family: var(--font-mono); font-weight: 500; font-size: .82rem; letter-spacing: .03em; margin-bottom: .4rem; color: var(--ink-2); text-transform: uppercase; }
.fld input, .fld textarea, .fld select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: .97rem; background: var(--paper); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,107,255,.15); }
.fld.agreebox { display: flex; gap: .65rem; align-items: flex-start; }
.fld.agreebox input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; flex: 0 0 18px;
  margin: .22rem 0 0; accent-color: var(--accent);
}
.fld.agreebox label { margin: 0; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .92rem; color: var(--muted); line-height: 1.5; }
.fld.agreebox label a { color: var(--accent); }
.form-msg { margin-top: .65rem; font-size: .91rem; min-height: 1.2em; font-family: var(--font-mono); }
.form-msg.error { color: #c0392b; }
.form-msg.ok { color: #15803d; }
.coords { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.coords li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .97rem; }
.coords strong { display: block; font-family: var(--font-mono); color: var(--accent); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }
.coords a { color: var(--ink); text-decoration: none; }
.coords a:hover { color: var(--accent); }
.mapframe {
  margin-top: 1.3rem; height: 200px; border-radius: var(--radius); border: 1px solid var(--line);
  background-image: var(--grid); background-color: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-family: var(--font-mono); font-size: .85rem;
}

.policy { max-width: 780px; margin: 0 auto; }
.policy h2 { margin-top: 2.4rem; font-size: 1.5rem; }
.policy h3 { margin-top: 1.6rem; font-size: 1.15rem; }
.policy ul { color: var(--muted); padding-left: 1.4rem; }
.policy li { margin: .4rem 0; }
.policy .stamp { font-family: var(--font-mono); color: var(--muted); font-size: .85rem; margin-bottom: 2.4rem; }

.footplate { background: var(--ink); color: rgba(255,255,255,.62); padding: clamp(3rem, 6vw, 5rem) 0 1.8rem; }
.footplate a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .15s; }
.footplate a:hover { color: #fff; }
.footplate__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footplate__brand p { font-size: .94rem; max-width: 34ch; margin: 1rem 0 0; }
.footplate__col h4 { color: #fff; font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1.1rem; font-weight: 500; }
.footplate__col ul { list-style: none; padding: 0; margin: 0; }
.footplate__col li { margin: .55rem 0; font-size: .95rem; }
.footplate__contact p { font-size: .94rem; margin: 0 0 .6rem; line-height: 1.6; }
.footplate__contact strong { color: #fff; font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: .2rem; }
.footplate__base {
  margin-top: 1.8rem; padding-top: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  font-family: var(--font-mono); font-size: .8rem; color: rgba(255,255,255,.45);
}
.footplate__base .footplate__certs { display: flex; gap: 1rem; }

.consent {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80;
  background: var(--ink); color: #fff; border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
  display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
  max-width: 820px; margin-inline: auto;
  box-shadow: 0 20px 50px -18px rgba(10,42,102,.7);
}
.consent p { margin: 0; font-size: .92rem; }
.consent a { color: #7fa6ff; }
.consent__btns { display: flex; gap: .6rem; flex-shrink: 0; }
.consent .act { padding: .55rem 1.1rem; font-size: .82rem; }

@media (max-width: 1000px) {
  .lede__inner { grid-template-columns: 1fr; }
  .framecard { max-width: 440px; }
  .figs { grid-template-columns: repeat(2, 1fr); }
  .fig:nth-child(2) { border-right: none; }
  .fig:nth-child(1), .fig:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .curve { grid-template-columns: repeat(2, 1fr); }
  .pair { grid-template-columns: 1fr; }
  .pair--rev .pair__media { order: 0; }
  .points { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--line); }
  .tier--featured { order: -1; }
  .seals { grid-template-columns: repeat(2, 1fr); }
  .seal:nth-child(2n) { border-right: none; }
  .seal { border-bottom: 1px solid var(--line); }
  .voices { grid-template-columns: 1fr; }
  .cols--3, .cols--4 { grid-template-columns: 1fr 1fr; }
  .ethos { grid-template-columns: 1fr 1fr; }
  .ethos__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .ethos__item:nth-child(2n) { border-right: none; }
  .endcta { grid-template-columns: 1fr; }
  .footplate__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .navtoggle { display: flex; }
  .navlinks {
    position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: .2rem; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1.2rem var(--pad); transform: translateY(-130%); transition: transform .3s ease;
    box-shadow: 0 14px 30px -16px rgba(10,42,102,.4);
  }
  .navlinks.shown { transform: translateY(0); }
  .navlinks li { width: 100%; }
  .navlinks a { display: block; padding: .6rem 0; width: 100%; }
  .navlinks .act { width: 100%; justify-content: center; margin-top: .5rem; }
  .roster__row { grid-template-columns: 3rem 1fr; gap: 1rem 1.2rem; }
  .roster__media { grid-row: span 2; display: none; }
  .roster__tag { grid-column: 2; justify-self: start; }
  .reach { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lede__specs { gap: 0; }
  .lede__spec { flex: 1 1 45%; border-bottom: 1px solid var(--line); }
  .curve { grid-template-columns: 1fr; }
  .figs { grid-template-columns: 1fr 1fr; }
  .cols--3, .cols--4 { grid-template-columns: 1fr; }
  .ethos { grid-template-columns: 1fr; }
  .ethos__item { border-right: none !important; }
  .seals { grid-template-columns: 1fr; }
  .seal { border-right: none !important; }
  .wins__row { grid-template-columns: 1fr; gap: .2rem; }
  .wins__tag { text-align: left; }
  .footplate__top { grid-template-columns: 1fr; }
  .story__item { grid-template-columns: 1fr; gap: .3rem; }
  .story__year { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; animation: none !important; }
}
[hidden] { display: none !important; }
