/* Sugary — design system
   Two-color discipline after sharplink.com: off-white ground, near-black ink,
   one electric-blue accent. Red is reserved for the over-limit state only. */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/space-mono-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-mono-latin-700.woff2') format('woff2');
}

:root {
  --surface: #F3F3F3;
  --card: #FFFFFF;
  --ink: #101113;
  --ink-secondary: #43464B;
  --ink-muted: #71757C;
  --hairline: #DCDDDF;
  --hairline-strong: #C9CBCE;
  --accent: #0E76FF;
  --accent-ink: #0A5ACC;      /* accent dark enough for text on white */
  --accent-tint: #EAF2FF;
  --accent-track: #CFE2FF;
  --danger: #D92D20;          /* reserved: over the daily limit only */
  --danger-tint: #FDECEA;
  --dark: #0B0C0E;
  --dark-ink: #F3F3F3;
  --pad: clamp(16px, 4vw, 56px);
  --sans: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Space Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
  color-scheme: only light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 var(--pad);
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}

.nav-brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-brand-mark { font-size: 10px; vertical-align: super; }

.nav-meta { color: var(--ink-muted); }

.nav-chip {
  color: var(--accent-ink);
  border: 1px solid var(--accent-track);
  background: var(--accent-tint);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .nav-meta { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 9vw, 120px) var(--pad) clamp(32px, 6vw, 72px);
  border-bottom: 1px solid var(--hairline);
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: 0 0;
  overflow: hidden;
}

.hero-line { animation: hero-rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero-line-accent { animation-delay: 90ms; }
.kicker, .hero-foot { animation: hero-fade 900ms ease both 250ms; }

@keyframes hero-rise {
  from { transform: translateY(0.35em); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Rotating 4 g sugar cube — the hero's 3D object. */

/* Built at 2x and scaled down so the face label rasterizes crisply. */
.cube3d-scene {
  position: absolute;
  top: clamp(60px, 10vw, 130px);
  right: clamp(24px, 8vw, 140px);
  width: 300px;
  height: 300px;
  perspective: 1600px;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top right;
}

.cube3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  /* A sway, not a full spin: the lit front face keeps facing the key
     light upper-left, so the hero never contradicts the page's lighting. */
  animation: cube-spin 9s ease-in-out infinite alternate;
}

.cube3d-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(16, 17, 19, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  background-image:
    radial-gradient(rgba(101, 105, 112, 0.08) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.65px),
    linear-gradient(135deg, #FFFFFF 0%, #F2F3F5 48%, #E7E9EC 100%);
  background-size: 8.6px 11.3px, 12.4px 7.7px, 100% 100%;
  background-position: 0 0, 4px 3px, 0 0;
}

.f-front, .f-back {
  background-image:
    linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.25) 50%, transparent 54%),
    radial-gradient(rgba(101, 105, 112, 0.08) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.65px),
    linear-gradient(135deg, #FFFFFF 0%, #F2F3F5 48%, #E7E9EC 100%);
  background-size: 100% 100%, 8.6px 11.3px, 12.4px 7.7px, 100% 100%;
  background-position: 0 0, 0 0, 4px 3px, 0 0;
}

.f-front  { transform: translateZ(150px); }
.f-back   { transform: rotateY(180deg) translateZ(150px); }
.f-right, .f-left {
  background-image:
    radial-gradient(rgba(101, 105, 112, 0.08) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.65px),
    linear-gradient(180deg, #E2E4E8 0%, #D6D9DD 100%);
  background-size: 8.6px 11.3px, 12.4px 7.7px, 100% 100%;
}
.f-right  { transform: rotateY(90deg) translateZ(150px); }
.f-left   { transform: rotateY(-90deg) translateZ(150px); }
.f-top {
  transform: rotateX(90deg) translateZ(150px);
  background-image: linear-gradient(135deg, #FFFFFF 0%, #F6F7F9 100%);
  background-size: 100% 100%;
}
.f-bottom {
  transform: rotateX(-90deg) translateZ(150px);
  background-image: none;
  background-color: #D8DADD;
}

.cube3d-shadow {
  position: absolute;
  left: 4%;
  right: -4%;
  bottom: -100px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(16, 17, 19, 0.18) 0%, rgba(16, 17, 19, 0.10) 40%, rgba(16, 17, 19, 0) 72%);
  filter: blur(14px);
}

.cube3d-shadow::after {
  content: '';
  position: absolute;
  left: 22%;
  right: 12%;
  top: 30%;
  bottom: 30%;
  border-radius: 50%;
  background: rgba(16, 17, 19, 0.14);
  filter: blur(8px);
}

@keyframes cube-spin {
  from { transform: rotateX(-20deg) rotateY(-44deg); }
  to { transform: rotateX(-20deg) rotateY(10deg); }
}

@media (max-width: 1080px) {
  .cube3d-scene { display: none; }
}

/* Scroll reveals (classes applied by JS; no-JS pages render fully). */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in { opacity: 1; transform: none; }

.kicker { color: var(--accent-ink); margin-bottom: clamp(16px, 3vw, 32px); }

.hero-title {
  font-size: clamp(52px, 13.5vw, 176px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-line { display: block; }

.hero-line-accent { color: var(--accent); }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  margin-top: clamp(28px, 5vw, 56px);
}

.hero-sub {
  max-width: 46ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-secondary);
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
}

.hero-stat dt { color: var(--ink-muted); margin-bottom: 6px; }

.hero-stat dd {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background: var(--dark);
  color: var(--dark-ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 60s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-g { color: var(--accent); }

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  flex: none;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(40px, 7vw, 88px) var(--pad);
  border-bottom: 1px solid var(--hairline);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 20px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-index {
  color: var(--accent-ink);
  border: 1px solid var(--hairline-strong);
  padding: 4px 8px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-right: auto;
}

.section-note { color: var(--ink-muted); }

.section-actions { display: flex; gap: 10px; }

.ghost-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--hairline-strong);
  background: var(--card);
  border-radius: 999px;
  color: var(--ink-secondary);
  transition: border-color 120ms ease, color 120ms ease;
}

.ghost-btn:hover { border-color: var(--ink); color: var(--ink); }

.ghost-btn[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--dark-ink);
}

/* ---------- Filters ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.filter-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--hairline-strong);
  background: var(--card);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-secondary);
  transition: border-color 120ms ease, color 120ms ease;
}

.filter-btn:hover { border-color: var(--ink); color: var(--ink); }

.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--dark-ink);
}

/* ---------- Product grid ---------- */

.product-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}

.product-card {
  width: 100%;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  transition: border-color 120ms ease, background-color 120ms ease;
}

.product-card:hover { border-color: var(--ink); }

.product-card[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.card-name { font-weight: 700; font-size: 16px; line-height: 1.25; letter-spacing: -0.01em; }

.card-check {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  position: relative;
}

.product-card[aria-pressed="true"] .card-check {
  border-color: var(--accent);
  background: var(--accent);
}

.product-card[aria-pressed="true"] .card-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.card-serving { color: var(--ink-muted); font-size: 13px; }

.card-grams {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-secondary);
  white-space: nowrap;
}

.product-card[aria-pressed="true"] .card-grams { color: var(--accent-ink); }

@media (max-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card { min-height: 0; padding: 12px; gap: 10px; }
  .card-name { font-size: 14px; }
  .card-bottom { flex-direction: column; align-items: flex-start; gap: 2px; }
  .card-serving { font-size: 12px; }
  .card-grams { font-size: 12px; }
}

/* ---------- Totals ---------- */

.stage {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 560px);
  gap: 10px;
  margin-bottom: 10px;
}

.totals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
}

@media (max-width: 960px) {
  .stage { grid-template-columns: 1fr; }
}

.glass-cell { display: flex; flex-direction: column; }

#glass-canvas {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: auto;
  touch-action: pan-y;
  cursor: grab;
}

#glass-canvas:active { cursor: grabbing; }

.glass-hint {
  color: var(--ink-muted);
  text-align: center;
  margin-top: 8px;
}

.totals-cell {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 32px);
}

.totals-label { color: var(--ink-muted); margin-bottom: 10px; }

.totals-hero {
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.totals-hero small {
  font-size: 0.38em;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0;
  margin-left: 4px;
}

.totals-sub { color: var(--ink-secondary); margin-top: 12px; font-size: 14px; }

.meter-block { margin-top: 18px; }

.meter-block + .meter-block { margin-top: 22px; }

.meter-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.meter-title { color: var(--ink-muted); }

.meter-value {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-secondary);
  white-space: nowrap;
}

.meter-value.over { color: var(--danger); font-weight: 700; }

.meter {
  height: 12px;
  border-radius: 6px;
  background: var(--accent-track);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 6px 0 0 6px;
  background: var(--accent);
  transition: width 300ms ease;
}

.meter.over { background: #F3C8C4; }
.meter.over .meter-fill { background: var(--danger); }

/* ---------- Skyline: one isometric cube tower per product ---------- */

.skyline-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 10px;
}

.skyline-title { color: var(--ink-muted); margin-bottom: 8px; }

.skyline {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.skyline-lines {
  position: absolute;
  inset: 0;
  min-width: 100%;
  pointer-events: none;
}

.guide {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid var(--accent);
}

.guide-upper { border-top-color: var(--ink-muted); }

.guide-label {
  position: absolute;
  right: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--card);
  padding: 1px 0 1px 8px;
}

.guide-label-upper { color: var(--ink-muted); }

.skyline-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 3.5vw, 44px);
  width: max-content;
  min-width: 100%;
  padding: 26px 4px 0;
}

.tower {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
}

.tower svg { display: block; }

.tower-meta {
  height: 62px;
  padding-top: 10px;
  text-align: center;
  width: 108px;
}

.tower-g {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-ink);
}

.tower-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-secondary);
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cube-iso { animation: cube-drop 420ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards; }

/* Drops hold until their section scrolls into view (.in via the reveal
   observer), so the stagger plays for the viewer, not at page load. */
.reveal:not(.in) .cube-iso,
.reveal:not(.in) .cube {
  animation-play-state: paused;
}

@keyframes cube-drop {
  from { transform: translateY(-16px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* ---------- Table view ---------- */

.table-wrap {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(12px, 2vw, 20px);
  margin-bottom: 10px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.data-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: left;
  font-weight: 400;
  padding: 10px 12px;
  border-bottom: 1px solid var(--hairline-strong);
}

.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--hairline);
  font-variant-numeric: tabular-nums;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table .num { text-align: right; font-family: var(--mono); font-size: 13px; }

.data-table th.num { text-align: right; }

/* ---------- Product panels ---------- */

.panels {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }

.panel-name { font-weight: 700; font-size: 18px; line-height: 1.25; letter-spacing: -0.01em; }

.panel-serving { color: var(--ink-muted); font-size: 13px; margin-top: 3px; }

.panel-remove {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  color: var(--ink-muted);
  transition: border-color 120ms ease, color 120ms ease;
}

.panel-remove:hover { border-color: var(--danger); color: var(--danger); }

.panel-remove svg { display: block; }

.panel-figure { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }

.panel-grams {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.panel-grams small {
  font-size: 0.42em;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0;
}

.panel-tsp { font-family: var(--mono); font-size: 12px; color: var(--ink-muted); }

.cube-well {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 14px;
}

.cube-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cube {
  width: 16px;
  height: 16px;
  flex: none;
  background-image:
    radial-gradient(rgba(101, 105, 112, 0.07) 0.5px, transparent 0.6px),
    linear-gradient(135deg, #FFFFFF 0%, #FBFBFC 50%, #ECEDEF 100%);
  background-size: 5px 6px, 100% 100%;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 3.5px;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -1.5px -1.5px 0 rgba(16, 17, 19, 0.06),
    1.5px 2px 2.5px rgba(16, 17, 19, 0.09);
  animation: cube-drop 320ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.cube-partial {
  position: relative;
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}

.cube-partial::after {
  content: '';
  position: absolute;
  inset: -1px;
  width: calc(var(--frac) * 100%);
  background-image: linear-gradient(135deg, #FFFFFF 0%, #FBFBFC 50%, #ECEDEF 100%);
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 3.5px 0 0 3.5px;
}

.cube-caption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Empty state ---------- */

.empty-state {
  border: 1px dashed var(--hairline-strong);
  border-radius: 10px;
  background: var(--card);
  padding: clamp(40px, 7vw, 80px) var(--pad);
  text-align: center;
}

.empty-title { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; }

.empty-sub { color: var(--ink-muted); margin-top: 8px; }

/* ---------- Context ---------- */

.context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.context-cell {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 28px);
}

.context-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.context-label {
  color: var(--accent-ink);
  margin: 8px 0 10px;
}

.context-body { color: var(--ink-secondary); font-size: 14px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--dark);
  color: var(--dark-ink);
  padding: clamp(40px, 6vw, 72px) var(--pad) clamp(24px, 4vw, 40px);
  overflow: hidden;
}

.footer-word {
  font-size: clamp(72px, 18vw, 260px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #3A3D42;
  user-select: none;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 48px;
  border-top: 1px solid #26282C;
  padding-top: 24px;
}

.footer-note { max-width: 52ch; color: #9DA1A8; font-size: 14px; }

.footer-meta { display: flex; flex-wrap: wrap; gap: 16px 40px; }

.footer-meta dt { color: #71757C; margin-bottom: 4px; }

.footer-meta dd { color: var(--dark-ink); }
