/* getattention — paper and ink. White ground, one navy ink for every line and letter, a serif for
   the voice, a mono for figures, and a yellow marker for the one thing that matters on a page.
   Panels are thin ink frames, like a plate in a print; the city is drawn in the same ink. */
:root {
  --paper: #ffffff;
  --paper-2: #f5f6fa;
  --paper-3: #eef0f6;
  --ink: #1f2a5a;
  --ink-2: #33407a;
  --ink-soft: #5b6484;
  --ink-mute: #8a91ad;
  --line: #c8cfe6;
  --line-2: #9aa5cc;
  --frame: #2a3566;
  --mark: #ffe66d;          /* the yellow marker */
  --mark-2: #fff3a8;
  --ok: #2f7d5b;
  --bad: #b3423f;
  --ff: "Inter", -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  --ff-d: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-m: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
  --wrap: 1280px;
  --r: 6px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.55 var(--ff); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
code, .mono { font-family: var(--ff-m); }
[hidden] { display: none !important; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.sp { flex: 1; }
.frame { border: 1px solid var(--frame); background: var(--paper); }
.pad { padding: 26px 28px; }
.fine { font-size: 12px; letter-spacing: .06em; color: var(--ink-soft); }
.fine a { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--mark); color: var(--ink); }

/* ---------- the mark: a ballpoint "eye" — an ellipse with a dot, drawn in ink ---------- */
.mark { display: inline-block; width: 34px; height: 34px; object-fit: contain; vertical-align: middle; }
.xbtn { width: 42px; padding: 0; font-size: 18px; }

/* ---------- boot ---------- */
#boot { position: fixed; inset: 0; z-index: 90; background: var(--paper); display: grid; place-items: end center; overflow: hidden; transition: opacity .6s var(--ease), visibility .6s; }
#boot.out { opacity: 0; visibility: hidden; }
#boot .city { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 62vh; }
#boot .boot-word { position: absolute; left: 50%; top: 18vh; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; font-family: var(--ff-d); font-weight: 500; font-size: clamp(38px, 6vw, 72px); letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
#boot .boot-word .mark { width: 1.1em; height: 1.1em; }
#boot .boot-word .word { clip-path: inset(0 100% 0 0); animation: write 1.3s .3s var(--ease) forwards; }
@keyframes write { to { clip-path: inset(0 0 0 0); } }
#boot .boot-sub { position: absolute; left: 50%; top: calc(18vh + 90px); transform: translateX(-50%); font-family: var(--ff-m); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); opacity: 0; animation: fade .6s 1.3s forwards; }
#boot .boot-line { position: absolute; left: 50%; top: calc(18vh + 128px); width: 220px; margin-left: -110px; height: 2px; background: var(--paper-3); overflow: hidden; }
#boot .boot-line i { display: block; height: 100%; width: 0; background: var(--ink); animation: fill 2.2s .2s var(--ease) forwards; }
@keyframes fade { to { opacity: 1; } }
@keyframes fill { to { width: 100%; } }

/* ---------- the city (rough.js draws into these) ---------- */
.city path { fill: none; stroke: var(--ink); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.city path.fill { stroke-width: .8; opacity: .55; }
.city path.draw { stroke-dasharray: var(--len); stroke-dashoffset: var(--len); animation: draw var(--dur, 1.2s) var(--delay, 0s) var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.city text { font-family: var(--ff-m); font-size: 13px; fill: var(--ink); letter-spacing: .04em; }
.city text.big { font-family: var(--ff-d); font-size: 22px; font-weight: 500; letter-spacing: 0; }
.city .bb { fill: var(--mark); opacity: .9; }

/* ---------- header ---------- */
.top { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .86); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.top-in { height: 68px; display: flex; align-items: center; gap: 10px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-d); font-weight: 500; font-size: 24px; letter-spacing: -.02em; color: var(--ink); }
.nav { display: flex; gap: 2px; margin-left: 22px; }
.nav button { font-size: 14px; color: var(--ink-soft); padding: 8px 12px; border-radius: 999px; transition: color .15s, background .15s; }
.nav button:hover { color: var(--ink); background: var(--paper-2); }
.nav button.on { color: var(--ink); background: var(--paper-3); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: var(--r); font-weight: 600; font-size: 14px; border: 1px solid var(--ink); background: var(--paper); color: var(--ink); transition: transform .18s var(--ease), background .18s, color .18s, box-shadow .18s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); background: var(--paper-2); }
.btn.ink { background: var(--ink); color: #fff; }
.btn.ink:hover { background: var(--ink-2); box-shadow: 0 10px 24px -14px rgba(31, 42, 90, .6); }
.btn.ghost { background: transparent; }
.btn.sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn.big { width: 100%; height: 50px; font-size: 15px; margin-top: 8px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.ic-wallet { width: 16px; height: 12px; border: 1.5px solid currentColor; border-radius: 3px; position: relative; }
.ic-wallet::after { content: ""; position: absolute; right: 2px; top: 3px; width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r); place-items: center; gap: 5px; }
.burger i { display: block; width: 16px; height: 1.5px; background: var(--ink); }

/* ---------- home hero: the Gondor split ---------- */
main { padding: 28px 0 60px; }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; min-height: 620px; }
.hero-card { padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--ff-m); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 22px; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: blink 1.8s infinite; }
@keyframes blink { 50% { opacity: .25; } }
h1 { font-family: var(--ff-d); font-weight: 500; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.025em; margin: 0; color: var(--ink); }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--ink-2); }
.lede { font-size: 18px; line-height: 1.55; color: var(--ink-soft); margin: 22px 0 10px; max-width: 54ch; }
.lede b { color: var(--ink); font-weight: 600; background: linear-gradient(transparent 55%, var(--mark) 55%); padding: 0 .1em; }
.cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.live-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; gap: 12px; }
.live-strip span { display: block; font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.live-strip b { display: block; font-family: var(--ff-m); font-size: 20px; font-weight: 500; margin-top: 4px; color: var(--ink); }
.hero-art { position: relative; overflow: hidden; min-height: 520px; background: var(--paper); }
.hero-art .city { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-cap { position: absolute; left: 16px; bottom: 12px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); background: rgba(255,255,255,.8); padding: 4px 8px; }

/* ---------- sections ---------- */
.band { padding: 64px 0 0; }
.sh { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.kicker { font-family: var(--ff-m); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 0; width: 100%; }
h2 { font-family: var(--ff-d); font-weight: 500; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.05; letter-spacing: -.02em; margin: 0; color: var(--ink); }
h3 { font-family: var(--ff-d); font-weight: 500; font-size: 24px; letter-spacing: -.01em; margin: 18px 0 6px; }
.count { display: inline-grid; place-items: center; min-width: 30px; height: 28px; padding: 0 10px; margin-left: 10px; border: 1px solid var(--ink); border-radius: 999px; font-family: var(--ff-m); font-size: 13px; vertical-align: middle; }
.more { margin-left: auto; font-size: 14px; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 4px; }
.more:hover { color: var(--ink); }
.sub { color: var(--ink-soft); font-size: 17px; max-width: 70ch; margin: 0 0 18px; }
.sub b { color: var(--ink); font-weight: 600; }
.note { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 10px 0 0; }
.note b { color: var(--ink); } .note code { font-size: 12.5px; background: var(--paper-2); padding: 1px 6px; border-radius: 4px; }
.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: 1fr 1fr; } .g3 { grid-template-columns: repeat(3, 1fr); }
.empty { padding: 28px; color: var(--ink-soft); text-align: center; grid-column: 1 / -1; }
.empty b { color: var(--ink); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.ph { padding: 30px 0 10px; }
.ph .sub { margin-top: 12px; }

/* the fee route diagram */
.route { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; align-items: stretch; }
.r-node { padding: 26px 28px; display: grid; gap: 6px; align-content: center; }
.r-node .k { font-family: var(--ff-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.r-node b { font-family: var(--ff-d); font-weight: 500; font-size: 26px; letter-spacing: -.01em; }
.r-node small { color: var(--ink-soft); font-size: 13.5px; }
.r-node.camp .k, .r-node.burn .k { font-size: 26px; font-family: var(--ff-d); letter-spacing: 0; text-transform: none; color: var(--ink); background: linear-gradient(transparent 50%, var(--mark) 50%); width: max-content; padding: 0 .15em; }
.r-pipe { border-left: 1px solid var(--frame); border-right: 1px solid var(--frame); display: grid; place-items: center; gap: 6px; padding: 18px; text-align: center; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.r-pipe svg { width: 100%; max-width: 220px; height: 120px; }
.r-pipe path { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-dasharray: 5 6; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -22; } }
.r-pipe circle { fill: var(--mark); stroke: var(--ink); stroke-width: 1.2; }
.r-dst { display: grid; grid-template-rows: 1fr 1fr; }
.r-dst .r-node + .r-node { border-top: 1px solid var(--frame); }

/* cards */
.card { border: 1px solid var(--frame); background: var(--paper); padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; transition: transform .22s var(--ease), box-shadow .22s var(--ease); position: relative; }
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -30px rgba(31, 42, 90, .55); }
.card .head { display: flex; align-items: center; gap: 14px; }
.card .head img, .card .head .im { width: 56px; height: 56px; border: 1px solid var(--frame); object-fit: cover; background: var(--paper-2); display: grid; place-items: center; font-family: var(--ff-d); font-size: 18px; color: var(--ink); }
.card .nm { font-family: var(--ff-d); font-weight: 500; font-size: 22px; letter-spacing: -.01em; line-height: 1.1; }
.card .sy { font-family: var(--ff-m); font-size: 12.5px; color: var(--ink-soft); }
.card .tags { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 9px; border: 1px solid var(--line-2); color: var(--ink-soft); white-space: nowrap; }
.tag.live { border-color: var(--ok); color: var(--ok); } .tag.live i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: blink 1.6s infinite; }
.tag.mark { background: var(--mark); border-color: var(--mark); color: var(--ink); }
.figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fig { background: var(--paper); padding: 12px 14px; }
.fig span { display: block; font-family: var(--ff-m); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.fig b { display: block; font-family: var(--ff-m); font-size: 18px; font-weight: 500; margin-top: 5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fig small { display: block; font-size: 11.5px; color: var(--ink-mute); margin-top: 3px; }
.bar { height: 8px; border: 1px solid var(--frame); background: var(--paper); position: relative; overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: repeating-linear-gradient(-45deg, var(--ink) 0 3px, transparent 3px 7px); transition: width 1s var(--ease); }
.bar.mark i { background: var(--mark); }
.card .ca { display: flex; align-items: center; gap: 8px; }
.card .ca code { flex: 1; font-size: 11.5px; color: var(--ink-soft); background: var(--paper-2); padding: 8px 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card .ca button { font: 500 12px var(--ff); border: 1px solid var(--line-2); padding: 7px 10px; }
.card .foot { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.card p.desc { margin: 0; color: var(--ink-soft); font-size: 14px; }
.ideas .card { min-height: 220px; }
.idea .angle { font-family: var(--ff-m); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* totals + tables */
.totals { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 14px; }
.totals div { padding: 18px 22px; border-right: 1px solid var(--line); }
.totals div:last-child { border-right: 0; }
.totals span { display: block; font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.totals b { display: block; font-family: var(--ff-d); font-size: 30px; font-weight: 500; margin-top: 6px; }
.tablewrap { overflow-x: auto; margin-top: 12px; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-family: var(--ff-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; padding: 10px 12px; border-bottom: 1px solid var(--frame); }
td { padding: 12px; border-bottom: 1px solid var(--line); font-size: 14px; white-space: nowrap; }
th.n, td.n { text-align: right; font-family: var(--ff-m); }
td.empty { text-align: center; }
.addr-row { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.addr, .addr-row input { flex: 1; font-family: var(--ff-m); font-size: 12px; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); padding: 10px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; outline: none; }
.addr-row input:focus { border-color: var(--ink); }

/* rules, economics, docs */
.rules { margin: 12px 0 0; padding-left: 0; list-style: none; counter-reset: r; display: grid; gap: 12px; }
.rules li { counter-increment: r; display: grid; grid-template-columns: 34px 1fr; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.rules li::before { content: counter(r) "."; font-family: var(--ff-d); font-size: 22px; color: var(--ink); line-height: 1; }
.pct { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.pct:first-of-type { border-top: 0; }
.pct b { font-family: var(--ff-d); font-size: 44px; font-weight: 500; letter-spacing: -.02em; line-height: 1; background: linear-gradient(transparent 60%, var(--mark) 60%); width: max-content; }
.pct span { font-size: 15px; color: var(--ink-soft); } .pct span b { font-size: 15px; background: none; font-family: var(--ff); font-weight: 600; color: var(--ink); }
.docs { display: grid; gap: 14px; }
.docs article p { margin: 8px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-2); }
.docs code { font-size: 13px; background: var(--paper-2); padding: 1px 6px; }
.faq { margin: 10px 0 0; display: grid; gap: 8px; }
.faq dt { font-family: var(--ff-d); font-size: 19px; margin-top: 8px; } .faq dd { margin: 4px 0 0; color: var(--ink-soft); font-size: 15px; }
.lifecycle { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 14px; }
.lifecycle div { padding: 22px; border-right: 1px solid var(--line); display: grid; gap: 8px; }
.lifecycle div:last-child { border-right: 0; }
.lifecycle b { font-family: var(--ff-m); font-size: 12px; color: var(--ink-mute); }
.lifecycle span { font-family: var(--ff-d); font-size: 19px; }
.feed { display: grid; }
.feed .ev { display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.feed .ev:last-child { border-bottom: 0; }
.feed .ev .t { font-family: var(--ff-m); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.feed .ev .t.burn { color: var(--bad); } .feed .ev .t.fee { color: var(--ok); }
.feed .ev .when { font-family: var(--ff-m); font-size: 12px; color: var(--ink-mute); }
.feed .ev a { text-decoration: underline; text-underline-offset: 3px; }
.tabs { display: flex; gap: 4px; align-items: center; border: 1px solid var(--line); padding: 4px; margin-bottom: 14px; }
.tabs button { padding: 8px 12px; font-size: 13.5px; color: var(--ink-soft); }
.tabs button.on { background: var(--paper-3); color: var(--ink); }
.tabs input { margin-left: auto; border: 1px solid var(--line); padding: 8px 10px; font-size: 13.5px; min-width: 260px; outline: none; }

/* launch form */
.f { display: block; margin-top: 14px; }
.f > span { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.f small { font-weight: 400; color: var(--ink-mute); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#launchForm input:not([type="file"]), #launchForm textarea { display: block; width: 100%; background: var(--paper-2); border: 1px solid transparent; padding: 14px 16px; font-size: 15px; outline: none; transition: border-color .15s, background .15s; resize: vertical; }
#launchForm input:focus, #launchForm textarea:focus { border-color: var(--ink); background: #fff; }
#launchForm input::placeholder, #launchForm textarea::placeholder { color: var(--ink-mute); }
.drop { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px dashed var(--line-2); background: var(--paper-2); cursor: pointer; }
.drop:hover, .drop.over { border-color: var(--ink); background: #fff; }
.drop img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--frame); }
.drop .dtext b { display: block; font-weight: 600; } .drop .dtext small { color: var(--ink-mute); }
.routing { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 12px; }
.routing div { background: var(--paper); padding: 14px 16px; display: grid; gap: 4px; }
.routing b { font-family: var(--ff-d); font-size: 28px; font-weight: 500; line-height: 1; background: linear-gradient(transparent 60%, var(--mark) 60%); width: max-content; }
.routing span { font-weight: 600; font-size: 14px; } .routing small { font-family: var(--ff-m); font-size: 11px; color: var(--ink-mute); overflow: hidden; text-overflow: ellipsis; }
.steps { margin-top: 12px; display: grid; gap: 8px; }
.step { display: flex; gap: 10px; font-size: 14px; color: var(--ink-soft); padding: 10px 12px; border: 1px solid var(--line); }
.step .i { color: var(--ink-mute); }
.step.ok { border-color: var(--ok); } .step.ok .i { color: var(--ok); }
.step.err, .step.err .i { color: var(--bad); border-color: var(--bad); }
.step a { text-decoration: underline; text-underline-offset: 3px; }
.proof-head { display: flex; align-items: center; gap: 14px; padding: 10px 0 16px; border-bottom: 1px solid var(--line); }
.pimg { width: 56px; height: 56px; border: 1px solid var(--frame); display: grid; place-items: center; font-family: var(--ff-d); font-size: 18px; background: var(--paper-2) center / cover; }
.proof-head b { display: block; font-family: var(--ff-d); font-size: 22px; font-weight: 500; } .proof-head span { font-family: var(--ff-m); font-size: 12.5px; color: var(--ink-soft); }
.kv { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 0; }
.kv dt, .kv dd { padding: 10px 0; border-bottom: 1px solid var(--line); margin: 0; font-size: 14px; }
.kv dt { color: var(--ink-soft); } .kv dd { text-align: right; font-weight: 500; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* coin page */
.coin-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; margin-top: 20px; }
.coin-hero .big-name { font-family: var(--ff-d); font-size: 42px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }

/* reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* footer */
.foot { border-top: 1px solid var(--frame); margin-top: 60px; padding: 40px 0 30px; }
.foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
.foot h4 { font-family: var(--ff-m); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot .fine { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); }

@media (max-width: 980px) {
  .hero, .two, .g2, .g3, .route, .foot-in, .totals, .lifecycle { grid-template-columns: 1fr; }
  .hero-art { min-height: 380px; }
  .r-pipe { border: 0; border-top: 1px solid var(--frame); border-bottom: 1px solid var(--frame); }
  .nav { display: none; } .nav.open { display: flex; position: absolute; left: 0; right: 0; top: 68px; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px; }
  .burger { display: grid; }
  .live-strip { grid-template-columns: 1fr 1fr; }
  .hero-card { padding: 34px 26px; }
}
@media (prefers-reduced-motion: reduce) { .city path.draw { animation: none; stroke-dashoffset: 0; } .reveal { opacity: 1; transform: none; transition: none; } .r-pipe path { animation: none; } }
