/* Honeypot Med · Design System v2
   Tokens, type scale, motion, focus states, components.
   Editorial healthcare-AI lab aesthetic: warm cream surfaces, deep ink, a single
   dark Trap Lab anchor, and a rust accent that signals findings. */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* Color · neutral surfaces */
  --bg: #f4ecdd;
  --bg-soft: #f9f2e6;
  --bg-strong: #fdf8ef;
  --panel: rgba(255, 250, 244, 0.92);
  --panel-strong: #ffffff;
  --panel-tint: linear-gradient(180deg, #ffffff 0%, #fbf5e9 100%);

  /* Color · ink */
  --ink: #14181f;
  --ink-soft: #2a313c;
  --muted: #5a6470;
  --muted-soft: #7a8390;

  /* Color · accent */
  --accent: #c6432a;
  --accent-strong: #a4321d;
  --accent-deep: #7a2412;
  --accent-tint: rgba(198, 67, 42, 0.08);
  --accent-tint-2: rgba(198, 67, 42, 0.16);

  /* Color · status */
  --safe: #1f6f4f;
  --safe-tint: rgba(31, 111, 79, 0.10);
  --teal: #1f5f56;
  --teal-tint: rgba(31, 95, 86, 0.10);
  --warn: #b35312;
  --warn-tint: rgba(179, 83, 18, 0.10);

  /* Color · lines */
  --line: rgba(20, 24, 31, 0.10);
  --line-strong: rgba(20, 24, 31, 0.18);
  --line-soft: rgba(20, 24, 31, 0.06);

  /* Elevation */
  --shadow-1: 0 1px 0 rgba(20, 24, 31, 0.04), 0 1px 2px rgba(20, 24, 31, 0.04);
  --shadow-2: 0 2px 4px rgba(20, 24, 31, 0.04), 0 8px 24px rgba(20, 24, 31, 0.06);
  --shadow-3: 0 4px 12px rgba(20, 24, 31, 0.06), 0 24px 60px rgba(89, 45, 17, 0.10);
  --shadow-4: 0 8px 24px rgba(20, 24, 31, 0.08), 0 36px 100px rgba(89, 45, 17, 0.16);

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Space scale (4-step) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 56px;
  --s-10: 72px;
  --s-11: 96px;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Inter", "Inter Tight", -apple-system, "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-1: 120ms;
  --t-2: 200ms;
  --t-3: 320ms;
  --t-4: 540ms;

  /* Layout */
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* Reset · sane defaults */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

:where(section, [id]) {
  scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  background:
    radial-gradient(1200px 600px at 5% -5%, rgba(198, 67, 42, 0.14), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(31, 95, 86, 0.10), transparent 55%),
    radial-gradient(800px 600px at 50% 100%, rgba(244, 236, 221, 0.6), transparent 55%),
    linear-gradient(180deg, #fbf4e6 0%, var(--bg) 100%);
  background-attachment: fixed;
  min-height: 100svh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(20, 24, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 31, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.5), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.5), transparent 70%);
}

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; }

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

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

img, svg { display: block; max-width: 100%; }

code, pre, kbd, samp {
  font-family: var(--mono);
  font-size: 0.92em;
}

code {
  padding: 0.16em 0.42em;
  border-radius: 6px;
  background: rgba(20, 24, 31, 0.06);
  border: 1px solid rgba(20, 24, 31, 0.04);
}

/* Skip link · accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 12px 0;
  z-index: 100;
}
.skip-link:focus-visible { left: 0; }

/* Layout · shell */
.shell {
  width: min(var(--max), calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: rgba(252, 246, 234, 0.78);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t-2) var(--ease-out);
}

.site-header.scrolled { box-shadow: var(--shadow-2); }

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  transition: opacity var(--t-1) var(--ease-out);
}
.brand:hover { opacity: 0.86; }

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 30%, #2c343f 0%, #14181f 70%),
    linear-gradient(135deg, #14181f, #2a313c);
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-1);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  pointer-events: none;
}

.brand-copy { display: grid; gap: 1px; }

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color var(--t-1) var(--ease-out), background var(--t-1) var(--ease-out);
}
.nav a:hover { color: var(--ink); background: rgba(20, 24, 31, 0.04); }
.nav a[aria-current="page"] { color: var(--ink); background: rgba(20, 24, 31, 0.06); }

/* Type · headings */
h1, h2, h3, h4,
.page-title, .section-title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 var(--s-3);
  font-feature-settings: "ss01", "ss02", "salt";
}

h1, .page-title {
  font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 600;
}

h2, .section-title {
  font-size: clamp(1.75rem, 1.3rem + 2.2vw, 3.1rem);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: var(--s-4);
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--accent-tint-2);
}
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint-2);
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: var(--s-3);
  border-radius: var(--r-pill);
  background: rgba(20, 24, 31, 0.06);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.small-caps {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

p { margin: 0 0 var(--s-4); color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

/* Hero */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 var(--s-7);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-5);
  align-items: stretch;
}

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
}

.hero-copy,
.page-hero-copy {
  padding: clamp(24px, 3vw, 40px);
  background: var(--panel-tint);
}

.hero-copy h1, .page-hero-copy h1 {
  margin-top: var(--s-2);
  margin-bottom: var(--s-5);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: clamp(16px, 0.85rem + 0.4vw, 18px);
  line-height: 1.65;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s-6);
}

/* Buttons */
.button,
.button-secondary,
.button-ghost,
.inline-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-1) var(--ease-out),
              background var(--t-1) var(--ease-out),
              border-color var(--t-1) var(--ease-out),
              box-shadow var(--t-1) var(--ease-out),
              color var(--t-1) var(--ease-out);
  white-space: nowrap;
}

.button {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 6px 18px rgba(198, 67, 42, 0.28);
}
.button:hover {
  background: linear-gradient(180deg, var(--accent-strong) 0%, var(--accent-deep) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 10px 24px rgba(198, 67, 42, 0.32);
  transform: translateY(-1px);
}
.button:active { transform: translateY(0); }

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.button-secondary:hover {
  background: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.button-ghost,
.inline-actions a {
  border-color: var(--line);
  background: transparent;
  color: var(--ink-soft);
}
.button-ghost:hover,
.inline-actions a:hover {
  background: rgba(20, 24, 31, 0.04);
  border-color: var(--line-strong);
  color: var(--ink);
}

.inline-actions a { min-height: 38px; padding: 0 14px; font-size: 13px; }

.inline-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s-4);
}

/* Hero proof side */
.hero-proof {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ink);
}

.hero-art {
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 22, 28, 0.30) 0%, rgba(17, 22, 28, 0.80) 100%),
    url("./viral-hero.jpg") center/cover;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 67, 42, 0.34), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(31, 95, 86, 0.38), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-art > * { position: relative; z-index: 1; }

.hero-art-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(198, 67, 42, 0.18);
  border: 1px solid rgba(255, 107, 74, 0.5);
  color: #ffd9cc;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-art-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b4a;
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.18);
  animation: pulse-dot 2.4s var(--ease-in-out) infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 74, 0.04); }
}

.hero-art-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.6rem + 1.8vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fffaf4;
  text-transform: uppercase;
}
.hero-art-headline em {
  font-style: normal;
  color: #ff8866;
}

.hero-art-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255, 250, 244, 0.66);
  letter-spacing: 0.04em;
}

.hero-proof-body {
  padding: var(--s-6);
  display: grid;
  gap: var(--s-4);
  background: linear-gradient(180deg, #161c25 0%, #0e1218 100%);
  color: rgba(255, 250, 244, 0.86);
}

.hero-proof-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.5);
}

.evidence-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.hero-stat {
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 250, 244, 0.10);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.06), rgba(255, 250, 244, 0.02));
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hero-stat strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: #fffaf4;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.hero-stat span {
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.hero-stat code {
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.14);
  color: rgba(255, 250, 244, 0.92);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: var(--s-2);
}

.pulse-card {
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 250, 244, 0.10);
  background: rgba(255, 250, 244, 0.04);
}

.pulse-card span {
  display: block;
  color: rgba(255, 250, 244, 0.5);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pulse-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  color: #fffaf4;
  letter-spacing: -0.01em;
}

/* Sections */
.section { padding: var(--s-9) 0; }
.section + .section { padding-top: 0; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}

.section-header > div { max-width: 38rem; }
.section-header h2 { margin: 0; }
.section-header p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* Card grids */
.card-grid,
.story-grid,
.page-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copy-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.story-card,
.copy-card,
.page-card,
.surface-card,
.subtle-card,
.cta-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-2) var(--ease-out),
              border-color var(--t-2) var(--ease-out),
              box-shadow var(--t-2) var(--ease-out);
  position: relative;
}

.feature-card:hover,
.story-card:hover,
.copy-card:hover,
.page-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-3);
}

.feature-card h3,
.story-card h3,
.copy-card h3,
.page-card h3,
.surface-card h3,
.subtle-card h3,
.cta-card h3,
.command-card h3,
.metric-card h3,
.gallery-card h3,
.visual-card h3,
.download-card h3,
.storyline-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}

.feature-card p,
.story-card p,
.copy-card p,
.page-card p,
.surface-card p,
.subtle-card p,
.cta-card p,
.command-card p,
.metric-card p,
.gallery-card p,
.visual-card p,
.download-card p,
.storyline-card p,
.spec-line,
.faq-copy,
.body-copy,
.list-block li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}

.feature-card p,
.story-card p,
.copy-card p,
.page-card p { margin: 0; }

/* List */
.list-block { margin: 0; padding-left: 18px; }
.list-block li + li { margin-top: 6px; }

/* Copy card */
.copy-card { display: flex; flex-direction: column; gap: var(--s-3); }

.copy-button {
  align-self: flex-start;
  border: 0;
  border-radius: var(--r-pill);
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--t-1) var(--ease-out), transform var(--t-1) var(--ease-out);
  letter-spacing: 0.01em;
}
.copy-button:hover { background: var(--accent); transform: translateY(-1px); }
.copy-button:active { transform: translateY(0); }

/* Specimen */
.specimen { display: grid; gap: var(--s-3); }

.spec-line {
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 240, 226, 0.86));
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.spec-line strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* FAQ */
.faq-list { display: grid; gap: var(--s-3); }

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: border-color var(--t-1) var(--ease-out), box-shadow var(--t-1) var(--ease-out);
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  position: relative;
  padding-right: 56px;
  user-select: none;
  transition: background var(--t-1) var(--ease-out);
}
.faq-item summary:hover { background: rgba(20, 24, 31, 0.025); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform var(--t-2) var(--ease-out);
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }

.faq-copy { padding: 0 22px 22px; color: var(--muted); line-height: 1.7; font-size: 14.5px; }

/* CTA band */
.cta-band { padding: var(--s-9) 0 var(--s-10); }

.cta-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-6);
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-2xl);
}

.cta-card h2 { margin: 0 0 var(--s-3); }
.cta-card .surface-card {
  background: linear-gradient(180deg, #fbf4e6 0%, #f4ebd6 100%);
  border: 1px solid var(--line);
  padding: var(--s-6);
  box-shadow: none;
}
.cta-card .surface-card h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
  color: var(--accent-strong);
}

/* Footer */
.site-footer { padding: var(--s-7) 0 var(--s-8); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-6);
  padding-top: var(--s-7);
  border-top: 1px solid var(--line);
  align-items: start;
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  max-width: 32rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  justify-self: end;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color var(--t-1) var(--ease-out);
}
.footer-links a:hover { color: var(--ink); }

/* Page hero (sub-pages) */
.page-hero { padding: clamp(36px, 5vw, 64px) 0 var(--s-6); }

.page-hero-side {
  padding: clamp(24px, 3vw, 32px);
  display: grid;
  gap: var(--s-3);
  align-content: start;
  background: var(--panel-tint);
}

.page-hero-side strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Compare table */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow-2);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: rgba(20, 24, 31, 0.02); }

.compare-table th {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(20, 24, 31, 0.025);
}

.compare-table td { color: var(--ink-soft); }

.good {
  color: var(--safe);
  font-weight: 700;
}
.warn {
  color: var(--accent-strong);
  font-weight: 700;
}

.note {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--teal-tint);
  color: var(--ink-soft);
  border: 1px solid rgba(31, 95, 86, 0.16);
  border-left: 3px solid var(--teal);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Pulse / visual / download / gallery / storyline */
.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-4);
}

.visual-stack { display: grid; gap: var(--s-4); }

.visual-card,
.download-card,
.gallery-card,
.storyline-card,
.metric-card,
.reel-frame {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-2) var(--ease-out), box-shadow var(--t-2) var(--ease-out);
}

.visual-card:hover,
.download-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.visual-card,
.download-card,
.gallery-card,
.storyline-card,
.metric-card { padding: var(--s-5); }

.visual-card img,
.download-card img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: #fff;
}

.visual-card h3,
.download-card h3,
.storyline-card h3,
.metric-card h3 {
  margin-top: var(--s-4);
  font-size: 18px;
  line-height: 1.25;
}

.visual-card p,
.download-card p {
  margin: var(--s-3) 0 0;
}

.media-strip { padding: 8px 0 0; }

.reel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-2);
}

.reel::before,
.reel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.reel::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.reel::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }

.reel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px;
  animation: reel-drift 28s linear infinite;
}

.reel:hover .reel-track { animation-play-state: paused; }

.reel-frame {
  width: min(560px, calc(100vw - 80px));
  padding: 14px;
}

.reel-frame img {
  width: 100%;
  border-radius: var(--r-md);
}

.reel-frame figcaption {
  margin-top: var(--s-3);
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.download-grid,
.gallery-grid,
.storyline-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card { display: grid; gap: var(--s-3); align-content: start; }
.gallery-card h3 { margin: 0; }
.gallery-card p { margin: 0; }

.verdict-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}

.verdict-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent-strong);
  border: 1px solid var(--accent-tint-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.verdict-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.verdict-pill.review {
  background: var(--teal-tint);
  color: var(--teal);
  border-color: rgba(31, 95, 86, 0.18);
}
.verdict-pill.review::before { background: var(--teal); }

.proof-row {
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fbf5e9 100%);
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 13.5px;
  font-family: var(--mono);
}

.source-list { display: grid; gap: var(--s-3); }

.source-list a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--t-1) var(--ease-out);
}
.source-list a:hover { color: var(--accent-deep); }

.download-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-3);
}

.download-tag,
.metric-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.metric-card { padding: var(--s-5); }

.metric-value {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  margin: var(--s-2) 0;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.metric-value-small {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.metric-note { margin: 0; font-size: 13px; color: var(--muted); }

.storyline-card { min-height: 100%; }
.storyline-card .small-caps { display: block; margin-bottom: var(--s-2); }

.badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--t-1) var(--ease-out),
              border-color var(--t-1) var(--ease-out),
              transform var(--t-1) var(--ease-out);
}
.badge-link:hover {
  background: #fff;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.media-notice {
  padding: 18px 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(31, 95, 86, 0.18);
  background: var(--teal-tint);
  color: var(--ink-soft);
  border-left: 3px solid var(--teal);
}

.media-notice p { margin: 0; line-height: 1.65; }

/* Install / command surfaces */
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
}

.command-card {
  padding: var(--s-6);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}

.command-card p { margin: 0 0 var(--s-4); color: var(--muted); line-height: 1.65; }

.command-block {
  margin: 0 0 var(--s-4);
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #14181f;
  color: #e8e0cf;
  font-family: var(--mono);
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.55;
  position: relative;
}

.command-block::before {
  content: "$";
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--accent);
  font-weight: 600;
  pointer-events: none;
}
.command-block { padding-left: 32px; }

/* Trap Lab — dark anchor section */
.trap-lab-hero {
  padding: var(--s-9) 0 var(--s-7);
}

.trap-lab-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(28px, 6vw, 80px);
  border-radius: var(--r-2xl);
  color: #fffaf4;
  background:
    radial-gradient(circle at 14% 22%, rgba(198, 67, 42, 0.55), transparent 22rem),
    radial-gradient(circle at 82% 12%, rgba(31, 95, 86, 0.42), transparent 24rem),
    radial-gradient(circle at 88% 88%, rgba(246, 239, 227, 0.10), transparent 20rem),
    linear-gradient(135deg, #0e131c 0%, #1f120c 62%, #0c1217 100%);
  border: 1px solid rgba(255, 250, 244, 0.12);
  box-shadow: var(--shadow-4);
}

.trap-lab-panel::before {
  content: "TRAP LAB";
  position: absolute;
  right: -0.18em;
  bottom: -0.32em;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.07em;
  color: rgba(255, 250, 244, 0.05);
  pointer-events: none;
}

.trap-lab-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 75%);
  pointer-events: none;
}

.trap-lab-panel > * { position: relative; z-index: 1; }

.trap-lab-panel .kicker {
  color: rgba(255, 250, 244, 0.78);
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.14);
}
.trap-lab-panel .kicker::before { background: #ff6b4a; box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.2); }

.trap-lab-panel h1 {
  max-width: 18ch;
  color: #fffaf4;
  font-size: clamp(2.6rem, 1.6rem + 4.5vw, 5.6rem);
  letter-spacing: -0.03em;
}

.trap-lab-panel p {
  max-width: 56ch;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(15px, 0.85rem + 0.4vw, 18px);
  line-height: 1.65;
}

.trap-lab-panel .button-secondary {
  border-color: rgba(255, 250, 244, 0.22);
  background: rgba(255, 250, 244, 0.08);
  color: #fffaf4;
  backdrop-filter: blur(6px);
}
.trap-lab-panel .button-secondary:hover {
  background: rgba(255, 250, 244, 0.16);
  border-color: rgba(255, 250, 244, 0.4);
}
.trap-lab-panel .button-ghost {
  border-color: rgba(255, 250, 244, 0.18);
  color: rgba(255, 250, 244, 0.86);
}
.trap-lab-panel .button-ghost:hover {
  background: rgba(255, 250, 244, 0.06);
  color: #fffaf4;
}

/* Codex grid */
.codex-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-4);
}

.rune-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: var(--s-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f4e8d3 100%);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-3) var(--ease-out), box-shadow var(--t-3) var(--ease-out);
}
.rune-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.rune-card:nth-child(2n) { transform: translateY(12px); }
.rune-card:nth-child(2n):hover { transform: translateY(8px); }
.rune-card:nth-child(3n) { transform: translateY(-6px); }
.rune-card:nth-child(3n):hover { transform: translateY(-10px); }

.rune {
  position: absolute;
  top: -28px;
  right: -16px;
  font-family: var(--serif);
  font-size: 160px;
  line-height: 1;
  font-weight: 700;
  color: rgba(198, 67, 42, 0.10);
  pointer-events: none;
}

.rune-card h3 {
  position: relative;
  margin: var(--s-3) 0 var(--s-3);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.rune-card p {
  position: relative;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.rune-card strong {
  color: var(--ink);
  font-weight: 700;
}

/* Pull-quote / share-bait card */
.pullquote {
  position: relative;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse at top right, rgba(198, 67, 42, 0.16), transparent 60%),
    linear-gradient(180deg, #fdf8ef 0%, #f4ebd6 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

.pullquote::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--accent-tint);
  pointer-events: none;
}

.pullquote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 32ch;
}

.pullquote cite {
  display: block;
  margin-top: var(--s-4);
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Mini stat row · screenshot-bait big numbers */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-4);
  padding: var(--s-6);
  border-radius: var(--r-xl);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}

.stat-row .stat {
  display: grid;
  gap: 4px;
}

.stat-row .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.6rem + 1.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.stat-row .stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 404 */
.not-found-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--s-6);
}

.not-found-card {
  width: min(720px, 100%);
  padding: var(--s-7);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
}

/* Animation */
@keyframes reel-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-4) var(--ease-out), transform var(--t-4) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .reel-track { animation: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .cta-card,
  .footer-grid,
  .copy-grid,
  .card-grid,
  .story-grid,
  .page-grid,
  .visual-grid,
  .download-grid,
  .gallery-grid,
  .storyline-grid,
  .codex-grid,
  .install-grid,
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .codex-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pulse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: start;
  }

  .rune-card:nth-child(n) { transform: none; }
  .rune-card:nth-child(n):hover { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  :root { --max: 100%; }

  .site-header .shell {
    flex-direction: column;
    align-items: start;
    padding: 12px 0;
  }

  .nav { justify-content: flex-start; gap: 4px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .nav::-webkit-scrollbar { display: none; }

  .hero { padding: var(--s-7) 0 var(--s-5); }
  .page-hero { padding: var(--s-6) 0 var(--s-4); }

  .hero-copy,
  .page-hero-copy,
  .page-hero-side,
  .hero-proof-body,
  .feature-card,
  .story-card,
  .copy-card,
  .page-card,
  .cta-card,
  .surface-card,
  .subtle-card,
  .visual-card,
  .download-card,
  .gallery-card,
  .storyline-card,
  .metric-card,
  .command-card { padding: var(--s-5); }

  .codex-grid { grid-template-columns: 1fr; }
  .pulse-grid { grid-template-columns: 1fr; }

  h1, .page-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  h2, .section-title { font-size: clamp(1.5rem, 5vw, 2.1rem); }

  .button, .button-secondary, .button-ghost { font-size: 13.5px; padding: 0 14px; }

  .footer-links { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Live widget (#live-widget on home; /widget-demo/ standalone)
   Migrated from inline <style> in widget-demo so both surfaces render
   identically off the same source of truth. Visitor input is rendered
   via createElement + textContent only — never innerHTML.
   --------------------------------------------------------------------------- */
.hpm-widget { display: grid; gap: var(--s-3); }
.hpm-widget textarea {
  width: 100%;
  min-height: 160px;
  padding: 14px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fffefa;
  color: var(--ink);
  resize: vertical;
  box-sizing: border-box;
}
.hpm-widget-actions { display: flex; gap: var(--s-2); flex-wrap: wrap; align-items: center; }
.hpm-widget-privacy { font-size: 13px; color: var(--ink-soft); }
.hpm-widget-result { display: grid; gap: var(--s-3); margin-top: var(--s-3); }
.hpm-widget-result:empty { display: none; }
.hpm-result-head { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }
.hpm-result-blurb { margin: 0; color: var(--ink-soft); font-size: 14px; max-width: 56ch; }
.hpm-counts { display: flex; flex-wrap: wrap; gap: 8px; }
.hpm-counts-empty { color: var(--ink-soft); font-size: 14px; }
.hpm-count {
  display: inline-flex; gap: 6px; align-items: baseline;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: #f4efe2; color: var(--ink); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
}
.hpm-count strong { font-size: 13px; }
.hpm-count-critical { background: #fde2e2; color: #8a1f1f; }
.hpm-count-high { background: #ffe7d4; color: #8a4a14; }
.hpm-count-medium { background: var(--teal-tint); color: var(--teal); }
.hpm-count-low { background: #eef2e8; color: #44563a; }
.hpm-findings { list-style: none; counter-reset: hpm; margin: 0; padding: 0; display: grid; gap: 10px; }
.hpm-finding {
  counter-increment: hpm;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  background: #fffaee;
  display: grid;
  gap: 6px;
}
.hpm-finding-head { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; font-size: 13px; }
.hpm-finding-head strong { font-family: var(--mono); }
.hpm-finding-fam { color: var(--ink-soft); }
.hpm-finding-sev { margin-left: auto; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.hpm-finding-snippet {
  font-family: var(--mono);
  font-size: 13px;
  background: #fbf5e9;
  border: 1px dashed var(--line);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  color: var(--ink);
  word-break: break-word;
}
.hpm-finding-why { font-size: 13.5px; color: var(--ink-soft); }
.hpm-finding-anchors {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.hpm-finding-anchors span { background: #f4efe2; padding: 2px 8px; border-radius: var(--r-pill); }
.hpm-share { display: grid; gap: 6px; margin-top: var(--s-3); }
.hpm-share label { font-size: 13px; color: var(--ink-soft); }
.hpm-share input {
  font-family: var(--mono); font-size: 12px;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fbf5e9; color: var(--ink);
}
.hpm-shared-banner { padding: 10px 12px; border-radius: var(--r-sm); background: var(--teal-tint); color: var(--teal); font-size: 13px; }
.hpm-examples { display: grid; gap: 8px; }
.hpm-example-button {
  text-align: left;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fffefa;
  color: var(--ink);
  cursor: pointer;
}
.hpm-example-button:hover { background: #fbf5e9; }
.hpm-example-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-right: 8px; }

/* ---------------------------------------------------------------------------
   Hero install-strip (CLI / Claude Code tabs)
   Reuses .copy-card and .copy-button — only adds the tab container shell.
   --------------------------------------------------------------------------- */
.install-strip { margin-top: var(--s-5); display: grid; gap: var(--s-3); max-width: 520px; }
.install-strip-tabs { display: inline-flex; gap: 4px; padding: 4px; background: rgba(20, 24, 31, 0.06); border-radius: var(--r-pill); width: max-content; }
.install-tab { border: 0; background: transparent; padding: 6px 14px; border-radius: var(--r-pill); font: inherit; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.install-tab.is-active { background: var(--ink); color: #fff; }
.install-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.install-pane[hidden] { display: none; }
.install-pane code,
.install-pane .install-code { font-family: var(--mono); font-size: 14px; padding: 10px 14px; display: block; background: rgba(20, 24, 31, 0.06); border-radius: var(--r-sm); }

@media not all and (hover: hover) {
  .button:hover, .button-secondary:hover { transform: none; }
  .feature-card:hover, .story-card:hover, .copy-card:hover, .page-card:hover { transform: none; }
  .copy-button:hover { transform: none; }
  .rune-card:hover { transform: none; }
}
