/* Hydropad: a launchpad for tokens paired to water.
 *
 * Light ground the colour of water, a faint survey grid over it, deep water for
 * the accent and the banks for the second, figures in mono. Depth comes from
 * two shadows (a contact line and a long soft cast) rather than from borders,
 * and every transition uses the same pair of curves.
 */

:root {
  /* A reservoir's three colours: the water, the banks, the concrete. */
  --bg: #e1eef6;              /* the page is water, not paper */
  --bg-2: #cde4f0;            /* and it deepens on the way down */
  --panel: #ffffff;
  --grid: rgba(6, 46, 62, .055);
  --ink: #06212c;
  --ink-2: #4a6771;
  --ink-3: #8aa3ac;
  --line: #dbe8ee;
  --line-2: #c9dde3;
  --tint: #f1f8fb;
  --accent: #0e7490;          /* deep water */
  --accent-2: #0f9d76;        /* the banks */
  --accent-soft: #e2f3f7;
  --up: #0f9d76;
  --down: #e5484d;
  --sans: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: Fraunces, "Iowan Old Style", Georgia, serif;
  --poster: Archivo, "Helvetica Neue", Inter, system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r: 12px;
  --r-lg: 18px;
  --shell: 1160px;

  /* Depth: a hairline contact shadow plus a long cast, tinted with the ink so
     it reads as water light rather than as grey. */
  --e1: 0 1px 2px rgba(6, 46, 62, .05), 0 1px 1px rgba(6, 46, 62, .04);
  --e2: 0 1px 2px rgba(6, 46, 62, .05), 0 12px 28px -18px rgba(6, 46, 62, .45);
  --e3: 0 2px 4px rgba(6, 46, 62, .06), 0 26px 50px -30px rgba(6, 46, 62, .55);
  --e4: 0 3px 8px rgba(6, 46, 62, .08), 0 44px 70px -40px rgba(6, 46, 62, .6);
  --glow: 0 10px 30px -12px rgba(14, 116, 144, .45);

  /* One pair of curves for everything that moves. */
  --ease: cubic-bezier(.2, .7, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .16s;
  --t: .28s;
  --t-slow: .6s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 42%, var(--bg-2) 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  background-attachment: scroll, scroll, fixed;
  -webkit-font-smoothing: antialiased;
  padding-top: 92px;
}

/* ---------------- the reservoir behind the page ---------------- */

/* Three layers of one scene, drifting at different speeds as the page moves,
 * with a veil that closes over them on the way down so the tables below sit on
 * plain ground. */
.scene { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; background: #2a6a83; }
/* once the veil has closed there is nothing left to composite */
.scene.spent { visibility: hidden; }
.scene-layer {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  will-change: transform;
}

/* One rendered frame stands in for what used to be two drawn layers. The live
 * water in scene.js is aligned to it, so the geometry here is not free to move. */
.scene-layer.far  { display: none; }
.scene-layer.mid  { background-image: url("media/scene.jpg"); }
/* the canyon is part of the rendered frame now, so there is no separate
   foreground to lay over it */
.scene-layer.near { display: none; }
/* the drawing is flat by nature; a little depth and colour brings it closer */

.scene-layer.clouds {
  background-image: url("scene-clouds.svg");
  background-repeat: repeat-x;
  background-size: 200% auto;
  animation: sail 240s linear infinite;
  /* cloud sits in the sky, not over the dam */
  opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 22%, transparent 42%);
  mask-image: linear-gradient(180deg, #000 0%, #000 22%, transparent 42%);
}
@keyframes sail { from { background-position-x: 0; } to { background-position-x: -200%; } }

/* sunlight, swell and mist, painted live */
.scene-live { position: absolute; inset: 0; width: 100%; height: 100%; will-change: transform; }

/* A filmed backdrop, when one has been encoded into media/. It covers the same
 * box as the drawn scene, which is hidden rather than removed so it can come
 * back if the file ever goes away. */
.scene-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 34%;
  will-change: transform;
}
.scene.filmed .scene-layer,
.scene.filmed .scene-live { display: none; }
.scene.filmed::after { height: 34%; }

/* the page's text has to stay readable over footage, so film gets a little
 * more lift than the drawing does */
.scene.filmed ~ * .hero-in::before,
.scene.filmed + main .hero-in::before { opacity: 1; }

.scene-veil {
  position: absolute; inset: 0; opacity: 0;
  background: var(--bg);
  transition: opacity .18s linear;
}

/* below the scene the page keeps its own ground, whatever the scroll position */
.scene::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 249, 254, .88) 62%, var(--bg) 100%);
}

/* The hero reads over the water, so it carries its own light behind it. */
body.has-scene .hero-in::before {
  content: "";
  position: absolute; inset: -6% -8% -10% -12%;
  background: radial-gradient(56% 62% at 18% 44%, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .34) 46%, transparent 72%);
  z-index: -1; pointer-events: none;
}

/* ---------------- arrival ---------------- */

.reveal { opacity: 0; transform: translate3d(0, 22px, 0); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1); }

a { color: inherit; text-decoration: none; }
h1, h2 {
  margin: 0; font-family: var(--display); font-weight: 600;
  letter-spacing: -.012em; line-height: 1.04;
  font-variation-settings: "opsz" 108, "SOFT" 20;
}
h3, h4 { margin: 0; letter-spacing: -.016em; line-height: 1.16; font-weight: 600; }
p { margin: 0; }
.mono, code { font-family: var(--mono); font-variant-numeric: tabular-nums; }
code { background: var(--tint); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; font-size: .88em; color: var(--accent); }
.up { color: var(--up); }
.down { color: var(--down); }
.muted { color: var(--ink-2); }

.wrap { width: min(var(--shell), 100% - 48px); margin-inline: auto; }
.eyebrow {
  font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}
.lede { color: var(--ink-2); font-size: 16.5px; max-width: 62ch; }

/* ---------------- nav ---------------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  transition: padding-top .3s ease;
}
body.scrolled .nav { padding-top: calc(8px + env(safe-area-inset-top, 0px)); }
.nav-in { display: flex; align-items: center; gap: 12px; height: 56px; }

/* three capsules: the mark, the pages, the wallet */
.logo, .nav-links, .nav-cta {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 999px;
  box-shadow: 0 12px 34px -20px rgba(6, 46, 62, .55);
  transition: background .3s ease, box-shadow .3s ease;
}
body.scrolled .logo, body.scrolled .nav-links, body.scrolled .nav-cta {
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 10px 26px -22px rgba(6, 46, 62, .45);
}
.nav-links { padding: 8px 8px; margin-inline: auto; }
.nav-cta { padding: 7px 9px 7px 12px; display: flex; align-items: center; gap: 10px; }

.logo {
  display: flex; align-items: center; gap: 9px; font-family: var(--display);
  font-weight: 600; font-size: 19px; letter-spacing: -.012em;
  font-variation-settings: "opsz" 40, "SOFT" 30; padding: 10px 18px 10px 14px;
}
.logo svg { display: block; }
.nav-links { display: flex; gap: 4px; font-size: 14px; color: var(--ink-2); }
.nav-links a { padding: 6px 14px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.nav-links a:hover { color: var(--ink); background: rgba(14, 116, 144, .09); }
.nav-links a.on { color: #fff; background: var(--ink); font-weight: 500; }


/* the network pill and the wallet button share the right hand capsule */
.net { display: flex; align-items: center; gap: 9px; }

/* ---------------- botones ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 9px; cursor: pointer;
  font: 600 14px/1 var(--sans); letter-spacing: -.01em;
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  transition: background .15s, color .15s, border-color .15s, transform .12s;
}
.btn:hover { background: #24243a; transform: translateY(-1px); }
.btn.alt { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn.alt:hover { border-color: var(--ink); background: #fff; }
.btn.accent { background: var(--accent); border-color: var(--accent); }
.btn.accent:hover { background: #0b5f76; }
.btn.sm { padding: 8px 13px; font-size: 13px; border-radius: 8px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font: 400 12px/1 var(--mono); color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 10px; background: #fff;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.pill.ok .dot { background: var(--up); }
.pill.warn .dot { background: #e8a33d; }
.pill.bad .dot { background: var(--down); }

/* ---------------- hero ---------------- */

.hero { position: relative; }
.hero-in { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; padding: 84px 0 56px; align-items: center; }
.hero-in.solo { grid-template-columns: minmax(0, 760px); padding: 40px 0 72px; }
h1 { font-size: clamp(40px, 5.6vw, 68px); text-shadow: 0 1px 0 rgba(255, 255, 255, .55), 0 2px 18px rgba(255, 255, 255, .5); }
h1 .accent { color: var(--accent); }
.hero .lede { margin-top: 22px; text-shadow: 0 1px 0 rgba(255, 255, 255, .6); }
.hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.hero-figure { position: relative; height: 340px; }
.hero-figure svg { width: 100%; height: 100%; overflow: visible; }

.factbar { display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 44px; flex-wrap: wrap; }
.factbar div { padding: 0 30px; border-left: 1px solid var(--line); }
.factbar div:first-child { padding-left: 0; border-left: 0; }
.factbar dt { font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.factbar dd { margin: 10px 0 0; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.factbar dd small { display: block; font: 400 12px/1.4 var(--mono); color: var(--ink-3); margin-top: 3px; }

/* ---------------- ticker ---------------- */

.tape { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px); overflow: hidden; padding: 11px 0; }
.tape-track { display: flex; gap: 34px; width: max-content; animation: slide 64s linear infinite; }
.tape:hover .tape-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.tape-item { display: flex; align-items: center; gap: 8px; font: 400 12.5px/1 var(--mono); color: var(--ink-2); white-space: nowrap; }
.tape-item .tk { color: var(--ink-3); }
.tape-item .px { color: var(--ink); }
.drop-ico { width: 13px; height: 16px; flex: none; }

/* ---------------- secciones ---------------- */

.section { padding: 62px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: 17px; }
.page-head { padding: 24px 0 34px; position: relative; }
.page-head h1 { font-size: clamp(34px, 5vw, 56px); }
.page-head .lede { margin-top: 16px; }

.panel { background: rgba(255, 255, 255, .95); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: var(--r); }
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.panel-head h3 { font-size: 16px; }
.panel-head .label { font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.panel-foot { padding: 14px 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-3); }
.panel-foot a { color: var(--accent); font-weight: 500; }

/* ---------------- tablas ---------------- */

.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
  font: 500 10.5px/1.3 var(--mono); letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3); text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-weight: 500;
}
.tbl td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: var(--tint); }
.tbl .num { text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.tbl .idx { color: var(--ink-3); font-family: var(--mono); font-size: 12.5px; width: 46px; }
.tbl .nowrap { white-space: nowrap; }

.asset { display: flex; align-items: center; gap: 12px; }
.asset .glyph {
  width: 38px; height: 38px; flex: none; border-radius: 9px; border: 1px solid var(--line);
  background: var(--tint); display: grid; place-items: center; overflow: hidden;
}
/* a source's photograph fills its square; the glyph sits in the same box */
.photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-head .glyph { overflow: hidden; }

.asset b { display: block; font-size: 14.5px; font-weight: 600; }
.asset small, .sub { display: block; font: 400 12px/1.4 var(--mono); color: var(--ink-3); }
.spot b { font-size: 14.5px; font-family: var(--mono); font-weight: 500; }

.spark { width: 78px; height: 26px; display: block; }

.toolbar {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  cursor: pointer; font: 500 13px/1 var(--sans); padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.toolbar .grow { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.toolbar label { font: 500 10.5px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }

input, select, textarea {
  font: 400 14px/1 var(--sans); color: var(--ink); background: #fff;
  border: 1px solid var(--line-2); border-radius: 8px; padding: 10px 12px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14, 116, 144, .16); }
input.mono { font-family: var(--mono); }
select { appearance: none; padding-right: 30px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: right 15px center, right 10px center; background-size: 5px 5px; background-repeat: no-repeat; }

/* ---------------- nivel ---------------- */

.level { display: grid; gap: 5px; min-width: 96px; }
.level .bar { height: 5px; border-radius: 99px; background: var(--tint); border: 1px solid var(--line); overflow: hidden; }
.level .bar i { display: block; height: 100%; background: var(--accent); }
.level.low .bar i { background: var(--down); }
.level.mid .bar i { background: #e8a33d; }
.level span { font: 400 11.5px/1 var(--mono); color: var(--ink-3); }

/* ---------------- formulario de pareado ---------------- */

.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
form.stack { display: grid; gap: 18px; padding: 24px; }
form.stack .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.stack label { display: grid; gap: 7px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
form.stack .hint { font: 400 12px/1.45 var(--sans); color: var(--ink-3); }
input[type=range] { padding: 0; border: 0; accent-color: var(--accent); }
.summary { display: grid; gap: 10px; padding: 20px; }
.summary .line { display: flex; justify-content: space-between; gap: 14px; font: 400 13px/1.5 var(--mono); }
.summary .line span:first-child { color: var(--ink-3); }
.summary .line b { font-weight: 500; }

.note { background: var(--accent-soft); border: 1px solid #c4e5ec; border-radius: 10px; padding: 14px 16px; font-size: 13px; color: #0a4f60; }
.note a { text-decoration: underline; }
.note.strip { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
#launcher-banner:empty { display: none; }
.detail-head .sub a { color: var(--accent); }

/* ---------------- the curve and the feed ---------------- */

.curve-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; align-items: stretch; }
.curve-chart { padding: 18px 20px 6px; }
.curve-chart svg { width: 100%; height: 260px; display: block; overflow: visible; }
.curve-chart .axis { stroke: var(--line-2); stroke-width: 1; }
.curve-chart .grid-line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 5; }
.curve-chart .tick { font: 400 10.5px var(--mono); fill: var(--ink-3); }
.curve-chart .mark { transition: r .2s ease; cursor: default; }
.curve-chart .mark:hover { r: 8; }
.curve-chart .mark-label { font: 500 11px var(--mono); fill: var(--ink-2); }

.feed { list-style: none; margin: 0; padding: 6px 0; max-height: 300px; overflow-y: auto; }
.feed li {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px;
  border-bottom: 1px solid var(--line); font-size: 13px;
  animation: slideIn .45s cubic-bezier(.22,.8,.3,1);
}
.feed li:last-child { border-bottom: 0; }
.feed .side { font: 600 10.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; padding: 4px 7px; border-radius: 5px; }
.feed .side.buy { color: var(--up); background: rgba(15, 157, 118, .12); }
.feed .side.sell { color: var(--down); background: rgba(229, 72, 77, .1); }
.feed .sym { font-weight: 600; }
.feed .amt { margin-left: auto; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.feed .when { color: var(--ink-3); font-family: var(--mono); font-size: 11.5px; width: 62px; text-align: right; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------------- cards / docs ---------------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 18px 40px -30px rgba(6, 46, 62, .6); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-2); font-size: 14px; }
.card .n { font: 500 11px/1 var(--mono); color: var(--accent); letter-spacing: .12em; display: block; margin-bottom: 14px; }

.prose { max-width: 74ch; display: grid; gap: 14px; }
.prose h3 { margin-top: 18px; }
.prose p, .prose li { color: var(--ink-2); font-size: 15px; }
.prose ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }

.empty { padding: 44px 20px; text-align: center; color: var(--ink-3); font-size: 14px; }

/* ---------------- detalle de token ---------------- */

.detail-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; align-items: start; }
.chart { width: 100%; height: 240px; display: block; }
.detail-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.detail-head .glyph { width: 54px; height: 54px; border-radius: 12px; border: 1px solid var(--line); background: var(--tint); display: grid; place-items: center; }
.detail-head h1 { font-size: 36px; }

/* ---------------- footer ---------------- */

.foot { border-top: 1px solid var(--line); background: rgba(255, 255, 255, .7); padding: 34px 0; margin-top: 40px; }
.foot-in { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--ink-3); font-size: 13px; }
.foot-in nav { display: flex; gap: 18px; }
.foot-in a:hover { color: var(--ink); }

/* ---------------- toast ---------------- */

.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 16px);
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 9px;
  font: 500 13px/1 var(--mono); opacity: 0; pointer-events: none;
  transition: opacity .22s, transform .22s; z-index: 80;
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }

/* ---------------- responsive ---------------- */

@media (max-width: 940px) {
  .hero-in, .form-grid, .detail-grid, .curve-grid { grid-template-columns: 1fr; }
  .hero-figure { height: 220px; }
  .wrap { width: min(var(--shell), 100% - 32px); }
  .tbl .hide-s { display: none; }
}
@media (max-width: 620px) {
  .factbar div { padding: 0 18px; }
  .tbl .hide-xs { display: none; }
  .tbl th, .tbl td { padding: 12px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, .tape-track { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------- the sites, as you come down the page ---------------- */

/* Each site is a plate and a column of its figures, alternating sides so the
 * page keeps changing shape on the way down. */
.sites { display: grid; gap: 34px; }
.site {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center;
}
.site:nth-child(even) .site-shot { order: 2; }
.site-shot {
  margin: 0; position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--tint); aspect-ratio: 16 / 10;
}
.site-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.04); transition: transform 1.2s cubic-bezier(.22, .8, .3, 1);
}
.site:hover .site-shot img { transform: scale(1.09); }
.site-shot figcaption {
  position: absolute; left: 12px; bottom: 12px; display: flex; gap: 8px; align-items: center;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(4px);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
  font: 500 10.5px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-2);
}
.site-shot .tick {
  position: absolute; right: 12px; top: 12px;
  background: var(--ink); color: #fff; border-radius: 7px; padding: 5px 9px;
  font: 500 11.5px/1 var(--mono); letter-spacing: .06em;
}
.site-text { display: grid; gap: 12px; align-content: center; }
.site-text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.012em; }
.site-text p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.site-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 14px 24px; margin: 4px 0 0; justify-content: start; }
.site-facts dt { font: 500 10px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.site-facts dd { margin: 7px 0 0; font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.site-facts dd small { display: block; font-weight: 400; font-size: 11px; color: var(--ink-3); letter-spacing: 0; }
.gauge { height: 6px; border-radius: 3px; background: var(--accent-soft); overflow: hidden; max-width: 260px; }
.gauge i { display: block; height: 100%; background: var(--accent); border-radius: 3px; transition: width .9s cubic-bezier(.22, .8, .3, 1); }
.site-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.sites-note { color: var(--ink-3); font-size: 12.5px; margin: 26px 0 0; max-width: 78ch; }

/* ---------------- how a reservoir works ---------------- */

.works-lede { max-width: 72ch; margin: 0 0 26px; }
.cut { margin: 0 0 30px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.cut-svg { display: block; width: 100%; height: auto; }
.cut figcaption { padding: 11px 16px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 12px; background: var(--tint); }
.cut-marks circle { fill: var(--ink); }
.cut-marks text { fill: #fff; font: 500 12px/1 var(--mono); text-anchor: middle; }
.cut-flow { animation: cut-run 1.1s linear infinite; }
.cut-surface { animation: cut-breathe 6s ease-in-out infinite; }
.cut-runner { transform-box: fill-box; transform-origin: center; animation: cut-spin 2.6s linear infinite; }
.cut-drift { animation: cut-drift 7s linear infinite; }
.cut-drift.b { animation-duration: 9s; animation-delay: -3s; }
.cut-vapour { animation: cut-rise 5s ease-in-out infinite; }
.cut-inflow { animation: cut-run 2.4s linear infinite; }
@keyframes cut-run { to { stroke-dashoffset: -40; } }
@keyframes cut-spin { to { transform: rotate(360deg); } }
@keyframes cut-breathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2.5px); } }
@keyframes cut-drift { from { transform: translateX(0); opacity: 0; } 20% { opacity: 1; } to { transform: translateX(230px); opacity: 0; } }
@keyframes cut-rise { 0%, 100% { opacity: .25; transform: translateY(0); } 50% { opacity: .7; transform: translateY(-7px); } }

.steps { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.step { background: #fff; padding: 22px; display: grid; gap: 9px; align-content: start; }
.step .n {
  width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font: 500 12px/1 var(--mono);
}
.step h3 { font-size: 16px; }
.step p { margin: 0; color: var(--ink-2); font-size: 13.5px; }
.works-out { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.works-body { padding: 20px; display: grid; gap: 12px; align-content: start; }
.works-body p { margin: 0; color: var(--ink-2); font-size: 14px; }
.bullets { margin: 0; padding-left: 18px; display: grid; gap: 7px; color: var(--ink-2); font-size: 13.5px; }
.bullets b { color: var(--ink); font-weight: 600; }
.works-body .btn { justify-self: start; margin-top: 4px; }

@media (prefers-reduced-motion: reduce) {
  .cut-flow, .cut-surface, .cut-runner, .cut-drift, .cut-vapour, .cut-inflow { animation: none; }
  .site-shot img { transition: none; }
}

@media (max-width: 860px) {
  .site { grid-template-columns: 1fr; gap: 18px; }
  .site:nth-child(even) .site-shot { order: 0; }
  .works-out { grid-template-columns: 1fr; }
}

/* ---------------- the chain menu, under the network pill ---------------- */

.net { position: relative; }
.pill.as-btn { cursor: pointer; border: 1px solid var(--line); background: #fff; font: inherit; gap: 7px; }
.pill.as-btn:hover { border-color: var(--line-2); }
.chain-menu {
  position: absolute; right: 0; top: calc(100% + 10px); width: min(360px, calc(100vw - 32px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 26px 60px -34px rgba(6, 46, 62, .7); padding: 16px; display: grid; gap: 12px;
  z-index: 60; text-align: left;
}
.chain-menu[hidden] { display: none; }
.chain-menu p { margin: 0; color: var(--ink-2); font-size: 13px; }
.chain-menu b { color: var(--ink); }
.chain-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 13px; color: var(--ink-3); }
.chain-row .mono { color: var(--accent); font-size: 12.5px; }
.chain-acts { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------------- the launcher ---------------- */

.lp-head { display: grid; gap: 14px; justify-items: start; }
.tag {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line-2);
  border-radius: 999px; padding: 6px 13px; background: #fff;
  font: 500 10.5px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.lp-head .lede { max-width: 62ch; }
.lp-section { padding-top: 0; }
.lp-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .82fr); gap: 22px; align-items: start; }
.lp-main { display: grid; gap: 22px; }
.lp-row { display: grid; gap: 10px; }
.lp-label { font: 500 10.5px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }

.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 16px;
  font: 600 13.5px/1 var(--sans); color: var(--ink-2); letter-spacing: -.01em;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.chip small { font: 500 9.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.chip:hover { border-color: var(--line-2); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.on .dot { background: var(--accent-2); }
.chip.on small { color: rgba(255, 255, 255, .6); }

.pads { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; }
.pad {
  text-align: left; cursor: pointer; display: grid; gap: 6px; align-content: start;
  border: 1px solid var(--line); background: #fff; border-radius: var(--r); padding: 15px 16px;
  font-family: var(--sans);
}
.pad b { font-size: 14.5px; letter-spacing: -.01em; }
.pad span { color: var(--ink-2); font-size: 12.5px; line-height: 1.5; }
.pad small { font: 500 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.pad:hover { border-color: var(--line-2); }
.pad.on { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }

.lp-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; display: grid; gap: 16px; }
.lp-panel .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.field { display: grid; gap: 7px; font: 500 10.5px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select {
  font: 400 15px/1.2 var(--sans); color: var(--ink); background: var(--tint);
  border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; width: 100%;
  text-transform: none; letter-spacing: normal;
}
.field input.mono, .field select { font-family: var(--mono); font-size: 14px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field .hint { font: 400 12px/1.5 var(--sans); letter-spacing: normal; text-transform: none; color: var(--ink-3); }

.lp-logo { display: flex; gap: 14px; align-items: center; border: 1px dashed var(--line-2); border-radius: 10px; padding: 14px 16px; background: var(--tint); }
.lp-logo-art { width: 46px; height: 46px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; flex: none; }
.lp-logo-art .photo { width: 100%; height: 100%; object-fit: cover; }
.lp-logo-text { display: grid; gap: 4px; }
.lp-logo-text b { font-size: 13.5px; }
.lp-logo-text small { color: var(--ink-3); font-size: 12px; line-height: 1.5; }

.lp-note { margin: 0; color: var(--ink-3); font-size: 13px; }
.wallets { padding: 14px; gap: 8px; }
.wallet {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; cursor: pointer;
  background: var(--tint); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px;
  font-family: var(--sans); color: var(--ink);
}
.wallet:hover { border-color: var(--line-2); }
.wallet.on { cursor: default; border-color: var(--accent-2); background: #fff; }
.wallet .w-art { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 15px; flex: none; }
.wallet b { display: block; font-size: 14px; }
.wallet small { color: var(--ink-3); font-size: 12px; line-height: 1.45; }

.lp-go { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn.lg { padding: 14px 26px; font-size: 15px; }
.lp-fee { color: var(--ink-3); font-size: 12.5px; }

/* the coin as it will exist */
.preview { position: sticky; top: 104px; }
.pv { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; display: grid; gap: 15px; }
.pv-head { display: flex; align-items: center; gap: 13px; }
.pv-art { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: var(--tint); display: grid; place-items: center; flex: none; }
.pv-art .photo { width: 100%; height: 100%; object-fit: cover; }
.pv-id b { display: block; font-size: 17px; letter-spacing: -.015em; }
.pv-id small { color: var(--ink-3); font-size: 12px; letter-spacing: .06em; }
.pv-lede { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.55; }
.pv-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.pv-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pv-boxes div { border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; background: var(--tint); }
.pv-boxes span { display: block; color: var(--ink-3); font-size: 11.5px; margin-bottom: 5px; }
.pv-boxes b { font-size: 13.5px; letter-spacing: -.01em; }
.pv-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pv-steps li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-2); font-size: 12.5px; line-height: 1.45; }
.pv-steps span { width: 19px; height: 19px; border-radius: 50%; background: var(--tint); border: 1px solid var(--line); color: var(--ink-3); display: grid; place-items: center; font: 500 10.5px/1 var(--mono); flex: none; }
.pv-foot { margin: 0; padding-top: 13px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 12px; line-height: 1.5; }

@media (max-width: 640px) {
  .lp-panel .two { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .lp-grid { grid-template-columns: 1fr; }
  .preview { position: static; }
  .pv-boxes { grid-template-columns: 1fr 1fr; }
}

/* ---------------- the first screen ---------------- */

/* The landing gets the whole viewport and the scene behind it gets to be the
 * picture rather than a wash behind text. A scrim closes over the lower half so
 * white type sits on water instead of fighting it. */
.hero.stage {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 30px; color: #fff;
}
.hero.stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(94deg, rgba(4, 26, 37, .82) 0%, rgba(4, 26, 37, .58) 34%,
                    rgba(4, 26, 37, .12) 62%, rgba(4, 26, 37, 0) 86%),
    linear-gradient(180deg, rgba(4, 28, 39, .28) 0%, rgba(4, 28, 39, 0) 26%,
                    rgba(4, 28, 39, .3) 62%, rgba(4, 28, 39, .78) 86%, rgba(4, 28, 39, .9) 100%);
}
.hero.stage > * { position: relative; z-index: 1; }
.hero.stage .hero-in.solo { grid-template-columns: minmax(0, 760px); padding: 0 0 26px; align-items: end; }

.hero.stage h1 {
  font-family: var(--poster);
  font-variation-settings: "wdth" 79, "wght" 800;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 4.7vw, 72px);
  line-height: .92;
  letter-spacing: -.012em;
  text-shadow: 0 2px 30px rgba(3, 22, 31, .45);
  color: #fff;
}
.hero.stage h1 .accent { color: #7fe3d4; }
.hero.stage .eyebrow { color: rgba(255, 255, 255, .72); text-shadow: 0 1px 12px rgba(3, 22, 31, .6); }
.hero.stage .lede {
  color: rgba(255, 255, 255, .84); max-width: 60ch; margin-top: 24px;
  text-shadow: 0 1px 16px rgba(3, 22, 31, .7);
}
.hero.stage .btn { background: #fff; color: var(--ink); border-color: #fff; }
.hero.stage .btn:hover { background: #eaf6f9; }
.hero.stage .btn.alt {
  background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .45);
  backdrop-filter: blur(6px);
}
.hero.stage .btn.alt:hover { background: rgba(255, 255, 255, .2); }

.hero.stage .factbar { border-top-color: rgba(255, 255, 255, .22); margin-top: 30px; padding-top: 20px; }
.hero.stage .factbar div { border-left-color: rgba(255, 255, 255, .18); }
.hero.stage .factbar dt { color: rgba(255, 255, 255, .6); }
.hero.stage .factbar dd { color: #fff; }
.hero.stage .factbar dd small { color: rgba(255, 255, 255, .55); }

.br-s { display: none; }

@media (max-width: 720px) {
  .hero.stage { padding-bottom: 54px; }
  .hero.stage .factbar { gap: 14px 0; }
  .hero.stage .factbar div { padding: 0 16px; }
  .br-s { display: inline; }
}

/* the node starting up, said quietly in a corner */
.booting {
  position: fixed; left: 18px; bottom: 18px; z-index: 70;
  display: flex; align-items: center; gap: 9px;
  background: rgba(4, 28, 39, .82); color: #fff; backdrop-filter: blur(8px);
  border-radius: 999px; padding: 9px 16px 9px 12px;
  font: 500 11.5px/1 var(--mono); letter-spacing: .04em;
}
.booting .spin {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, .28); border-top-color: #7fe3d4;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .booting .spin { animation: none; } }

/* Everything below the first screen sits on its own ground rather than
 * depending on the veil having closed, so text is never over the scene. */
main { position: relative; }
body[data-page="markets"] main::before,
body.page-markets main::before {
  content: ""; position: absolute; z-index: -1;
  left: 0; right: 0; top: 100svh; bottom: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
}

/* ============================================================================
   Surface, depth and response
   ==========================================================================*/

::selection { background: var(--accent); color: #fff; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------------- buttons ---------------- */

.btn {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #0d3243 0%, var(--ink) 100%);
  box-shadow: var(--e2);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
/* a single pass of light across the face, on the way in only */
.btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .22) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--e3); }
.btn:active { transform: translateY(0) scale(.988); box-shadow: var(--e1); transition-duration: .06s; }

.btn.accent {
  background: linear-gradient(180deg, #1490ad 0%, var(--accent) 100%);
  border-color: #0c6a83;
  box-shadow: var(--e2), var(--glow);
}
.btn.accent:hover { background: linear-gradient(180deg, #17a0c0 0%, #0c6980 100%); }

.btn.alt {
  background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
  box-shadow: var(--e1);
}
.btn.alt:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--e2); }
.btn.alt::after { display: none; }
.btn:disabled { transform: none; box-shadow: none; }
.btn:disabled::after { display: none; }

/* ---------------- panels, cards, anything that holds content ------------- */

.panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: var(--e2);
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card, .pad, .step, .lp-panel, .pv, .cut, .site-shot, .wallet {
  box-shadow: var(--e2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.card {
  background: linear-gradient(180deg, #ffffff 0%, #fafdfe 100%);
  position: relative; overflow: hidden;
}
/* a thread of accent that draws itself along the top edge on hover */
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.card:hover::before { transform: scaleX(1); }
.card:hover, .pad:hover, .step:hover, .wallet:hover { transform: translateY(-3px); box-shadow: var(--e3); }
.step { transition-delay: 0s; }
.pad.on { box-shadow: var(--e2), inset 0 0 0 1px var(--accent); }

/* ---------------- tables ---------------- */

.tbl tbody tr { transition: background var(--t-fast) var(--ease); }
.tbl tbody tr:hover { background: var(--tint); }
.tbl tbody tr:hover .asset b { color: var(--accent); }
.asset b { transition: color var(--t-fast) var(--ease); }
.tbl .glyph { transition: transform var(--t) var(--ease); }
.tbl tbody tr:hover .glyph { transform: scale(1.06); }

/* ---------------- links ---------------- */

.panel-foot a, .foot-in a {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--t) var(--ease), color var(--t-fast) var(--ease);
  padding-bottom: 1px;
}
.panel-foot a:hover, .foot-in a:hover { background-size: 100% 1px; }

.nav-links a { position: relative; transition: color var(--t-fast) var(--ease), background var(--t) var(--ease); }
.nav-links a:not(.on)::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1.5px;
  background: var(--accent); border-radius: 1px;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t) var(--ease-out);
}
.nav-links a:not(.on):hover::after { transform: scaleX(1); }

/* ---------------- the chain menu opens rather than appears --------------- */

.chain-menu {
  box-shadow: var(--e4);
  opacity: 0; transform: translateY(-8px) scale(.98); transform-origin: top right;
  transition: opacity var(--t-fast) var(--ease), transform var(--t) var(--ease-out);
}
.chain-menu.open { opacity: 1; transform: none; }

/* ---------------- images arrive rather than pop ------------------------- */

.site-shot img, .photo {
  opacity: 0; transform: scale(1.06);
  transition: opacity var(--t-slow) var(--ease), filter var(--t-slow) var(--ease),
              transform 1.2s var(--ease-out);
}
.site-shot img.ready, .photo.ready { opacity: 1; transform: scale(1.02); }
.site:hover .site-shot img.ready { transform: scale(1.07); }
.site-shot { position: relative; }
/* the light that sits on water, laid over every plate so they read as one set */
.site-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(190deg, rgba(255, 255, 255, .14) 0%, transparent 34%),
              linear-gradient(0deg, rgba(4, 28, 39, .22) 0%, transparent 42%);
}
.site-shot figcaption, .site-shot .tick { z-index: 2; }
.site-shot:hover { box-shadow: var(--e3); }

/* ---------------- sections arrive in order ------------------------------ */

.reveal { opacity: 0; transform: translate3d(0, 26px, 0); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* ---------------- the eyebrow gets a rule ------------------------------- */

.section .eyebrow, .page-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.section .eyebrow::before, .page-head .eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent); border-radius: 1px;
}
.hero .eyebrow::before { display: none; }

/* ---------------- gauges and bars fill when they are seen --------------- */

.level .bar i, .gauge i { transition: width 1.1s var(--ease-out); }

/* ---------------- scrollbar, in the same palette ----------------------- */

* { scrollbar-color: var(--line-2) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border: 3px solid transparent; background-clip: content-box; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); background-clip: content-box; }

@media (prefers-reduced-motion: reduce) {
  .btn::after, .card::before { display: none; }
  .btn, .card, .pad, .step, .wallet, .panel, .site-shot { transition: none; }
  .btn:hover, .card:hover, .pad:hover, .step:hover, .wallet:hover { transform: none; }
  .site-shot img, .photo { opacity: 1; filter: none; transform: none; transition: none; }
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .level .bar i, .gauge i { transition: none; }
}

/* ============================================================================
   The bar on a small screen
   ==========================================================================*/

.burger {
  display: none; width: 44px; height: 42px; flex: none; cursor: pointer;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .72); backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 12px 34px -20px rgba(6, 46, 62, .55);
  padding: 0; place-items: center; gap: 4px; flex-direction: column;
  transition: background var(--t) var(--ease), transform var(--t-fast) var(--ease);
}
.burger span {
  display: block; width: 17px; height: 1.8px; border-radius: 2px; background: var(--ink);
  transition: transform var(--t) var(--ease-out), opacity var(--t-fast) var(--ease);
}
.burger:active { transform: scale(.94); }
body.menu-open .burger span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* the chain's name can be long and the bar cannot grow */
.net-name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-in { gap: 8px; }
  .logo { padding: 9px 15px 9px 12px; font-size: 17px; }
  .nav-in { position: relative; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: calc(100% + 10px); z-index: 4;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 10px;
    border-radius: var(--r-lg); box-shadow: var(--e4);
    background: rgba(255, 255, 255, .92);
    opacity: 0; transform: translateY(-12px) scale(.985); transform-origin: top center;
    pointer-events: none; visibility: hidden;
    transition: opacity var(--t-fast) var(--ease), transform var(--t) var(--ease-out),
                visibility 0s linear var(--t);
  }
  body.menu-open .nav-links {
    opacity: 1; transform: none; pointer-events: auto; visibility: visible;
    transition-delay: 0s;
  }
  .nav-links a {
    padding: 13px 16px; border-radius: 10px; font-size: 15.5px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease-out),
                background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  }
  body.menu-open .nav-links a { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 45ms); }
  .nav-links a:not(.on)::after { display: none; }
  .nav-cta { margin-left: auto; padding: 6px 7px 6px 9px; }
  .net-name { max-width: 82px; }
  .chain-menu { width: min(320px, calc(100vw - 24px)); }
}

@media (max-width: 560px) {
  .logo span, .logo { font-size: 0; gap: 0; padding: 10px 12px; }
  .logo svg { width: 26px; height: 26px; }
  .net-name { max-width: 68px; font-size: 11px; }
  .factbar div { padding: 0 14px; }
  .hero.stage .lede { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links, .nav-links a, .burger span { transition: none; }
}

/* ============================================================================
   The landscape the page lives in
   ==========================================================================*/

/* One photograph and the landscape rendered to continue from it, held still
   behind the page and descended as you scroll. */
.world {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background: #0a1411;
}
.world-img {
  position: absolute; top: 0; left: 50%;
  width: max(100vw, calc(100svh * 1.7778)); height: auto; max-width: none;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
  filter: blur(18px) saturate(1.05);
  transition: filter .8s var(--ease);
}
.world-img.sharp { filter: saturate(1.04) contrast(1.02); }
.world-scrim {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .18s linear;
  background:
    linear-gradient(180deg, rgba(6, 16, 13, .58) 0%, rgba(6, 16, 13, .06) 26%,
                    rgba(6, 16, 13, .34) 62%, rgba(4, 11, 10, .8) 100%);
}
/* and a constant floor of shade so type is never fighting the picture */
.world::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 16, 13, .34) 0%, rgba(6, 16, 13, 0) 18%,
                              rgba(6, 16, 13, 0) 52%, rgba(5, 13, 11, .5) 100%);
}

/* ---------------- the palette the photograph sets ---------------- */

:root {
  --bg: #0b1512;               /* forest floor at dusk */
  --bg-2: #060f0e;
  --grid: rgba(180, 214, 202, .045);
  --ink: #eaf2ee;
  --ink-2: #a9c0b7;
  --ink-3: #748c83;
  --line: rgba(196, 226, 214, .15);
  --line-2: rgba(196, 226, 214, .3);
  --tint: rgba(196, 226, 214, .06);
  --accent: #58a7c9;           /* the blue of the reservoir */
  --accent-2: #c6a562;         /* the gold the light puts on the stone */
  --accent-soft: rgba(88, 167, 201, .16);
  --up: #63c49c;
  --down: #e0705f;
  --e1: 0 1px 2px rgba(0, 0, 0, .3);
  --e2: 0 1px 2px rgba(0, 0, 0, .3), 0 16px 34px -20px rgba(0, 0, 0, .8);
  --e3: 0 2px 5px rgba(0, 0, 0, .35), 0 30px 56px -28px rgba(0, 0, 0, .9);
  --e4: 0 4px 10px rgba(0, 0, 0, .4), 0 48px 80px -36px rgba(0, 0, 0, .95);
  --glow: 0 12px 34px -14px rgba(88, 167, 201, .55);
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px;
  background-attachment: scroll, scroll;
}
/* on the front page the ground is the landscape, not a colour */
body.has-world { background-color: transparent; }
body.has-world main::before { display: none; }

/* ---------------- surfaces, now glass over a photograph ---------------- */

.panel, .card, .lp-panel, .pv, .cut, .wallet, .pad, .step, .chain-menu, .tape {
  background: linear-gradient(180deg, rgba(16, 30, 27, .82) 0%, rgba(11, 22, 20, .86) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  border-color: var(--line);
  color: var(--ink);
}
.panel-head, .panel-foot { border-color: var(--line); }
.tbl th { border-color: var(--line); color: var(--ink-3); }
.tbl td { border-color: var(--line); }
.tbl tbody tr:hover { background: rgba(196, 226, 214, .06); }
.step { background: linear-gradient(180deg, rgba(16, 30, 27, .8) 0%, rgba(11, 22, 20, .84) 100%); }
.steps { background: var(--line); }
.pad.on { background: rgba(88, 167, 201, .14); box-shadow: var(--e2), inset 0 0 0 1px var(--accent); }
.card::before { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.field input, .field select, input, select, textarea {
  background: rgba(6, 14, 12, .6); color: var(--ink); border-color: var(--line);
}
.field input::placeholder, input::placeholder, textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus { background: rgba(6, 14, 12, .85); border-color: var(--accent); }

.pill { background: rgba(10, 20, 18, .6); border-color: var(--line-2); color: var(--ink-2); }
code { background: rgba(88, 167, 201, .1); border-color: var(--line); color: var(--accent); }
.foot { background: linear-gradient(180deg, rgba(8, 17, 15, .82), rgba(5, 12, 11, .95)); border-color: var(--line); }

/* the bar reads as stone and glass, not as paper */
.logo, .nav-links, .nav-cta, .burger {
  background: rgba(12, 24, 21, .58);
  border-color: rgba(196, 226, 214, .18);
  box-shadow: 0 16px 40px -22px rgba(0, 0, 0, .9);
  color: var(--ink);
}
body.scrolled .logo, body.scrolled .nav-links, body.scrolled .nav-cta, body.scrolled .burger {
  background: rgba(9, 19, 17, .78);
}
.logo { color: var(--ink); }
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); background: rgba(196, 226, 214, .1); }
.nav-links a.on { background: var(--accent); color: #051211; font-weight: 600; }
.burger span { background: var(--ink); }

.btn { background: linear-gradient(180deg, rgba(234, 242, 238, .96), rgba(208, 222, 215, .92)); color: #08201c; border-color: transparent; }
.btn:hover { background: linear-gradient(180deg, #fff, #dfeae5); }
.btn.alt { background: rgba(14, 27, 24, .6); color: var(--ink); border-color: var(--line-2); }
.btn.alt:hover { background: rgba(20, 38, 34, .75); color: #fff; border-color: var(--accent); }
.btn.accent { background: linear-gradient(180deg, #67b6d6, #3d88a8); color: #04181f; border-color: transparent; }
.btn.accent:hover { background: linear-gradient(180deg, #7ac5e2, #4694b4); }

.empty { color: var(--ink-3); }
.level .bar { background: rgba(196, 226, 214, .14); }
.gauge { background: rgba(196, 226, 214, .14); }
.site-shot { border-color: var(--line); }
.site-shot::after {
  background: linear-gradient(0deg, rgba(4, 12, 10, .5) 0%, transparent 46%);
}
.site-shot figcaption { background: rgba(8, 18, 16, .7); border-color: var(--line-2); color: var(--ink-2); }
.site-shot .tick { background: rgba(8, 18, 16, .8); color: var(--ink); }
::selection { background: var(--accent); color: #04181f; }

.hero-note {
  margin-top: 22px; max-width: 52ch;
  color: rgba(234, 242, 238, .58); font-size: 12.5px; line-height: 1.55;
  border-left: 2px solid rgba(198, 165, 98, .55); padding-left: 12px;
}
.hero.stage h1 .accent { color: var(--accent-2); }

/* the hero sits on the photograph, so its buttons follow the dark palette */
.hero.stage .btn { background: linear-gradient(180deg, rgba(240, 247, 243, .96), rgba(214, 228, 221, .92)); color: #08201c; border-color: transparent; }
.hero.stage .btn:hover { background: linear-gradient(180deg, #fff, #e3ede8); }
.hero.stage .btn.accent { background: linear-gradient(180deg, #6bbbdb, #3f8cad); color: #04181f; }
.hero.stage .btn.accent:hover { background: linear-gradient(180deg, #7fcae8, #4998ba); }
.hero.stage .btn.alt { background: rgba(9, 20, 18, .5); color: var(--ink); border-color: rgba(198, 226, 214, .38); }
.hero.stage .btn.alt:hover { background: rgba(14, 30, 27, .68); border-color: var(--accent); color: #fff; }
.hero.stage .lede { color: rgba(234, 242, 238, .88); }
.hero.stage .eyebrow { color: rgba(234, 242, 238, .62); }

/* Copy that sits on the landscape gets its own ground, so the picture can be
   as bright as it likes underneath. */
.site-text {
  background: linear-gradient(180deg, rgba(12, 24, 21, .78) 0%, rgba(8, 17, 15, .86) 100%);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 26px 28px; box-shadow: var(--e3);
}
.works-lede, .sites-note, .section-head h2, .section-head .eyebrow, .page-head h1, .page-head .lede {
  text-shadow: 0 2px 22px rgba(4, 12, 10, .75);
}
.section .eyebrow::before, .page-head .eyebrow::before { background: var(--accent-2); }

/* the plates were drawn for a white page; grade them into this one */
.site-shot img, .photo { filter: saturate(.92) contrast(1.06) brightness(.92); }
.site-shot img.ready, .photo.ready { filter: saturate(.92) contrast(1.06) brightness(.92); }
.site-shot::after {
  background: linear-gradient(0deg, rgba(4, 12, 10, .55) 0%, transparent 44%),
              linear-gradient(190deg, rgba(198, 165, 98, .08) 0%, transparent 38%);
}

@media (max-width: 860px) { .site-text { padding: 20px; } }

.where { display: grid; gap: 3px; }
.where b { font-weight: 500; font-size: 13.5px; }
.where small { color: var(--ink-3); font-size: 11.5px; }

/* Said plainly, once, where it matters: before the transaction. */
.disclaimer {
  border: 1px solid rgba(198, 165, 98, .35); border-left-width: 3px;
  border-radius: var(--r); padding: 18px 20px; display: grid; gap: 10px;
  background: linear-gradient(180deg, rgba(198, 165, 98, .07), rgba(12, 24, 21, .5));
}
.disclaimer h4 {
  font: 500 10.5px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-2);
}
.disclaimer p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.6; }
.disclaimer b { color: var(--ink); font-weight: 600; }

.wallet { background: rgba(10, 21, 19, .55); color: var(--ink); }
.wallet:hover { background: rgba(16, 32, 29, .7); }
.wallet.on { background: rgba(88, 167, 201, .1); border-color: rgba(88, 167, 201, .5); }
.wallet .w-art { background: rgba(88, 167, 201, .16); color: var(--accent); }
.wallet small { color: var(--ink-3); }
.lp-logo { background: rgba(10, 21, 19, .45); border-color: var(--line-2); }
.lp-logo-art { background: rgba(6, 14, 12, .6); border-color: var(--line); }
.pv-boxes div { background: rgba(10, 21, 19, .5); border-color: var(--line); }
.pv-steps span { background: rgba(10, 21, 19, .6); border-color: var(--line); color: var(--ink-3); }
.pv-foot { border-color: var(--line); }
.pv-art { background: rgba(6, 14, 12, .6); border-color: var(--line); }
.toast { background: rgba(8, 18, 16, .95); border: 1px solid var(--line-2); }

/* ---------------- X ---------------- */

.x-link {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  color: var(--ink-2); flex: none;
  transition: color var(--t-fast) var(--ease), background var(--t) var(--ease), transform var(--t-fast) var(--ease);
}
.x-link:hover { color: var(--ink); background: rgba(196, 226, 214, .12); }
.x-link:active { transform: scale(.92); }

/* ---------------- the bar condenses on the way down ---------------- */

.nav-in { transition: height var(--t) var(--ease); }
.logo, .nav-links, .nav-cta, .burger {
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease),
              padding var(--t) var(--ease), transform var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.logo { transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease),
                    padding var(--t) var(--ease), font-size var(--t) var(--ease),
                    gap var(--t) var(--ease), border-color var(--t) var(--ease); }
.logo svg { transition: width var(--t) var(--ease), height var(--t) var(--ease); }

body.scrolled .nav-in { height: 44px; }
body.scrolled .logo { padding: 7px 14px 7px 11px; font-size: 16.5px; gap: 7px; }
body.scrolled .logo svg { width: 20px; height: 20px; }
body.scrolled .nav-links { padding: 5px 6px; }
body.scrolled .nav-links a { padding: 5px 12px; font-size: 13.5px; }
body.scrolled .nav-cta { padding: 5px 7px 5px 10px; }
body.scrolled .logo, body.scrolled .nav-links, body.scrolled .nav-cta, body.scrolled .burger {
  border-color: rgba(196, 226, 214, .12);
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, .95);
}
body.scrolled .x-link { width: 26px; height: 26px; }

/* the hero's block sits a little higher than the foot of the screen */
.hero.stage { padding-bottom: 34px; }
.hero.stage .hero-in.solo { padding: 0 0 clamp(34px, 8vh, 86px); }

@media (prefers-reduced-motion: reduce) {
  .nav-in, .logo, .nav-links, .nav-cta, .burger, .logo svg, .x-link { transition: none; }
}

/* the eyebrow reads over the landscape, and carries no rule */
.section .eyebrow::before, .page-head .eyebrow::before { display: none; }
.section .eyebrow, .page-head .eyebrow, .eyebrow {
  color: rgba(234, 242, 238, .78);
  text-shadow: 0 2px 14px rgba(4, 12, 10, .85);
}
.panel-head .label, .tbl th { color: var(--ink-3); text-shadow: none; }

.works-foot {
  margin: 26px 0 0; max-width: 78ch; color: var(--ink-2); font-size: 14px; line-height: 1.7;
  text-shadow: 0 2px 16px rgba(4, 12, 10, .8);
}
.works-foot a { color: var(--accent); white-space: nowrap; }
.works-foot a:hover { color: #fff; }
.steps { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.step p { font-size: 13px; }

/* no rules between sections anywhere: the landscape is the separator */
.section + .section { border-top: 0; }
.eyebrow::before { display: none !important; }

/* The photograph is the point, so nothing washes over it at the top. What is
   left is a gradient under the copy itself and a strip behind the bar. */
.hero.stage::before {
  background:
    linear-gradient(100deg, rgba(5, 14, 12, .72) 0%, rgba(5, 14, 12, .45) 26%,
                    rgba(5, 14, 12, .12) 46%, rgba(5, 14, 12, 0) 62%),
    linear-gradient(180deg, rgba(5, 14, 12, .5) 0%, rgba(5, 14, 12, 0) 12%,
                    rgba(5, 14, 12, 0) 66%, rgba(5, 14, 12, .5) 100%);
}
.world::after {
  background: linear-gradient(180deg, rgba(5, 14, 12, .28) 0%, rgba(5, 14, 12, 0) 10%,
                              rgba(5, 14, 12, 0) 100%);
}

/* ============================================================================
   The shell: a column of sections on the left, the work on the right
   ==========================================================================*/

body { padding-top: 0; }
.shell { display: grid; grid-template-columns: 236px minmax(0, 1fr); min-height: 100vh; }
.col { min-width: 0; display: flex; flex-direction: column; }

.side {
  position: fixed; top: 0; bottom: 0; left: 0; width: 236px; z-index: 40;
  display: flex; flex-direction: column; gap: 22px; padding: 22px 16px 18px;
  background: linear-gradient(180deg, rgba(8, 17, 15, .92), rgba(5, 12, 11, .96));
  backdrop-filter: blur(20px) saturate(1.1);
  border-right: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 9px; padding: 0 8px;
  font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.02em;
  color: var(--ink);
}
.brand svg { color: var(--accent); flex: none; }
/* Short enough to sit on one line under the mark, and set in the text face:
   the mono caps read as a system label rather than as the thing it is. */
.brand-note {
  margin: -14px 0 0; padding: 0 9px;
  font: 400 12px/1.4 var(--sans); letter-spacing: .01em;
  color: var(--ink-3);
}
.side-nav { display: grid; gap: 2px; }
.side-nav a {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 9px;
  color: var(--ink-2); font-size: 14px; letter-spacing: -.01em;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.side-nav svg { width: 15px; height: 15px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.side-nav a:hover { background: rgba(196, 226, 214, .07); color: var(--ink); }
.side-nav a.on { background: rgba(88, 167, 201, .16); color: #cfeaf6; }
.side-nav a.on svg { stroke: var(--accent); }

.side-foot { margin-top: auto; display: grid; gap: 12px; }
.side-links { display: flex; align-items: center; gap: 12px; padding: 0 10px; }
.side-links a { color: var(--ink-3); font-size: 12px; }
.side-links a:hover { color: var(--ink); }
.side-chain {
  border-top: 1px solid var(--line); padding: 12px 10px 0;
  font: 500 10.5px/1.5 var(--mono); letter-spacing: .06em; color: var(--ink-3);
  display: grid; gap: 3px;
}
.side-chain b { color: var(--ink-2); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.side-chain .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); display: inline-block; margin-right: 6px; }

.top {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 14px; height: 58px; padding: 0 clamp(16px, 3vw, 34px);
  background: rgba(6, 14, 12, .55); backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.crumb { font: 500 12px/1 var(--mono); letter-spacing: .08em; color: var(--ink-3); text-transform: lowercase; }
.crumb i { font-style: normal; opacity: .5; margin: 0 6px; }
.crumb b { color: var(--ink); font-weight: 500; }
.top-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* the content column keeps its own gutter */
.col .wrap { width: min(var(--shell), 100% - clamp(32px, 6vw, 68px)); }
.col main { flex: 1; }

/* the landscape only reaches across the content column */
body.has-world .world { left: 236px; }

@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .side {
    width: 264px; transform: translateX(-100%);
    transition: transform var(--t) var(--ease-out);
    box-shadow: var(--e4);
  }
  body.menu-open .side { transform: none; }
  body.has-world .world { left: 0; }
  .top { padding-left: 14px; }
}
@media (min-width: 901px) { .top .burger { display: none; } }

/* The sidebar is fixed, so it is out of flow: the column is moved over by a
   margin rather than by a grid track that nothing occupies. */
.shell { display: block; }
.col { margin-left: 236px; min-height: 100vh; display: flex; flex-direction: column; }
@media (max-width: 900px) { .col { margin-left: 0; } }

#photo-desk textarea {
  width: 100%; resize: vertical; min-height: 104px;
  font: 400 13px/1.7 var(--mono); color: var(--ink);
  background: rgba(6, 14, 12, .6); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
}
#photo-desk textarea:focus { outline: none; border-color: var(--accent); background: rgba(6, 14, 12, .85); }
.desk-acts { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.desk-note { color: var(--ink-3); font-size: 12.5px; line-height: 1.6; }

.hero-note {
  color: rgba(245, 250, 248, .92);
  text-shadow: 0 1px 14px rgba(4, 12, 10, .85);
  border-left-color: rgba(198, 165, 98, .8);
}

/* A section head over the photograph needs its own ground, or it is read
   against whatever happens to be behind it. */
.works .section-head {
  background: linear-gradient(180deg, rgba(10, 21, 19, .88) 0%, rgba(8, 17, 15, .88) 100%);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--line); border-bottom: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 24px 26px 18px; margin-bottom: 0;
}
.works .works-lede {
  background: linear-gradient(180deg, rgba(8, 17, 15, .88) 0%, rgba(7, 15, 14, .9) 100%);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 0 26px 24px; margin: 0 0 26px; max-width: none;
  color: var(--ink-2); text-shadow: none;
}
.works .section-head h2, .works .section-head .eyebrow { text-shadow: none; }
.works .section-head .pill { background: rgba(6, 14, 12, .7); }

/* The cross section is a drawing, so it is on paper, inside the dark shell. */
.cut {
  background: linear-gradient(180deg, #eef5f7 0%, #e3eef1 100%);
  border-color: rgba(230, 244, 248, .22);
  backdrop-filter: none;
}
.cut figcaption {
  background: rgba(6, 26, 32, .06); border-top: 1px solid rgba(6, 46, 62, .12);
  color: #43606a;
}

.works-foot { color: rgba(245, 250, 248, .94); text-shadow: 0 1px 16px rgba(4, 12, 10, .9); }
.works-foot a { color: #9ad6ee; }

/* The pages that are not the landing still sit in the same valley: the
   photograph, thrown far out of focus and taken right down, so the tables read
   over it and the site is one place throughout. */
.col { position: relative; }
.col::before {
  content: ""; position: fixed; inset: 0; left: 236px; z-index: -3; pointer-events: none;
  background: url("media/source.jpg") center 34% / cover no-repeat;
  filter: blur(34px) saturate(.72) brightness(.3);
  transform: scale(1.1);
}
.col::after {
  content: ""; position: fixed; inset: 0; left: 236px; z-index: -3; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(6, 16, 14, .35) 0%, rgba(5, 13, 11, .86) 70%),
    linear-gradient(180deg, rgba(5, 13, 11, .5) 0%, rgba(4, 11, 10, .9) 100%);
}
body.has-world .col::before, body.has-world .col::after { display: none; }
@media (max-width: 900px) { .col::before, .col::after { left: 0; } }

/* coordinates, and the way out to look at them */
.coords {
  display: inline-flex; align-items: center; gap: 6px;
  font: 400 11.5px/1.4 var(--mono); letter-spacing: .02em; color: var(--ink-3);
  transition: color var(--t-fast) var(--ease);
}
.coords svg { opacity: .55; transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.coords:hover { color: var(--accent); }
.coords:hover svg { opacity: 1; transform: translate(1px, -1px); }
.coords.big { font-size: 13px; color: var(--ink-2); }
.whereis {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 12px; margin-top: 2px;
}
.whereis > span {
  font: 500 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}

/* The mark is the crest of a wall and what goes over it: two strokes, one
   colour, and nothing that stops working at 16 pixels. */
.brand { font-size: 21px; letter-spacing: -.03em; gap: 10px; }
/* The mark is a reserve seen from the side: a ring with a level in it. On
 * hover the level rises, which is the only thing it has to say. */
.brand .mark { flex: none; color: var(--accent); transition: color var(--t) var(--ease); }
.brand .mark .lvl { transition: transform var(--t-slow) var(--ease-out); }
.brand:hover .mark { color: #7fd0ea; }
.brand:hover .mark .lvl { transform: translateY(-4.4px); }
@media (prefers-reduced-motion: reduce) {
  .brand .mark .lvl { transition: none; }
  .brand:hover .mark .lvl { transform: none; }
}

/* the parts of a dam, marked on a photograph of one */
.cut { position: relative; background: #08110f; padding: 0; overflow: hidden; }
.cut-photo { display: block; width: 100%; height: auto; }

.mark-pt {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  z-index: 2; padding: 0; border: 0; background: none; cursor: help;
  font-family: var(--sans);
}
.mark-pt i {
  position: relative; z-index: 2;
  width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center;
  font-style: normal; font: 500 12px/1 var(--mono);
  color: #05171b; background: #eaf7fb;
  box-shadow: 0 0 0 4px rgba(6, 22, 26, .4), var(--e2);
  transition: transform var(--t) var(--ease-out), background var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease);
}
/* a ring goes out from each mark now and then, so they read as things to touch */
.mark-pt::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 27px; height: 27px;
  margin: -13.5px 0 0 -13.5px; border-radius: 50%;
  border: 1.5px solid rgba(234, 247, 251, .75);
  animation: ping 3.4s var(--ease-out) infinite;
  animation-delay: calc(var(--i, 0) * .5s);
  pointer-events: none;
}
@keyframes ping {
  0%   { transform: scale(1); opacity: .8; }
  55%  { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(2.5); opacity: 0; }
}
.mark-pt:hover i, .mark-pt:focus-visible i {
  transform: scale(1.14); background: #fff;
  box-shadow: 0 0 0 5px rgba(88, 167, 201, .45), var(--e3);
}
.mark-pt:hover::before, .mark-pt:focus-visible::before { animation: none; opacity: 0; }

.tip {
  position: absolute; top: 50%; left: calc(100% + 14px);
  width: min(280px, 60vw); transform: translateY(-50%) translateX(-8px) scale(.97);
  display: grid; gap: 6px; text-align: left;
  background: linear-gradient(180deg, rgba(9, 21, 24, .94), rgba(6, 15, 17, .96));
  backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(234, 247, 251, .22); border-radius: 12px;
  padding: 13px 15px; box-shadow: var(--e4);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity var(--t-fast) var(--ease), transform var(--t) var(--ease-out),
              visibility 0s linear var(--t);
}
.mark-pt[data-side="left"] .tip { left: auto; right: calc(100% + 14px); transform: translateY(-50%) translateX(8px) scale(.97); }
.tip b {
  font: 500 10.5px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}
.tip em { font-style: normal; color: #dfeae6; font-size: 12.8px; line-height: 1.55; }
/* the arrow that ties it to its mark */
.tip::after {
  content: ""; position: absolute; top: 50%; left: -5px; width: 9px; height: 9px;
  margin-top: -4.5px; transform: rotate(45deg);
  background: rgba(9, 21, 24, .94);
  border-left: 1px solid rgba(234, 247, 251, .22); border-bottom: 1px solid rgba(234, 247, 251, .22);
}
.mark-pt[data-side="left"] .tip::after {
  left: auto; right: -5px;
  border: 0; border-right: 1px solid rgba(234, 247, 251, .22); border-top: 1px solid rgba(234, 247, 251, .22);
}
.mark-pt:hover .tip, .mark-pt:focus-visible .tip {
  opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); transition-delay: 0s;
}

.cut figcaption {
  position: relative; background: rgba(5, 14, 12, .82); border-top: 1px solid var(--line);
  color: var(--ink-2); backdrop-filter: blur(10px);
}

@media (max-width: 760px) {
  .mark-pt i { width: 23px; height: 23px; font-size: 11px; }
  .tip { width: min(230px, 66vw); padding: 11px 13px; }
  .tip em { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .mark-pt::before { animation: none; opacity: 0; }
  .mark-pt i, .tip { transition: none; }
}

/* ---------------- the register's toolbar ---------------- */

.toolbar {
  gap: 14px; padding: 15px 20px;
  background: linear-gradient(180deg, rgba(10, 22, 20, .6), rgba(7, 16, 15, .4));
}
.toolbar .chips { gap: 7px; }
.toolbar .chip {
  position: relative; overflow: hidden;
  background: rgba(8, 18, 16, .55);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font: 600 13px/1 var(--sans); letter-spacing: -.01em;
  padding: 9px 15px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease);
}
/* the accent floods in from the left rather than switching on */
.toolbar .chip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, #67b6d6, #3f8cad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease-out);
}
.toolbar .chip > * { position: relative; }
.toolbar .chip:hover { color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
.toolbar .chip:active { transform: translateY(0) scale(.97); }
.toolbar .chip.on {
  color: #04181f; border-color: transparent; background: transparent;
  box-shadow: var(--glow);
}
.toolbar .chip.on::before { transform: scaleX(1); }

.toolbar input, .toolbar select {
  background: rgba(6, 14, 12, .6); color: var(--ink); border-color: var(--line-2);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease);
}
.toolbar input::placeholder { color: var(--ink-3); }
.toolbar input:focus, .toolbar select:focus {
  outline: none; border-color: var(--accent); background: rgba(6, 14, 12, .9);
  box-shadow: 0 0 0 3px rgba(88, 167, 201, .18);
}
.toolbar label { color: var(--ink-3); }

/* rows arrive in order when the filter changes, so the table reads as moving */
.tbl tbody tr.dealt { animation: deal .42s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 26ms); }
@keyframes deal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .toolbar .chip, .toolbar .chip::before { transition: none; }
  .tbl tbody tr.dealt { animation: none; }
}

.brand .mark { color: #67c0e2; }
.brand:hover .mark { color: #8fd8f2; }

/* the numbers on the step cards were barely there */
.step .n {
  width: 27px; height: 27px; font: 500 12.5px/1 var(--mono);
  background: linear-gradient(180deg, #67b6d6, #3f8cad); color: #04181f;
  box-shadow: 0 6px 18px -8px rgba(88, 167, 201, .8);
}
.step h3 { color: var(--ink); font-size: 15.5px; }
.step p { color: rgba(234, 242, 238, .78); font-size: 13.2px; }
.step { padding: 20px 20px 22px; }

/* the photograph itself, at full quality, over the top of the tall frame */
.world-photo {
  position: absolute; top: 0; left: 50%;
  width: max(100vw, calc(100svh * 1.7778)); height: auto; max-width: none;
  transform: translate3d(-50%, 0, 0);
  will-change: transform, opacity;
  transition: opacity .25s linear;
}

/* one chip everywhere: the launcher's networks and the register's classes */
.chips .chip {
  position: relative; overflow: hidden; z-index: 0;
  background: rgba(8, 18, 16, .55);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font: 600 13px/1 var(--sans); letter-spacing: -.01em; padding: 9px 15px;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease);
}
.chips .chip::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, #67b6d6, #3f8cad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease-out);
}
.chips .chip:hover { color: var(--ink); border-color: var(--accent); transform: translateY(-1px); }
.chips .chip:active { transform: translateY(0) scale(.97); }
.chips .chip .dot { background: var(--ink-3); }
.chips .chip small { color: var(--ink-3); }
.chips .chip.on {
  color: #04181f; border-color: transparent; background: transparent; box-shadow: var(--glow);
}
.chips .chip.on::before { transform: scaleX(1); }
.chips .chip.on .dot { background: #04181f; }
.chips .chip.on small { color: rgba(4, 24, 31, .68); }

/* The disclaimer is information, not an alarm: it reads in the water blue the
   rest of the site uses, not in amber. */
.disclaimer {
  border-color: rgba(88, 167, 201, .32); border-left-color: var(--accent);
  background: linear-gradient(180deg, rgba(88, 167, 201, .07), rgba(10, 21, 19, .6));
}
.disclaimer h4 { color: var(--accent); }
.hero-note { border-left-color: rgba(88, 167, 201, .8); }

/* the page's tag was still white from the light theme */
.tag {
  background: rgba(88, 167, 201, .14);
  border-color: rgba(88, 167, 201, .45);
  color: #a8dcf0;
  font-weight: 600;
}
.tag .dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(88, 167, 201, .22); }

.chain-fine { font-size: 12px; color: var(--ink-3); }
.chain-fine a { color: var(--accent); }
.chain-fine a:hover { color: #9ad6ee; }

/* nothing to launch against here, said before the form is filled in */
.lp-blocked {
  display: grid; gap: 10px; padding: 18px 20px; border-radius: var(--r);
  border: 1px solid rgba(88, 167, 201, .35); border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(88, 167, 201, .08), rgba(10, 21, 19, .6));
}
.lp-blocked b { font-size: 14.5px; }
.lp-blocked span { color: var(--ink-2); font-size: 13px; line-height: 1.6; }
.lp-blocked-acts { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 2px; }

/* A column of text keeps the page's left edge: it is narrower than the shell,
   not centred inside it, so the title, the lede and every heading under them
   start on the same line. */
.prose { max-width: 74ch; margin-inline: 0; }
.page-head .lede { max-width: 74ch; }

/* Networks panel in the docs: the facts a wallet needs, side by side. */
.net-facts { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin: 18px 0 14px; }
.net-facts > div {
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: var(--e1); transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.net-facts > div:hover { border-color: rgba(88,167,201,.42); box-shadow: var(--e2); }
.net-facts h4 { font: 600 14px/1.2 var(--display); margin: 0 0 12px; letter-spacing: .01em; }
.net-facts dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 0 0 14px; }
.net-facts dt { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); align-self: center; }
.net-facts dd { margin: 0; font-size: 12.5px; color: var(--ink-2); overflow-wrap: anywhere; }
.net-facts dd.mono, .net-facts .mono { font-family: var(--mono); }
.net-facts a { color: var(--accent); }
.net-facts a:hover { color: #9ad6ee; }

/* The network pill says what it is, not just which chain it is on. */
.net-lbl {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.net-off {
  font-size: 11px; color: var(--ink-3);
  padding-left: 7px; margin-left: 1px; border-left: 1px solid var(--line);
}
@media (max-width: 720px) { .net-lbl, .net-off { display: none; } }
.no-pair { color: var(--ink-3); font-family: var(--mono); cursor: default; }
.readout {
  margin: 14px 0 6px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(0,0,0,.28); color: var(--ink-2);
  font: 400 12px/1.7 var(--mono); white-space: pre-wrap; overflow-wrap: anywhere;
}

/* One reserve in the sidebar, where there was nothing. A real photograph of a
   real place, the level it is at, and where to go and look at it. */
/* The sidebar is a flex column, so without this the card is the thing that
   gets squashed when the viewport is short: the photograph loses its aspect
   ratio and the text rides up over it. */
.side-feature { margin-top: 4px; flex: none; }
.sf-card {
  display: block; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--e1); color: inherit;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease),
              transform var(--t) var(--ease-out);
}
.sf-card:hover {
  border-color: rgba(88,167,201,.45); box-shadow: var(--e2); transform: translateY(-2px);
}
.sf-art { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0d1a18; }
.sf-art img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.sf-card:hover .sf-art img { transform: scale(1.06); }
.sf-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,12,11,0) 45%, rgba(5,12,11,.85));
}
.sf-body { display: grid; gap: 6px; padding: 10px 12px 12px; }
.sf-body b { font: 500 13px/1.25 var(--display); color: var(--ink); }
.sf-body small { font: 400 10.5px/1.4 var(--mono); color: var(--ink-3); letter-spacing: .04em; }
.sf-bar { display: block; height: 3px; border-radius: 2px; background: rgba(255,255,255,.12); overflow: hidden; }
.sf-bar i {
  display: block; height: 100%; border-radius: 2px; background: var(--accent);
  transition: width var(--t-slow) var(--ease-out);
}
.sf-fig { display: flex; justify-content: space-between; gap: 8px; }
.sf-fig span:first-child { flex: none; white-space: nowrap; color: var(--ink-2); }
.sf-fig span:last-child {
  min-width: 0; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .sf-card, .sf-art img, .sf-bar i { transition: none; }
  .sf-card:hover { transform: none; }
  .sf-card:hover .sf-art img { transform: none; }
}
/* On a short viewport the photograph goes first and the launches after it: the
   nav matters more than either. The rules that do it sit with .side-launches. */

/* The card works through the register; the swap is a fade, never a jump. */
.sf-card { opacity: 1; transition: opacity .26s var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease-out); }
.sf-card.is-out { opacity: 0; }

/* A stranded network is one tap from a working one. */
.side-switch {
  display: inline-flex; align-items: center; gap: 6px; width: 100%;
  margin-top: 2px; padding: 7px 10px; border-radius: 8px; cursor: pointer;
  border: 1px solid rgba(88,167,201,.42); background: rgba(88,167,201,.14);
  color: #cfeaf6; font: 500 11px/1 var(--mono); letter-spacing: .04em;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.side-switch:hover { background: rgba(88,167,201,.24); border-color: rgba(88,167,201,.7); }
.side-switch svg { flex: none; }
.side-switch:disabled { opacity: .6; cursor: default; }
/* The way out of a network Hydropad is not on, beside the pill that says so. */
.net-fix {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 8px 13px; border-radius: 999px; white-space: nowrap;
  border: 1px solid rgba(88,167,201,.5); background: rgba(88,167,201,.16);
  color: #cfeaf6; font: 500 11.5px/1 var(--mono); letter-spacing: .03em;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.net-fix:hover { background: rgba(88,167,201,.28); border-color: rgba(88,167,201,.8); }
.net-fix:disabled { opacity: .6; cursor: default; }
@media (max-width: 720px) { .net-fix { padding: 8px 10px; font-size: 0; gap: 0; } }

/* On a network that works, the pill is a badge and it says so loudly: this is
   the one piece of chrome that tells you the site is live. */
.net .pill.ok {
  border-color: rgba(99, 196, 156, .55);
  background: linear-gradient(180deg, rgba(99, 196, 156, .22), rgba(99, 196, 156, .13));
  color: #d8f6e8;
  box-shadow: 0 0 0 1px rgba(99, 196, 156, .1), 0 6px 18px -10px rgba(99, 196, 156, .6);
}
.net .pill.ok .net-lbl { color: rgba(216, 246, 232, .62); }
.net .pill.ok .net-name { color: #eafff5; font-weight: 500; }
.net .pill.ok .dot {
  background: #5fe0a8;
  box-shadow: 0 0 0 3px rgba(95, 224, 168, .18);
  animation: netlive 2.6s var(--ease) infinite;
}
@keyframes netlive {
  0%, 100% { box-shadow: 0 0 0 3px rgba(95, 224, 168, .18); }
  50%      { box-shadow: 0 0 0 5px rgba(95, 224, 168, .05); }
}
@media (prefers-reduced-motion: reduce) { .net .pill.ok .dot { animation: none; } }

/* The connect button wears a wallet, so it reads as one before it is read. */
.w-btn { display: inline-flex; align-items: center; gap: 7px; }
.w-glyph { flex: none; opacity: .85; }
.pill .w-glyph { opacity: .7; }

/* Which wallet, when the browser holds more than one. */
.wallet-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 60; min-width: 216px;
  display: grid; gap: 2px; padding: 8px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: rgba(9, 19, 17, .97); backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: var(--e4, 0 24px 60px -30px rgba(0,0,0,.9));
}
.wm-head {
  margin: 2px 6px 6px; font: 500 10px/1 var(--mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.wm-row {
  display: flex; align-items: center; gap: 10px; width: 100%; cursor: pointer;
  padding: 9px 10px; border: 0; border-radius: 8px; background: transparent;
  color: var(--ink-2); font: 400 13px/1 var(--sans); text-align: left;
  transition: background var(--t-fast, .15s) var(--ease), color var(--t-fast, .15s) var(--ease);
}
.wm-row:hover { background: rgba(88, 167, 201, .16); color: var(--ink); }
.wm-row img { border-radius: 5px; flex: none; }
.wm-dot { width: 18px; height: 18px; border-radius: 5px; background: rgba(196,226,214,.18); flex: none; }

/* Latest launches, under the reserve card. The tables are the record; this is
   the pulse, on every page. */
.side-launches { flex: none; display: grid; gap: 2px; }
.sl-head {
  margin: 2px 0 6px; padding: 0 10px;
  font: 500 10px/1 var(--mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.sl-row {
  display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 9px;
  color: inherit; transition: background var(--t) var(--ease);
}
.sl-row:hover { background: rgba(196, 226, 214, .07); }
.sl-art { width: 26px; height: 26px; border-radius: 7px; overflow: hidden; flex: none; background: #0d1a18; }
.sl-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sl-art svg { width: 100%; height: 100%; display: block; }
.sl-who { flex: 1; min-width: 0; display: grid; }
.sl-who b { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.sl-who small {
  font: 400 10.5px/1.3 var(--mono); color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sl-fig { flex: none; font: 400 11px/1 var(--mono); color: var(--ink-3); }
.sl-empty { padding: 0 10px; font-size: 11.5px; line-height: 1.5; color: var(--ink-3); }
.sl-cta { display: block; color: var(--accent); }
.sl-cta:hover { color: #9ad6ee; }
.sl-all {
  margin-top: 4px; padding: 0 10px;
  font: 400 11px/1 var(--mono); color: var(--ink-3);
}
.sl-all:hover { color: var(--accent); }
@media (max-height: 880px) { .side-feature { display: none; } }
@media (max-height: 680px) { .side-launches { display: none; } }
