/* ============================================================
   Dash — Brand System
   "Ask Dash. Consider it done."
   Warm, loyal, sharp. A companion, not a tool or a hire.
   Tokens pulled straight from the brand deck.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=SUSE:wght@400;500;600;700&display=swap');

:root {
  /* ---- Primary (blue) ---- */
  --blue-600: #0069DB;   /* hover states */
  --blue-500: #429DFF;   /* buttons, headings */
  --blue-400: #8FC4FF;   /* borders, bullets */
  --blue-200: #D1E7FF;   /* backgrounds, borders */
  --blue-100: #F6F9FE;   /* backgrounds */

  /* ---- Secondary (violet) ---- */
  --violet-600: #5A36D9;  /* hover states */
  --violet-500: #7C5CF6;  /* buttons, headings */
  --violet-400: #A992FA;  /* borders, bullets */
  --violet-200: #DDD4FD;  /* backgrounds, borders */
  --violet-100: #F4F1FE;  /* backgrounds */

  /* ---- Neutrals ---- */
  --ink-600:  #01111E;   /* main text */
  --ink-500:  #69859B;   /* secondary text */
  --ink-400:  #E6EEF6;   /* disabled */
  --ink-200:  #C5D0D8;   /* borders, bullets */
  --ink-100:  #FCFCFC;   /* backgrounds */

  /* ---- Accent (yellow) ---- */
  --gold-600: #FDBD02;   /* hover states */
  --gold-500: #FED766;   /* buttons, icons */
  --gold-400: #FEE59A;   /* borders, bullets */
  --gold-200: #FFF2CC;   /* backgrounds, borders */
  --gold-100: #FFF8E6;   /* backgrounds */

  /* ---- Status ---- */
  --ok-600:  #006B66; --ok-500:  #00B7AF; --ok-400:  #5FF0E9; --ok-200:  #BDFFFC; --ok-100:  #EBFFFE;
  --err-600: #C90E0E; --err-500: #F34848; --err-400: #F67979; --err-200: #FAB7B7; --err-100: #FCD9D9;
  --warn-600:#B2490F; --warn-500:#EE7A3B; --warn-400:#F29969; --warn-200:#F7C2A6; --warn-100:#FAD9C7;

  /* ---- Semantic ---- */
  --paper: #ffffff;
  --line:  #E6EEF6;
  --line-strong: #C5D0D8;

  --grad-blue: linear-gradient(135deg, #429DFF 0%, #0069DB 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #F6F9FE 100%);

  --shadow-sm: 0 2px 8px rgba(1, 17, 30, 0.05);
  --shadow-md: 0 14px 34px rgba(1, 17, 30, 0.09);
  --shadow-lg: 0 30px 70px rgba(1, 17, 30, 0.14);
  --shadow-blue: 0 18px 44px rgba(66, 157, 255, 0.32);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 38px;

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);

  --head: 'Josefin Sans', system-ui, sans-serif;
  --body: 'SUSE', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--body);
  color: var(--ink-600);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink-600);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.9em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 16px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.eyebrow.on-blue { color: rgba(255,255,255,.9); }

.sec { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 9vw, 110px); }
.sec.alt { background: transparent; }

.sec-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h1, .sec-head h2 { font-size: clamp(30px, 4.6vw, 50px); }
.sec-head p { margin-top: 16px; font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-500); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 56px rgba(66,157,255,.42); }
.btn-ghost { background: #fff; color: var(--ink-600); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue-400); }

/* ============================================================
   TOP BAR + TABS
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
}
/* main nav row: logo left, label right */
.nav { border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { display: block; }
.nav-label { font-size: 15px; font-weight: 500; color: var(--ink-500); white-space: nowrap; }

/* tab row below the nav */
.tabbar { padding: 68px 0 22px; }
@media (max-width: 640px) { .tabbar { padding: 24px 0 16px; } }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tab {
  font-family: var(--body); font-weight: 600; font-size: 14.5px;
  color: var(--ink-500); background: #fff; border: 1px solid var(--line-strong);
  padding: 10px 20px; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: background .16s, color .16s, border-color .16s, box-shadow .16s, transform .16s;
}
.tab:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-1px); }
.tab.active { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--shadow-blue); }

/* ---- Panels (one section visible at a time) ---- */
.panel { display: none; }
.panel.active { display: block; animation: panel-in .28s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--grad-soft); padding: clamp(56px,8vw,104px) 0 clamp(64px,9vw,112px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px,5vw,72px); align-items: center; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-500);
  margin-bottom: 24px;
}
.hero .kicker b { color: var(--blue-600); font-weight: 700; }
.hero h1 { font-size: clamp(46px, 7vw, 88px); letter-spacing: -0.02em; }
.hero h1 .done { color: var(--blue-500); display: block; }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 1.8vw, 20px); color: var(--ink-500); max-width: 480px; }
.hero .lead b { color: var(--ink-600); font-weight: 600; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art .mascot { width: min(100%, 320px); filter: drop-shadow(0 26px 34px rgba(1,17,30,.18)); }
.hero-art .ring { position: absolute; inset: 0; margin: auto; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(209,231,255,.7) 0%, rgba(246,249,254,0) 70%); z-index: -1; }

/* ============================================================
   PRINCIPLES (what dash does + who dash is)
   ============================================================ */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.principle {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.principle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.principle .num { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--blue-400); }
.principle h3 { font-size: 24px; margin: 6px 0 8px; }
.principle p { color: var(--ink-500); font-size: 15.5px; }
.principle p b { color: var(--ink-600); font-weight: 600; }

.traits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.trait {
  background: var(--blue-100); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 20px;
}
.trait h4 { font-size: 19px; color: var(--blue-600); margin-bottom: 5px; }
.trait p { font-size: 14px; color: var(--ink-500); }

/* golden rule */
.golden {
  margin-top: 40px; background: var(--gold-200); border: 1px solid var(--gold-400);
  border-radius: var(--r-lg); padding: 30px 34px; display: flex; gap: 20px; align-items: center;
}
.golden .star { font-size: 30px; flex-shrink: 0; }
.golden h3 { font-size: 20px; margin-bottom: 4px; }
.golden p { color: var(--ink-600); font-size: 16px; }

/* ============================================================
   DO / DON'T columns
   ============================================================ */
.dodont { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dd-col { border-radius: var(--r-lg); padding: 26px 26px 28px; border: 1px solid var(--line); }
.dd-col.do { background: var(--ok-100); border-color: var(--ok-400); }
.dd-col.dont { background: var(--err-100); border-color: var(--err-400); }
.dd-col h3 { font-size: 18px; display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.dd-col.do h3 { color: var(--ok-600); }
.dd-col.dont h3 { color: var(--err-600); }
.dd-col .badge { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 700; }
.dd-col.do .badge { background: var(--ok-500); }
.dd-col.dont .badge { background: var(--err-500); }
.dd-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.dd-col li { font-size: 15px; color: var(--ink-600); padding-left: 22px; position: relative; }
.dd-col li::before { position: absolute; left: 0; top: 0; }
.dd-col.do li::before { content: "✓"; color: var(--ok-500); font-weight: 700; }
.dd-col.dont li::before { content: "✕"; color: var(--err-500); font-weight: 700; }

/* ============================================================
   LOGO
   ============================================================ */
.logo-uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.logo-use {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
}
.logo-use .stage { height: 200px; display: grid; place-items: center; background: var(--blue-100); border-bottom: 1px solid var(--line); padding: 24px; }
.logo-use .stage img { max-height: 120px; width: auto; }
.logo-use .stage.mark img { height: 96px; width: 96px; border-radius: 22px; }
.logo-use .meta { padding: 20px 22px; }
.logo-use .meta h3 { font-size: 19px; margin-bottom: 5px; }
.logo-use .meta p { font-size: 14px; color: var(--ink-500); }

.bg-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.bg-opt { border-radius: var(--r-lg); height: 160px; display: grid; place-items: center; border: 1px solid var(--line); position: relative; overflow: hidden; }
.bg-opt span { position: absolute; bottom: 12px; left: 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.bg-opt img { height: 40px; width: auto; }
.bg-opt.light { background: #fff; } .bg-opt.light span { color: var(--ink-500); }
.bg-opt.dark { background: var(--ink-600); } .bg-opt.dark span { color: rgba(255,255,255,.7); }
.bg-opt.accent { background: var(--blue-500); } .bg-opt.accent span { color: rgba(255,255,255,.85); }

/* ---- Interactive logo picker ---- */
.picker-controls { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 48px; margin-bottom: 30px; }
.control { text-align: center; }
.control .lbl { font-size: 13px; font-weight: 600; color: var(--ink-500); margin-bottom: 12px; }
.seg-group { display: inline-flex; background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px; gap: 2px; }
.seg {
  font-family: var(--body); font-weight: 600; font-size: 14px; color: var(--ink-500);
  background: transparent; border: 0; border-radius: 999px; padding: 9px 18px; cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s; white-space: nowrap;
}
.seg:hover { color: var(--blue-600); }
.seg.active { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }

.logo-preview {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  min-height: 320px; display: grid; place-items: center; padding: 50px;
  transition: background .25s, border-color .25s;
}
.logo-preview.bg-multicolor { background: #fff; }
.logo-preview.bg-light      { background: #D1E7FF; border-color: #D1E7FF; }
.logo-preview.bg-dark       { background: #0A1A3D; border-color: #0A1A3D; }
.logo-preview img { width: auto; max-width: 82%; transition: max-height .2s; }
.logo-preview img.v-logomark   { max-height: 110px; }
.logo-preview img.v-horizontal { max-height: 54px; }
.logo-preview img.v-vertical   { max-height: 120px; }

.downloads { display: flex; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.logo-uses.two { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 0 auto; }

/* ---- App icon shapes ---- */
.icon-shapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.icon-shapes figure { margin: 0; text-align: center; }
.icon-shapes .tile { background: var(--blue-100); border: 1px solid var(--line); border-radius: var(--r-md); height: 158px; display: grid; place-items: center; padding: 26px; margin-bottom: 12px; transition: transform .18s, box-shadow .18s; }
.icon-shapes .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-shapes .tile img { max-height: 104px; width: auto; }
.icon-shapes figcaption { font-size: 14px; font-weight: 600; color: var(--ink-600); }
@media (max-width: 640px) { .icon-shapes { grid-template-columns: repeat(2, 1fr); } }

/* ---- Logo tab sub-sections ---- */
.sub-h2 { text-align: center; font-size: clamp(28px, 4vw, 40px); margin: 88px 0 10px; }
.sub-h2.first { margin-top: 0; }
.sub-desc { text-align: center; color: var(--ink-500); font-size: 16px; max-width: 600px; margin: 0 auto 34px; }
.asset-showcase { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); display: grid; place-items: center; padding: 44px; max-width: 460px; margin: 0 auto; }
.asset-showcase img { max-height: 240px; width: auto; }

/* ---- Merch gallery ---- */
.merch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.merch-grid.keyrings { grid-template-columns: repeat(3, 1fr); }
.merch-grid.bottles { grid-template-columns: repeat(3, 1fr); }
.merch-grid.bottles .ph { height: 360px; padding: 20px; }
.merch-grid.bottles .ph img { object-fit: contain; }
.merch-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.merch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.merch-card .ph { height: 240px; background: var(--blue-100); display: grid; place-items: center; overflow: hidden; }
.merch-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.merch-card figcaption { padding: 14px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink-600); }
@media (max-width: 560px) { .merch-grid, .merch-grid.keyrings, .merch-grid.bottles { grid-template-columns: 1fr; } }

/* name usage */
.name-usage { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.name-card { border-radius: var(--r-md); padding: 24px 26px; border: 1px solid var(--line); }
.name-card.right { background: var(--ok-100); border-color: var(--ok-400); }
.name-card.wrong { background: var(--err-100); border-color: var(--err-400); }
.name-card .lbl { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.name-card.right .lbl { color: var(--ok-600); } .name-card.wrong .lbl { color: var(--err-600); }
.name-card .ex { font-family: var(--head); font-size: 22px; font-weight: 600; padding: 5px 0; }
.name-card.wrong .ex { color: var(--ink-500); text-decoration: line-through; text-decoration-color: var(--err-400); }

/* ============================================================
   COLORS
   ============================================================ */
.swatch-group { margin-bottom: 40px; }
.swatch-group > h3 { font-size: 20px; margin-bottom: 4px; }
.swatch-group > p { color: var(--ink-500); font-size: 14px; margin-bottom: 18px; }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.swatch { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.swatch .chip { height: 92px; display: flex; align-items: flex-end; padding: 10px; }
.swatch .chip .tint { font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,.85); color: var(--ink-600); }
.swatch .chip.lighttext .tint { background: rgba(1,17,30,.35); color: #fff; }
.swatch .info { padding: 11px 12px 13px; }
.swatch .hex { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.swatch .role { font-size: 11.5px; color: var(--ink-500); margin-top: 3px; line-height: 1.3; }

.status-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.status-row .swatch-group { margin-bottom: 0; }
.status-row .swatches { grid-template-columns: repeat(5, 1fr); gap: 6px; }
.status-row .swatch { box-shadow: none; }
.status-row .swatch .chip { height: 58px; }
.status-row .swatch .info { padding: 8px 8px 9px; }
.status-row .swatch .hex { font-size: 11px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.type-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); }
.type-card .role { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-600); }
.type-card .fname { font-family: var(--head); font-size: clamp(40px, 5vw, 60px); font-weight: 700; margin: 8px 0 6px; }
.type-card.body .fname { font-family: var(--body); }
.type-card .desc { color: var(--ink-500); font-size: 15px; margin-bottom: 26px; }
.type-card .specimen { border-top: 1px solid var(--line); padding-top: 22px; }
.type-card .specimen .line { font-family: var(--head); font-size: 22px; color: var(--ink-600); line-height: 1.5; word-break: break-word; }
.type-card.body .specimen .line { font-family: var(--body); }
.type-card .specimen .line.muted { color: var(--ink-200); }
.type-card .weights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.type-card .weights span { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: var(--blue-100); border: 1px solid var(--line); color: var(--ink-500); }

.scale { margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 28px; box-shadow: var(--shadow-sm); }
.scale .row { display: flex; align-items: baseline; gap: 20px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.scale .row:last-child { border-bottom: 0; }
.scale .row .tag { font-size: 12px; color: var(--ink-500); width: 130px; flex-shrink: 0; font-weight: 600; }
.scale .row .sample { font-family: var(--head); font-weight: 700; color: var(--ink-600); line-height: 1.1; }

/* ============================================================
   TONE OF VOICE
   ============================================================ */
.spectrum { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 48px; }
.spec { border-radius: var(--r-md); padding: 22px 22px 24px; border: 1px solid var(--line); }
.spec .tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; display: inline-block; }
.spec .quote { font-size: 16px; line-height: 1.5; color: var(--ink-600); }
.spec.too { background: var(--ink-100); } .spec.too .tag { color: var(--ink-500); }
.spec.right { background: var(--blue-100); border-color: var(--blue-400); }
.spec.right .tag { color: var(--blue-600); }
.spec.right .quote { font-weight: 500; }

.voice-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.voice {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; box-shadow: var(--shadow-sm); display: grid;
  grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
}
.voice .vn { font-family: var(--head); font-weight: 700; font-size: 30px; color: var(--blue-400); }
.voice h3 { font-size: 20px; margin-bottom: 6px; }
.voice .vdesc { color: var(--ink-500); font-size: 15px; margin-bottom: 16px; }
.voice .ex { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.voice .ex .line { font-size: 14.5px; padding: 12px 14px 12px 38px; border-radius: var(--r-sm); position: relative; line-height: 1.45; }
.voice .ex .line::before { position: absolute; left: 14px; top: 11px; font-weight: 700; }
.voice .ex .bad { background: var(--err-100); color: var(--ink-600); }
.voice .ex .bad::before { content: "✕"; color: var(--err-500); }
.voice .ex .good { background: var(--ok-100); color: var(--ink-600); }
.voice .ex .good::before { content: "✓"; color: var(--ok-500); }

/* writing rules */
.rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.rule { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.rule h4 { font-size: 16px; margin-bottom: 5px; color: var(--ink-600); }
.rule p { font-size: 14px; color: var(--ink-500); }
.rule p code { background: var(--blue-100); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; color: var(--blue-600); }

/* ============================================================
   IMAGERY
   ============================================================ */
.imagery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.img-card { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.img-card .frame { background: var(--blue-100); display: grid; place-items: center; padding: 26px; min-height: 230px; }
.img-card .frame img { max-height: 240px; width: auto; border-radius: var(--r-md); }
.img-card .frame.contain img { box-shadow: var(--shadow-md); }
.img-card .cap { padding: 18px 22px; }
.img-card .cap h3 { font-size: 17px; margin-bottom: 4px; }
.img-card .cap p { font-size: 14px; color: var(--ink-500); }

/* mascot variation gallery */
.mascot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mascot-grid figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.mascot-grid figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mascot-grid .ph { height: 210px; background: var(--blue-100); display: flex; align-items: center; justify-content: center; padding: 24px; overflow: hidden; }
.mascot-grid .ph img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.mascot-grid figcaption { padding: 14px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink-600); }
@media (max-width: 880px) { .mascot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mascot-grid { grid-template-columns: 1fr; } }

/* AI remix callout */
.imagery-cta { margin-top: 44px; text-align: center; background: var(--blue-100); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px 32px; }
.imagery-cta h3 { font-size: 22px; margin-bottom: 10px; }
.imagery-cta p { color: var(--ink-500); font-size: 16px; max-width: 580px; margin: 0 auto 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink-600); color: rgba(255,255,255,.66); padding: 56px 0 40px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot img { height: 28px; width: auto; }
.foot .tag { font-size: 14px; max-width: 320px; margin-top: 14px; }
.foot .meta { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
@media (max-width: 640px) {
  .foot-inner { flex-direction: column; align-items: center; text-align: center; }
  .foot-inner img { margin-inline: auto; }
  .foot .tag { margin-inline: auto; }
  .foot .meta { text-align: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 360px; margin: 0 auto; }
  .principles { grid-template-columns: 1fr 1fr; }
  .traits { grid-template-columns: 1fr 1fr; }
  .logo-uses { grid-template-columns: 1fr; }
  .bg-options { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(5, 1fr); }
  .status-row { grid-template-columns: 1fr; }
  .imagery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .principles, .traits, .dodont, .name-usage, .spectrum, .rules { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .status-row .swatches { grid-template-columns: repeat(5, 1fr); }
  .voice { grid-template-columns: 1fr; gap: 12px; }
  .voice .vn { font-size: 24px; }
  .voice .ex { grid-template-columns: 1fr; }
  .golden { flex-direction: column; text-align: center; }
}
