:root {
  --ink: #2a2438;
  --ink-soft: #4a4258;
  --muted: #6b6478;
  --faint: #9a93a6;
  --cream: #fff8f0;
  --cream-2: #fff1e4;
  --sky: #e8f4fc;
  --sky-2: #d4ebf8;
  --panel: #ffffff;
  --line: rgba(42, 36, 56, 0.1);
  --coral: #ff6b5b;
  --coral-deep: #e85a4b;
  --sunflower: #ffc93c;
  --teal: #2ec4b6;
  --teal-deep: #1fa89c;
  --lavender: #a78bfa;
  --lavender-soft: #ede9fe;
  --shadow: 0 12px 40px rgba(42, 36, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(42, 36, 56, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-rounded, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Nunito", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral-deep); }
.container { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-mark {
  display: flex;
  align-items: end;
  gap: 3px;
  width: 22px;
  height: 22px;
}
.brand-mark span {
  display: block;
  width: 5px;
  background: linear-gradient(180deg, var(--coral), var(--sunflower));
  border-radius: 4px;
}
.brand-mark span:nth-child(1) { height: 10px; opacity: 0.75; }
.brand-mark span:nth-child(2) { height: 17px; }
.brand-mark span:nth-child(3) { height: 22px; opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
}
.nav-cta:hover { background: var(--coral-deep); color: #fff !important; }
.nav-cta span {
  color: var(--sunflower);
  font-size: 14px;
  margin-left: 5px;
}

/* Typography */
.eyebrow {
  font: 700 11px/1.2 ui-monospace, "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin: 0 0 20px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.2);
  margin: 0 8px 1px 0;
}
h1, h2 {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
em { font-style: normal; color: var(--coral); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 91, 0.35);
}
.button-primary:hover {
  color: #fff;
  background: var(--coral-deep);
}
.button-quiet {
  padding-left: 4px;
  color: var(--ink-soft);
  background: transparent;
}
.button-quiet span {
  color: var(--coral);
  font-size: 16px;
}
.button-ghost {
  background: var(--panel);
  border: 2px solid var(--line);
  color: var(--ink);
}
.button-ghost:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}
.button-light {
  background: var(--ink);
  color: #fff;
  padding: 16px 22px;
}
.button-light:hover {
  background: var(--coral-deep);
  color: #fff;
}
.button-block { width: 100%; justify-content: center; }

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.blob-coral { background: rgba(255, 107, 91, 0.22); }
.blob-teal { background: rgba(46, 196, 182, 0.2); }
.blob-sun { background: rgba(255, 201, 60, 0.28); }
.blob-lav { background: rgba(167, 139, 250, 0.18); }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(255, 201, 60, 0.25), transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(46, 196, 182, 0.18), transparent 45%),
    linear-gradient(165deg, var(--sky) 0%, var(--cream) 55%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.hero h1 { font-size: clamp(46px, 5.8vw, 72px); }
.hero-lede {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  max-width: 500px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.microcopy {
  font: 12px/1.5 ui-sans-serif, system-ui, sans-serif;
  color: var(--muted);
  margin-top: 32px;
  max-width: 420px;
}
.story-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 11px/1 ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  border: 1.5px solid rgba(46, 196, 182, 0.35);
  background: rgba(255, 255, 255, 0.7);
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.story-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

/* Hero console — storybook panel */
.hero-console {
  box-shadow: 0 28px 70px rgba(42, 36, 56, 0.14);
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(42, 36, 56, 0.08);
  box-shadow: var(--shadow-lg);
  border-radius: 22px;
  transform: rotate(0.8deg);
  overflow: hidden;
}
.console-top,
.console-foot {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, #fff6ee, #f0f9f7);
  border-bottom: 1px solid var(--line);
}
.console-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #faf6f1;
}
.live-label { color: var(--teal-deep); }
.live-label i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--teal);
  margin: 0 5px 1px 0;
}
.console-body { display: flex; min-height: 340px; }
.console-sidebar {
  width: 56px;
  padding: 28px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fffaf5;
}
.side-line {
  display: block;
  width: 16px;
  height: 4px;
  border-radius: 3px;
  background: #e8dcd0;
}
.side-line.active {
  background: linear-gradient(180deg, var(--coral), var(--sunflower));
  height: 18px;
  width: 5px;
}
.side-line.short { width: 10px; }
.console-main { padding: 26px 24px; flex: 1; }
.console-heading {
  font-size: 13px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--ink);
}
.console-date {
  font: 10px ui-monospace, "DM Mono", monospace;
  color: var(--faint);
  font-weight: 600;
}
.metric-row {
  display: flex;
  gap: 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.metric-row div { display: flex; flex-direction: column; }
.metric-row strong {
  font-size: 26px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.metric-row span {
  font: 10px ui-monospace, "DM Mono", monospace;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}
.signal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(46, 196, 182, 0.25);
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.08), rgba(255, 201, 60, 0.06));
  border-radius: 14px;
  padding: 13px 14px;
  margin-top: 16px;
}
.signal-icon { font-size: 18px; color: var(--teal-deep); }
.signal-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.signal-copy b { font-size: 12px; color: var(--ink); }
.signal-copy span {
  font: 11px/1.3 system-ui, sans-serif;
  color: var(--muted);
}
.signal-check { color: var(--teal); font-size: 14px; font-weight: 800; }
.muted-card {
  border-color: var(--line);
  background: #faf7f3;
}
.muted-card .signal-icon { color: var(--lavender); }
.signal-time {
  font: 10px ui-monospace, "DM Mono", monospace;
  color: var(--muted);
  font-weight: 600;
}
.story-progress {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.story-progress-label {
  display: flex;
  justify-content: space-between;
  font: 10px ui-monospace, "DM Mono", monospace;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.story-progress-bar {
  height: 10px;
  background: #f0e8df;
  border-radius: 999px;
  overflow: hidden;
}
.story-progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--teal), var(--sunflower), var(--coral));
  border-radius: 999px;
}
.console-graph {
  height: 44px;
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}
.console-graph span {
  flex: 1;
  background: linear-gradient(to top, rgba(255, 107, 91, 0.15), rgba(46, 196, 182, 0.65));
  border-radius: 4px 4px 0 0;
}
.console-graph span:nth-child(1) { height: 25%; }
.console-graph span:nth-child(2) { height: 42%; }
.console-graph span:nth-child(3) { height: 35%; }
.console-graph span:nth-child(4) { height: 60%; }
.console-graph span:nth-child(5) { height: 45%; }
.console-graph span:nth-child(6) { height: 70%; }
.console-graph span:nth-child(7) { height: 59%; }
.console-graph span:nth-child(8) { height: 84%; }
.console-graph span:nth-child(9) { height: 66%; }
.console-graph span:nth-child(10) { height: 92%; }
.console-graph span:nth-child(11) { height: 72%; }
.console-graph span:nth-child(12) { height: 100%; }
.graph-labels {
  display: flex;
  justify-content: space-between;
  font: 9px ui-monospace, "DM Mono", monospace;
  color: var(--faint);
  padding-top: 6px;
  font-weight: 600;
}

/* Sections */
.section { padding: 110px 0; position: relative; }
.section-dark {
  background: linear-gradient(180deg, #fff4e8 0%, #f0f7fb 100%);
  border-top: 1px solid rgba(42, 36, 56, 0.06);
  border-bottom: 1px solid rgba(42, 36, 56, 0.06);
}
.section-intro h2 { font-size: clamp(36px, 4.4vw, 54px); }
.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 80px;
  align-items: end;
}
.split-intro > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 3px;
}
.centered { text-align: center; }
.centered .section-intro p:last-child,
.section-intro.centered > p:last-child {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 24px auto 0;
  font-size: 16px;
}

/* Steps / pillars */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  min-height: 280px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step:nth-child(1) { border-top: 4px solid var(--coral); }
.step:nth-child(2) { border-top: 4px solid var(--teal); }
.step:nth-child(3) { border-top: 4px solid var(--sunflower); }
.step:nth-child(4) { border-top: 4px solid var(--lavender); }
.step-number,
.card-index {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  color: var(--faint);
}
.step-icon {
  font-size: 28px;
  margin: 28px 0 14px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
}
.step:nth-child(1) .step-icon { color: var(--coral); background: rgba(255, 107, 91, 0.12); }
.step:nth-child(2) .step-icon { color: var(--teal-deep); background: rgba(46, 196, 182, 0.14); }
.step:nth-child(3) .step-icon { color: #c9920a; background: rgba(255, 201, 60, 0.22); }
.step:nth-child(4) .step-icon { color: #7c5cbf; background: var(--lavender-soft); }
.step h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.step p,
.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 240px;
  margin: 0;
}
.step-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.step-burn {
  display: inline-block;
  margin-top: 14px;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(46, 196, 182, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Trust */
.trust-section {
  background: linear-gradient(160deg, #2a2438 0%, #3d3554 100%);
  color: #f8f4ff;
}
.trust-section .eyebrow { color: var(--sunflower); }
.trust-section h2 { color: #fff; }
.trust-section em { color: var(--sunflower); }
.trust-section .section-intro p:last-child {
  color: rgba(248, 244, 255, 0.72);
  max-width: 480px;
  margin: 24px auto 0;
  font-size: 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
}
.trust-card .card-index { color: rgba(248, 244, 255, 0.5); }
.trust-card h3 {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin: 40px 0 16px;
  color: #fff;
}
.trust-card p {
  color: rgba(248, 244, 255, 0.7);
  max-width: 280px;
}
.trust-card a {
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  color: var(--sunflower);
}
.trust-card a span {
  font-size: 15px;
  margin-left: 6px;
}
.accent-card {
  background: linear-gradient(145deg, rgba(255, 107, 91, 0.35), rgba(255, 201, 60, 0.25));
  border-color: rgba(255, 201, 60, 0.3);
}
.accent-card .card-index { color: rgba(255, 255, 255, 0.65); }
.accent-card p { color: rgba(255, 255, 255, 0.85); }

/* Continuity strip (home — product story, not tokens) */
.continuity-strip {
  background: var(--panel);
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.continuity-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.continuity-strip h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}
.continuity-strip > .container > .continuity-inner > div > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
  margin: 0 0 28px;
}
.promise-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.promise-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(42, 36, 56, 0.04);
}
.promise-list .promise-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.promise-list li:nth-child(1) .promise-icon { background: rgba(255, 107, 91, 0.15); color: var(--coral); }
.promise-list li:nth-child(2) .promise-icon { background: rgba(46, 196, 182, 0.15); color: var(--teal-deep); }
.promise-list li:nth-child(3) .promise-icon { background: rgba(255, 201, 60, 0.25); color: #b8860b; }
.promise-list li:nth-child(4) .promise-icon { background: var(--lavender-soft); color: #7c5cbf; }
.promise-list span {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  color: var(--faint);
  margin-left: auto;
  letter-spacing: 0.04em;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-item h3 {
  font-size: 16px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--ink);
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-item a { color: var(--coral); font-weight: 600; }

/* CTA */
.cta-section {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 201, 60, 0.35), transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(255, 107, 91, 0.2), transparent 45%),
    linear-gradient(120deg, #ffe8d6, #e8f6f4);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.cta-inner h2 { font-size: clamp(40px, 5vw, 58px); }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  font: 600 11px/1.4 system-ui, sans-serif;
  color: var(--muted);
  background: var(--cream-2);
}
.footer-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-wrap div { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-wrap a { font-weight: 600; }

/* Simple / legal pages */
.simple-page {
  min-height: calc(100vh - 155px);
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255, 201, 60, 0.2), transparent 40%),
    radial-gradient(ellipse at 10% 60%, rgba(46, 196, 182, 0.12), transparent 40%),
    var(--cream);
}
.narrow-page { max-width: 810px; }
.wide-page { max-width: 1100px; }
.simple-page h1 {
  font-size: clamp(48px, 6.5vw, 74px);
  margin-bottom: 28px;
}
.page-lede {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 610px;
  margin-bottom: 64px;
}
.draft-badge {
  display: inline-block;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.12em;
  color: #5a3d00;
  background: var(--sunflower);
  padding: 8px 12px;
  margin-bottom: 24px;
  border-radius: 999px;
}
.example-badge {
  display: inline-block;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  color: var(--coral-deep);
  border: 1.5px solid rgba(255, 107, 91, 0.35);
  background: rgba(255, 107, 91, 0.08);
  padding: 8px 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 999px;
}
.updated {
  font: 600 12px system-ui, sans-serif;
  color: var(--faint);
  margin-top: -12px;
  margin-bottom: 48px;
}
.legal-page h1 { margin-bottom: 20px; }
.legal-page h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 40px 0 12px;
}
.legal-page p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
  max-width: 700px;
}
.legal-page a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-note {
  border-left: 3px solid var(--coral);
  padding: 16px 18px;
  background: rgba(255, 107, 91, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px !important;
  margin-top: 48px;
}

/* Pricing */
.pricing-note {
  border: 1.5px solid rgba(255, 107, 91, 0.25);
  background: rgba(255, 107, 91, 0.06);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: -36px 0 48px;
  line-height: 1.7;
}
.pricing-note strong { color: var(--ink); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  border-color: rgba(255, 107, 91, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: transparent;
  background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
  box-shadow: 0 20px 50px rgba(255, 107, 91, 0.18);
  outline: 2px solid var(--coral);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card .pack-name {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 16px;
}
.price-card h2 {
  font-size: 42px;
  letter-spacing: -0.05em;
  margin: 0 0 6px;
}
.price-card .pack-tokens {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 20px;
}
.price-card .pack-tokens strong {
  color: var(--ink);
  font-weight: 700;
}
.price-example {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.price-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card li::before {
  content: "✓";
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}
.enterprise-row {
  border: 2px dashed rgba(46, 196, 182, 0.4);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(46, 196, 182, 0.06);
  margin-bottom: 72px;
}
.enterprise-row h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}
.enterprise-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
}

.burn-section { margin-top: 20px; }
.burn-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}
.burn-section > p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.75;
}
.burn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.burn-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow);
}
.burn-card .burn-code {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.burn-card h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.burn-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.policy-draft {
  margin-top: 48px;
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  background: rgba(46, 196, 182, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.policy-draft h3 {
  font-size: 15px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.policy-draft p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  max-width: 680px;
}
.policy-draft a { color: var(--coral); font-weight: 600; }

/* How page — classic flow */
.how-flow {
  display: grid;
  gap: 0;
  margin: 48px 0 64px;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.how-step:last-child { border-bottom: 1px solid var(--line); }
.how-num {
  font: 800 28px/1 system-ui, sans-serif;
  color: var(--coral);
  letter-spacing: -0.04em;
}
.how-step h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.how-step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 12px;
}
.how-meta {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.how-meta a { color: var(--coral); text-transform: none; letter-spacing: 0; font-size: 13px; }

/* How page expansion */
.how-wide { max-width: 980px; }
.how-hero {
  position: relative;
  padding: 100px 0 72px;
  background:
    radial-gradient(ellipse at 75% 10%, rgba(255, 201, 60, 0.22), transparent 40%),
    radial-gradient(ellipse at 5% 70%, rgba(167, 139, 250, 0.12), transparent 40%),
    var(--cream);
  overflow: hidden;
}
.how-lede { margin-bottom: 48px; }

.problem-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.problem-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.problem-card:nth-child(1) { border-top: 3px solid var(--coral); }
.problem-card:nth-child(2) { border-top: 3px solid var(--teal); }
.problem-card:nth-child(3) { border-top: 3px solid var(--sunflower); }
.problem-card:nth-child(4) { border-top: 3px solid var(--lavender); }
.problem-label {
  display: block;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 16px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.scenario-frame {
  margin-top: 52px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.scenario-header,
.scenario-foot {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #fff6ee, #f0f9f7);
  border-bottom: 1px solid var(--line);
}
.scenario-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #faf6f1;
}
.scenario-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.scenario-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 30px 28px;
  border-bottom: 1px solid var(--line);
}
.scenario-step:last-child { border-bottom: 0; }
.scenario-badge {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  padding-top: 4px;
}
.scenario-body h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.scenario-body > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
  max-width: 640px;
}
.operator-see {
  border-left: 3px solid var(--teal);
  background: rgba(46, 196, 182, 0.08);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  max-width: 640px;
}
.operator-label {
  display: block;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.operator-see p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}
.operator-see strong { color: var(--ink); font-weight: 700; }

.primitive-stack {
  display: grid;
  gap: 18px;
  margin-top: 56px;
}
.primitive-deep {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.primitive-head {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.primitive-kicker {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 8px;
}
.primitive-head h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0;
}
.primitive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 36px;
}
.primitive-grid h4 {
  font: 700 11px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 10px;
}
.primitive-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}
.burn-chip {
  display: inline-block;
  font: 700 10px ui-monospace, "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: rgba(46, 196, 182, 0.14);
  padding: 5px 10px;
  border-radius: 999px;
  margin-right: 8px;
  margin-bottom: 4px;
}

.icp-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.icp-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.icp-card h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.icp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.not-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.not-grid h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  margin-bottom: 18px;
}
.not-lede {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  max-width: 420px;
  margin: 0;
}
.not-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.not-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.not-list li:last-child { border-bottom: 1px solid var(--line); }
.not-list strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.not-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.how-faq-link {
  margin: 32px 0 0;
  font: 600 13px system-ui, sans-serif;
  color: var(--muted);
}
.how-faq-link a { color: var(--coral); font-weight: 700; }

.trust-nudge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trust-nudge-grid .policy-draft { margin: 0; }

.pillars-more {
  margin-top: 36px;
  font-size: 15px;
  color: var(--muted);
  text-align: center;
}
.pillars-more a {
  color: var(--coral);
  font-weight: 700;
}

/* Legacy aliases kept so older markup still renders */
.token-pill { display: none; }
.token-meter { display: none; }
.token-strip { display: none; }
.burn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.burn-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.burn-list .burn-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(46, 196, 182, 0.14);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.burn-list span {
  font: 700 10px ui-monospace, "DM Mono", monospace;
  color: var(--faint);
  margin-left: auto;
}

@media (max-width: 950px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .enterprise-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 850px) {
  .container { width: min(var(--max), calc(100% - 40px)); }
  .nav-links { gap: 12px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .hero { padding: 72px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-console { transform: none; }
  .split-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 240px; }
  .continuity-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .burn-grid { grid-template-columns: 1fr; }
  .cta-inner {
    align-items: start;
    flex-direction: column;
    gap: 36px;
  }
  .footer-wrap {
    padding: 20px 0;
    align-items: start;
    flex-direction: column;
  }
  .simple-page { padding: 72px 0 80px; }
  .how-step { grid-template-columns: 50px 1fr; gap: 14px; }
  .how-hero { padding: 72px 0 56px; }
  .problem-strip { grid-template-columns: 1fr 1fr; }
  .scenario-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
  }
  .primitive-grid { grid-template-columns: 1fr; }
  .primitive-head { flex-direction: column; gap: 10px; }
  .icp-strip { grid-template-columns: 1fr; }
  .not-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-nudge-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 42px; }
  .hero-lede { font-size: 16px; }
  .console-sidebar { width: 40px; }
  .console-main { padding: 20px 14px; }
  .metric-row { gap: 24px; }
  .metric-row strong { font-size: 22px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; }
  .cta-section { padding: 72px 0; }
  .simple-page h1 { font-size: 48px; }
  .price-card h2 { font-size: 36px; }
  .problem-strip { grid-template-columns: 1fr; }
  .primitive-deep { padding: 24px 18px; }
  .primitive-head h3 { font-size: 20px; }
}

/* Also-works secondary examples */
.also-works{margin-top:36px;padding:28px 30px;background:rgba(255,255,255,.55);border:1px solid var(--line);border-radius:22px;box-shadow:0 12px 40px rgba(42,36,56,.06)}
.also-works-label{font:600 11px/1.2 ui-sans-serif,system-ui,sans-serif;letter-spacing:.14em;text-transform:uppercase;color:var(--faint);margin:0 0 14px}
.also-works-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px 28px}
.also-works-list li{font-size:14px;line-height:1.55;color:var(--ink-soft);margin:0}
.also-works-list strong{color:var(--ink)}
@media(max-width:700px){.also-works-list{grid-template-columns:1fr}.also-works{padding:22px}}


/* Wisp: head-and-shoulders peek from behind the hero card */
.brand .mascot-sm {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 4px 10px rgba(42, 36, 56, 0.16));
}

/* Meet Wisp */
.wisp-meet {
  background: linear-gradient(165deg, var(--sky) 0%, var(--cream) 60%, var(--cream-2) 100%);
}
.wisp-meet-inner {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
.wisp-meet-art {
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(42, 36, 56, 0.16));
  border-radius: 24px;
}
.wisp-meet-copy h2 {
  margin: 0.35rem 0 0.85rem;
}
.wisp-meet-copy p:last-child {
  color: var(--ink-soft);
  max-width: 36rem;
}
@media (max-width: 700px) {
  .wisp-meet-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wisp-meet-copy p:last-child {
    margin-inline: auto;
  }
}
