/* ══════════════════════════════════════════════════════════════
   COUNTER · Design tokens
   A hospitality-payments design language.
   Paper and void, one electric accent, pill geometry.
   ══════════════════════════════════════════════════════════════ */
:root {
  /* Ink — light context */
  --ink-1: oklch(16% 0 0);
  --ink-2: oklch(42% 0 0);
  --ink-3: oklch(58% 0 0);
  --ink-4: oklch(74% 0 0);
  --ink-inv: #ffffff;

  /* Surfaces */
  --paper:   #ffffff;
  --paper-2: oklch(96.5% 0 0);
  --paper-3: oklch(93% 0 0);
  --void:    oklch(14% 0 0);
  --void-2:  oklch(19% 0 0);
  --void-3:  oklch(25% 0 0);

  /* Lines */
  --line:      oklch(16% 0 0 / .12);
  --line-soft: oklch(16% 0 0 / .07);
  --line-firm: oklch(16% 0 0 / .28);

  /* Accent */
  --flare:      oklch(68% .30 330);
  --flare-deep: oklch(56% .28 328);
  --flare-wash: oklch(68% .30 330 / .12);
  --halo:       oklch(72% .22 300);

  /* Semantic */
  --positive: oklch(58% .14 152);
  --warn:     oklch(72% .15 75);
  --negative: oklch(56% .19 25);
  --positive-ink: oklch(45% .13 152);
  --warn-ink: oklch(50% .12 75);
  --negative-ink: oklch(52% .18 25);
  --flare-ink: var(--flare-deep);

  /* Radius */
  --r-pill:  999px;
  --r-media: 24px;
  --r-card:  20px;
  --r-inner: 14px;
  --r-input: 10px;
  --r-chip:  8px;

  /* Elevation */
  --e-1: 0 1px 2px oklch(16% 0 0 / .06);
  --e-2: 0 8px 24px oklch(16% 0 0 / .08);
  --e-3: 0 24px 64px oklch(16% 0 0 / .14);
  --ring: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink-1);

  /* Motion */
  --ease-out:  cubic-bezier(.22,.61,.36,1);
  --ease-in:   cubic-bezier(.55,.06,.68,.19);
  --ease-emph: cubic-bezier(.16,1,.3,1);

  /* Type */
  --t-sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --t-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ── Inversion: token re-point, never a second component set ── */
.invert {
  --ink-1: #ffffff;
  --ink-2: oklch(100% 0 0 / .66);
  --ink-3: oklch(100% 0 0 / .48);
  --ink-4: oklch(100% 0 0 / .30);
  --ink-inv: oklch(14% 0 0);
  --paper:   oklch(14% 0 0);
  --paper-2: oklch(19% 0 0);
  --paper-3: oklch(25% 0 0);
  --line:      oklch(100% 0 0 / .16);
  --line-soft: oklch(100% 0 0 / .09);
  --line-firm: oklch(100% 0 0 / .38);
  --e-1: none;
  --e-2: 0 8px 24px oklch(0% 0 0 / .5);
  --e-3: 0 24px 64px oklch(0% 0 0 / .6);
  --ring: 0 0 0 2px var(--paper), 0 0 0 4px #ffffff;
  background: var(--void);
  color: var(--ink-1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--t-sans);
  background: var(--paper);
  color: var(--ink-1);
  font-size: 18.4px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--ink-1); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--ink-1); }
button, input, select, textarea { font: inherit; letter-spacing: inherit; color: inherit; }
svg { flex: none; }

/* ══════════════════════════════════════════════════════════════
   Layout
   ══════════════════════════════════════════════════════════════ */
.page { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.band { padding: 96px 0; border-top: 1px solid var(--line-soft); }
.band:first-of-type { border-top: 0; }
.eyebrow {
  font-size: 13.8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; color: var(--ink-3); margin: 0;
}
.mono { font-family: var(--t-mono); font-size: 15px; letter-spacing: .02em; }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 48px; align-items: end;
  padding-bottom: 20px; margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-size: 50.6px; line-height: 1.08; font-weight: 500;
  letter-spacing: -0.03em; margin: 8px 0 0; text-wrap: balance;
}
.section-head p {
  margin: 0; color: var(--ink-2); font-size: 19.5px; line-height: 1.5;
  max-width: 52ch; align-self: end;
}
.sub {
  font-size: 13.8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-3);
  margin: 0 0 16px;
}

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row.g24 { gap: 24px; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.stack.g8 { gap: 8px; }
.stack.g32 { gap: 32px; }

/* Demo frame — the container every specimen sits in */
.frame {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 28px;
}
.frame.plain { background: var(--paper); }
.frame-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  font-size: 13.8px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-3);
  margin-bottom: 20px;
}
.frame-head span { font-family: var(--t-mono); letter-spacing: .04em; text-transform: none; }
.note {
  font-family: var(--t-mono); font-size: 13.8px; line-height: 1.6;
  color: var(--ink-3); margin: 12px 0 0;
}

/* ══════════════════════════════════════════════════════════════
   Masthead
   ══════════════════════════════════════════════════════════════ */
.masthead { padding: 64px 0 88px; }
.mark { display: inline-flex; align-items: center; gap: 10px; }
.mark-glyph {
  width: 26px; height: 26px; border-radius: 999px;
  background: radial-gradient(70% 70% at 30% 25%, var(--halo), var(--flare) 55%, var(--flare-deep));
}
.mark-word { font-size: 24.2px; font-weight: 600; letter-spacing: -0.03em; }
.masthead h1 {
  font-size: clamp(60px, 8.2vw, 120px);
  line-height: .96; font-weight: 500; letter-spacing: -0.04em;
  margin: 40px 0 24px; max-width: 22ch; text-wrap: balance;
}
.masthead h1 em { font-style: normal; color: var(--flare); }
.masthead .lede {
  font-size: 23px; line-height: 1.5; color: var(--ink-2);
  max-width: 58ch; margin: 0;
}
.meta {
  display: flex; flex-wrap: wrap; gap: 8px 32px; margin-top: 48px;
  font-family: var(--t-mono); font-size: 15px; color: var(--ink-3);
}
.meta b { color: var(--ink-1); font-weight: 500; }

/* Index */
.index {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px; margin-top: 56px;
  border-top: 1px solid var(--line);
}
.index a {
  display: flex; gap: 14px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 17.3px; color: var(--ink-2); text-decoration: none;
  transition: color .18s var(--ease-out), padding-left .18s var(--ease-out);
}
.index a b { font-family: var(--t-mono); font-size: 13.8px; color: var(--ink-4); font-weight: 400; }
.index a:hover { color: var(--ink-1); padding-left: 6px; }

/* ══════════════════════════════════════════════════════════════
   01 · SURFACES
   ══════════════════════════════════════════════════════════════ */
.surface-card {
  border-radius: var(--r-media); overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 260px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.surface-card h4 { margin: 0; font-size: 25.3px; font-weight: 500; letter-spacing: -0.02em; }
.surface-card p { margin: 6px 0 0; font-size: 16.1px; line-height: 1.5; opacity: .72; }
.s-paper { background: var(--paper); color: var(--ink-1); box-shadow: var(--e-1); }
.s-mute  { background: oklch(96.5% 0 0); color: var(--ink-1); }
.s-void  { background: oklch(14% 0 0); color: #fff; border-color: oklch(100% 0 0 / .12); }
.s-flare {
  background:
    radial-gradient(120% 100% at 10% 100%, oklch(72% .22 300) 0%, transparent 60%),
    radial-gradient(100% 100% at 90% 0%, oklch(74% .28 340) 0%, transparent 55%),
    oklch(60% .27 328);
  color: #fff; border-color: transparent;
}
.surface-card .tag {
  font-family: var(--t-mono); font-size: 12.6px; letter-spacing: .08em;
  text-transform: uppercase; opacity: .7;
}

/* ══════════════════════════════════════════════════════════════
   02 · COLOR
   ══════════════════════════════════════════════════════════════ */
.sw { border-radius: var(--r-inner); overflow: hidden; border: 1px solid var(--line-soft); }
.sw-chip { height: 92px; }
.sw-body { padding: 12px 14px; background: var(--paper); }
.sw-body b { display: block; font-size: 16.1px; font-weight: 500; }
.sw-body span { font-family: var(--t-mono); font-size: 13.2px; color: var(--ink-3); }

.ramp { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-radius: var(--r-inner); overflow: hidden; }
.ramp div {
  padding: 22px 14px 16px; min-height: 108px;
  display: flex; flex-direction: column; justify-content: flex-end;
  font-family: var(--t-mono); font-size: 13.2px; line-height: 1.5;
}
.ramp div b { font-family: var(--t-sans); font-size: 15px; font-weight: 600; letter-spacing: .02em; }

.semantic { display: flex; flex-direction: column; gap: 10px; }
.semantic-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; background: var(--paper); border-radius: var(--r-input);
  border: 1px solid var(--line-soft); font-size: 16.1px;
}
.semantic-row i { width: 12px; height: 12px; border-radius: 999px; }
.semantic-row .mono { margin-left: auto; color: var(--ink-3); font-size: 13.2px; }

/* ══════════════════════════════════════════════════════════════
   03 · TYPE
   ══════════════════════════════════════════════════════════════ */
.type-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--line-soft);
}
.type-row:last-child { border-bottom: 0; }
.type-row .specs { font-family: var(--t-mono); font-size: 13.2px; color: var(--ink-3); line-height: 1.7; }
.t-display { font-size: 110.4px; line-height: .95; font-weight: 500; letter-spacing: -0.04em; }
.t-h1 { font-size: 73.6px; line-height: 1.02; font-weight: 500; letter-spacing: -0.035em; }
.t-h2 { font-size: 50.6px; line-height: 1.08; font-weight: 500; letter-spacing: -0.03em; }
.t-h3 { font-size: 34.5px; line-height: 1.2; font-weight: 500; letter-spacing: -0.022em; }
.t-h4 { font-size: 25.3px; line-height: 1.3; font-weight: 500; letter-spacing: -0.018em; }
.t-lede { font-size: 21.8px; line-height: 1.52; font-weight: 400; color: var(--ink-2); }
.t-body { font-size: 18.4px; line-height: 1.55; font-weight: 400; }
.t-label { font-size: 16.1px; line-height: 1.4; font-weight: 500; }
.t-caption { font-size: 15px; line-height: 1.45; color: var(--ink-3); }
.t-eyebrow { font-size: 13.8px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.t-mono { font-family: var(--t-mono); font-size: 15px; letter-spacing: .02em; }

/* ══════════════════════════════════════════════════════════════
   04 · GEOMETRY
   ══════════════════════════════════════════════════════════════ */
.scale { display: flex; align-items: flex-end; gap: 12px; height: 140px; overflow-x: auto; padding-bottom: 2px; }
.scale-item { flex: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scale-bar { width: 26px; background: var(--ink-1); border-radius: 3px; }
.scale-item span { font-family: var(--t-mono); font-size: 12.6px; color: var(--ink-3); }

.radii { display: flex; flex-wrap: wrap; gap: 16px; }
.radii div {
  width: 84px; height: 84px; background: var(--paper);
  border: 1px solid var(--line-firm);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
  font-family: var(--t-mono); font-size: 12.6px; color: var(--ink-3);
}

.elev { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.elev div {
  background: var(--paper); border-radius: var(--r-card);
  height: 96px; display: flex; align-items: center; justify-content: center;
  font-family: var(--t-mono); font-size: 13.2px; color: var(--ink-3);
}

/* ══════════════════════════════════════════════════════════════
   05 · BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  --btn-h: 44px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--btn-h); padding: 0 22px;
  border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: 17.3px; font-weight: 500; letter-spacing: -0.008em;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background .18s var(--ease-out), color .18s var(--ease-out),
              border-color .18s var(--ease-out), transform .12s var(--ease-out),
              box-shadow .18s var(--ease-out), opacity .18s var(--ease-out);
}
.btn:focus { outline: none; }
.btn svg { width: 17px; height: 17px; }
.btn-sm { --btn-h: 36px; padding: 0 16px; font-size: 16.1px; }
.btn-lg { --btn-h: 54px; padding: 0 30px; font-size: 19.5px; }

.btn-primary { background: var(--ink-1); color: var(--ink-inv); }
.btn-primary:hover, .btn-primary.is-hover { background: oklch(30% 0 0); }
.btn-primary:focus-visible, .btn-primary.is-focus { box-shadow: var(--ring); }
.btn-primary:active, .btn-primary.is-active { background: oklch(24% 0 0); transform: translateY(1px); }

.btn-secondary { background: transparent; color: var(--ink-1); border-color: var(--line-firm); }
.btn-secondary:hover, .btn-secondary.is-hover { background: var(--ink-1); color: var(--ink-inv); border-color: var(--ink-1); }
.btn-secondary:focus-visible, .btn-secondary.is-focus { box-shadow: var(--ring); }
.btn-secondary:active, .btn-secondary.is-active { background: oklch(24% 0 0); color: var(--ink-inv); border-color: oklch(24% 0 0); transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover, .btn-ghost.is-hover { background: oklch(16% 0 0 / .06); color: var(--ink-1); }
.btn-ghost:focus-visible, .btn-ghost.is-focus { box-shadow: var(--ring); color: var(--ink-1); }
.btn-ghost:active, .btn-ghost.is-active { background: oklch(16% 0 0 / .11); color: var(--ink-1); }

.btn-accent { background: var(--flare); color: #fff; }
.btn-accent:hover, .btn-accent.is-hover { background: var(--flare-deep); }
.btn-accent:focus-visible, .btn-accent.is-focus { box-shadow: var(--ring); }
.btn-accent:active, .btn-accent.is-active { background: oklch(50% .26 328); transform: translateY(1px); }

.btn-danger { background: var(--negative); color: #fff; }
.btn-danger:hover, .btn-danger.is-hover { background: oklch(50% .19 25); }
.btn-danger:focus-visible, .btn-danger.is-focus { box-shadow: var(--ring); }
.btn-danger:active, .btn-danger.is-active { background: oklch(45% .18 25); transform: translateY(1px); }

.btn:disabled, .btn.is-disabled {
  pointer-events: none; opacity: 1;
  background: var(--paper-3); background-image: none; color: var(--ink-4); border-color: transparent;
  box-shadow: none; transform: none;
}
.btn.is-loading { pointer-events: none; color: transparent; }
.btn.is-loading::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 16px; height: 16px; border-radius: 999px;
  border: 2px solid oklch(100% 0 0 / .35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn-primary.is-loading::after, .btn-accent.is-loading::after, .btn-danger.is-loading::after {
  border-color: color-mix(in oklab, var(--ink-inv) 32%, transparent); border-top-color: var(--ink-inv);
}
.btn-secondary.is-loading::after, .btn-ghost.is-loading::after {
  border-color: color-mix(in oklab, var(--ink-1) 22%, transparent); border-top-color: var(--ink-1);
}
@keyframes spin { to { transform: rotate(360deg); } }

.icon-btn {
  width: 44px; height: 44px; padding: 0; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink-1);
  border: 1px solid var(--line-firm); cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover, .icon-btn.is-hover { background: var(--ink-1); color: var(--ink-inv); border-color: var(--ink-1); }
.icon-btn:focus-visible, .icon-btn.is-focus { outline: none; box-shadow: var(--ring); }
.icon-btn:active, .icon-btn.is-active { transform: translateY(1px); background: oklch(24% 0 0); color: var(--ink-inv); }
.icon-btn:disabled, .icon-btn.is-disabled { pointer-events: none; color: var(--ink-4); border-color: var(--line-soft); }
.icon-btn.solid { background: var(--ink-1); color: var(--ink-inv); border-color: var(--ink-1); }
.icon-btn.solid:hover { background: oklch(30% 0 0); }

/* State matrix */
.matrix { width: 100%; border-collapse: collapse; }
.matrix th, .matrix td {
  padding: 14px 12px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--line-soft);
}
.matrix th {
  font-size: 12.6px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink-3);
}
.matrix td:first-child, .matrix th:first-child { width: 110px; }
.matrix tr:last-child td { border-bottom: 0; }
.matrix-scroll { overflow-x: auto; }
.table-scroll { overflow-x: auto; }

/* ══════════════════════════════════════════════════════════════
   06 · INPUTS
   ══════════════════════════════════════════════════════════════ */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.input {
  display: flex; align-items: center; gap: 10px;
  width: 100%; min-height: 48px; padding: 0 16px;
  background: var(--paper); color: var(--ink-1);
  border: 1px solid var(--line); border-radius: var(--r-input);
  font-size: 17.3px;
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out);
}
.input::placeholder { color: var(--ink-4); }
.input:hover, .input.is-hover { border-color: var(--line-firm); }
.input:focus, .input.is-focus {
  outline: none; border-color: var(--ink-1);
  box-shadow: 0 0 0 3px oklch(16% 0 0 / .08);
}
.input:disabled, .input.is-disabled {
  background: var(--paper-2); color: var(--ink-4);
  border-color: var(--line-soft); cursor: not-allowed;
}
.input.is-error { border-color: var(--negative); box-shadow: 0 0 0 3px oklch(56% .19 25 / .12); }
.input.is-valid { border-color: var(--positive); }
textarea.input { min-height: 108px; padding: 13px 16px; resize: vertical; line-height: 1.5; }
select.input { appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.invert select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap > svg { position: absolute; left: 15px; width: 18px; height: 18px; color: var(--ink-3); pointer-events: none; }
.input-wrap > svg.right { left: auto; right: 15px; }
.input-wrap .input.lead { padding-left: 43px; }
.input-wrap .input.trail { padding-right: 43px; }
.hint { font-size: 14.4px; color: var(--ink-3); }
.hint.err { color: var(--negative-ink); display: flex; align-items: center; gap: 6px; }
.hint.err svg { width: 14px; height: 14px; }
.hint.ok { color: var(--positive-ink); display: flex; align-items: center; gap: 6px; }
.hint.ok svg { width: 14px; height: 14px; }
.prefix {
  display: flex; align-items: center; gap: 7px;
  padding: 0 12px 0 14px; margin-right: -4px;
  border-right: 1px solid var(--line); align-self: stretch;
  font-family: var(--t-mono); font-size: 15px; color: var(--ink-3);
}
.combo { display: flex; align-items: center; padding-left: 0; }
.combo input { border: 0; background: transparent; flex: 1; min-width: 0; padding: 0 16px; min-height: 46px; font-size: 17.3px; outline: none; }
.combo input::placeholder { color: var(--ink-4); }

/* ══════════════════════════════════════════════════════════════
   07 · SELECTION
   ══════════════════════════════════════════════════════════════ */
.control { display: inline-flex; align-items: center; gap: 11px; font-size: 17.3px; cursor: pointer; user-select: none; }
.control.dis { color: var(--ink-4); cursor: not-allowed; }
.box {
  width: 22px; height: 22px; flex: none; border-radius: 6px;
  border: 1.5px solid var(--line-firm); background: var(--paper);
  display: grid; place-items: center; color: transparent;
  transition: background .18s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.box svg { width: 14px; height: 14px; }
.control:hover .box, .control.is-hover .box { border-color: var(--ink-1); }
.control.is-focus .box { box-shadow: var(--ring); border-color: var(--ink-1); }
.control.on .box { background: var(--ink-1); border-color: var(--ink-1); color: var(--ink-inv); }
.control.on.accent .box { background: var(--flare); border-color: var(--flare); }
.control.dis .box { background: var(--paper-2); border-color: var(--line-soft); }
.control.dis.on .box { background: var(--ink-4); border-color: var(--ink-4); color: var(--paper); }
.box.round { border-radius: 999px; }
.box.round.dot { position: relative; }
.control.on .box.round { background: var(--paper); border: 6.5px solid var(--ink-1); }
.control.on.dis .box.round { border-color: var(--ink-4); }

.switch {
  width: 46px; height: 27px; flex: none; border-radius: 999px;
  background: var(--paper-3); border: 1px solid var(--line-soft);
  position: relative; transition: background .22s var(--ease-out), box-shadow .18s var(--ease-out);
}
.switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 21px; height: 21px; border-radius: 999px; background: var(--paper);
  box-shadow: 0 1px 3px oklch(16% 0 0 / .25);
  transition: transform .26s var(--ease-emph);
}
.control.on .switch { background: var(--ink-1); border-color: var(--ink-1); }
.control.on .switch::after { transform: translateX(19px); }
.control:hover .switch, .control.is-hover .switch { background: oklch(88% 0 0); }
.control.on:hover .switch, .control.on.is-hover .switch { background: oklch(30% 0 0); }
.control.is-focus .switch { box-shadow: var(--ring); }
.control.dis .switch { background: var(--paper-2); }
.control.dis.on .switch { background: var(--ink-4); border-color: var(--ink-4); }

/* Selectable card */
.pick {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: var(--r-inner); cursor: pointer;
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out);
}
.pick b { display: block; font-size: 17.3px; font-weight: 600; }
.pick span { display: block; font-size: 15.5px; color: var(--ink-3); margin-top: 2px; }
.pick:hover, .pick.is-hover { border-color: var(--line-firm); }
.pick.on { border-color: var(--ink-1); box-shadow: 0 0 0 1px var(--ink-1); }
.pick.is-focus { box-shadow: var(--ring); }
.pick.dis { background: var(--paper-2); color: var(--ink-4); pointer-events: none; }

/* ══════════════════════════════════════════════════════════════
   08 · RANGE, SEGMENTED, TABS
   ══════════════════════════════════════════════════════════════ */
.slider { position: relative; height: 44px; display: flex; align-items: center; }
.track { position: relative; height: 5px; width: 100%; border-radius: 999px; background: var(--paper-3); }
.fill { position: absolute; inset: 0 auto 0 0; border-radius: 999px; background: var(--ink-1); }
.thumb {
  position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--ink-1);
  transform: translate(-50%, -50%);
  box-shadow: var(--e-1);
  transition: box-shadow .18s var(--ease-out), transform .12s var(--ease-out);
}
.slider:hover .thumb { box-shadow: 0 0 0 6px oklch(16% 0 0 / .07); }
.slider.is-focus .thumb { box-shadow: var(--ring); }
.slider.is-drag .thumb { transform: translate(-50%, -50%) scale(1.14); box-shadow: 0 0 0 9px oklch(16% 0 0 / .1); }
.slider.dis .fill { background: var(--ink-4); }
.slider.dis .thumb { border-color: var(--ink-4); }
.bubble {
  position: absolute; bottom: 100%; transform: translateX(-50%);
  background: var(--ink-1); color: var(--ink-inv);
  font-family: var(--t-mono); font-size: 12.6px; padding: 4px 8px;
  border-radius: 6px; white-space: nowrap;
}

.segmented {
  display: inline-flex; padding: 4px; gap: 2px;
  background: var(--paper-3); border-radius: var(--r-pill);
}
.segmented button {
  min-height: 36px; padding: 0 18px; border: 0; border-radius: var(--r-pill);
  background: transparent; color: var(--ink-2);
  font-size: 16.1px; font-weight: 500; cursor: pointer;
  transition: background .18s var(--ease-out), color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.segmented button:hover, .segmented button.is-hover { color: var(--ink-1); }
.segmented button.on { background: var(--paper); color: var(--ink-1); box-shadow: var(--e-1); }
.segmented button.is-focus { outline: none; box-shadow: var(--ring); }
.segmented button:disabled { color: var(--ink-4); cursor: not-allowed; }

.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); }
.tabs button {
  position: relative; padding: 0 0 14px; border: 0; background: none; cursor: pointer;
  font-size: 17.3px; font-weight: 500; color: var(--ink-3);
  transition: color .18s var(--ease-out);
}
.tabs button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--ink-1); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease-out);
}
.tabs button:hover, .tabs button.is-hover { color: var(--ink-1); }
.tabs button.on { color: var(--ink-1); }
.tabs button.on::after { transform: scaleX(1); }
.tabs button.is-focus { outline: none; box-shadow: var(--ring); border-radius: 4px; }
.tabs button:disabled { color: var(--ink-4); cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════════
   09 · CHIPS, BADGES, AVATARS
   ══════════════════════════════════════════════════════════════ */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 34px; padding: 0 14px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  font-size: 15.5px; font-weight: 500; color: var(--ink-2); cursor: pointer;
  transition: background .18s var(--ease-out), border-color .18s var(--ease-out), color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.chip svg { width: 14px; height: 14px; }
.chip:hover, .chip.is-hover { border-color: var(--line-firm); color: var(--ink-1); }
.chip.is-focus { outline: none; box-shadow: var(--ring); }
.chip.on { background: var(--ink-1); border-color: var(--ink-1); color: var(--ink-inv); }
.chip.dis { color: var(--ink-4); background: var(--paper-2); border-color: var(--line-soft); pointer-events: none; }
.chip .x { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 999px; margin-right: -4px; opacity: .55; }
.chip .x:hover { opacity: 1; background: oklch(16% 0 0 / .1); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: 6px;
  font-family: var(--t-mono); font-size: 12.1px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge.neutral { background: var(--paper-3); color: var(--ink-2); }
.badge.dark { background: var(--ink-1); color: var(--ink-inv); }
.badge.accent { background: var(--flare); color: #fff; }
.badge.glow { background: var(--flare); color: #fff; }
.badge.pos { background: color-mix(in oklab, var(--positive) 16%, transparent); color: var(--positive-ink); }
.badge.warn { background: color-mix(in oklab, var(--warn) 20%, transparent); color: var(--warn-ink); }
.badge.neg { background: color-mix(in oklab, var(--negative) 16%, transparent); color: var(--negative-ink); }
.badge.outline { background: transparent; border: 1px solid var(--line-firm); color: var(--ink-2); }

.avatar {
  position: relative; width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; flex: none;
  background: var(--paper-3); color: var(--ink-2);
  font-size: 17.3px; font-weight: 600; letter-spacing: 0;
}
.avatar.dark { background: var(--ink-1); color: var(--ink-inv); }
.avatar.flare { background: linear-gradient(135deg, var(--halo), var(--flare-deep)); color: #fff; }
.avatar.sm { width: 32px; height: 32px; font-size: 14.4px; }
.avatar.lg { width: 60px; height: 60px; font-size: 23px; }
.avatar i {
  position: absolute; right: -1px; bottom: -1px;
  width: 12px; height: 12px; border-radius: 999px;
  border: 2px solid var(--paper);
}
.avatar-stack { display: flex; }
.avatar-stack .avatar { margin-left: -12px; box-shadow: 0 0 0 2px var(--paper); }
.avatar-stack .avatar:first-child { margin-left: 0; }

/* ══════════════════════════════════════════════════════════════
   10 · FEEDBACK
   ══════════════════════════════════════════════════════════════ */
.bar { height: 6px; border-radius: 999px; background: var(--paper-3); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; background: var(--ink-1); }
.bar i.accent { background: var(--flare); }
.bar.indet i { width: 38%; animation: slide 1.4s var(--ease-out) infinite; }
@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(265%); } }

.ring-wrap { position: relative; width: 76px; height: 76px; display: grid; place-items: center; }
.ring-wrap svg { position: absolute; inset: 0; width: 76px; height: 76px; transform: rotate(-90deg); }
.ring-wrap circle { fill: none; stroke-width: 5; }
.ring-wrap .bg { stroke: var(--paper-3); }
.ring-wrap .fg { stroke: var(--ink-1); stroke-linecap: round; }
.ring-wrap b { font-family: var(--t-mono); font-size: 15px; font-weight: 500; }

.toast {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: var(--r-inner);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--e-2); font-size: 16.1px;
}
.toast svg { width: 18px; height: 18px; margin-top: 1px; }
.toast b { display: block; font-weight: 600; font-size: 16.1px; }
.toast p { margin: 2px 0 0; color: var(--ink-3); font-size: 15px; line-height: 1.45; }
.toast .close { margin-left: auto; opacity: .4; cursor: pointer; }
.toast .close:hover { opacity: 1; }
.toast.pos svg { color: var(--positive); }
.toast.warn svg { color: var(--warn); }
.toast.neg svg { color: var(--negative); }
.toast.info svg { color: var(--flare); }

.tooltip {
  display: inline-block; padding: 7px 11px; border-radius: 8px;
  background: var(--ink-1); color: var(--ink-inv);
  font-size: 14.4px; position: relative;
}
.tooltip::after {
  content: ""; position: absolute; top: 100%; left: 20px;
  border: 5px solid transparent; border-top-color: var(--ink-1);
}

/* ══════════════════════════════════════════════════════════════
   11 · NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.topbar {
  display: flex; align-items: center; gap: 32px;
  padding: 12px 12px 12px 24px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line-soft);
  box-shadow: var(--e-2);
}
.navlinks { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.navlinks a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: var(--r-pill);
  font-size: 16.7px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  transition: background .18s var(--ease-out), color .18s var(--ease-out);
}
.navlinks a svg { width: 14px; height: 14px; opacity: .6; }
.navlinks a:hover, .navlinks a.is-hover { background: oklch(16% 0 0 / .05); color: var(--ink-1); text-decoration: none; }
.navlinks a.on { color: var(--ink-1); }
.navlinks a.on::after { content: ""; width: 4px; height: 4px; border-radius: 999px; background: var(--flare); }

.menu {
  padding: 8px; border-radius: var(--r-inner); background: var(--paper);
  border: 1px solid var(--line-soft); box-shadow: var(--e-3);
  min-width: 232px;
}
.menu a, .menu button {
  display: flex; width: 100%; align-items: center; gap: 11px;
  padding: 10px 12px; border: 0; border-radius: 10px; background: none;
  font-size: 16.7px; color: var(--ink-2); text-align: left; cursor: pointer; text-decoration: none;
  transition: background .16s var(--ease-out), color .16s var(--ease-out);
}
.menu a svg, .menu button svg { width: 17px; height: 17px; opacity: .65; }
.menu a:hover, .menu a.is-hover, .menu button:hover { background: var(--paper-2); color: var(--ink-1); text-decoration: none; }
.menu a.on { background: var(--paper-2); color: var(--ink-1); font-weight: 500; }
.menu a.dis { color: var(--ink-4); pointer-events: none; }
.menu hr { border: 0; border-top: 1px solid var(--line-soft); margin: 7px 4px; }
.menu .lbl { padding: 8px 12px 4px; font-size: 12.6px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); }
.menu .kbd { margin-left: auto; font-family: var(--t-mono); font-size: 12.6px; color: var(--ink-4); }

.crumbs { display: flex; align-items: center; gap: 8px; font-size: 16.1px; color: var(--ink-3); flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--ink-1); }
.crumbs b { color: var(--ink-1); font-weight: 500; }
.crumbs svg { width: 14px; height: 14px; opacity: .5; }

.pager { display: flex; align-items: center; gap: 6px; }
.pager a, .pager span {
  min-width: 38px; height: 38px; padding: 0 8px; border-radius: 999px;
  display: grid; place-items: center; font-size: 16.1px; color: var(--ink-2);
  text-decoration: none; cursor: pointer;
  transition: background .16s var(--ease-out), color .16s var(--ease-out);
}
.pager a:hover { background: var(--paper-2); color: var(--ink-1); text-decoration: none; }
.pager a.on { background: var(--ink-1); color: var(--ink-inv); font-weight: 500; }
.pager span.gap { color: var(--ink-4); cursor: default; }

.dock {
  display: inline-flex; gap: 6px; padding: 8px;
  border-radius: var(--r-pill); background: var(--ink-1);
  box-shadow: var(--e-3);
}
.dock a {
  width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center;
  color: color-mix(in oklab, var(--ink-inv) 62%, transparent);
  transition: background .16s var(--ease-out), color .16s var(--ease-out);
}
.dock a svg { width: 20px; height: 20px; }
.dock a:hover { background: color-mix(in oklab, var(--ink-inv) 12%, transparent); color: var(--ink-inv); }
.dock a.on { background: var(--paper); color: var(--ink-1); }

.rail { display: flex; flex-direction: column; gap: 4px; }
.rail a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-input);
  font-size: 16.7px; color: var(--ink-2); text-decoration: none;
  transition: background .16s var(--ease-out), color .16s var(--ease-out);
}
.rail a svg { width: 18px; height: 18px; opacity: .7; }
.rail a:hover { background: var(--paper-2); color: var(--ink-1); text-decoration: none; }
.rail a.on { background: var(--ink-1); color: var(--ink-inv); font-weight: 500; }
.rail a.on svg { opacity: 1; }
.rail .count { margin-left: auto; font-family: var(--t-mono); font-size: 12.6px; color: var(--ink-4); }

/* ══════════════════════════════════════════════════════════════
   12 · CONTENT CARDS
   ══════════════════════════════════════════════════════════════ */
.card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-media); padding: 24px;
  transition: transform .28s var(--ease-emph), box-shadow .28s var(--ease-out), border-color .18s var(--ease-out);
}
.card h4 { margin: 0; font-size: 23px; font-weight: 500; letter-spacing: -0.02em; }
.card p { margin: 8px 0 0; font-size: 16.7px; line-height: 1.5; color: var(--ink-2); }
.card.hoverable:hover, .card.is-hover { transform: translateY(-4px); box-shadow: var(--e-2); }
.card .media {
  border-radius: var(--r-inner); margin-top: 20px; aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, oklch(16% 0 0 / .035) 0 12px, transparent 12px 24px),
    var(--paper-2);
  display: grid; place-items: center;
  font-family: var(--t-mono); font-size: 12.6px; color: var(--ink-4);
  letter-spacing: .08em; text-transform: uppercase;
}
.card.void { background: var(--void-2); border-color: oklch(100% 0 0 / .1); color: #fff; }
.card.void p { color: oklch(100% 0 0 / .62); }
.card.void .media { background: repeating-linear-gradient(45deg, oklch(100% 0 0 / .05) 0 12px, transparent 12px 24px), oklch(24% 0 0); color: oklch(100% 0 0 / .4); }

.quote { background: var(--paper-2); border-radius: var(--r-media); padding: 40px; }
.quote blockquote {
  margin: 0; font-size: 29.9px; line-height: 1.28; font-weight: 400;
  letter-spacing: -0.025em; text-wrap: pretty;
}
.quote figcaption { margin-top: 24px; font-size: 15px; color: var(--ink-3); }

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat b { font-size: 64.4px; line-height: 1; font-weight: 400; letter-spacing: -0.04em; }
.stat span { font-size: 15.5px; color: var(--ink-3); }

.icon-cell { display: flex; align-items: center; gap: 12px; padding: 14px 0; font-size: 16.7px; }
.icon-cell .ic {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2);
}
.icon-cell .ic svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════════════════════════════
   13 · PRICING
   ══════════════════════════════════════════════════════════════ */
.plan {
  position: relative; border-radius: var(--r-media); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.plan-top {
  height: 96px; display: grid; place-items: center; margin: 8px 8px 0;
  border-radius: var(--r-inner);
  font-size: 20.7px; font-weight: 500; color: #fff;
}
.plan-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan-body .from { font-size: 14.4px; color: var(--ink-3); }
.plan-body .price { font-size: 39.1px; line-height: 1.05; font-weight: 400; letter-spacing: -0.035em; }
.plan-body .desc { font-size: 15.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.plan-list { list-style: none; margin: 4px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 12px; }
.plan-list li { display: flex; align-items: center; gap: 10px; font-size: 16.1px; }
.plan-list svg { width: 17px; height: 17px; color: var(--ink-1); }
.plan-list .muted { color: var(--ink-3); }
.plan-list .muted svg { color: var(--ink-4); }
.plan.featured { background: var(--void); border-color: var(--void); color: #fff; }
.plan.featured .plan-body .from, .plan.featured .plan-body .desc { color: oklch(100% 0 0 / .62); }
.plan.featured .plan-list { border-top-color: oklch(100% 0 0 / .14); }
.plan.featured .plan-list svg { color: #fff; }
.plan.featured .plan-list .muted { color: oklch(100% 0 0 / .55); }
.plan-top { position: relative; }
.plan .flag { position: absolute; top: 10px; left: 0; right: 0; z-index: 1; display: flex; justify-content: center; }
.cmp { width: 100%; border-collapse: collapse; font-size: 16.1px; }
.cmp th, .cmp td { padding: 13px 16px; text-align: left; }
.cmp thead th { font-size: 13.8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.cmp td:not(:first-child), .cmp thead th:not(:first-child) { text-align: center; }
.cmp tbody tr:nth-child(odd) { background: var(--paper-2); }
.cmp tbody tr:first-child td:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.cmp .y { color: var(--ink-1); }
.cmp .n { color: var(--ink-4); }
.cmp .opt { color: var(--ink-3); font-size: 15px; }
.cmp svg { width: 17px; height: 17px; }

/* ══════════════════════════════════════════════════════════════
   14 · DATA
   ══════════════════════════════════════════════════════════════ */
.table { width: 100%; border-collapse: collapse; font-size: 16.1px; }
.table th {
  padding: 0 14px 12px; text-align: left;
  font-size: 12.6px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 1px solid var(--line);
}
.table td { padding: 15px 14px; border-bottom: 1px solid var(--line-soft); }
.table tbody tr { transition: background .16s var(--ease-out); }
.table tbody tr:hover, .table tbody tr.is-hover { background: var(--paper-2); }
.table tbody tr.on { background: var(--flare-wash); }
.table .r { text-align: right; font-family: var(--t-mono); font-size: 15px; }
.table .who { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.table-scroll { overflow-x: auto; }

.list { display: flex; flex-direction: column; }
.list-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 4px; border-bottom: 1px solid var(--line-soft);
  transition: background .16s var(--ease-out);
}
.list-row:last-child { border-bottom: 0; }
.list-row:hover { background: var(--paper-2); }
.list-row b { font-size: 17.3px; font-weight: 500; }
.list-row p { margin: 1px 0 0; font-size: 15px; color: var(--ink-3); }
.list-row .amt { margin-left: auto; font-family: var(--t-mono); font-size: 16.1px; }

.kpi { padding: 22px; border-radius: var(--r-inner); background: var(--paper); border: 1px solid var(--line-soft); }
.kpi .lbl { font-size: 14.4px; color: var(--ink-3); }
.kpi b { display: block; font-size: 36.8px; font-weight: 400; letter-spacing: -0.03em; margin: 6px 0 4px; }
.kpi .delta { font-family: var(--t-mono); font-size: 13.8px; display: inline-flex; gap: 5px; align-items: center; }
.kpi .delta svg { width: 13px; height: 13px; }
.kpi .delta.up { color: var(--positive-ink); }
.kpi .delta.down { color: var(--negative-ink); }
.spark { display: flex; align-items: flex-end; gap: 4px; height: 44px; margin-top: 14px; }
.spark i { flex: 1; background: var(--ink-1); border-radius: 2px 2px 0 0; opacity: .18; }
.spark i.hi { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   15 · FORMS IN COMPOSITION
   ══════════════════════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.consent { display: flex; gap: 11px; font-size: 14.4px; line-height: 1.5; color: var(--ink-3); }
.otp { display: flex; gap: 10px; }
.otp span {
  width: 52px; height: 60px; border-radius: var(--r-input);
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center;
  font-family: var(--t-mono); font-size: 25.3px;
}
.otp span.on { border-color: var(--ink-1); }
.otp span.cursor { border-color: var(--ink-1); box-shadow: 0 0 0 3px oklch(16% 0 0 / .08); }
.otp span.cursor::after { content: ""; width: 1.5px; height: 24px; background: var(--ink-1); animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.otp span.err { border-color: var(--negative); color: var(--negative); }

.drop {
  border: 1.5px dashed var(--line-firm); border-radius: var(--r-inner);
  padding: 28px; text-align: center; background: var(--paper);
  transition: border-color .18s var(--ease-out), background .18s var(--ease-out);
}
.drop.is-hover { border-color: var(--ink-1); background: var(--paper-2); }
.drop svg { width: 22px; height: 22px; color: var(--ink-3); }
.drop b { display: block; font-size: 16.7px; font-weight: 500; margin-top: 10px; }
.drop span { font-size: 14.4px; color: var(--ink-3); }
.file-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-input); background: var(--paper); border: 1px solid var(--line-soft); }
.file-row .grow { flex: 1; min-width: 0; }
.file-row b { display: block; font-size: 15.5px; font-weight: 500; }

.steps { display: flex; align-items: center; gap: 0; }
.steps .step { display: flex; align-items: center; gap: 10px; }
.steps .dot {
  width: 28px; height: 28px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  font-family: var(--t-mono); font-size: 13.8px;
  border: 1.5px solid var(--line-firm); color: var(--ink-3);
}
.steps .step.done .dot { background: var(--ink-1); border-color: var(--ink-1); color: var(--ink-inv); }
.steps .step.now .dot { border-color: var(--ink-1); color: var(--ink-1); box-shadow: 0 0 0 4px oklch(16% 0 0 / .07); }
.steps .step span { font-size: 15.5px; color: var(--ink-3); }
.steps .step.now span, .steps .step.done span { color: var(--ink-1); }
.steps .line { flex: 1; height: 1px; background: var(--line); margin: 0 16px; min-width: 24px; }

.taginput {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 10px 12px; min-height: 48px;
  background: var(--paper); border: 1px solid var(--ink-1); border-radius: var(--r-input);
  box-shadow: 0 0 0 3px oklch(16% 0 0 / .08);
}
.taginput input { border: 0; outline: none; background: transparent; flex: 1; min-width: 90px; font-size: 16.7px; }

.settings-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.settings-row:last-child { border-bottom: 0; }
.settings-row .grow { flex: 1; min-width: 0; }
.settings-row b { font-size: 17.3px; font-weight: 500; }
.settings-row p { margin: 2px 0 0; font-size: 15px; color: var(--ink-3); }

/* ══════════════════════════════════════════════════════════════
   16 · OVERLAYS
   ══════════════════════════════════════════════════════════════ */
.scrim {
  position: relative; border-radius: var(--r-media); overflow: hidden;
  background: var(--void); padding: 40px 24px;
  display: grid; place-items: center;
}
.scrim::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 90% at 50% 0%, oklch(30% 0 0), oklch(14% 0 0));
}
.modal {
  position: relative; width: 100%; max-width: 440px;
  background: var(--paper); border-radius: var(--r-media);
  box-shadow: var(--e-3); padding: 28px;
}
.modal h3 { margin: 0 0 8px; font-size: 25.3px; font-weight: 500; letter-spacing: -0.02em; }
.modal p { margin: 0; font-size: 16.7px; line-height: 1.5; color: var(--ink-2); }
.modal .acts { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }
.modal .x { position: absolute; top: 18px; right: 18px; }

.sheet {
  border-radius: var(--r-media) var(--r-media) 0 0;
  background: var(--paper); padding: 22px; box-shadow: var(--e-3);
  width: 100%; max-width: 420px;
}
.sheet .grab { width: 40px; height: 4px; border-radius: 999px; background: var(--paper-3); margin: 0 auto 18px; }

.banner {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 18px; border-radius: var(--r-inner);
  font-size: 16.1px; border: 1px solid transparent;
}
.banner svg { width: 19px; height: 19px; }
.banner b { font-weight: 600; }
.banner p { margin: 2px 0 0; font-size: 15px; line-height: 1.45; opacity: .85; }
.banner .grow { flex: 1; min-width: 0; }
.banner.info { background: var(--flare-wash); border-color: color-mix(in oklab, var(--flare) 32%, transparent); color: var(--flare-ink); }
.banner.pos { background: color-mix(in oklab, var(--positive) 11%, transparent); border-color: color-mix(in oklab, var(--positive) 32%, transparent); color: var(--positive-ink); }
.banner.warn { background: color-mix(in oklab, var(--warn) 14%, transparent); border-color: color-mix(in oklab, var(--warn) 36%, transparent); color: var(--warn-ink); }
.banner.neg { background: color-mix(in oklab, var(--negative) 10%, transparent); border-color: color-mix(in oklab, var(--negative) 32%, transparent); color: var(--negative-ink); }

.palette { background: var(--paper); border-radius: var(--r-inner); box-shadow: var(--e-3); overflow: hidden; max-width: 480px; width: 100%; }
.palette .q { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.palette .q svg { width: 18px; height: 18px; color: var(--ink-3); }
.palette .q input { border: 0; outline: none; flex: 1; min-width: 0; font-size: 18.4px; background: transparent; }
.palette .res { padding: 8px; }

.cookie {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  padding: 18px 20px; border-radius: var(--r-inner);
  background: var(--void); color: #fff; box-shadow: var(--e-3);
}
.cookie p { margin: 0; font-size: 15.5px; line-height: 1.5; color: oklch(100% 0 0 / .7); flex: 1; min-width: 220px; }
.cookie a { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   17 · LOADING & EMPTY
   ══════════════════════════════════════════════════════════════ */
.skel { border-radius: 8px; background: linear-gradient(90deg, var(--paper-3) 0%, oklch(97% 0 0) 40%, var(--paper-3) 80%); background-size: 260% 100%; animation: shimmer 1.5s linear infinite; }
@keyframes shimmer { from { background-position: 130% 0; } to { background-position: -130% 0; } }
@media (prefers-reduced-motion: reduce) {
  .skel { animation: none; }
  .bar.indet i { animation: none; width: 100%; }
  .otp span.cursor::after { animation: none; }
}
.empty { text-align: center; padding: 44px 24px; }
.empty .ic { width: 52px; height: 52px; border-radius: 999px; background: var(--paper-2); display: grid; place-items: center; margin: 0 auto 16px; color: var(--ink-3); }
.empty .ic svg { width: 22px; height: 22px; }
.empty b { display: block; font-size: 20.7px; font-weight: 500; letter-spacing: -0.015em; }
.empty p { margin: 6px auto 20px; font-size: 16.1px; color: var(--ink-3); max-width: 40ch; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   18 · ICONS
   ══════════════════════════════════════════════════════════════ */
.icons { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 4px; }
.icons figure {
  margin: 0; padding: 18px 8px 12px; border-radius: var(--r-input);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background .16s var(--ease-out);
}
.icons figure:hover { background: var(--paper-2); }
.icons svg { width: 24px; height: 24px; }
.icons figcaption { font-family: var(--t-mono); font-size: 12.1px; color: var(--ink-4); letter-spacing: .02em; }

/* Footer */
.foot { border-top: 1px solid var(--line); margin-top: 40px; padding: 56px 0 80px; }
.foot h3 { font-size: 34.5px; font-weight: 500; letter-spacing: -0.03em; margin: 0 0 40px; }
.foot-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.foot-cols div { display: flex; flex-direction: column; gap: 10px; }
.foot-cols b { font-size: 12.6px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 4px; }
.foot-cols a { font-size: 16.1px; color: var(--ink-2); text-decoration: none; width: fit-content; }
.foot-cols a:hover { color: var(--ink-1); }
.foot-base { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 48px; font-family: var(--t-mono); font-size: 13.8px; color: var(--ink-4); }

/* ══════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page { padding: 0 32px; }
  .band { padding: 72px 0; }
  .section-head { grid-template-columns: minmax(0, 1fr); }
  .section-head h2 { font-size: 41.4px; }
  .cols-3, .cols-4, .cols-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scale-bar { width: 20px; }
  .scale { gap: 9px; }
  .index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .type-row { grid-template-columns: minmax(0, 1fr); }
  .t-display { font-size: 78.2px; }
  .t-h1 { font-size: 52.9px; }
  .elev { grid-template-columns: minmax(0, 1fr); }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .page { padding: 0 20px; }
  .band { padding: 56px 0; }
  .btn { --btn-h: 46px; }
  .icon-btn { width: 46px; height: 46px; }
  .cols-2, .cols-3, .cols-4, .cols-6 { grid-template-columns: minmax(0, 1fr); }
  .index { grid-template-columns: minmax(0, 1fr); }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .frame { padding: 20px; }
  .quote { padding: 24px; }
  .quote blockquote { font-size: 24.2px; }
  .t-display { font-size: 52.9px; }
  .t-h1 { font-size: 41.4px; }
  .t-h2 { font-size: 34.5px; }
  .tabs, .segmented, .steps, .matrix-scroll, .table-scroll, .icons { overflow-x: auto; }
  .stat b { font-size: 48.3px; }
}


/* ══════════════════════════════════════════════════════════════
   Theme panes — light and dark shown side by side
   ══════════════════════════════════════════════════════════════ */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.pane {
  min-width: 0; padding: 24px;
  background: var(--paper); color: var(--ink-1);
  border: 1px solid var(--line-soft); border-radius: var(--r-media);
}
.pane-label {
  display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-size: 12.6px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.pane-label::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--ink-1); }
.pane .cols-2 { grid-template-columns: minmax(0, 1fr); }
.pane .cols-3, .pane .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pane .cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pane .frame { padding: 20px; }
.pane .quote { padding: 26px; }
.pane .quote blockquote { font-size: 24.2px; }
.pane .scrim { padding: 28px 16px; }
.pane .ramp { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pane .stat b { font-size: 46px; }
.pane .type-row { grid-template-columns: minmax(0, 1fr); }
.pane .t-display { font-size: 62.1px; }
.pane .t-h1 { font-size: 43.7px; }
.pane .t-h2 { font-size: 34.5px; }
.theme-light {
  --ink-1: oklch(16% 0 0); --ink-2: oklch(42% 0 0); --ink-3: oklch(58% 0 0); --ink-4: oklch(74% 0 0);
  --ink-inv: #ffffff;
  --paper: #ffffff; --paper-2: oklch(96.5% 0 0); --paper-3: oklch(93% 0 0);
  --line: oklch(16% 0 0 / .12); --line-soft: oklch(16% 0 0 / .07); --line-firm: oklch(16% 0 0 / .28);
}
.theme-dark, .invert {
  --ink-1: #ffffff;
  --ink-2: oklch(100% 0 0 / .66);
  --ink-3: oklch(100% 0 0 / .48);
  --ink-4: oklch(100% 0 0 / .30);
  --ink-inv: oklch(14% 0 0);
  --paper: oklch(14% 0 0); --paper-2: oklch(19% 0 0); --paper-3: oklch(25% 0 0);
  --line: oklch(100% 0 0 / .16); --line-soft: oklch(100% 0 0 / .09); --line-firm: oklch(100% 0 0 / .38);
  --positive: oklch(72% .15 152); --warn: oklch(82% .15 82); --negative: oklch(66% .19 25);
  --positive-ink: oklch(80% .14 152); --warn-ink: oklch(87% .14 88); --negative-ink: oklch(76% .16 25);
  --flare-ink: oklch(78% .20 330);
  --flare-wash: oklch(68% .30 330 / .20);
  --e-1: none;
  --e-2: 0 8px 24px oklch(0% 0 0 / .5);
  --e-3: 0 24px 64px oklch(0% 0 0 / .65);
  --ring: 0 0 0 2px var(--paper), 0 0 0 4px #ffffff;
  background: var(--paper); color: var(--ink-1); color-scheme: dark;
}
/* Dark surface corrections — a floating thing gets lighter, never a bigger shadow */
.theme-dark .menu, .theme-dark .modal, .theme-dark .sheet, .theme-dark .palette,
.theme-dark .toast, .theme-dark .topbar { background: var(--paper-3); }
.theme-dark .plan.featured { background: var(--paper-2); border-color: var(--paper-3); }
.theme-dark .cookie { background: var(--paper-2); }
.theme-dark .empty .ic, .theme-dark .radii div, .theme-dark .elev div { background: var(--paper-3); }
.theme-dark .skel { background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 45%, var(--paper-2) 85%); background-size: 260% 100%; }
.theme-dark .card .media {
  background: repeating-linear-gradient(45deg, oklch(100% 0 0 / .05) 0 12px, transparent 12px 24px), var(--paper-3);
  color: var(--ink-4);
}
.theme-dark .cmp tbody tr:nth-child(odd),
.theme-dark .table tbody tr:hover, .theme-dark .table tbody tr.is-hover,
.theme-dark .list-row:hover, .theme-dark .icons figure:hover,
.theme-dark .menu a:hover, .theme-dark .menu a.on, .theme-dark .menu button:hover,
.theme-dark .pager a:hover, .theme-dark .rail a:hover { background: oklch(100% 0 0 / .07); }
.theme-dark .btn-ghost:hover, .theme-dark .btn-ghost.is-hover { background: oklch(100% 0 0 / .1); }
.theme-dark .btn-ghost:active, .theme-dark .btn-ghost.is-active { background: oklch(100% 0 0 / .16); }
.theme-dark .btn-primary:hover, .theme-dark .btn-primary.is-hover { background: oklch(88% 0 0); }
.theme-dark .btn-primary:active, .theme-dark .btn-primary.is-active { background: oklch(80% 0 0); }
.theme-dark .btn-secondary:active, .theme-dark .btn-secondary.is-active,
.theme-dark .icon-btn:active, .theme-dark .icon-btn.is-active { background: oklch(88% 0 0); color: var(--ink-inv); border-color: oklch(88% 0 0); }
.theme-dark .btn:disabled, .theme-dark .btn.is-disabled,
.theme-dark .chip.dis, .theme-dark .pick.dis { background: oklch(100% 0 0 / .08); color: var(--ink-4); }
.theme-dark .switch:hover, .theme-dark .control:hover .switch, .theme-dark .control.is-hover .switch { background: oklch(32% 0 0); }
.theme-dark .control.on:hover .switch, .theme-dark .control.on.is-hover .switch { background: oklch(88% 0 0); }
.theme-dark .segmented button.on { background: var(--paper-2); }
.theme-dark .slider:hover .thumb { box-shadow: 0 0 0 6px oklch(100% 0 0 / .1); }
.theme-dark .slider.is-drag .thumb { box-shadow: 0 0 0 9px oklch(100% 0 0 / .14); }
.theme-dark .steps .step.now .dot { box-shadow: 0 0 0 4px oklch(100% 0 0 / .1); }
.theme-dark .input:focus, .theme-dark .input.is-focus, .theme-dark .taginput,
.theme-dark .otp span.cursor { box-shadow: 0 0 0 3px oklch(100% 0 0 / .1); }
.theme-dark .chip .x:hover { background: oklch(100% 0 0 / .14); }
.theme-dark .sw-body, .theme-dark .semantic-row { background: var(--paper-2); }
@media (max-width: 1024px) {
  .duo { grid-template-columns: minmax(0, 1fr); }
  .pane .cols-3, .pane .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .pane { padding: 18px; }
  .pane .cols-3, .pane .cols-4, .pane .cols-6 { grid-template-columns: minmax(0, 1fr); }
}


/* ══════════════════════════════════════════════════════════════
   19 · WIDGETS IN SITU — product screens built from the kit
   ══════════════════════════════════════════════════════════════ */
.duo.solo { grid-template-columns: minmax(0, 1fr); }
.screens { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: start; }
.screen {
  width: 100%; min-width: 0;
  display: flex; flex-direction: column; gap: 18px;
  padding: 20px; border-radius: 28px;
  background: var(--paper-2); border: 1px solid var(--line-soft);
}
.screen-bar { display: flex; align-items: center; gap: 10px; }
.screen-bar .home {
  width: 40px; height: 40px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line-soft); color: var(--ink-1);
}
.screen-bar .home svg { width: 20px; height: 20px; }
.screen h5 {
  margin: 0; text-align: center;
  font-size: 23px; line-height: 1.2; font-weight: 500; letter-spacing: -0.022em;
}
.screen .sub-c { margin: 0; text-align: center; font-size: 16px; color: var(--ink-3); }
.screen-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

.tip-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding-top: 12px; }
.tip {
  position: relative; min-height: 112px; padding: 18px 8px; border-radius: 18px;
  background: var(--ink-1); color: var(--ink-inv);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  cursor: pointer;
  transition: transform .18s var(--ease-out), background .18s var(--ease-out);
}
.tip:hover, .tip.is-hover { transform: translateY(-3px); }
.tip b { font-size: 25px; font-weight: 500; letter-spacing: -0.02em; }
.tip span { font-size: 15px; white-space: nowrap; color: color-mix(in oklab, var(--ink-inv) 58%, transparent); }
.tip.on { background: var(--flare); color: #fff; }
.tip.on span { color: oklch(100% 0 0 / .7); }
.tip .tip-flag.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 3px 9px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: .1em; white-space: nowrap; color: #fff; z-index: 1;
}
/* Big custom-amount field */
.amount {
  display: flex; align-items: center; gap: 12px; padding: 0 18px; min-height: 70px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-input);
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.amount .cur { font-size: 30px; font-weight: 500; line-height: 1; color: var(--ink-4); flex: none; }
.amount input {
  flex: 1; min-width: 0; border: 0; outline: none; background: transparent;
  font-family: var(--t-mono); font-size: 28px; letter-spacing: -0.01em; color: var(--ink-1);
}
.amount input::placeholder { font-family: var(--t-sans); font-size: 17px; letter-spacing: -0.011em; color: var(--ink-4); }
.amount:focus-within, .amount.is-focus { border-color: var(--ink-1); box-shadow: 0 0 0 3px oklch(16% 0 0 / .08); }
.theme-dark .amount:focus-within, .theme-dark .amount.is-focus { box-shadow: 0 0 0 3px oklch(100% 0 0 / .1); }

.stars { display: flex; justify-content: center; gap: 8px; }
.stars svg { width: 30px; height: 30px; color: var(--ink-4); }
.stars svg.on { color: var(--ink-1); fill: currentColor; }
.crit { display: flex; flex-direction: column; }
.crit-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px;
}
.crit-row:last-child { border-bottom: 0; }
.crit-row .dots { margin-left: auto; display: flex; gap: 7px; }
.crit-row i { width: 15px; height: 15px; border-radius: 999px; border: 1.5px solid var(--line-firm); }
.crit-row i.on { background: var(--ink-1); border-color: var(--ink-1); }

.receipt { position: relative; background: var(--paper); border-radius: 22px; padding: 22px; overflow: hidden; }
.qr {
  width: 128px; height: 128px; margin: 0 auto; border-radius: 16px;
  border: 5px solid var(--ink-1); background: #fff;
  background-image: repeating-conic-gradient(oklch(16% 0 0) 0% 25%, #fff 0% 50%);
  background-size: 18px 18px; background-position: 3px 3px;
  background-origin: content-box; background-clip: content-box; padding: 5px;
}
.perf { position: relative; margin: 20px -22px; border-top: 1.5px dashed var(--line-firm); }
.perf::before, .perf::after {
  content: ""; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 999px;
  background: var(--paper-2);
}
.perf::before { left: -11px; }
.perf::after { right: -11px; }
.rc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 16px; padding: 5px 0; }
.rc-row.total { font-size: 19px; font-weight: 500; }
.rc-row.total b { font-family: var(--t-mono); font-size: 24px; font-weight: 500; border-bottom: 2px solid var(--flare); }
.rc-row.muted { color: var(--ink-3); }
.rc-row .mono { font-family: var(--t-mono); }

.bill { background: var(--paper); border-radius: 22px; padding: 20px; }
.bill-row { display: flex; gap: 12px; align-items: baseline; padding: 9px 0; font-size: 16px; }
.bill-row .q { font-family: var(--t-mono); color: var(--ink-3); font-size: 14px; }
.bill-row .p { margin-left: auto; font-family: var(--t-mono); }
.bill-sum { margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ══════════════════════════════════════════════════════════════
   Responsive pass — tablet and phone
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masthead { padding: 48px 0 64px; }
  .topbar { flex-wrap: wrap; border-radius: var(--r-card); padding: 14px; gap: 12px; }
  .navlinks { order: 3; width: 100%; flex-wrap: wrap; margin-right: 0; }
  .table, .cmp, .matrix { min-width: 580px; }
  .icons { grid-template-columns: repeat(auto-fill, minmax(98px, 1fr)); }
}
@media (max-width: 720px) {
  .ramp { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .otp { gap: 7px; }
  .otp span { width: 44px; height: 56px; font-size: 22px; }
  .steps { overflow-x: auto; padding-bottom: 6px; }
  .steps .line { min-width: 16px; margin: 0 10px; }
  .foot-cols { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .plan-body { padding: 18px; }
  .modal, .sheet, .receipt, .bill { padding: 18px; }
  .modal .acts { flex-direction: column-reverse; }
  .modal .acts .btn { width: 100%; }
  .cookie .row { width: 100%; }
  .cookie .row .btn { flex: 1; }
  .scrim { padding: 24px 14px; }
  .tip-grid { gap: 9px; }
  .screen { padding: 16px; border-radius: 24px; }
  .type-row { padding: 18px 0; }
  .index a { padding: 15px 0; }
}
@media (max-width: 620px) {
  .screens { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
  .page { padding: 0 14px; }
  .frame, .pane { padding: 15px; }
  .band { padding: 44px 0; }
  .section-head h2 { font-size: 30px; }
  .toast, .banner { flex-wrap: wrap; }
  .avatar.lg { width: 52px; height: 52px; font-size: 19px; }
  .stat b { font-size: 38px; }
  .radii div { width: 72px; height: 72px; }
  .stars svg { width: 26px; height: 26px; }
  .screen h5 { font-size: 21px; }
}

/* Shared icon defaults — 24 grid, 1.6 stroke, currentColor only */
svg[data-i] { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
