/* =========================================================================
   GOOG_ — design system
   -------------------------------------------------------------------------
   Everything here is derived from assets/pfp.png: flat vector, heavy navy
   outline, Google's four colours on white paper. So the page is built like
   printed matter — 3px hard borders, offset shadows with zero blur, colour
   used to mean something rather than to decorate.

   Contrast note: Google's brand blue (#4285F4), yellow (#FBBC05) and green
   (#34A853) all fail 4.5:1 on white. Each appears here ONLY as a fill behind
   navy text, or as a border. Body text uses the darker accessible variants
   (#1A73E8 / #C5221F / #188038). Yellow is never used as text on paper.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  --paper:      #FFFFFF;
  --paper-2:    #F5F7FC;
  --paper-3:    #EAEFF8;
  --ink:        #0E1B33;
  --ink-2:      #3D4A63;
  --ink-3:      #6B7691;
  --line:       #0E1B33;

  /* text-safe */
  --blue:       #1A73E8;
  --red:        #C5221F;
  --green:      #188038;
  --amber-ink:  #8A5A00;

  /* fill-only */
  --blue-f:     #4285F4;
  --red-f:      #EA4335;
  --yellow-f:   #FBBC05;
  --green-f:    #34A853;
  --orange-f:   #FF4500;

  --shadow:     7px 7px 0 var(--line);
  --shadow-sm:  5px 5px 0 var(--line);
  --shadow-xs:  3px 3px 0 var(--line);
  --bw:         3px;
  --r:          18px;

  --grid-line:  rgba(14, 27, 51, .05);

  --font-display: 'Poppins', 'Century Gothic', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --wrap: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:     #0C1424;
    --paper-2:   #111B2E;
    --paper-3:   #1A2842;
    --ink:       #F1F5FC;
    --ink-2:     #B9C4DA;
    --ink-3:     #8B98B4;
    --line:      #F1F5FC;

    --blue:      #8AB4F8;
    --red:       #F28B82;
    --green:     #81C995;
    --amber-ink: #FDD663;

    --grid-line: rgba(241, 245, 252, .045);
  }
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.025em; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; }

:focus-visible { outline: 3px solid var(--blue-f); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  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: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 8px; font-weight: 600; text-decoration: none;
  transition: top .16s;
}
.skip:focus { top: 12px; color: var(--paper); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 840px; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  border-bottom: var(--bw) solid var(--line);
  overflow: hidden;
  padding: 9px 0;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ticker { background: var(--paper-3); }
}
/* Animation only starts once JS has cloned the set, otherwise the strip would
   slide away and leave a blank bar for anyone without JavaScript. */
.ticker__track { display: flex; width: max-content; }
.ticker__track.is-running { animation: slide 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__set { display: flex; flex: none; align-items: center; }
.ticker__set b {
  font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
  letter-spacing: .09em; color: rgba(241, 245, 252, .72);
  padding: 0 26px; white-space: nowrap; position: relative;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ticker__set b { color: var(--ink-2); }
}
.ticker__set b::after {
  content: ""; position: absolute; right: -3px; top: 50%; margin-top: -3px;
  width: 6px; height: 6px; border-radius: 50%; background: rgba(241, 245, 252, .25);
}
.ticker__set b.up { color: var(--green-f); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__plate {
  width: 44px; height: 44px; flex: none;
  background: #fff; border: var(--bw) solid var(--line); border-radius: 50%;
  overflow: hidden; display: grid; place-items: center;
}
.brand__plate img { width: 100%; height: 100%; object-fit: cover; }
.brand__plate--sm { width: 56px; height: 56px; }

.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.035em; }
.c-blue { color: var(--blue-f); } .c-red { color: var(--red-f); }
.c-yellow { color: #E5A100; } .c-ink { color: var(--ink); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .c-yellow { color: var(--yellow-f); }
}

.nav ul { display: flex; gap: 3px; list-style: none; padding: 0; }
.nav a {
  display: block; padding: 10px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 600;
}
.nav a:hover { background: var(--paper-3); }

.burger {
  display: none; width: 46px; height: 46px; flex: none;
  background: var(--paper); border: var(--bw) solid var(--line); border-radius: 12px;
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: clamp(52px, 7vw, 96px) 0 clamp(40px, 5vw, 68px); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }

.eyebrow {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 22px;
}
.eyebrow__chip {
  background: var(--yellow-f); color: #0E1B33;
  border: 2px solid var(--line); border-radius: 999px;
  padding: 3px 12px; letter-spacing: .03em;
}

h1 { position: relative; z-index: 0; }
.mark { position: relative; white-space: nowrap; }
.mark::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: .04em; height: .32em;
  z-index: -1; border-radius: 4px;
}
.mark--yellow::after { background: var(--yellow-f); }

.lede { font-size: 1.14rem; color: var(--ink-2); margin-top: 24px; max-width: 50ch; }
.lede strong { color: var(--ink); }

.cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.cta--center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 28px;
  border: var(--bw) solid var(--line); border-radius: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .13s ease, box-shadow .13s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--line); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--line); }
.btn--primary { background: var(--blue-f); color: #fff; }
.btn--primary:hover { color: #fff; }
.btn--yellow { background: var(--yellow-f); color: #0E1B33; }
.btn--yellow:hover { color: #0E1B33; }
.btn--ghost { background: var(--paper); color: var(--ink); }
.btn--ghost:hover { background: var(--paper-3); color: var(--ink); }

.hero__foot { margin-top: 26px; font-size: .95rem; color: var(--ink-3); font-weight: 500; }

.hero__art { display: grid; place-items: center; gap: 14px; }
.sticker {
  background: #fff; border: var(--bw) solid var(--line); border-radius: 50%;
  box-shadow: var(--shadow); padding: 10px;
  width: min(100%, 390px); aspect-ratio: 1;
  animation: bob 7s ease-in-out infinite;
}
.sticker img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-12px) rotate(1.2deg); } }
.sticker__cap { font-size: .82rem; color: var(--ink-3); text-align: center; font-style: italic; }

/* ---------- tape (live chain numbers) ---------- */
.tape { padding-bottom: clamp(40px, 5vw, 64px); }
.tape__panel {
  background: var(--ink); color: var(--paper);
  border: var(--bw) solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: clamp(24px, 4vw, 38px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__panel { background: var(--paper-3); color: var(--ink); }
}

.tape__head {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  align-items: baseline; justify-content: space-between;
  padding-bottom: 22px; margin-bottom: 26px;
  border-bottom: 2px solid rgba(241, 245, 252, .2);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__head { border-bottom-color: var(--paper-2); }
}
.tape__head h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem); letter-spacing: .01em; color: inherit;
}
.tape__status {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em;
  color: rgba(241, 245, 252, .66);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__status { color: var(--ink-3); }
}
.tape__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: var(--ink-3); }
.tape__dot[data-state="wait"] { background: var(--yellow-f); animation: pulse 1.6s ease-in-out infinite; }
.tape__dot[data-state="live"] { background: var(--green-f); animation: pulse 2.4s ease-in-out infinite; }
.tape__dot[data-state="pending"] { background: var(--yellow-f); }
.tape__dot[data-state="error"] { background: var(--red-f); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.tape__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 34px; }
.tape__stat { min-width: 0; }
.tape__label {
  display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: rgba(241, 245, 252, .58); margin-bottom: 8px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__label { color: var(--ink-3); }
}
.tape__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1; letter-spacing: -.035em;
  color: var(--green-f);
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}
.tape__stat--sm .tape__num { font-size: clamp(1.4rem, 3.4vw, 2rem); color: var(--blue-f); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__num { color: var(--green); }
  :root:not([data-theme="light"]) .tape__stat--sm .tape__num { color: var(--blue); }
}
.tape__unit {
  display: inline-block; margin-top: 7px;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em;
  color: rgba(241, 245, 252, .5);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__unit { color: var(--ink-3); }
}
.tape__foot {
  margin-top: 28px; padding-top: 20px;
  border-top: 2px solid rgba(241, 245, 252, .2);
  font-size: .82rem; color: rgba(241, 245, 252, .55);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tape__foot { border-top-color: var(--paper-2); color: var(--ink-3); }
}

/* ---------- facts ---------- */
.facts { padding-bottom: clamp(44px, 5vw, 72px); }
.facts__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: var(--bw) solid var(--line); border-radius: var(--r);
  background: var(--paper); box-shadow: var(--shadow); overflow: hidden;
}
.fact { padding: 24px 18px; text-align: center; border-right: var(--bw) solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -.03em;
}
.fact span { display: block; font-size: .85rem; color: var(--ink-3); margin-top: 2px; }
.fact:nth-child(1) b { color: var(--green); }
.fact:nth-child(2) b { color: var(--blue); }
.fact:nth-child(3) b { color: var(--amber-ink); }
.fact:nth-child(4) b { color: var(--red); }

/* ---------- sections ---------- */
.section { padding: clamp(58px, 8vw, 108px) 0; }
.section--alt { background: var(--paper-2); border-block: var(--bw) solid var(--line); }
.section--ink { background: var(--ink); border-block: var(--bw) solid var(--line); }
.section--ink, .section--ink h2, .section--ink h3 { color: var(--paper); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .section--ink { background: var(--paper-3); }
  :root:not([data-theme="light"]) .section--ink,
  :root:not([data-theme="light"]) .section--ink h2,
  :root:not([data-theme="light"]) .section--ink h3 { color: var(--ink); }
}

.kicker {
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 13px;
}
.kicker--light { color: var(--yellow-f); }

.section__lede { font-size: 1.06rem; color: var(--ink-2); max-width: 60ch; margin-top: 18px; }

.fineprint {
  margin-top: 30px; font-size: .95rem; color: var(--ink-3);
  border-left: 5px solid var(--yellow-f); padding-left: 18px; max-width: 62ch;
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin-top: 42px; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.step {
  background: var(--paper); border: var(--bw) solid var(--line); border-radius: var(--r);
  padding: 28px 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.step__n {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
  border: var(--bw) solid var(--line); border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.step:nth-child(1) .step__n { background: var(--blue-f); color: #fff; }
.step:nth-child(2) .step__n { background: var(--yellow-f); color: #0E1B33; }
.step:nth-child(3) .step__n { background: var(--green-f); color: #fff; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .97rem; color: var(--ink-2); }

/* ---------- certificate ---------- */
.cert { margin-top: 40px; display: grid; justify-items: center; gap: 24px; }
.cert__inner {
  width: 100%; background: var(--paper);
  border: var(--bw) solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 44px);
  text-align: center; position: relative; overflow: hidden;
}
/* four corner marks in the brand colours, drawn with a repeating border strip */
.cert__inner::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 8px;
  background: linear-gradient(90deg,
    var(--blue-f) 0 25%, var(--red-f) 25% 50%, var(--yellow-f) 50% 75%, var(--green-f) 75% 100%);
}
.cert__top {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: .2em; text-transform: uppercase; margin-top: 8px;
}
.cert__sub { font-size: .86rem; color: var(--ink-3); margin-top: 4px; font-style: italic; }
.cert__label {
  margin-top: 30px; font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 600;
}
.cert__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 4.4vw, 2.5rem); letter-spacing: -.02em;
  margin-top: 10px; color: var(--blue); min-height: 1.2em;
}
.cert__sig {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  margin-top: 36px; padding-top: 20px; border-top: 2px dashed var(--paper-3);
  text-align: left;
}
.cert__sig span { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.cert__sig b { font-family: var(--font-mono); font-size: .86rem; font-weight: 500; }
.cert__btn { min-width: 260px; }

/* ---------- chart ---------- */
.chartbox {
  margin: 40px 0 0; border: var(--bw) solid var(--line); border-radius: var(--r);
  background: var(--paper); box-shadow: var(--shadow); padding: 22px;
  overflow-x: auto; overflow-y: hidden;
}
.chart { width: 100%; min-width: 640px; height: auto; display: block; }
.c-grid line { stroke: var(--paper-3); stroke-width: 2; }
.c-axis { stroke: var(--line); stroke-width: 3; stroke-linecap: round; }
.c-line { fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.c-main { stroke-width: 5.5; }
.c-blue { stroke: var(--blue-f); } .c-red { stroke: var(--red-f); }
.c-yellow { stroke: var(--yellow-f); } .c-green { stroke: var(--green-f); }
.c-red, .c-yellow, .c-green { opacity: .5; }
.c-dot circle { fill: var(--paper); stroke: var(--line); stroke-width: 3.5; }
.c-note text {
  font-family: var(--font-body); font-weight: 600; font-size: 14px; fill: var(--ink-2);
}
.chartbox figcaption { margin-top: 12px; font-size: .85rem; color: var(--ink-3); }
.chartbox figcaption b { color: var(--ink-2); }

/* ---------- manifesto ---------- */
.tenets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 42px; }
.tenet {
  border: var(--bw) solid rgba(241, 245, 252, .26); border-radius: var(--r);
  padding: 28px 26px; background: rgba(255, 255, 255, .045);
}
.tenet__n {
  display: block; font-family: var(--font-mono); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; color: var(--yellow-f); margin-bottom: 12px;
}
.tenet h3 { margin-bottom: 10px; }
.tenet p { font-size: .97rem; color: rgba(241, 245, 252, .76); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tenet { border-color: var(--line); background: var(--paper); }
  :root:not([data-theme="light"]) .tenet p { color: var(--ink-2); }
  :root:not([data-theme="light"]) .tenet__n { color: var(--amber-ink); }
}

/* ---------- faq ---------- */
.faq {
  margin-top: 38px; border: var(--bw) solid var(--line); border-radius: var(--r);
  background: var(--paper); box-shadow: var(--shadow); overflow: hidden;
}
.faq details + details { border-top: 2px solid var(--paper-3); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 21px 58px 21px 26px; min-height: 44px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--paper-2); }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 26px 24px; color: var(--ink-2); font-size: .99rem; max-width: 66ch; }

/* ---------- closer ---------- */
.closer {
  background: var(--yellow-f);
  border-top: var(--bw) solid var(--line);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.closer__inner { display: grid; justify-items: center; gap: 20px; }
.closer h2 { color: #0E1B33; }
.closer p { color: rgba(14, 27, 51, .74); font-size: 1rem; max-width: 56ch; font-weight: 500; }
.closer .btn--yellow { background: var(--paper); color: var(--ink); border-color: #0E1B33; box-shadow: 5px 5px 0 #0E1B33; }
.closer .btn--yellow:hover { box-shadow: 7px 7px 0 #0E1B33; color: var(--ink); }
.closer .btn[disabled] {
  opacity: .5; cursor: not-allowed;
  transform: none; box-shadow: 5px 5px 0 #0E1B33;
}

/* contract address plate */
.contract {
  width: 100%; max-width: 620px;
  background: var(--paper); color: var(--ink);
  border: var(--bw) solid #0E1B33; border-radius: 13px;
  box-shadow: 5px 5px 0 #0E1B33;
  padding: 15px 20px; text-align: left;
}
.contract__label {
  display: block; font-size: .7rem; letter-spacing: .13em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-3); margin-bottom: 5px;
}
.contract__addr {
  display: block; font-family: var(--font-mono); font-size: .92rem; font-weight: 500;
  word-break: break-all; line-height: 1.45;
}
.contract__addr[data-empty="1"] { color: var(--ink-3); font-style: italic; }
@media (max-width: 520px) {
  .contract__addr { font-size: .78rem; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--paper-2); border-top: var(--bw) solid var(--line); padding-top: 58px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; padding-bottom: 44px; }
.footer__brand { display: flex; gap: 15px; align-items: flex-start; }
.footer__tag { font-size: .95rem; color: var(--ink-2); }
.footer__links h2 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.footer__links ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer__links a { color: var(--ink-2); text-decoration: none; font-size: .95rem; font-weight: 500; }
.footer__links a:hover { color: var(--ink); text-decoration: underline; }

.disclaimer { border-top: 2px solid var(--paper-3); padding-block: 26px 34px; display: grid; gap: 12px; }
.disclaimer p { font-size: .84rem; color: var(--ink-3); line-height: 1.6; max-width: 92ch; }
.disclaimer strong { color: var(--ink-2); }
.disclaimer__legal { font-size: .8rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }

/* =========================================================================
   responsive
   ========================================================================= */
@media (max-width: 1020px) {
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: var(--bw) solid var(--line);
    display: none; padding: 10px 22px 18px;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 2px; }
  .nav a { padding: 13px 12px; min-height: 44px; display: flex; align-items: center; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .sticker { width: min(70%, 290px); }

  .facts__grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: var(--bw) solid var(--line); }

  .tenets { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .facts__grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: var(--bw) solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .btn { width: 100%; }
  .tape__grid { grid-template-columns: 1fr; gap: 24px; }
  .cert__btn { min-width: 0; }
  .cert__sig { flex-direction: column; gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .sticker { animation: none; }
  .ticker__track { animation: none; }
  .btn:hover, .btn:active, .step:hover { transform: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .ticker, .burger, .cta, .closer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 18px 0; }
}
