@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Silkscreen:wght@400;700&display=swap');

:root {
  --paper: #f5f0e8;
  --paper-2: #ede7db;
  --paper-3: #e5dfd1;
  --ink: #2c2418;
  --ink-soft: #6b5d4f;
  --console: #1a1614;
  --console-2: #2a2420;
  --console-3: #352e29;
  --line: #2c2418;
  --line-soft: rgba(44, 36, 24, 0.18);
  --green: #2d5f4a;
  --green-deep: #1f4a37;
  --gold: #e8c57a;
  --gold-deep: #c9a55e;
  --purple: #6b3a7d;
  --purple-light: #8b5a9e;
  --danger: #c0392b;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(44, 36, 24, 0.12);
  --shadow-tight: 0 10px 24px rgba(44, 36, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(232, 197, 122, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(107, 58, 125, 0.12), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 1px 1px, rgba(44, 36, 24, 0.14) 1px, transparent 0),
    linear-gradient(90deg, rgba(44, 36, 24, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(44, 36, 24, 0.04) 1px, transparent 1px);
  background-size: 14px 14px, 28px 28px, 28px 28px;
}

a {
  color: inherit;
}

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

.page {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 16px 64px;
}

.panel {
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel.paper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    var(--paper);
}

.panel.console {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(232, 197, 122, 0.08), transparent 35%),
    linear-gradient(180deg, var(--console-2) 0%, var(--console) 100%);
  border-color: var(--console);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: rgba(245, 240, 232, 0.86);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  padding: 7px;
  flex: 0 0 auto;
  border: 2px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(232, 197, 122, 0.28), transparent 68%),
    var(--paper);
  box-shadow: var(--shadow-tight);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

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

.brand-title {
  font-family: "Silkscreen", monospace;
  font-size: 1rem;
  line-height: 1;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(237, 231, 219, 0.9);
  color: var(--ink-soft);
  font-family: "Silkscreen", monospace;
  font-size: 0.72rem;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  transform: translateY(-1px);
  background: var(--console);
  color: var(--paper);
}

.hero-grid,
.cta-grid,
.docs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.hero-console,
.hero-panel,
.doc-hero-main,
.doc-hero-side,
.card,
.cta-copy,
.cta-splash,
.doc-surface,
.jump-links {
  padding: 26px;
}

.eyebrow,
.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-family: "Silkscreen", monospace;
  font-size: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
  background: rgba(232, 197, 122, 0.08);
}

.paper .eyebrow {
  color: var(--green-deep);
  background: rgba(45, 95, 74, 0.08);
}

.hero-title,
.section-title,
.card h2,
.doc-copy h1,
.doc-copy h2,
.doc-copy h3,
.policy h2,
.cta-copy h2,
.hero-panel h2,
.doc-hero-side h2 {
  margin: 0;
  font-family: "Silkscreen", monospace;
  letter-spacing: -0.02em;
}

.hero-title {
  max-width: 13ch;
  margin-top: 18px;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.04;
}

.hero-title .dim {
  color: rgba(245, 240, 232, 0.75);
}

.lead,
.hero-note,
.card p,
.cta-copy p,
.hero-panel p,
.doc-hero-side p,
.doc-copy p,
.doc-copy li,
.footer-note,
.policy p,
.policy li {
  margin: 0;
  line-height: 1.72;
  color: inherit;
}

.lead {
  max-width: 44rem;
  margin-top: 18px;
  color: rgba(245, 240, 232, 0.82);
  font-size: 1.06rem;
}

.hero-note {
  margin-top: 18px;
  color: rgba(245, 240, 232, 0.62);
  font-size: 0.94rem;
}

.action-row,
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 2px solid currentColor;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--console);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.button.secondary {
  color: var(--paper);
  background: rgba(245, 240, 232, 0.08);
}

.button.paper {
  color: var(--ink);
  background: rgba(237, 231, 219, 0.92);
  box-shadow: var(--shadow-tight);
}

.button.accent {
  color: var(--paper);
  background: var(--green);
}

.flow-grid,
.metric-grid,
.card-grid {
  display: grid;
  gap: 12px;
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.flow-step {
  padding: 14px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 18px;
  background: rgba(245, 240, 232, 0.06);
}

.step-index,
.metric-title,
.section-kicker,
.card .mini-badge,
.doc-jump-label {
  font-family: "Silkscreen", monospace;
  font-size: 0.68rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.step-index {
  color: var(--gold);
}

.step-title {
  margin-top: 10px;
  font-family: "Silkscreen", monospace;
  font-size: 0.95rem;
  line-height: 1.35;
}

.step-copy {
  margin-top: 8px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.93rem;
  line-height: 1.6;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.target-field {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(44, 36, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 36, 24, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    var(--paper-2);
  background-size: 24px 24px, 24px 24px, auto, auto;
  overflow: hidden;
}

.target-field::before,
.target-field::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.target-field::before {
  width: 78%;
  aspect-ratio: 1;
  border: 2px dashed rgba(107, 58, 125, 0.32);
  box-shadow:
    0 0 0 24px rgba(107, 58, 125, 0.1),
    0 0 0 54px rgba(45, 95, 74, 0.08);
  animation: targetPulse 7s ease-in-out infinite;
}

.target-field::after {
  width: 10px;
  height: 10px;
  background: var(--danger);
  box-shadow: 0 0 0 10px rgba(192, 57, 43, 0.15);
}

.mascot {
  position: relative;
  z-index: 1;
  width: min(74%, 350px);
  object-fit: contain;
  image-rendering: pixelated;
  animation: hoverDrift 7s ease-in-out infinite;
}

.target-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.92);
  font-family: "Silkscreen", monospace;
  font-size: 0.68rem;
}

.panel-caption {
  margin-top: 16px;
  color: var(--ink-soft);
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.metric {
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.metric-title {
  color: var(--green-deep);
}

.metric p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 28px 0 14px;
}

.section-kicker {
  color: var(--ink-soft);
}

.section-title {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.section-copy {
  max-width: 42rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
}

.card.paper {
  background: rgba(245, 240, 232, 0.92);
}

.card.console {
  background:
    linear-gradient(180deg, rgba(107, 58, 125, 0.18), rgba(26, 22, 20, 0.02) 40%),
    var(--console);
  color: var(--paper);
}

.card h2 {
  margin-top: 14px;
  font-size: 1.15rem;
  line-height: 1.38;
}

.card p {
  margin-top: 12px;
  color: inherit;
  opacity: 0.82;
}

.cta-grid {
  margin-top: 18px;
}

.cta-splash {
  display: grid;
  gap: 14px;
  align-content: start;
}

.splash-frame {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 2px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06)),
    var(--paper-2);
}

.splash-frame img {
  width: min(100%, 420px);
  image-rendering: pixelated;
}

.cta-copy h2 {
  margin-top: 16px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.cta-copy p {
  margin-top: 16px;
  color: rgba(245, 240, 232, 0.78);
}

.jump-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.jump-links a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: rgba(245, 240, 232, 0.9);
  font-family: "Silkscreen", monospace;
  font-size: 0.73rem;
  line-height: 1.45;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
}

.jump-links a:hover {
  transform: translateY(-2px);
  background: white;
}

.doc-surface {
  margin-top: 18px;
}

.doc-copy {
  max-width: 940px;
}

.doc-copy h2 {
  margin: 2.1rem 0 0.85rem;
  font-size: 1.5rem;
  line-height: 1.35;
}

.doc-copy h3 {
  margin: 1.7rem 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.45;
}

.doc-copy h4 {
  margin: 1.2rem 0 0.6rem;
  font-size: 1rem;
}

.doc-copy p,
.doc-copy li,
.policy p,
.policy li {
  color: var(--ink-soft);
}

.doc-copy ul,
.doc-copy ol,
.policy ul {
  padding-left: 1.35rem;
}

.doc-copy li + li,
.policy li + li {
  margin-top: 0.42rem;
}

.doc-copy strong,
.policy strong {
  color: var(--ink);
}

.doc-copy code {
  padding: 0.1rem 0.34rem;
  border-radius: 8px;
  background: rgba(45, 95, 74, 0.1);
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.doc-copy pre {
  margin: 1.1rem 0 1.4rem;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border: 2px solid var(--console);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(232, 197, 122, 0.08), transparent 45%),
    var(--console);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  line-height: 1.62;
}

.doc-copy pre code {
  padding: 0;
  background: transparent;
}

.doc-copy blockquote {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(107, 58, 125, 0.08);
}

.doc-copy table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
}

.doc-copy th,
.doc-copy td {
  border: 2px solid var(--line);
  padding: 0.66rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.doc-copy th {
  background: var(--paper-2);
}

.doc-copy hr {
  border: 0;
  border-top: 2px solid var(--line-soft);
  margin: 2rem 0;
}

.doc-copy a,
.policy a {
  color: var(--green-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.footer-note {
  margin-top: 24px;
  font-size: 0.92rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 18px;
}

.policy-rail {
  display: grid;
  gap: 12px;
}

.policy-chip {
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.policy-chip h2 {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.policy-chip p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.footer-site {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: "Silkscreen", monospace;
  font-size: 0.72rem;
  line-height: 1.7;
}

@keyframes hoverDrift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes targetPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.56;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.018);
    opacity: 0.88;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .cta-grid,
  .docs-hero-grid,
  .policy-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 14px 12px 42px;
  }

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

  .hero-console,
  .hero-panel,
  .doc-hero-main,
  .doc-hero-side,
  .card,
  .cta-copy,
  .cta-splash,
  .doc-surface,
  .jump-links {
    padding: 18px;
  }

  .nav,
  .action-row,
  .doc-actions,
  .button,
  .flow-grid,
  .metric-grid,
  .jump-links a {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .flow-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .target-field {
    min-height: 250px;
  }
}

/* 2026-04 agent-first public-site reset */

:root {
  --site-ui-font: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  --site-tech-font: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --site-pixel-font: "Silkscreen", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

body {
  background: linear-gradient(180deg, #f7f3ec 0%, #f2ede4 100%);
  font-family: var(--site-ui-font);
}

body::before {
  content: none;
}

.page {
  max-width: 1100px;
  padding: 18px 16px 52px;
}

.panel {
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(44, 36, 24, 0.08);
}

.panel.paper,
.panel.console,
.quiet-card,
.path-card,
.doc-hero,
.policy-hero,
.hero-home {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(44, 36, 24, 0.14);
  box-shadow: 0 10px 28px rgba(44, 36, 24, 0.08);
}

.topbar {
  gap: 14px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 12px;
  background: white;
  box-shadow: none;
}

.brand-copy {
  gap: 0;
}

.brand-title {
  font-family: var(--site-pixel-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.nav {
  gap: 8px;
}

.nav-link {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(44, 36, 24, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-soft);
  font-family: var(--site-pixel-font);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.is-active {
  transform: none;
  background: var(--ink);
  color: white;
}

.site-stack {
  display: grid;
  gap: 18px;
}

.hero-home,
.doc-hero,
.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  padding: 28px;
}

.hero-copy,
.doc-hero-main {
  min-width: 0;
}

.hero-summary,
.doc-aside,
.policy-meta {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(44, 36, 24, 0.1);
  border-radius: 16px;
  background: rgba(245, 240, 232, 0.72);
}

.summary-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px;
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 14px;
  background: white;
}

.summary-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.eyebrow,
.mini-badge,
.eyebrow-muted {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 999px;
  background: rgba(45, 95, 74, 0.06);
  color: var(--green-deep);
  font-family: var(--site-pixel-font);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-muted {
  background: rgba(44, 36, 24, 0.04);
  color: var(--ink-soft);
}

.page-title,
.section-title,
.summary-title {
  font-family: var(--site-ui-font);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.page-title {
  max-width: 13ch;
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.03;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.summary-title {
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-home .summary-title,
.path-card h3 {
  font-family: var(--site-ui-font);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead,
.lead-ink,
.section-copy,
.body-copy,
.doc-copy p,
.doc-copy li,
.policy p,
.policy li,
.path-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

code {
  font-family: var(--site-tech-font);
}

.key-points code,
.body-copy code {
  padding: 0.08rem 0.32rem;
  border-radius: 6px;
  background: rgba(44, 36, 24, 0.06);
}

.lead,
.lead-ink {
  max-width: 60ch;
  margin-top: 14px;
}

.lead-ink {
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(44, 36, 24, 0.16);
  border-radius: 12px;
  font-weight: 600;
  box-shadow: none;
}

.button:hover {
  transform: none;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary,
.button.paper {
  background: white;
  color: var(--ink);
}

.section-block,
.section-card {
  display: grid;
  gap: 14px;
}

.section-head {
  display: grid;
  gap: 8px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.path-card {
  padding: 18px;
}

.path-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.path-card p {
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quiet-card {
  padding: 22px;
}

.key-points,
.feature-list {
  margin: 14px 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.key-points li,
.feature-list li {
  margin-top: 0.5rem;
  line-height: 1.6;
}

.policy-meta p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.policy-meta p + p {
  margin-top: 14px;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding: 16px;
}

.jump-links a {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 999px;
  background: white;
  font-family: var(--site-tech-font);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.agent-doc-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.agent-doc-inline-nav span {
  font-weight: 700;
}

.agent-doc-inline-nav a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
}

.agent-doc-inline-nav a:hover {
  text-decoration: underline;
}

.doc-surface {
  padding: 26px;
}

.doc-copy {
  max-width: 920px;
}

.doc-copy h1,
.doc-copy h2,
.doc-copy h3,
.doc-copy h4 {
  font-family: var(--site-tech-font);
  letter-spacing: -0.02em;
}

.doc-copy h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.55rem;
}

.doc-copy h3 {
  margin: 1.5rem 0 0.7rem;
  font-size: 1.15rem;
}

.doc-copy code {
  padding: 0.08rem 0.32rem;
  border-radius: 6px;
  background: rgba(44, 36, 24, 0.06);
}

.doc-copy pre {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 14px;
  background: #fbfaf8;
  color: var(--ink);
  box-shadow: none;
}

.doc-copy pre code {
  background: transparent;
}

.doc-copy blockquote {
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 14px;
  background: rgba(44, 36, 24, 0.03);
}

.doc-copy a,
.policy a {
  color: var(--green-deep);
}

.footer-site {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: var(--site-tech-font);
  font-size: 0.8rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .hero-home,
  .doc-hero,
  .policy-hero,
  .split-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 14px 12px 40px;
  }

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

  .nav,
  .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-home,
  .doc-hero,
  .policy-hero,
  .doc-surface,
  .quiet-card {
    padding: 18px;
  }
}

/* 2026-04 public landing refresh */

.brand-title,
.nav-link,
.eyebrow,
.mini-badge,
.page-title,
.section-title,
.summary-title,
.doc-copy h1,
.doc-copy h2,
.doc-copy h3,
.doc-copy h4,
.landing-title,
.mini-title {
  letter-spacing: 0;
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
  border-radius: 26px;
  background: #ede6d8;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.9) 34%, rgba(247, 243, 236, 0.24) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(44, 36, 24, 0.04));
  pointer-events: none;
  z-index: 1;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(28px, 5vw, 56px);
}

.landing-title {
  max-width: 13ch;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 850;
  line-height: 0.96;
}

.landing-lead {
  max-width: 59ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.product-scene {
  position: absolute;
  inset: 34px 28px 34px auto;
  width: min(54%, 600px);
  display: grid;
  align-content: center;
  gap: 14px;
  z-index: 0;
}

.screenshot-cluster {
  position: relative;
  display: grid;
  min-height: clamp(430px, 50vw, 590px);
  isolation: isolate;
}

.phone-shot {
  position: absolute;
  width: clamp(150px, 16.5vw, 208px);
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 12px 14px 0 rgba(44, 36, 24, 0.16), 0 22px 48px rgba(44, 36, 24, 0.2);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-shot-chat {
  top: 58px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.phone-shot-sessions {
  top: 92px;
  left: 42px;
  z-index: 2;
  transform: rotate(-3deg);
}

.phone-shot-agent {
  top: 126px;
  right: 0;
  z-index: 1;
  transform: rotate(3deg);
}

.chat-frame,
.agent-card {
  border: 1px solid rgba(44, 36, 24, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(44, 36, 24, 0.12);
}

.chat-frame {
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(44, 36, 24, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.chat-head div,
.agent-card div {
  display: grid;
  gap: 3px;
}

.chat-head strong,
.agent-card strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.chat-head span,
.agent-card span,
.runtime-strip span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.status-pill {
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(45, 95, 74, 0.1);
  color: var(--green-deep) !important;
  font-weight: 700;
}

.chat-messages {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.bubble {
  width: min(84%, 390px);
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  line-height: 1.52;
}

.bubble span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.bubble.human {
  background: #f3ead9;
}

.bubble.agent {
  justify-self: end;
  background: #e6f0e9;
}

.runtime-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 4px;
}

.runtime-strip div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(44, 36, 24, 0.1);
  border-radius: 12px;
  background: rgba(245, 240, 232, 0.82);
}

.runtime-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.3;
}

.agent-card {
  justify-self: end;
  display: grid;
  width: min(78%, 420px);
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 14px;
}

.agent-avatar {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--paper);
}

.agent-avatar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  image-rendering: pixelated;
}

.agent-card p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-title {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.flow-row div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(44, 36, 24, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.flow-row span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.flow-row strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
}

.flow-row p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.path-card.is-current {
  border-color: rgba(45, 95, 74, 0.46);
  background: rgba(230, 240, 233, 0.72);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 10px;
}

.footer-links a {
  color: var(--green-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (min-width: 941px) {
  .landing-hero-copy {
    max-width: 52%;
  }

  .landing-title {
    max-width: 8.8ch;
    font-size: clamp(3rem, 5.5vw, 4.9rem);
  }

  .product-scene {
    right: 30px;
    width: min(49%, 560px);
  }
}

@media (max-width: 940px) {
  .landing-hero {
    min-height: 0;
    align-items: stretch;
  }

  .landing-hero::before {
    background: linear-gradient(180deg, rgba(247, 243, 236, 0.96), rgba(247, 243, 236, 0.64));
  }

  .landing-hero-copy {
    padding-bottom: 24px;
  }

  .product-scene {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 clamp(18px, 5vw, 42px) clamp(18px, 5vw, 42px);
    z-index: 2;
  }

  .screenshot-cluster {
    min-height: clamp(330px, 74vw, 560px);
  }

  .phone-shot {
    width: clamp(120px, 28vw, 190px);
  }

  .phone-shot-sessions {
    left: max(0px, calc(50% - 230px));
  }

  .phone-shot-agent {
    right: max(0px, calc(50% - 260px));
  }

  .landing-title {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .audience-grid,
  .flow-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .panel,
  .doc-hero,
  .policy-hero,
  .quiet-card,
  .path-card {
    max-width: 100%;
    min-width: 0;
  }

  .landing-hero {
    border-radius: 20px;
  }

  .landing-hero-copy {
    padding: 22px;
  }

  .product-scene {
    margin: 0 14px 14px;
  }

  .screenshot-cluster {
    min-height: min(116vw, 470px);
  }

  .phone-shot {
    width: min(35.5vw, 156px);
    border-radius: 20px;
    box-shadow: 7px 9px 0 rgba(44, 36, 24, 0.14), 0 16px 30px rgba(44, 36, 24, 0.18);
  }

  .phone-shot-chat {
    top: 42px;
  }

  .phone-shot-sessions {
    top: 70px;
    left: 18px;
  }

  .phone-shot-agent {
    top: 94px;
    right: 0;
  }

  .page-title {
    font-size: clamp(1.85rem, 8.6vw, 2.25rem);
    line-height: 1.1;
  }

  .lead,
  .lead-ink,
  .section-copy,
  .body-copy,
  .doc-copy p,
  .doc-copy li,
  .policy p,
  .policy li,
  .path-card p {
    font-size: 0.95rem;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .doc-copy pre,
  .doc-copy table {
    max-width: 100%;
  }

  .footer-links {
    display: flex;
    margin: 8px 0 0;
  }
}

/* ========================================================================
   2026-05 white-ground refresh
   Inspired by classic Roller Coaster Tycoon UI: pure white panels, crisp
   2px black borders, chunky 2px drop-shadow bevels on buttons, restrained
   accent palette (RCT blue / yellow / green / red). Used sparingly.
   ======================================================================== */

:root {
  --paper: #ffffff;
  --paper-2: #f6f6f3;
  --paper-3: #ececea;
  --ink: #181818;
  --ink-soft: #555;
  --line: #181818;
  --line-soft: #d8d8d4;

  --rct-blue: #1d6fb8;
  --rct-blue-deep: #155489;
  --rct-yellow: #f5b800;
  --rct-yellow-deep: #c79500;
  --rct-green: #2e8b3e;
  --rct-green-deep: #1f6c2c;
  --rct-red: #d23131;

  --green: var(--rct-green);
  --green-deep: var(--rct-green-deep);
  --gold: var(--rct-yellow);
  --gold-deep: var(--rct-yellow-deep);
  --console: var(--ink);
  --console-2: #2a2a2a;
  --console-3: #3a3a3a;

  --shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  --shadow-tight: 0 1px 0 rgba(0, 0, 0, 0.06);
  --bevel: 0 2px 0 var(--ink);
  --bevel-press: 0 1px 0 var(--ink);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--site-ui-font);
}

body::before {
  content: none !important;
}

a {
  color: inherit;
}

/* Panels — pure white surface, crisp dark border, light bevel drop */
.panel,
.panel.paper,
.panel.console,
.quiet-card,
.path-card,
.doc-hero,
.policy-hero,
.hero-home,
.chat-frame,
.chat-frame .chat-head,
.agent-card,
.policy-chip,
.metric,
.flow-step,
.target-field {
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* Sub-cards: lighter, no outer drop, just a thin border */
.hero-summary,
.doc-aside,
.policy-meta,
.runtime-strip > div,
.flow-row > div,
.agent-avatar,
.brand-mark,
.summary-mark {
  background: var(--paper-2);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  box-shadow: none;
  color: var(--ink);
}

/* Topbar — flat white, crisp border */
.topbar {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

/* Brand mark image — keep pixel rendering for the mascot */
.brand-mark {
  padding: 0;
  overflow: hidden;
  background: #fbf4df;
}

.brand-mark img,
.summary-mark img,
.agent-avatar img,
.splash-frame img,
.mascot {
  image-rendering: pixelated;
}

.brand-mark img {
  width: 150%;
  height: 150%;
  max-width: none;
  transform: translate(-18%, -14%);
}

.brand-title {
  font-family: var(--site-pixel-font);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-subtitle {
  font-family: var(--site-ui-font);
  font-weight: 600;
  color: var(--ink-soft);
}

/* Nav links — chunky white tiles, RCT-blue active */
.nav-link {
  min-height: 38px;
  padding: 0 12px;
  border: 2px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--site-ui-font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-tight);
  transition: transform 80ms ease, background 80ms ease, color 80ms ease, box-shadow 80ms ease;
}

.nav-link:hover {
  transform: translateY(0);
  background: var(--paper-2);
  color: var(--ink);
}

.nav-link.is-active {
  background: var(--rct-blue);
  color: white;
  border-color: var(--ink);
  box-shadow: var(--bevel-press);
}

/* Eyebrows — small RCT-yellow tag with crisp border */
.eyebrow,
.mini-badge,
.eyebrow-muted {
  min-height: 24px;
  padding: 2px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  background: var(--rct-yellow);
  color: var(--ink);
  font-family: var(--site-ui-font);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-muted {
  background: var(--paper-2);
  color: var(--ink-soft);
  border-color: var(--line-soft);
}

.paper .eyebrow,
.doc-hero .eyebrow,
.policy-hero .eyebrow {
  background: var(--rct-yellow);
  color: var(--ink);
}

/* Headings — Inter, dark, no Silkscreen for any of these */
.page-title,
.section-title,
.summary-title,
.landing-title,
.mini-title,
.doc-copy h1,
.doc-copy h2,
.doc-copy h3,
.doc-copy h4,
.policy h2,
.cta-copy h2,
.hero-title,
.hero-panel h2,
.doc-hero-side h2,
.path-card h3,
.card h2 {
  font-family: var(--site-ui-font);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-title .dim {
  color: var(--ink-soft);
}

.lead,
.lead-ink,
.section-copy,
.body-copy,
.hero-note,
.policy p,
.policy li {
  color: var(--ink-soft);
}

/* Buttons — chunky bevel that compresses on press */
.button {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--site-ui-font);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  box-shadow: var(--bevel);
  transition: transform 80ms ease, box-shadow 80ms ease;
}

.button:hover {
  transform: translateY(1px);
  box-shadow: var(--bevel-press);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 var(--ink);
}

.button.primary {
  background: var(--rct-blue);
  color: white;
  border-color: var(--ink);
}

.button.secondary,
.button.paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}

.button.accent {
  background: var(--rct-yellow);
  color: var(--ink);
  border-color: var(--ink);
}

/* Landing-page hero — drop the cream gradient, flatten to white panel */
.landing-hero {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  min-height: auto;
  box-shadow: var(--shadow);
  overflow: visible;
}

.landing-hero::before {
  content: none;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
}

.landing-title {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Product scene — flat white frames, crisp borders */
.product-scene {
  z-index: 1;
}

.chat-frame,
.agent-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.chat-head {
  background: var(--paper-2);
  border-bottom: 2px solid var(--line);
}

.bubble {
  border-radius: 4px;
}

.bubble.human {
  background: var(--paper-2);
  border: 1.5px solid var(--line);
}

.bubble.agent {
  background: #e3edf8;
  border: 1.5px solid var(--rct-blue);
}

.runtime-strip > div {
  background: var(--paper);
}

/* Status pill — RCT-green */
.status-pill {
  min-height: 26px;
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  background: var(--rct-green);
  color: white !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Target field on agents page hero — keep panel, drop dashed circles + pulse */
.target-field {
  background: var(--paper);
  border: 2px solid var(--line);
}

.target-field::before,
.target-field::after {
  content: none;
}

.mascot {
  animation: none;
}

.target-tag {
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  background: var(--paper);
  font-family: var(--site-ui-font);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Splash frame */
.splash-frame {
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: 4px;
}

/* Doc surface */
.doc-surface,
main.panel.paper {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.doc-copy h1,
.doc-copy h2,
.doc-copy h3,
.doc-copy h4 {
  font-family: var(--site-ui-font);
  letter-spacing: -0.01em;
}

.doc-copy h2 {
  margin-top: 2.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--line-soft);
}

/* Code blocks — white-ish panel with crisp border, dark text */
.doc-copy pre {
  background: var(--paper-2);
  border: 2px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  box-shadow: var(--shadow-tight);
}

.doc-copy code {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  color: var(--ink);
}

.doc-copy pre code {
  border: 0;
  background: transparent;
}

/* Tables */
.doc-copy table {
  border: 2px solid var(--line);
  border-radius: 0;
}

.doc-copy th,
.doc-copy td {
  border: 1px solid var(--line);
}

.doc-copy th {
  background: var(--rct-blue);
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.doc-copy hr {
  border: 0;
  border-top: 2px solid var(--line);
  margin: 2rem 0;
}

.doc-copy blockquote {
  border: 2px solid var(--line);
  border-left: 6px solid var(--rct-yellow);
  border-radius: 3px;
  background: var(--paper-2);
  color: var(--ink);
}

/* Path cards — bevel that lifts on hover */
.path-card {
  border-radius: 4px;
  transition: transform 80ms ease, box-shadow 80ms ease;
}

.path-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}

.path-card.is-current {
  border-color: var(--rct-blue);
  background: var(--paper);
  box-shadow: 0 2px 0 var(--rct-blue);
}

.path-card h3 {
  font-weight: 800;
  color: var(--ink);
}

/* Text links — RCT-blue with confident underline */
.text-link {
  color: var(--rct-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.text-link:hover {
  color: var(--rct-blue-deep);
}

.doc-copy a,
.policy a,
.footer-links a {
  color: var(--rct-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.doc-copy a:hover,
.policy a:hover {
  color: var(--rct-blue-deep);
}

/* Flow row — numbered indices in RCT-blue squares */
.flow-row > div {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.flow-row span {
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--rct-blue);
  color: white;
  font-weight: 800;
  font-family: var(--site-ui-font);
  font-size: 0.92rem;
}

/* Jump links */
.jump-links {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.jump-links a {
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  font-family: var(--site-ui-font);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.jump-links a:hover {
  background: var(--paper-2);
  transform: none;
}

/* Footer — flat white tile */
.footer-site {
  margin-top: 18px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--site-ui-font);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* Console / dark-panel variant — recolor as solid black RCT-style title bar */
.panel.console,
.card.console {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.panel.console .eyebrow,
.card.console .eyebrow {
  background: var(--rct-yellow);
  color: var(--ink);
}

.panel.console .lead,
.card.console p {
  color: rgba(255, 255, 255, 0.84);
}

/* Audience grid: pure-white tiles */
.audience-grid > article {
  background: var(--paper);
}

/* Policy meta */
.policy-meta {
  background: var(--paper-2);
}

/* Drop animations */
.target-field::before,
.target-field::after,
.mascot {
  animation: none !important;
}

@keyframes hoverDrift {
  to { transform: none; }
}

@keyframes targetPulse {
  to { transform: translate(-50%, -50%); opacity: 1; }
}
