/* ==========================================================================
   Content Kings — thecontentkings.org
   Editorial light identity: ivory paper, ink navy, royal purple, antique brass.
   Deliberately single-theme (light) — this is a brand site, not a themed doc.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Paper */
  --pp: #FAF7F1;
  --pp-2: #FFFFFF;
  --pp-3: #F2EDE3;
  --pp-4: #E8E1D4;

  /* Ink */
  --ink: #14182B;
  --ink-2: #3B4260;
  --ink-3: #676E8C;
  --ink-4: #9AA0B6;

  /* Accent — royal purple */
  --pu: #5B3FD9;
  --pu-dk: #4326B4;
  --pu-mid: #7C63E8;
  --pu-lt: #EBE5FF;
  --pu-tint: #F5F2FF;

  /* Accent — antique brass */
  --br: #B8842A;
  --br-lt: #F6EDD9;

  /* Semantic */
  --ok: #1D7A54;
  --ok-lt: #E4F3EC;

  /* Lines */
  --rule: #DED6C7;
  --rule-2: #C9BFAB;
  --rule-ink: rgba(20, 24, 43, .12);

  /* Type */
  --f-disp: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Metrics */
  --wrap: 1180px;
  --pad-s: clamp(52px, 7vw, 96px);
  --r: 4px;
  --r-2: 10px;
  --sh: 0 1px 2px rgba(20, 24, 43, .06), 0 8px 24px -14px rgba(20, 24, 43, .16);
  --sh-2: 0 2px 4px rgba(20, 24, 43, .05), 0 24px 50px -24px rgba(20, 24, 43, .24);
  --ease: cubic-bezier(.22, .68, 0, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--pp);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
table { border-collapse: collapse; }

::selection { background: var(--pu-lt); color: var(--pu-dk); }
:focus-visible { outline: 2.5px solid var(--pu); outline-offset: 2px; border-radius: 2px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-disp);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.018em;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 40;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); letter-spacing: -.028em; }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.85rem); letter-spacing: -.024em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
h4 { font-family: var(--f-body); font-size: 1.04rem; font-weight: 650; letter-spacing: -.008em; line-height: 1.3; }

em.wonk {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 60;
  color: var(--pu);
}

p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 650; }

.lead {
  font-size: clamp(1.06rem, 1.55vw, 1.21rem);
  line-height: 1.58;
  color: var(--ink-2);
  max-width: 62ch;
}

/* Masthead-style label: this is a publisher, so labels read like a masthead */
.lab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .715rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pu);
  margin-bottom: 16px;
}
.lab::before { content: ""; width: 18px; height: 2px; background: var(--pu); }
.lab.br { color: var(--br); }
.lab.br::before { background: var(--br); }
.lab.c { justify-content: center; }

.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.wrap-n { max-width: 780px; }

.sect { padding-block: var(--pad-s); }
.sect-b { padding-bottom: var(--pad-s); }
.sect-t { padding-top: var(--pad-s); }
.paper-2 { background: var(--pp-2); border-block: 1px solid var(--rule); }
.paper-3 { background: var(--pp-3); border-block: 1px solid var(--rule); }
.ink-bg { background: var(--ink); color: rgba(255, 255, 255, .76); }
.ink-bg h2, .ink-bg h3, .ink-bg h4 { color: #fff; }
.ink-bg .lead { color: rgba(255, 255, 255, .78); }
.ink-bg .lab { color: var(--pu-mid); }
.ink-bg .lab::before { background: var(--pu-mid); }

.head { max-width: 660px; margin-bottom: clamp(34px, 4.6vw, 56px); }
.head.c { margin-inline: auto; text-align: center; }
.head.c .lead { margin-inline: auto; }
.head h2 + .lead { margin-top: 16px; }

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split-w { grid-template-columns: 1.15fr .85fr; }
/* text left, wide data table right — tables need the room */
.split-t { grid-template-columns: .78fr 1.22fr; }

/* ---------- 5. Buttons ---------- */
.btn {
  --bh: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: var(--bh);
  padding-inline: 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: .925rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .25s;
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-p { background: var(--pu); color: #fff; box-shadow: 0 6px 18px -8px rgba(91, 63, 217, .6); }
.btn-p:hover { background: var(--pu-dk); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(91, 63, 217, .7); }

.btn-i { background: var(--ink); color: #fff; }
.btn-i:hover { background: #050817; transform: translateY(-2px); }

.btn-o { border-color: var(--ink); color: var(--ink); }
.btn-o:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-l { border-color: rgba(255, 255, 255, .32); color: #fff; }
.btn-l:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-sm { --bh: 40px; padding-inline: 17px; font-size: .855rem; }
.btn-lg { --bh: 56px; padding-inline: 30px; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.c { justify-content: center; }

.tl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  font-size: .9rem;
  color: var(--pu);
  border-bottom: 1.5px solid var(--pu-lt);
  padding-bottom: 2px;
  transition: border-color .2s, gap .25s var(--ease);
}
.tl svg { width: 13px; height: 13px; }
.tl:hover { border-color: var(--pu); gap: 12px; }

/* ---------- 6. Masthead header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--pp);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s, background .3s;
}
.hdr.stuck { box-shadow: 0 1px 0 var(--rule), 0 10px 30px -22px rgba(20, 24, 43, .5); background: rgba(250, 247, 241, .94); backdrop-filter: blur(12px); }
.hdr-in { display: flex; align-items: center; gap: 16px; height: 76px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; flex: none; }
.brand-mk { width: 38px; height: 38px; flex: none; }
.brand-tx {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -.032em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 24;
}
.brand-tx small {
  display: block;
  font-family: var(--f-mono);
  font-size: .565rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 3px; }
.nav > li { position: relative; }
.nav a.nv {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 550;
  color: var(--ink-2);
  transition: color .18s, background .18s;
}
.nav a.nv:hover, .nav li:hover > a.nv { color: var(--ink); background: var(--pp-3); }
.nav a.nv[aria-current="page"] { color: var(--ink); font-weight: 650; }
.nav a.nv[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 13px;
  right: 13px;
  height: 2.5px;
  background: var(--pu);
}
.nav .caret { width: 9px; height: 9px; opacity: .5; transition: transform .25s; }
.nav li:hover .caret { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  translate: -50% 0;
  min-width: 292px;
  padding: 8px;
  background: var(--pp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  box-shadow: var(--sh-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s var(--ease), visibility .2s;
}
.nav li:hover > .drop, .nav li:focus-within > .drop { opacity: 1; visibility: visible; transform: none; }
.drop a { display: block; padding: 10px 12px; border-radius: 7px; transition: background .16s; }
.drop a:hover { background: var(--pu-tint); }
.drop b { display: block; font-size: .885rem; font-weight: 650; color: var(--ink); }
.drop span { display: block; font-size: .775rem; color: var(--ink-3); line-height: 1.42; margin-top: 2px; }

.hdr-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--rule-2);
  border-radius: 9px;
  background: var(--pp-2);
  cursor: pointer;
  padding: 0;
}
.burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%) translateY(var(--y, 0));
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { --y: -5.5px; }
.burger span:nth-child(3) { --y: 5.5px; }
body.mnav .burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.mnav .burger span:nth-child(2) { opacity: 0; }
body.mnav .burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mdrawer {
  position: fixed;
  inset: 76px 0 0;
  z-index: 190;
  background: var(--pp);
  padding: 22px clamp(20px, 5vw, 40px) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .28s, transform .28s var(--ease), visibility .28s;
}
body.mnav .mdrawer { opacity: 1; visibility: visible; transform: none; }
.mdrawer a.ml {
  display: block;
  padding: 15px 2px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-disp);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
}
.mdrawer a.ml.sub { font-family: var(--f-body); font-size: .96rem; font-weight: 550; color: var(--ink-2); padding-left: 16px; }
.mdrawer .btn { width: 100%; margin-top: 22px; }

/* ---------- 7. Hero ---------- */
.hero { padding-top: clamp(42px, 6vw, 76px); padding-bottom: clamp(38px, 5vw, 64px); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 63, 217, .085), transparent 66%);
  pointer-events: none;
}
.hero-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; position: relative; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 52ch; }
.hero .btn-row { margin-top: 28px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 15px 6px 7px;
  margin-bottom: 22px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  background: var(--pp-2);
  font-size: .8rem;
  font-weight: 550;
  color: var(--ink-2);
  flex-wrap: wrap;
  line-height: 1.4;
}
.kicker i {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .655rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--pu);
  color: #fff;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(20px, 3vw, 38px);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-meta > div { min-width: 96px; }
.hero-meta .v { font-family: var(--f-disp); font-size: 1.62rem; font-weight: 600; color: var(--ink); line-height: 1; font-variation-settings: "opsz" 30, "WONK" 1; }
.hero-meta .k { font-family: var(--f-mono); font-size: .685rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-top: 7px; }

/* Hero visual: a document spec sheet — the subject's own convention */
.spec {
  background: var(--pp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  box-shadow: var(--sh);
  overflow: hidden;
}
.spec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--pp-3);
}
.spec-top b { font-family: var(--f-body); font-size: .85rem; font-weight: 650; color: var(--ink); }
.spec-top .st {
  font-family: var(--f-mono);
  font-size: .655rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--ok-lt);
  color: var(--ok);
  font-weight: 600;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule-ink);
  font-size: .865rem;
}
.spec-row:last-of-type { border-bottom: 0; }
.spec-row .k { color: var(--ink-3); }
.spec-row .v { font-family: var(--f-mono); font-variant-numeric: tabular-nums; color: var(--ink); font-size: .83rem; text-align: right; }
.spec-row .v.pu { color: var(--pu); font-weight: 600; }
.spec-foot { padding: 14px 18px; border-top: 1px solid var(--rule); background: var(--pu-tint); font-size: .82rem; color: var(--pu-dk); }
.spec-foot b { color: var(--pu-dk); }

.langchips { display: flex; flex-wrap: wrap; gap: 6px; padding: 14px 18px; border-bottom: 1px solid var(--rule-ink); }
.lchip {
  font-family: var(--f-mono);
  font-size: .705rem;
  letter-spacing: .04em;
  padding: 4px 8px;
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  background: var(--pp);
  color: var(--ink-2);
}
.lchip.on { background: var(--pu); border-color: var(--pu); color: #fff; }

/* ---------- 8. Language ticker ---------- */
.tick { overflow: hidden; padding-block: 18px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.tick-t { display: flex; width: max-content; gap: 34px; animation: tk 40s linear infinite; }
.tick:hover .tick-t { animation-play-state: paused; }
@keyframes tk { to { transform: translateX(-50%); } }
.tick-i { display: flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.tick-i .n { font-family: var(--f-disp); font-size: 1.04rem; font-weight: 600; color: var(--ink); font-variation-settings: "opsz" 20, "WONK" 1; }
.tick-i .c { font-family: var(--f-mono); font-size: .69rem; color: var(--ink-4); letter-spacing: .05em; }

/* ---------- 9. Cards ---------- */
.card {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--pp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--rule-2); }
.card h3, .card h4 { margin-bottom: 9px; }
.card p { font-size: .93rem; color: var(--ink-3); }

/* A flat variant so not everything reads as a lifted card */
.flat { padding: 0; background: none; border: 0; box-shadow: none; }
.flat:hover { transform: none; box-shadow: none; }

.ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
  border-radius: 11px;
  background: var(--pu-lt);
  color: var(--pu-dk);
}
.ico svg { width: 20px; height: 20px; }
.ico.br { background: var(--br-lt); color: var(--br); }
.ico.ink { background: var(--ink); color: #fff; }

.svc { display: flex; flex-direction: column; }
.svc ul { margin: 15px 0 20px; display: grid; gap: 7px; }
.svc li { position: relative; padding-left: 19px; font-size: .875rem; color: var(--ink-3); }
.svc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--pu);
  rotate: 45deg;
}
.svc .tl { margin-top: auto; align-self: flex-start; }

/* ---------- 10. Stat strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--rule);
}
.st-i { padding: clamp(22px, 2.6vw, 32px) clamp(16px, 2vw, 26px); border-right: 1px solid var(--rule); }
.st-i:last-child { border-right: 0; }
.st-v {
  font-family: var(--f-disp);
  font-size: clamp(2.05rem, 3.4vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 60, "WONK" 1;
  font-variant-numeric: tabular-nums;
}
.st-l { margin-top: 11px; font-size: .83rem; color: var(--ink-3); line-height: 1.42; }

/* ---------- 11. Numbered process ---------- */
.flow { display: grid; counter-reset: fl; }
.flow-i {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: clamp(14px, 2vw, 26px);
  padding-block: 24px;
  border-top: 1px solid var(--rule);
  counter-increment: fl;
}
.flow-i:last-child { border-bottom: 1px solid var(--rule); }
.flow-n {
  font-family: var(--f-mono);
  font-size: .8rem;
  font-weight: 600;
  color: var(--pu);
  padding-top: 4px;
  letter-spacing: .04em;
}
.flow-n::before { content: counter(fl, decimal-leading-zero); }
.flow-i h4 { margin-bottom: 7px; }
.flow-i p { font-size: .92rem; color: var(--ink-3); max-width: 62ch; }
.flow-i .tat {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: .705rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--br);
  background: var(--br-lt);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ---------- 12. Language table ---------- */
.lgroup { margin-bottom: clamp(30px, 4vw, 46px); }
.lgroup-h {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.lgroup-h h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); }
.lgroup-h .ct { font-family: var(--f-mono); font-size: .73rem; color: var(--ink-4); margin-left: auto; letter-spacing: .06em; }
.lgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  background: var(--pp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
}
/* Hairline dividers drawn per cell, so the unfilled remainder of the last
   row stays blank paper instead of showing the container colour. */
.lcell {
  padding: 12px 14px;
  box-shadow: 1px 0 0 var(--rule), 0 1px 0 var(--rule);
  transition: background .18s;
}
.lcell:hover { background: var(--pu-tint); }
.lcell .ln { font-size: .89rem; font-weight: 600; color: var(--ink); }
.lcell .lnative { font-size: .79rem; color: var(--ink-3); margin-top: 1px; }
.lcell .lc { font-family: var(--f-mono); font-size: .66rem; color: var(--ink-4); letter-spacing: .06em; margin-top: 5px; }

/* ---------- 13. Rate / spec table ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: var(--r-2); background: var(--pp-2); }
.tbl { width: 100%; min-width: 430px; font-size: .885rem; }
.tbl th, .tbl td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
.tbl thead th {
  font-family: var(--f-mono);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--pp-3);
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td { color: var(--ink-3); }
.tbl td:first-child { color: var(--ink); font-weight: 600; }
.tbl td.n { font-family: var(--f-mono); font-variant-numeric: tabular-nums; color: var(--ink); }

/* ---------- 14. Pull quote / sample ---------- */
.pull {
  padding: clamp(24px, 3vw, 38px);
  background: var(--pp-2);
  border-left: 3px solid var(--pu);
  border-radius: 0 var(--r-2) var(--r-2) 0;
  box-shadow: var(--sh);
}
.pull p {
  font-family: var(--f-disp);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.42;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 40;
}
.pull .src { margin-top: 16px; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-4); }

.sample {
  background: var(--pp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  overflow: hidden;
}
.sample-h {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--pp-3);
  font-family: var(--f-mono);
  font-size: .705rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sample-h .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pu); }
.sample-b { padding: 18px 20px; font-size: .92rem; color: var(--ink-2); }
.sample-b p + p { margin-top: 11px; }
.sample-b h5 { font-family: var(--f-body); font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }

/* ---------- 15. FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-body);
  font-size: 1.01rem;
  font-weight: 650;
  color: var(--ink);
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--pu); }
.faq summary .pm {
  margin-left: auto;
  flex: none;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--rule-2);
  border-radius: 50%;
  transition: transform .3s var(--ease), border-color .25s, color .25s;
}
.faq summary .pm svg { width: 10px; height: 10px; }
.faq details[open] summary .pm { transform: rotate(45deg); border-color: var(--pu); color: var(--pu); }
.faq .ans { padding: 0 44px 22px 2px; }
.faq .ans p { font-size: .93rem; color: var(--ink-3); }
.faq .ans p + p { margin-top: 11px; }

/* ---------- 16. CTA band ---------- */
.cta {
  position: relative;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  background: var(--ink);
  border-radius: var(--r-2);
  overflow: hidden;
  text-align: center;
  color: rgba(255, 255, 255, .78);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 82% 0%, rgba(91, 63, 217, .46), transparent 62%),
    radial-gradient(60% 110% at 12% 100%, rgba(184, 132, 42, .26), transparent 60%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; max-width: 24ch; margin-inline: auto; }
.cta .lead { color: rgba(255, 255, 255, .8); margin: 16px auto 0; max-width: 54ch; }
.cta .btn-row { margin-top: 28px; }
.cta .fine { margin-top: 18px; font-family: var(--f-mono); font-size: .73rem; letter-spacing: .06em; color: rgba(255, 255, 255, .5); }

/* ---------- 17. Forms ---------- */
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .805rem; font-weight: 650; color: var(--ink); }
.field label .req { color: var(--pu); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--rule-2);
  border-radius: 7px;
  background: var(--pp-2);
  color: var(--ink);
  font-size: .93rem;
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pu);
  box-shadow: 0 0 0 3px var(--pu-lt);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23676E8C' stroke-width='1.7'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 12px;
  padding-right: 36px;
}
.fnote { font-size: .78rem; color: var(--ink-4); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .825rem; color: var(--ink-3); }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--pu); flex: none; }
.consent a { color: var(--pu); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-ok {
  display: none;
  padding: 14px 17px;
  border: 1.5px solid var(--ok);
  border-radius: 7px;
  background: var(--ok-lt);
  color: var(--ok);
  font-size: .9rem;
  font-weight: 600;
}
.form-ok.on { display: block; }

/* ---------- 18. Contact blocks ---------- */
.cb { display: flex; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--rule); }
.cb:first-of-type { border-top: 1px solid var(--rule); }
.cb .ci { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--pu-lt); color: var(--pu-dk); }
.cb .ci svg { width: 17px; height: 17px; }
.cb b { display: block; font-family: var(--f-mono); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 5px; }
.cb .cv { font-size: .955rem; color: var(--ink); line-height: 1.5; }
.cb .cv a { color: var(--pu); }
.cb .cv a:hover { text-decoration: underline; }

/* ---------- 19. Rich text ---------- */
.rt h2 { font-size: clamp(1.55rem, 2.4vw, 1.95rem); margin-top: 42px; margin-bottom: 15px; }
.rt h3 { margin-top: 30px; margin-bottom: 11px; }
.rt > *:first-child { margin-top: 0; }
.rt p { margin-bottom: 14px; }
.rt ul { margin: 0 0 17px; display: grid; gap: 8px; }
.rt ul li { position: relative; padding-left: 21px; }
.rt ul li::before { content: ""; position: absolute; left: 3px; top: .58em; width: 7px; height: 7px; border-radius: 2px; rotate: 45deg; background: var(--pu); }
.rt a { color: var(--pu); text-decoration: underline; text-underline-offset: 3px; }
.rt code { font-family: var(--f-mono); font-size: .86em; background: var(--pp-3); padding: 2px 6px; border-radius: 4px; color: var(--ink); }
.rt .tbl-wrap { margin-bottom: 20px; }

/* ---------- 20. Page hero ---------- */
.phero { padding-top: clamp(38px, 5vw, 68px); padding-bottom: clamp(26px, 3.4vw, 42px); }
.crumbs { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: .715rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 20px; }
.crumbs a:hover { color: var(--pu); }
.phero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.phero .lead { margin-top: 18px; }

/* ---------- 21. Footer ---------- */
.ftr { margin-top: clamp(52px, 6vw, 84px); background: var(--ink); color: rgba(255, 255, 255, .66); }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(24px, 4vw, 46px); padding-block: clamp(38px, 5vw, 58px); }
.ftr .brand-tx { color: #fff; }
.ftr .brand-tx small { color: rgba(255, 255, 255, .42); }
.ftr-brand p { font-size: .885rem; margin-top: 15px; max-width: 36ch; color: rgba(255, 255, 255, .62); }
.ftr h5 { font-family: var(--f-mono); font-size: .69rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .42); margin-bottom: 15px; }
.ftr ul { display: grid; gap: 10px; }
.ftr ul a, .ftr ul li { font-size: .885rem; color: rgba(255, 255, 255, .68); transition: color .18s; }
.ftr ul a:hover { color: #fff; }
.ftr-bot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .795rem;
  color: rgba(255, 255, 255, .45);
}
.ftr-bot .sp { margin-left: auto; }
.ftr-bot a:hover { color: #fff; }

/* ---------- 22. Cookie banner ---------- */
.ckw {
  position: fixed;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  z-index: 400;
  width: min(650px, calc(100vw - 32px));
  padding: 20px 22px;
  background: var(--pp-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-2);
  box-shadow: var(--sh-2);
  opacity: 0;
  transform: translateY(16px);
  visibility: hidden;
  transition: opacity .35s, transform .4s var(--ease), visibility .35s;
}
.ckw.on { opacity: 1; transform: none; visibility: visible; }
.ckw-h { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.ckw-h svg { width: 19px; height: 19px; color: var(--pu); flex: none; }
.ckw-h b { font-family: var(--f-disp); font-size: 1.06rem; font-weight: 600; color: var(--ink); }
.ckw p { font-size: .855rem; color: var(--ink-3); }
.ckw p a { color: var(--pu); text-decoration: underline; text-underline-offset: 2px; }
.ckw-b { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }
.ckw-b .btn { flex: 1 1 auto; }
.ckw-prefs { display: none; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--rule); }
.ckw-prefs.on { display: grid; gap: 13px; }
.ckrow { display: flex; align-items: flex-start; gap: 12px; }
.ckrow .txt { flex: 1; }
.ckrow b { display: block; font-size: .865rem; font-weight: 650; color: var(--ink); }
.ckrow span { display: block; font-size: .785rem; color: var(--ink-4); margin-top: 1px; }
.sw { position: relative; width: 40px; height: 23px; flex: none; margin-top: 2px; }
.sw input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.sw i { position: absolute; inset: 0; border-radius: 999px; background: var(--rule-2); transition: background .22s; pointer-events: none; }
.sw i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .22s var(--ease); }
.sw input:checked + i { background: var(--pu); }
.sw input:checked + i::after { transform: translateX(17px); }
.sw input:disabled + i { opacity: .5; }
.sw input:disabled { cursor: not-allowed; }

.ck-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 300;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  background: var(--pp-2);
  box-shadow: var(--sh);
  font-size: .77rem;
  color: var(--ink-3);
  cursor: pointer;
}
.ck-reopen.on { display: flex; }
.ck-reopen:hover { color: var(--ink); border-color: var(--pu); }
.ck-reopen svg { width: 14px; height: 14px; }

/* ---------- 23. Utilities ---------- */
.tc { text-align: center; }
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: clamp(34px, 4.6vw, 54px); }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 500; padding: 10px 16px; border-radius: 7px; background: var(--pu); color: #fff; font-weight: 650; transition: top .2s; }
.skip:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 24. Responsive ---------- */
@media (max-width: 1040px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .ftr-top { grid-template-columns: 1fr 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav, .hdr-cta .btn-o { display: none; }
  .burger { display: block; }
  .split, .split-w { grid-template-columns: 1fr; gap: 32px; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .st-i:nth-child(2) { border-right: 0; }
  .st-i:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .hdr-in { height: 66px; }
  .hdr-cta .btn { display: none; }
  .mdrawer { inset-block-start: 66px; }
  .flow-i { grid-template-columns: 1fr; gap: 6px; }
  .ckw { width: calc(100vw - 24px); bottom: 12px; padding: 18px; }
  .ckw-b .btn { flex: 1 1 100%; }
  .lgrid { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 18px 24px; }
}
