/* ═══════════════════════════════════════════
   NEXIOO REBRAND
   Two directions on one theme system:
   • [data-theme="editorial"] — calm, warm, human
   • [data-theme="tech"]      — dark, sharp, techy
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── Theme: A · Editorial ───────────────── */
[data-theme="editorial"] {
  --bg:        #F6F1E8;
  --bg-soft:   #EFE7D8;
  --bg-raised: #FFFDF9;
  --ink:       #1D1A17;
  --ink-2:     #4A4340;
  --ink-3:     #8A8179;
  --line:      #E0D5C2;
  --line-soft: #EDE4D0;
  --accent:    #E85D2E;
  --accent-2:  #C9491F;
  --accent-wash:#FCEADE;
  --cyan:      #2B7A8F;
  --ok:        #3F7A3C;
  --shadow-sm: 0 1px 0 rgba(29,26,23,.04), 0 1px 2px rgba(29,26,23,.06);
  --shadow-md: 0 2px 6px rgba(29,26,23,.06), 0 12px 32px rgba(29,26,23,.08);
  --shadow-lg: 0 24px 60px rgba(29,26,23,.12);
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-ui:      "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}

/* Accent overrides (editorial) */
[data-theme="editorial"][data-accent="sky"]  { --accent:#0E7FA5; --accent-2:#0A6286; --accent-wash:#DBEFF7; }
[data-theme="editorial"][data-accent="ink"]  { --accent:#1D1A17; --accent-2:#000; --accent-wash:#E6DFD1; }
[data-theme="editorial"][data-accent="moss"] { --accent:#4A6B3A; --accent-2:#3A5530; --accent-wash:#E2E9D9; }

/* ── Theme: B · Tech ────────────────────── */
[data-theme="tech"] {
  --bg:        #0B0D10;
  --bg-soft:   #101317;
  --bg-raised: #151A20;
  --ink:       #F3F5F7;
  --ink-2:     #A8B0B8;
  --ink-3:     #6B737C;
  --line:      #242A31;
  --line-soft: #1A1F25;
  --accent:    #36D6FF;
  --accent-2:  #0FB7E6;
  --accent-wash:#0E2A35;
  --cyan:      #36D6FF;
  --ok:        #3DDC84;
  --shadow-sm: 0 1px 0 rgba(0,0,0,.4);
  --shadow-md: 0 2px 8px rgba(0,0,0,.5), 0 20px 40px rgba(0,0,0,.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.55);
  --radius:    10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-display: "Inter", system-ui, sans-serif;
  --font-ui:      "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}
[data-theme="tech"][data-accent="orange"] { --accent:#FF7A3D; --accent-2:#E85D2E; --accent-wash:#2A180E; }
[data-theme="tech"][data-accent="ink"]    { --accent:#F3F5F7; --accent-2:#D4D7DB; --accent-wash:#1A1F25; }
[data-theme="tech"][data-accent="moss"]   { --accent:#7DB56A; --accent-2:#5A8F48; --accent-wash:#182418; }

/* ── Density ──────────────────────────── */
[data-density="airy"]    { --sec-y: clamp(80px, 10vw, 140px); --gap: 32px; }
[data-density="compact"] { --sec-y: clamp(56px, 7vw, 92px);   --gap: 20px; }

/* ═══════ BASE ═══════ */
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
}

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ═══════ TYPOGRAPHY ═══════ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
[data-theme="editorial"] .display,
[data-theme="editorial"] h1.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
[data-theme="editorial"] .display em {
  font-style: italic;
  color: var(--accent);
}
[data-theme="tech"] .display,
[data-theme="tech"] h1.display {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
[data-theme="tech"] .display em {
  font-style: normal;
  color: var(--accent);
}

.h1 { font-size: clamp(40px, 6vw, 88px); }
.h2 { font-size: clamp(30px, 4.2vw, 56px); }
.h3 { font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; font-weight: 600; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.55; max-width: 56ch; }
.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: -0.01em; }

/* ═══════ NAV ═══════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 40px);
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-word {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
[data-theme="editorial"] .brand-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.brand-mark {
  position: relative; width: 30px; height: 22px;
  display: inline-block;
}
.brand-dot {
  position: absolute; top: 0; width: 22px; height: 22px; border-radius: 50%;
}
.brand-dot--a { left: 0; background: #FF7A3D; mix-blend-mode: multiply; }
.brand-dot--b { right: 0; background: #36D6FF; mix-blend-mode: multiply; }
[data-theme="tech"] .brand-dot { mix-blend-mode: screen; }
[data-theme="tech"] .brand-dot--a { background: #FF7A3D; }
[data-theme="tech"] .brand-dot--b { background: #36D6FF; }

/* ═══════ BRAND / LOGO PAGE ═══════ */
.brand-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
@media (max-width: 860px) { .brand-hero { grid-template-columns: 1fr; } }
.brand-mark-xl {
  width: 100%; max-width: 420px; aspect-ratio: 16 / 11;
  position: relative;
  margin: 0 auto;
}
.brand-mark-xl .brand-dot {
  position: absolute; top: 10%; width: 62%; height: 80%;
  border-radius: 50%;
}
.brand-mark-xl .brand-dot--a { left: 0; }
.brand-mark-xl .brand-dot--b { right: 0; }

.logo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@media (max-width: 820px) { .logo-grid { grid-template-columns: 1fr; } }
.logo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.logo-card-stage {
  flex: 1;
  min-height: 220px;
  display: grid; place-items: center;
  padding: 40px;
  position: relative;
}
.logo-card-stage--light { background: #F6F1E8; color: #1D1A17; }
.logo-card-stage--dark  { background: #0B0D10; color: #F3F5F7; }
.logo-card-stage--accent { background: #FF7A3D; color: #08141A; }
.logo-card-stage--mono { background: var(--bg); color: var(--ink); }
.logo-card-stage--grid {
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--bg-raised);
  background-size: 24px 24px;
}
.logo-card-meta {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
}
.logo-card-meta span + span { color: var(--ink-2); text-transform: none; letter-spacing: 0; }

.lockup {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.lockup-mark {
  position: relative;
  width: 52px; height: 36px;
  flex-shrink: 0;
}
.lockup-mark .brand-dot { position: absolute; top: 0; width: 36px; height: 36px; border-radius: 50%; }
.lockup-mark .brand-dot--a { left: 0; mix-blend-mode: multiply; }
.lockup-mark .brand-dot--b { right: 0; mix-blend-mode: multiply; }
.logo-card-stage--dark .lockup-mark .brand-dot { mix-blend-mode: screen; }
.logo-card-stage--accent .lockup-mark .brand-dot--a { background: #08141A; mix-blend-mode: multiply; }
.logo-card-stage--accent .lockup-mark .brand-dot--b { background: #08141A; opacity: .5; }
.logo-card-stage--mono .lockup-mark .brand-dot--a { background: currentColor; }
.logo-card-stage--mono .lockup-mark .brand-dot--b { background: currentColor; opacity: .4; }

.lockup--stack { flex-direction: column; gap: 10px; align-items: flex-start; }
.lockup--center { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.lockup--sm { font-size: 22px; }
.lockup--sm .lockup-mark { width: 30px; height: 22px; }
.lockup--sm .lockup-mark .brand-dot { width: 22px; height: 22px; }

/* Clearspace diagram */
.clearspace {
  position: relative;
  display: inline-block;
  padding: 36px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}
.clearspace-tick {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .05em;
}
.clearspace-tick--t { top: 10px; left: 50%; transform: translateX(-50%); }
.clearspace-tick--r { top: 50%; right: 10px; transform: translateY(-50%); }
.clearspace-tick--b { bottom: 10px; left: 50%; transform: translateX(-50%); }
.clearspace-tick--l { top: 50%; left: 10px; transform: translateY(-50%); }

/* Palette strip */
.palette-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 760px) { .palette-row { grid-template-columns: repeat(3, 1fr); } }
.palette-chip {
  background: var(--pc);
  color: var(--pt, #fff);
  padding: 20px 14px 14px;
  min-height: 120px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
}
.palette-chip b { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.palette-chip code { opacity: .75; }

/* Type specimen */
.type-specimen {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
}
.type-row { padding: 20px 0; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: baseline; }
.type-row:first-child { border-top: 0; }
.type-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
.type-sample { line-height: 1.05; }

/* Misuse examples */
.misuse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 820px) { .misuse-grid { grid-template-columns: 1fr; } }
.misuse {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-raised);
}
.misuse-stage {
  min-height: 160px; display: grid; place-items: center; padding: 28px; position: relative;
  background: var(--bg-soft);
}
.misuse-stage::after {
  content: ""; position: absolute; inset: 18px;
  border: 1.5px solid #E85D2E;
  border-radius: 8px;
  pointer-events: none;
}
.misuse-stage .lockup { opacity: .9; }
.misuse-x {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #E85D2E; color: #fff;
  display: grid; place-items: center; font-weight: 700;
  font-size: 13px;
}
.misuse-cap { padding: 14px 18px; font-size: 13px; color: var(--ink-2); border-top: 1px solid var(--line-soft); }

/* Logo usage download stubs */
.download-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 760px) { .download-row { grid-template-columns: repeat(2, 1fr); } }
.dl-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .15s, transform .15s;
}
.dl-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.dl-fmt { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .08em; }
.dl-name { font-weight: 600; font-size: 14px; }
.dl-size { font-size: 12px; color: var(--ink-3); }

.nav-links { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--ink);
}
.nav-cta { display: flex; gap: 18px; align-items: center; }
.link-muted { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.link-muted:hover { color: var(--ink); }

.nav-ham {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px;
}
.nav-ham span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .2s; }
.nav-ham.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 20px clamp(20px, 4vw, 40px) 28px;
  border-top: 1px solid var(--line);
  flex-direction: column; gap: 18px;
  background: var(--bg);
}
.nav-mobile a { font-size: 18px; color: var(--ink); }
.nav-mobile a.btn { align-self: flex-start; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .nav-mobile[data-open="true"] { display: flex; }
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
[data-theme="tech"] .btn--primary {
  background: var(--accent);
  color: #08141A;
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: var(--ink-3); }
.btn--accent {
  background: var(--accent);
  color: #fff;
}
[data-theme="tech"] .btn--accent { color: #08141A; }
.btn--accent:hover { transform: translateY(-1px); background: var(--accent-2); }

/* ═══════ SECTION ═══════ */
.section { padding: var(--sec-y) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line-soft); }
[data-theme="tech"] .section + .section { border-top-color: var(--line-soft); }

/* ═══════ HERO (editorial) ═══════ */
.hero { padding-top: calc(var(--sec-y) * 0.8); padding-bottom: var(--sec-y); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-raised);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--ok) 40%, transparent);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--ok) 40%, transparent); }
  100% { box-shadow: 0 0 0 10px transparent; }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { margin: 0 auto; }
}
.hero-title { margin: 0 0 22px; }
.hero-lead { margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--ink-3);
}
.hero-dots { display: flex; }
.hero-dots span {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600; color: #fff;
  letter-spacing: 0;
}
.hero-dots span:first-child { margin-left: 0; }

/* Hero visual — card stack */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 900px) {
  .hero-visual { margin: 0 auto; max-width: 380px; }
}
@media (max-width: 560px) {
  .hero-visual { max-width: 320px; aspect-ratio: 1 / 1.1; }
}
.hv-card {
  position: absolute;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  box-sizing: border-box;
}
.hv-card--main {
  inset: 6% 6% 22% 6%;
  display: flex; flex-direction: column; gap: 14px;
}
.hv-card--float-a {
  right: -4%; top: 40%;
  width: 54%;
  transform: rotate(3deg);
  animation: float 7s ease-in-out infinite;
}
.hv-card--float-b {
  left: -4%; bottom: 4%;
  width: 52%;
  transform: rotate(-2deg);
  animation: float 8s ease-in-out infinite -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
.hv-head { display: flex; align-items: center; gap: 12px; }
.hv-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: grid; place-items: center;
  font-weight: 600; color: #fff; font-size: 16px;
}
.hv-name { font-weight: 600; font-size: 14px; }
.hv-sub { font-size: 12px; color: var(--ink-3); }
.hv-match {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--ok);
  background: color-mix(in oklab, var(--ok) 14%, transparent);
  padding: 4px 9px; border-radius: 6px;
}
.hv-title {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.2; font-weight: 400;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
[data-theme="tech"] .hv-title { font-family: var(--font-ui); font-weight: 600; }
.hv-meta-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hv-chip {
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  font-size: 11px; color: var(--ink-2);
  font-family: var(--font-mono);
}
.hv-stat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.hv-stat-v { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
[data-theme="editorial"] .hv-stat-v { font-family: var(--font-display); font-weight: 400; font-size: 26px; }
.hv-stat-l { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }

.hv-mini-ttl { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.hv-mini-val {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--accent);
  word-wrap: break-word;
}
[data-theme="editorial"] .hv-mini-val { font-family: var(--font-display); font-weight: 400; font-size: 30px; }
.hv-mini-sub { font-size: 11px; color: var(--ink-3); margin-top: 4px; }

/* ═══════ TRUST BAND ═══════ */
.trust {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-3);
  flex-wrap: wrap;
}
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }

/* ═══════ GRID OF FEATURES ═══════ */
.feature-intro {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (max-width: 900px) { .feature-intro { grid-template-columns: 1fr; gap: 24px; } }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.feature {
  grid-column: span 4;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-3);
}
.feature--wide { grid-column: span 8; }
.feature--tall { grid-row: span 2; min-height: 540px; }
@media (max-width: 960px) {
  .feature, .feature--wide { grid-column: span 6; }
  .feature--tall { grid-row: auto; min-height: 260px; }
}
@media (max-width: 640px) {
  .feature, .feature--wide { grid-column: span 12; min-height: 0; }
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3); letter-spacing: .08em;
}
.feature-ttl {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0;
}
[data-theme="editorial"] .feature-ttl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
}
.feature-body { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.feature-visual {
  margin-top: auto;
  height: 80px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, var(--line-soft), var(--line-soft) 6px, transparent 6px, transparent 14px);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.feature-visual--tall { height: 280px; }
.feature-visual-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; color: var(--ink-3);
  letter-spacing: .05em;
}

/* ═══════ SIDE-BY-SIDE BEFORE/AFTER ═══════ */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: clamp(32px, 5vw, 56px);
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-raised);
}
.compare-col--before { background: var(--bg-soft); }
.compare-col--after { background: var(--bg-raised); border-color: var(--accent); }
.compare-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.compare-col--after .compare-tag { color: var(--accent); }
.compare-row {
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: start;
}
.compare-row:first-of-type { border-top: 0; padding-top: 0; }
.compare-bullet {
  width: 18px; height: 18px; border-radius: 50%;
  margin-top: 2px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
  flex-shrink: 0;
}
.compare-col--before .compare-bullet { background: var(--line); color: var(--ink-3); }
.compare-col--after .compare-bullet { background: var(--accent); color: #fff; }
[data-theme="tech"] .compare-col--after .compare-bullet { color: #08141A; }
.compare-row h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.compare-row p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ═══════ HOW IT WORKS ═══════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--ink-3); letter-spacing: .08em;
  margin-bottom: 12px;
}
.step-ttl {
  font-size: 24px; margin: 0 0 10px;
  font-weight: 600; letter-spacing: -0.02em;
}
[data-theme="editorial"] .step-ttl {
  font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.05;
}
[data-theme="editorial"] .step-ttl em { font-style: italic; color: var(--accent); }
.step-body { color: var(--ink-2); font-size: 15px; }

/* ═══════ PRICING ═══════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-raised);
  display: flex; flex-direction: column;
}
.price-card--featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
[data-theme="tech"] .price-card--featured { background: var(--accent-wash); border-color: var(--accent); color: var(--ink); }
.price-card--featured .price-name,
.price-card--featured .price-amount,
.price-card--featured .price-body,
.price-card--featured .price-list li { color: inherit; }
.price-card--featured .price-sub { color: color-mix(in oklab, var(--bg) 60%, transparent); }
[data-theme="tech"] .price-card--featured .price-sub { color: var(--ink-2); }

.price-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.price-card--featured .price-tag { color: var(--accent); filter: brightness(1.2); }
.price-name {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px;
}
[data-theme="editorial"] .price-name { font-family: var(--font-display); font-weight: 400; font-size: 30px; }
.price-sub { color: var(--ink-2); font-size: 14px; margin-bottom: 24px; }
.price-amount {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.price-amount-v { font-size: 60px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
[data-theme="editorial"] .price-amount-v { font-family: var(--font-display); font-weight: 400; font-size: 72px; }
.price-amount-u { font-size: 14px; color: var(--ink-2); }
.price-amount-strike { text-decoration: line-through; color: var(--ink-3); font-size: 15px; margin-right: 6px; }
.price-note { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-list li {
  padding-left: 24px; position: relative; font-size: 14.5px;
}
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px; background: var(--accent);
}
.price-card--featured .price-list li::before { background: var(--accent); }
.price-cta { margin-top: auto; }

/* ═══════ COMPARE PRICE BAR ═══════ */
.price-compare {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px; color: var(--ink-2);
  flex-wrap: wrap;
}
.price-compare-strike { text-decoration: line-through; color: var(--ink-3); }
.price-compare-hl { color: var(--accent); font-weight: 600; }

/* ═══════ FOUNDING 500 ═══════ */
.founding {
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--accent-wash);
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: center;
}
[data-theme="tech"] .founding { background: var(--bg-raised); border-color: var(--accent); }
@media (max-width: 820px) { .founding { grid-template-columns: 1fr; } }
.founding h2 { margin: 0 0 18px; }
.founding-lead { color: var(--ink-2); font-size: 16px; margin-bottom: 24px; }
.founding-bar {
  height: 6px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.founding-fill {
  height: 100%; width: 5.4%;
  background: var(--accent);
  border-radius: 3px;
}
.founding-count {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 28px;
}
.founding-count b { color: var(--ink); }
.founding-perks {
  display: grid; gap: 14px;
}
.founding-perk {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15px;
}
.founding-perk-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  flex-shrink: 0;
}

/* ═══════ FAQ ═══════ */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; padding: 24px 40px 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left;
  font-size: clamp(17px, 1.6vw, 20px); font-weight: 500;
  position: relative;
  letter-spacing: -0.01em;
}
[data-theme="editorial"] .faq-q { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2vw, 26px); }
.faq-ic {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-2);
  transition: transform .2s, background .2s;
}
.faq-item[data-open="true"] .faq-ic { transform: rotate(45deg); background: var(--ink); color: var(--bg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  color: var(--ink-2);
}
.faq-item[data-open="true"] .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; font-size: 15.5px; line-height: 1.65; max-width: 68ch; }

/* ═══════ CTA BAND ═══════ */
.cta-band {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 20px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--bg);
}
[data-theme="tech"] .cta-band { background: var(--bg-soft); border: 1px solid var(--line); }
.cta-band h2 { margin: 0 0 20px; }
.cta-band .lead { color: color-mix(in oklab, var(--bg) 70%, transparent); margin: 0 auto 32px; }
[data-theme="tech"] .cta-band .lead { color: var(--ink-2); }
.cta-band .btn--primary { background: var(--bg); color: var(--ink); }
[data-theme="tech"] .cta-band .btn--primary { background: var(--accent); color: #08141A; }
.cta-band .btn--ghost { color: var(--bg); border-color: color-mix(in oklab, var(--bg) 20%, transparent); }
[data-theme="tech"] .cta-band .btn--ghost { color: var(--ink); border-color: var(--line); }

/* ═══════ SECTION HEADERS ═══════ */
.section-head {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; gap: 20px; } }
.section-head h2 { margin: 0; }
.section-head .lead { margin: 0; }

/* ═══════ ABOUT ═══════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { font-size: 17px; color: var(--ink-2); line-height: 1.7; max-width: 52ch; margin: 0 0 18px; }
[data-theme="editorial"] .about-text .drop::first-letter {
  font-family: var(--font-display);
  font-size: 5.2em; float: left; line-height: 0.85;
  margin: 6px 10px -2px 0;
  color: var(--accent);
  font-weight: 400;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-stat {
  background: var(--bg-raised);
  padding: 32px;
}
.about-stat-v {
  font-size: 48px; letter-spacing: -0.03em; font-weight: 500; line-height: 1;
  margin-bottom: 8px;
}
[data-theme="editorial"] .about-stat-v { font-family: var(--font-display); font-weight: 400; font-size: 64px; }
.about-stat-l { font-size: 13px; color: var(--ink-2); }

.team-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.team-av {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  margin-bottom: 14px;
  display: grid; place-items: center;
  color: #fff; font-weight: 600;
}
.team-name { font-weight: 600; font-size: 15px; }
.team-role { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ═══════ CONTACT ═══════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
}
.contact-method-label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.contact-method-v { font-size: 18px; font-weight: 500; }
.contact-method-v a { color: var(--accent); }
.contact-method-sub { color: var(--ink-2); font-size: 13.5px; margin-top: 4px; }

.form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .15s;
}
[data-theme="tech"] .field input, [data-theme="tech"] .field textarea, [data-theme="tech"] .field select {
  background: var(--bg);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.field textarea { min-height: 140px; resize: vertical; }
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-group input { display: none; }
.radio-group label {
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-family: var(--font-ui);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s;
}
.radio-group input:checked + label {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
[data-theme="tech"] .radio-group input:checked + label { background: var(--accent); color: #08141A; border-color: var(--accent); }

/* ═══════ PRODUCT PAGE ═══════ */
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
@media (max-width: 1100px) { .product-hero { grid-template-columns: 1fr; } }

.tabs {
  display: flex; gap: 4px;
  padding: 4px; background: var(--bg-soft);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto 40px;
}
.tabs button {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  transition: all .15s;
}
.tabs button.on {
  background: var(--bg-raised);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--gap);
}
@media (max-width: 960px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; grid-auto-rows: auto; } }
.bento-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.bento-item--lg { grid-column: span 2; grid-row: span 2; }
.bento-item--md { grid-column: span 2; }
@media (max-width: 560px) { .bento-item, .bento-item--lg, .bento-item--md { grid-column: auto; grid-row: auto; min-height: 200px; } }
.bento-eyebrow { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); letter-spacing: .1em; text-transform: uppercase; }
.bento-ttl { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
[data-theme="editorial"] .bento-ttl { font-family: var(--font-display); font-weight: 400; font-size: 26px; }
.bento-body { color: var(--ink-2); font-size: 14px; line-height: 1.55; margin: 0; }
.bento-fill {
  margin-top: auto;
  height: 80px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  position: relative;
}
.bento-fill--accent { background: var(--accent-wash); border-color: var(--accent); }
.bento-sample {
  position: absolute; inset: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.bento-sample-line {
  height: 6px; border-radius: 3px; background: var(--line);
  width: var(--w, 80%);
}
.bento-sample-line--accent { background: var(--accent); opacity: .6; }

/* ═══════ TESTIMONIALS (light band) ═══════ */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 18px;
}
.quote-mark {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; line-height: 0.4;
  color: var(--accent);
  height: 24px;
}
[data-theme="tech"] .quote-mark { font-family: var(--font-ui); font-weight: 700; font-size: 36px; line-height: 0.6; }
.quote-text { font-size: 17px; color: var(--ink); line-height: 1.5; margin: 0; }
[data-theme="editorial"] .quote-text { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.25; }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 14px;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-role { font-size: 12.5px; color: var(--ink-3); }

/* ═══════ FOOTER ═══════ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 32px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-tag { color: var(--ink-2); font-size: 14px; margin: 16px 0 0; max-width: 34ch; }
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-cols h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-cols a { display: block; font-size: 14px; color: var(--ink-2); padding: 4px 0; }
.footer-cols a:hover { color: var(--ink); }
.footer-bot {
  max-width: 1160px; margin: 48px auto 0;
  padding: 20px clamp(20px, 4vw, 40px) 0;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: center; gap: 12px;
  font-size: 12px; color: var(--ink-3);
  flex-wrap: wrap;
}
.footer-sep { opacity: .5; }

/* ═══════ TWEAKS PANEL ═══════ */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  width: 320px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  overflow: hidden;
}
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.tweaks-head h3 { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.tweaks-close {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink-2);
}
.tweaks-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 18px; max-height: 60vh; overflow-y: auto; }
.tweaks-section { display: flex; flex-direction: column; gap: 8px; }
.tweaks-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
}
.tweaks-segment {
  display: flex; flex-direction: column; gap: 6px;
}
.tweaks-seg {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
  transition: all .15s;
}
.tweaks-seg.on { border-color: var(--ink); background: var(--ink); color: var(--bg); }
[data-theme="tech"] .tweaks-seg.on { background: var(--accent); border-color: var(--accent); color: #08141A; }
.tweaks-seg-name { font-size: 13px; font-weight: 600; }
.tweaks-seg-sub { font-size: 11px; color: var(--ink-3); }
.tweaks-seg.on .tweaks-seg-sub { color: color-mix(in oklab, var(--bg) 60%, transparent); }
[data-theme="tech"] .tweaks-seg.on .tweaks-seg-sub { color: #08141A; opacity: 0.75; }

.tweaks-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks-chips button {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
}
.tweaks-chips button.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
[data-theme="tech"] .tweaks-chips button.on { background: var(--accent); color: #08141A; border-color: var(--accent); }

.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-swatches button {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sw);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line);
  transition: box-shadow .15s;
}
.tweaks-swatches button.on { box-shadow: 0 0 0 2px var(--ink); }

.tweaks-foot {
  padding: 10px 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px; color: var(--ink-3);
}
.tweaks-hint kbd {
  font-family: var(--font-mono);
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10px;
  border: 1px solid var(--line);
}

/* ═══════ UTIL ═══════ */
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 56px; }
.center { text-align: center; }
.max-prose { max-width: 56ch; }
.page { opacity: 1; }
