@font-face {
  font-family: "Jersey 10";
  src: url("/assets/fonts/jersey-10-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --signal-orange: #bf3e10;
  --orange-bright: #ff5e24;
  --orange-dark: #a9320b;
  --ember-crust: #6c3200;
  --cloud-mist: #e3f1fe;
  --cloud-soft: #f4f9fe;
  --graphite-ink: #232629;
  --midnight-ink: #101828;
  --paper-white: #ffffff;
  --slate-pencil: #5c6066;
  --ash-mist: #989ea4;
  --blush-shadow: #dbced0;
  --line: #c9deef;
  --line-strong: #a9c9e2;
  --success: #136b4f;
  --danger: #8c2f17;
  --font-display: "Jersey 10", ui-sans-serif, system-ui, sans-serif;
  --font-ui: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow-sm: 0 2px 4px rgba(15, 34, 52, 0.05), 0 12px 30px rgba(15, 34, 52, 0.05);
  --shadow-lg: 0 8px 20px rgba(15, 34, 52, 0.06), 0 34px 70px rgba(15, 34, 52, 0.09);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--graphite-ink);
  background: var(--cloud-mist);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select { font: inherit; }

a { color: inherit; text-decoration: none; }
button,
a { -webkit-tap-highlight-color: transparent; }
img,
svg { display: block; max-width: 100%; }
p,
h1,
h2,
h3,
ul,
ol,
dl { margin-top: 0; }

h1,
h2,
h3 {
  color: var(--midnight-ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 { margin-bottom: 28px; font-size: clamp(62px, 7.6vw, 104px); line-height: 0.82; }
h1 span,
.page-hero h1 span { color: var(--signal-orange); }
h2 { margin-bottom: 22px; font-size: clamp(48px, 5.5vw, 72px); line-height: 0.88; }
h3 { margin-bottom: 12px; font-size: 36px; line-height: 0.95; }
p { color: var(--slate-pencil); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: 112px; }
.section--paper { background: var(--paper-white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; color: var(--paper-white); background: var(--graphite-ink); border-radius: 4px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--midnight-ink); outline-offset: 3px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--paper-white);
  background: var(--signal-orange);
  border: 1px solid var(--signal-orange);
  border-radius: 5px;
  box-shadow: 0 2px 0 var(--ember-crust);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { color: var(--slate-pencil); background: var(--line); border-color: var(--line); box-shadow: none; cursor: wait; transform: none; }
.button--small { min-height: 42px; padding: 9px 16px; font-size: 14px; }
.button--full { width: 100%; }
.button--secondary { color: var(--graphite-ink); background: var(--paper-white); border-color: var(--line-strong); box-shadow: 0 2px 0 var(--line-strong); }
.button--secondary:hover { color: var(--graphite-ink); background: var(--cloud-soft); border-color: var(--graphite-ink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-block: 6px; color: var(--graphite-ink); border-bottom: 1px solid transparent; font-weight: 800; }
.text-link:hover { color: var(--signal-orange); border-color: currentColor; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--graphite-ink); font-size: 12px; font-weight: 800; letter-spacing: 0.13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow__pixel { width: 9px; height: 9px; flex: 0 0 auto; background: var(--orange-bright); box-shadow: 4px 4px 0 var(--ember-crust); }
.credit-amount { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.credit-icon { position: relative; width: 18px; height: 18px; display: inline-block; flex: 0 0 auto; background: var(--orange-bright); border: 1px solid var(--ember-crust); border-radius: 50%; box-shadow: 2px 2px 0 var(--ember-crust); }
.credit-icon--md { width: 23px; height: 23px; box-shadow: 3px 3px 0 var(--ember-crust); }
.credit-icon i { position: absolute; width: 3px; height: 3px; background: var(--paper-white); }
.credit-icon i:nth-child(1) { top: 3px; left: 7px; }
.credit-icon i:nth-child(2) { top: 7px; left: 3px; }
.credit-icon i:nth-child(3) { top: 7px; left: 7px; }
.credit-icon i:nth-child(4) { top: 7px; right: 3px; }
.credit-icon i:nth-child(5) { bottom: 3px; left: 7px; background: var(--ember-crust); }
.credit-icon--md i { width: 4px; height: 4px; }
.credit-icon--md i:nth-child(1) { top: 3px; left: 9px; }
.credit-icon--md i:nth-child(2) { top: 8px; left: 4px; }
.credit-icon--md i:nth-child(3) { top: 8px; left: 9px; }
.credit-icon--md i:nth-child(4) { top: 8px; right: 4px; }
.credit-icon--md i:nth-child(5) { bottom: 3px; left: 9px; }
.section-heading { max-width: 770px; margin: 0 auto 60px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading > p { max-width: 650px; margin: 0 auto; font-size: 17px; }
.section-heading--left { margin: 0; text-align: left; }
.section-heading--left .eyebrow { justify-content: flex-start; }
.section-heading--left > p { margin-inline: 0; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(227, 241, 254, 0.97); border-bottom: 1px solid transparent; transition: border-color 180ms ease, background-color 180ms ease; }
.site-header.is-scrolled { background: var(--paper-white); border-color: var(--line); }
.nav-shell { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 10px; color: var(--midnight-ink); font-size: 23px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark { position: relative; width: 28px; height: 28px; display: block; }
.brand-mark span { position: absolute; width: 7px; height: 7px; background: var(--orange-bright); }
.brand-mark span:nth-child(1) { top: 0; left: 7px; }
.brand-mark span:nth-child(2) { top: 7px; left: 0; }
.brand-mark span:nth-child(3) { top: 7px; left: 14px; }
.brand-mark span:nth-child(4) { top: 14px; left: 7px; }
.brand-mark span:nth-child(5) { top: 21px; left: 7px; background: var(--ember-crust); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { padding: 8px 10px; border-radius: 5px; font-size: 13px; font-weight: 700; }
.site-nav a:hover,
.site-nav a.is-active { color: var(--signal-orange); background: var(--paper-white); }
.site-nav a.is-active { box-shadow: 0 0 0 1px var(--line); }
.site-nav a.mobile-nav-cta { display: none; }
.nav-cta { justify-self: end; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid var(--line); border-radius: 5px; }
.nav-toggle > span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; }

.hero { position: relative; min-height: calc(100svh - 78px); display: flex; align-items: center; padding-block: 76px 108px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr); align-items: center; gap: 70px; }
.hero__lead { max-width: 650px; margin-bottom: 32px; font-size: 18px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 30px 0 0; padding: 0; color: var(--slate-pencil); font-size: 13px; font-weight: 700; list-style: none; }
.trust-list span { margin-right: 5px; color: var(--signal-orange); }
.hero__visual { position: relative; }
.guardian-frame { position: relative; overflow: hidden; background: var(--paper-white); border: 6px solid var(--paper-white); border-radius: 16px; box-shadow: var(--shadow-lg); }
.guardian-frame img { width: 100%; height: auto; image-rendering: pixelated; }
.guardian-status { position: absolute; right: 16px; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--paper-white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-sm); }
.guardian-status strong,
.guardian-status small { display: block; }
.guardian-status strong { font-size: 14px; }
.guardian-status small { color: var(--slate-pencil); font-size: 12px; }
.status-led { width: 11px; height: 11px; flex: 0 0 auto; background: var(--orange-bright); box-shadow: 4px 4px 0 var(--ember-crust); }
.orbit-pixel { position: absolute; width: 12px; height: 12px; background: var(--orange-bright); }
.orbit-pixel--one { top: -22px; right: 16%; animation: pixel-blink 2.4s steps(2, end) infinite; }
.orbit-pixel--two { bottom: 22%; left: -22px; width: 8px; height: 8px; background: var(--ember-crust); animation: pixel-blink 3.1s steps(2, end) infinite reverse; }
.orbit-pixel--three { right: -12px; bottom: 5%; width: 6px; height: 6px; animation: pixel-blink 2.8s steps(2, end) infinite; }
.pixel-cloud { position: absolute; width: 88px; height: 48px; opacity: 0.55; pointer-events: none; }
.pixel-cloud span { position: absolute; width: 16px; height: 16px; background: var(--paper-white); outline: 1px solid var(--line-strong); }
.pixel-cloud span:nth-child(1) { left: 16px; top: 16px; }
.pixel-cloud span:nth-child(2) { left: 32px; top: 0; }
.pixel-cloud span:nth-child(3) { left: 48px; top: 0; }
.pixel-cloud span:nth-child(4) { left: 64px; top: 16px; }
.pixel-cloud span:nth-child(5) { left: 32px; top: 16px; }
.pixel-cloud span:nth-child(6) { left: 48px; top: 16px; }
.pixel-cloud--one { top: 12%; left: 2%; }
.pixel-cloud--two { right: 2%; bottom: 7%; transform: scale(0.72); }

.page-hero { padding-block: 104px 96px; border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.page-hero h1 { max-width: 850px; }
.page-hero__lead { max-width: 720px; margin-bottom: 0; font-size: 19px; }

.demo-section { background: var(--cloud-soft); border-block: 1px solid var(--line); }
.demo-layout,
.split-section,
.docs-grid,
.faq-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr); align-items: center; gap: 88px; }
.section-copy > p { max-width: 620px; margin-bottom: 28px; font-size: 17px; }
.numbered-list { display: grid; gap: 14px; margin: 0 0 24px; padding: 0; list-style: none; }
.numbered-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.numbered-list li > span,
.docs-steps > li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); box-shadow: 3px 3px 0 var(--ember-crust); font-size: 11px; font-weight: 800; }
.numbered-list strong,
.numbered-list small { display: block; }
.numbered-list strong { font-size: 14px; }
.numbered-list small { color: var(--slate-pencil); font-size: 12px; }

.demo-card,
.code-window { overflow: hidden; background: var(--paper-white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); }
.window-bar,
.code-window__bar { min-height: 48px; display: flex; align-items: center; gap: 8px; padding-inline: 16px; background: #f5f5f7; border-bottom: 1px solid #e4e5e7; }
.window-bar > span,
.code-window__bar > span { width: 10px; height: 10px; border-radius: 50%; background: #ff766d; }
.window-bar > span:nth-child(2),
.code-window__bar > span:nth-child(2) { background: #f4bf4f; }
.window-bar > span:nth-child(3),
.code-window__bar > span:nth-child(3) { background: #62c554; }
.window-bar strong,
.code-window__bar strong { margin-left: 4px; color: var(--slate-pencil); font-family: var(--font-ui); font-size: 11px; }
.demo-card__body { padding: 30px; }
.demo-card__heading { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.demo-card__heading strong,
.demo-card__heading small { display: block; }
.demo-card__heading small { color: var(--slate-pencil); font-size: 12px; }
.pixel-avatar { position: relative; width: 40px; height: 40px; flex: 0 0 auto; background: var(--cloud-mist); border: 1px solid var(--line); border-radius: 5px; }
.pixel-avatar i { position: absolute; width: 7px; height: 7px; background: var(--orange-bright); }
.pixel-avatar i:nth-child(1) { top: 8px; left: 8px; }
.pixel-avatar i:nth-child(2) { top: 8px; right: 8px; }
.pixel-avatar i:nth-child(3) { top: 16px; left: 16px; }
.pixel-avatar i:nth-child(4) { top: 24px; left: 8px; background: var(--graphite-ink); }
.pixel-avatar i:nth-child(5) { top: 24px; right: 8px; background: var(--graphite-ink); }
.demo-card label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; }
.demo-card input { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid var(--line); border-radius: 5px; }
.demo-card input:focus { border-color: var(--signal-orange); outline: 2px solid rgba(255, 94, 36, 0.2); outline-offset: 0; }
.honeypot,
.instrument-frame { position: fixed !important; top: -10000px !important; left: -10000px !important; width: 320px !important; height: 2px !important; overflow: hidden !important; border: 0 !important; }
.captyo-widget { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-block: 20px 12px; padding: 14px; background: var(--cloud-soft); border: 1px solid var(--line); border-left: 4px solid var(--signal-orange); border-radius: 5px; transition: background-color 180ms ease, border-color 180ms ease; }
.captyo-widget.is-working { background: var(--cloud-mist); }
.captyo-widget.is-success { background: var(--paper-white); border-color: var(--success); }
.captyo-widget.is-error { background: #fff7f4; border-color: var(--danger); }
.captyo-widget__icon { width: 38px; height: 38px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); border-radius: 5px; font-weight: 800; }
.is-working .captyo-widget__icon span { width: 16px; height: 16px; color: transparent; border: 3px solid var(--paper-white); border-right-color: transparent; border-radius: 50%; animation: verify-spin 700ms steps(8, end) infinite; }
.captyo-widget__copy strong,
.captyo-widget__copy small { display: block; }
.captyo-widget__copy strong { font-size: 13px; }
.captyo-widget__copy small { color: var(--slate-pencil); font-size: 11px; }
.captyo-mini-brand { display: flex; align-items: center; gap: 5px; color: var(--slate-pencil); font-size: 10px; font-weight: 800; }
.captyo-mini-brand span { width: 7px; height: 7px; background: var(--orange-bright); box-shadow: 3px 3px 0 var(--ember-crust); }
.demo-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 14px; }
.demo-progress span { height: 4px; background: var(--line); transition: background-color 180ms ease; }
.demo-progress span.is-active { background: var(--signal-orange); }
.demo-result { min-height: 24px; margin-top: 12px; color: var(--slate-pencil); font-size: 12px; text-align: center; }
.demo-result.is-success { color: var(--success); font-weight: 700; }
.demo-result.is-error { color: var(--danger); font-weight: 700; }
.demo-meta { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 18px; }
.demo-meta:not([hidden]) { display: grid; }
.demo-meta > span { padding: 10px; background: #f5f5f7; border-radius: 5px; text-align: center; }
.demo-meta strong,
.demo-meta small { display: block; }
.demo-meta strong { font-size: 13px; }
.demo-meta small { color: var(--slate-pencil); font-size: 10px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; background: var(--paper-white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.feature-card .card-index { display: inline-block; margin-bottom: 50px; color: var(--signal-orange); font-family: var(--font-display); font-size: 28px; }
.feature-card h3 { font-size: 39px; }
.feature-card p { flex: 1; margin-bottom: 22px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); list-style: none; }
.process-grid li { min-height: 330px; padding: 34px; background: var(--paper-white); }
.process-grid li > span { display: block; margin-bottom: 70px; color: var(--signal-orange); font-family: var(--font-display); font-size: 32px; }
.process-grid h3 { font-size: 40px; }
.stack-list { display: grid; gap: 12px; }
.stack-list article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 22px; background: var(--paper-white); border: 1px solid var(--line); }
.stack-list article > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); font-size: 13px; font-weight: 800; }
.stack-list h3 { margin: 0 0 4px; font-family: var(--font-ui); font-size: 16px; font-weight: 800; letter-spacing: 0; }
.stack-list p { margin: 0; font-size: 13px; }
.truth-panel { padding: 48px; background: var(--cloud-soft); border: 1px solid var(--line); border-left: 6px solid var(--signal-orange); }
.truth-panel > div:first-child { display: grid; grid-template-columns: 0.7fr 1.3fr; align-items: end; gap: 40px; margin-bottom: 46px; }
.truth-panel > div:first-child .eyebrow { margin: 0; }
.truth-panel h2 { margin: 0; }
.truth-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.truth-columns > div { padding: 28px; background: var(--paper-white); border: 1px solid var(--line); }
.truth-columns h3 { font-family: var(--font-ui); font-size: 16px; font-weight: 800; letter-spacing: 0; }
.check-list,
.plain-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.check-list li,
.plain-list li { position: relative; padding-left: 24px; color: var(--slate-pencil); font-size: 14px; }
.check-list li::before { position: absolute; left: 0; color: var(--signal-orange); content: "✓"; font-weight: 800; }
.plain-list li::before { position: absolute; top: 0.72em; left: 4px; width: 7px; height: 1px; background: var(--ash-mist); content: ""; }

.use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.use-card { min-height: 350px; padding: 32px; background: var(--paper-white); border: 1px solid var(--line); }
.use-card > span { display: block; margin-bottom: 36px; color: var(--signal-orange); font-family: var(--font-display); font-size: 30px; }
.use-card h3 { font-size: 43px; }
.use-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.use-card li { padding: 5px 9px; color: var(--slate-pencil); background: var(--cloud-soft); border: 1px solid var(--line); border-radius: 4px; font-size: 11px; font-weight: 700; }
.decision-list { display: grid; gap: 12px; }
.decision-list > div { display: grid; grid-template-columns: 50px 1fr; align-items: start; gap: 16px; padding: 22px; background: var(--paper-white); border: 1px solid var(--line); }
.decision-list > div > span { padding: 5px 6px; color: var(--success); background: #e8f7f1; border: 1px solid #aedaca; font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; }
.decision-list .is-muted > span { color: var(--danger); background: #fff1ec; border-color: var(--blush-shadow); }
.decision-list p { margin: 0; }
.decision-list strong,
.decision-list small { display: block; }
.decision-list strong { color: var(--midnight-ink); font-size: 14px; }
.decision-list small { margin-top: 3px; font-size: 12px; }

.pricing-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.pricing-toolbar h2 { margin: 0; }
.billing-toggle { display: flex; gap: 4px; padding: 4px; margin: 0; background: var(--cloud-soft); border: 1px solid var(--line); }
.billing-toggle label { cursor: pointer; }
.billing-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.billing-toggle span { min-height: 43px; display: flex; align-items: center; gap: 7px; padding: 9px 14px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 800; white-space: nowrap; }
.billing-toggle small { color: var(--signal-orange); font-size: 10px; }
.billing-toggle input:checked + span { background: var(--paper-white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.billing-toggle input:focus-visible + span { outline: 3px solid var(--midnight-ink); outline-offset: 2px; }
.vulmir-plan { display: grid; grid-template-columns: auto 1.25fr 0.75fr 0.8fr auto; align-items: center; gap: 26px; margin-bottom: 22px; padding: 30px; color: var(--paper-white); background: var(--graphite-ink); border-top: 5px solid var(--signal-orange); }
.vulmir-mark { width: 56px; height: 56px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); box-shadow: 5px 5px 0 var(--ember-crust); font-family: var(--font-display); font-size: 40px; }
.vulmir-plan h3 { margin: 4px 0 7px; color: var(--paper-white); font-family: var(--font-ui); font-size: 18px; font-weight: 800; letter-spacing: 0; }
.vulmir-plan p { margin: 0; color: #ced4da; font-size: 12px; }
.plan-label { color: var(--signal-orange); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.vulmir-plan .plan-label { color: var(--orange-bright); }
.vulmir-metric strong,
.vulmir-metric span,
.vulmir-metric small,
.vulmir-total > span,
.vulmir-total > strong,
.vulmir-total > small { display: block; }
.vulmir-metric strong,
.vulmir-total > strong { color: var(--paper-white); font-size: 20px; }
.vulmir-metric span,
.vulmir-total > span { color: #ced4da; font-size: 11px; }
.vulmir-metric small,
.vulmir-total > small { margin-top: 3px; color: var(--ash-mist); font-size: 9px; }
.vulmir-total .credit-amount { display: inline-flex; color: var(--paper-white); }
.vulmir-total .credit-icon { border-color: var(--paper-white); box-shadow: 2px 2px 0 var(--paper-white); }
.vulmir-plan .button--secondary { white-space: nowrap; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { position: relative; min-height: 600px; display: flex; flex-direction: column; padding: 30px; background: var(--paper-white); border: 1px solid var(--line); }
.plan-card.is-featured { border: 2px solid var(--signal-orange); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -14px; right: 20px; padding: 5px 9px; color: var(--paper-white); background: var(--signal-orange); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.plan-card h3 { margin: 8px 0; font-size: 48px; }
.plan-description { min-height: 52px; font-size: 13px; }
.plan-price { min-height: 90px; margin-block: 26px 22px; }
.plan-price strong,
.plan-price span { display: block; }
.plan-price strong { color: var(--midnight-ink); font-family: var(--font-display); font-size: 58px; font-weight: 400; line-height: 0.85; }
.plan-price span { margin-top: 8px; color: var(--slate-pencil); font-size: 11px; }
.plan-credit { padding-block: 18px; border-block: 1px solid var(--line); }
.plan-credit > strong,
.plan-credit > span,
.plan-credit > small { display: block; }
.plan-credit > strong { color: var(--midnight-ink); font-size: 15px; }
.plan-credit > span { margin-top: 5px; color: var(--signal-orange); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.plan-credit > small { margin-top: 4px; color: var(--slate-pencil); font-size: 10px; }
.plan-card ul { flex: 1; display: grid; align-content: start; gap: 10px; margin: 22px 0 28px; padding: 0; list-style: none; }
.plan-card li { display: flex; gap: 8px; color: var(--slate-pencil); font-size: 12px; }
.plan-card li span { color: var(--signal-orange); font-weight: 800; }
.plan-card .button { width: 100%; }
.pricing-note { max-width: 850px; margin: 22px auto 0; font-size: 11px; text-align: center; }
.credit-packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.credit-pack { min-width: 0; display: flex; flex-direction: column; padding: 24px; background: var(--paper-white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.credit-pack__head { min-height: 28px; display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.credit-pack__head > span { color: var(--slate-pencil); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.credit-pack__head > small { padding: 3px 6px; color: var(--paper-white); background: var(--signal-orange); font-size: 9px; font-weight: 800; }
.credit-pack > strong { margin-block: 35px; color: var(--midnight-ink); font-family: var(--font-display); font-size: 34px; font-weight: 400; line-height: 1; }
.credit-pack__price { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 18px; margin-top: auto; border-top: 1px solid var(--line); }
.credit-pack__price b { font-size: 13px; }
.credit-pack__price span { color: var(--slate-pencil); font-size: 9px; text-align: right; }
.credit-terms { display: grid; grid-template-columns: 34px 1fr; gap: 14px; margin-top: 18px; padding: 18px; background: var(--cloud-soft); border: 1px solid var(--line); border-left: 4px solid var(--signal-orange); }
.credit-terms > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); font-weight: 800; }
.credit-terms p { margin: 0; font-size: 12px; }
.credit-terms strong { color: var(--midnight-ink); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--paper-white); text-align: left; }
th,
td { padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: 13px; }
thead th { color: var(--slate-pencil); background: var(--cloud-soft); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

.notice-section { padding-top: 34px; }
.notice { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 20px; background: var(--paper-white); border: 1px solid var(--line); border-left: 4px solid var(--signal-orange); }
.notice > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); font-weight: 800; }
.notice strong { display: block; margin-bottom: 3px; }
.notice p { margin: 0; font-size: 12px; }
.docs-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.docs-steps li { min-height: 280px; padding: 30px; background: var(--cloud-soft); border: 1px solid var(--line); }
.docs-steps li > span { margin-bottom: 42px; }
.docs-steps h3 { font-family: var(--font-ui); font-size: 16px; font-weight: 800; letter-spacing: 0; }
.docs-steps p { font-size: 13px; }
.docs-steps code { display: inline-block; padding: 5px 7px; color: var(--ember-crust); background: var(--paper-white); border: 1px solid var(--line); font-size: 11px; }
.endpoint-list { display: grid; gap: 10px; }
.endpoint-list details { background: var(--paper-white); border: 1px solid var(--line); }
.endpoint-list summary { min-height: 62px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 13px 16px; cursor: pointer; list-style: none; }
.endpoint-list summary::-webkit-details-marker { display: none; }
.endpoint-list summary i { color: var(--signal-orange); font-style: normal; font-size: 20px; }
.endpoint-list details[open] summary i { transform: rotate(45deg); }
.endpoint-list details > div { padding: 0 16px 18px 102px; }
.endpoint-list details p { font-size: 12px; }
.http-method { padding: 5px 7px; color: var(--paper-white); background: var(--graphite-ink); font-size: 9px; font-weight: 800; }
.endpoint-list dl { display: grid; gap: 6px; margin: 0; }
.endpoint-list dl div { display: grid; grid-template-columns: 42px 1fr; gap: 8px; font-size: 11px; }
.endpoint-list dt { color: var(--signal-orange); font-weight: 800; }
.endpoint-list dd { margin: 0; color: var(--slate-pencil); }
.code-window__bar button { margin-left: auto; padding: 5px 8px; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid #d8dade; border-radius: 3px; font-size: 10px; font-weight: 800; cursor: pointer; }
.code-window pre { min-height: 250px; margin: 0; padding: 28px; overflow: auto; color: #e9edf2; background: var(--graphite-ink); font-size: 12px; line-height: 1.8; }
.data-list { display: grid; gap: 12px; }
.data-list article { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 22px; background: var(--paper-white); border: 1px solid var(--line); }
.data-list article > span { color: var(--signal-orange); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.data-list h3 { margin-bottom: 5px; font-family: var(--font-ui); font-size: 15px; font-weight: 800; letter-spacing: 0; }
.data-list p { margin: 0; font-size: 12px; }

.policy-builder { display: grid; gap: 30px; }
.policy-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0; margin: 0; border: 0; }
.policy-levels legend { margin-bottom: 14px; color: var(--midnight-ink); font-size: 13px; font-weight: 800; }
.policy-levels label { cursor: pointer; }
.policy-levels input { position: absolute; opacity: 0; pointer-events: none; }
.policy-levels label > span { min-height: 94px; display: flex; flex-direction: column; justify-content: center; padding: 19px 22px; background: var(--cloud-soft); border: 1px solid var(--line); border-left: 5px solid var(--line-strong); }
.policy-levels strong,
.policy-levels small { display: block; }
.policy-levels strong { color: var(--midnight-ink); font-size: 15px; }
.policy-levels small { margin-top: 3px; color: var(--slate-pencil); font-size: 11px; }
.policy-levels input:checked + span { background: var(--paper-white); border-color: var(--signal-orange); border-left-color: var(--signal-orange); box-shadow: var(--shadow-sm); }
.policy-levels input:focus-visible + span { outline: 3px solid var(--midnight-ink); outline-offset: 3px; }
.policy-workspace { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); align-items: start; gap: 22px; }
.policy-rules { overflow: hidden; background: var(--paper-white); border: 1px solid var(--line); }
.policy-rules__heading,
.policy-preview__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.policy-rules__heading { min-height: 88px; padding: 18px 22px; background: var(--cloud-soft); border-bottom: 1px solid var(--line); }
.policy-rules__heading h3,
.policy-preview__heading h3 { margin: 0; font-family: var(--font-ui); font-size: 16px; font-weight: 800; letter-spacing: 0; }
.policy-rules__heading p { margin: 2px 0 0; font-size: 11px; }
.policy-rules__heading button,
.policy-preview__heading button { padding: 7px 10px; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid var(--line-strong); border-radius: 3px; font-size: 10px; font-weight: 800; cursor: pointer; }
.policy-rule { min-height: 96px; display: grid; grid-template-columns: minmax(210px, 1fr) minmax(190px, 0.7fr) 126px; align-items: center; gap: 18px; padding: 17px 22px; border-bottom: 1px solid var(--line); transition: opacity 160ms ease, background-color 160ms ease; }
.policy-rule:last-child { border-bottom: 0; }
.policy-rule.is-disabled { opacity: 0.58; background: #fafcfe; }
.policy-switch { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px; cursor: pointer; }
.policy-switch input { position: absolute; opacity: 0; pointer-events: none; }
.policy-switch > span { position: relative; width: 36px; height: 20px; background: var(--ash-mist); border: 1px solid var(--slate-pencil); border-radius: 10px; }
.policy-switch > span::after { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; background: var(--paper-white); border: 1px solid var(--line-strong); border-radius: 50%; content: ""; transition: left 150ms ease; }
.policy-switch input:checked + span { background: var(--signal-orange); border-color: var(--ember-crust); }
.policy-switch input:checked + span::after { left: 18px; }
.policy-switch input:focus-visible + span { outline: 3px solid var(--midnight-ink); outline-offset: 3px; }
.policy-switch strong { color: var(--midnight-ink); font-size: 12px; line-height: 1.35; }
.policy-value,
.policy-action { display: grid; gap: 4px; color: var(--slate-pencil); font-size: 9px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.policy-value input,
.policy-action select { width: 100%; min-height: 40px; padding: 8px 10px; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid var(--line-strong); border-radius: 3px; font-size: 11px; text-transform: none; }
.policy-value input:focus,
.policy-action select:focus { border-color: var(--signal-orange); outline: 2px solid rgba(255, 94, 36, 0.2); outline-offset: 0; }
.policy-action { min-width: 0; }
.policy-preview { position: sticky; top: 100px; overflow: hidden; background: var(--graphite-ink); border-top: 5px solid var(--signal-orange); box-shadow: var(--shadow-lg); }
.policy-preview__heading { min-height: 88px; padding: 18px 20px; border-bottom: 1px solid #4b4f53; }
.policy-preview__heading span { display: block; margin-bottom: 3px; color: var(--signal-orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.policy-preview__heading h3 { color: var(--paper-white); }
.policy-preview pre { max-height: 520px; margin: 0; padding: 22px; overflow: auto; color: #e9edf2; font-size: 12px; line-height: 1.7; }
.policy-preview > p { margin: 0; padding: 14px 20px; color: #b9c1c8; border-top: 1px solid #4b4f53; font-size: 10px; }
.policy-test { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); align-items: stretch; gap: 22px; }
.policy-context { padding: 30px; background: var(--paper-white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.policy-context__heading,
.policy-runner__heading { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 15px; margin-bottom: 26px; }
.policy-context__heading > span,
.policy-runner__heading > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--paper-white); background: var(--signal-orange); box-shadow: 3px 3px 0 var(--ember-crust); font-size: 11px; font-weight: 800; }
.policy-context h3,
.policy-runner h3 { margin: 0; font-family: var(--font-ui); font-size: 17px; font-weight: 800; letter-spacing: 0; }
.policy-context__heading p { margin: 3px 0 0; font-size: 11px; }
.policy-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.policy-fields label { display: grid; gap: 5px; color: var(--slate-pencil); font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.policy-fields input,
.policy-fields select { width: 100%; min-height: 44px; padding: 9px 11px; color: var(--graphite-ink); background: var(--paper-white); border: 1px solid var(--line-strong); border-radius: 3px; font-size: 12px; text-transform: none; }
.policy-fields input:focus,
.policy-fields select:focus { border-color: var(--signal-orange); outline: 2px solid rgba(255, 94, 36, 0.2); outline-offset: 0; }
.policy-field--wide { grid-column: 1 / -1; }
.policy-context__hint { margin: 18px 0 0; padding: 12px 14px; background: var(--cloud-soft); border-left: 3px solid var(--signal-orange); font-size: 11px; }
.policy-context__hint code { color: var(--ember-crust); font-weight: 800; }
.policy-runner { display: flex; flex-direction: column; padding: 30px; color: var(--paper-white); background: var(--graphite-ink); border-top: 5px solid var(--signal-orange); box-shadow: var(--shadow-lg); transition: border-color 160ms ease, background-color 160ms ease; }
.policy-runner.is-success { border-color: var(--success); }
.policy-runner.is-error { border-color: var(--danger); }
.policy-runner__heading { margin-bottom: 18px; }
.policy-runner h3 { color: var(--paper-white); }
.policy-runner__heading small { display: block; margin-bottom: 3px; color: var(--signal-orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.policy-runner > p { min-height: 52px; margin-bottom: 24px; color: #b9c1c8; font-size: 13px; }
.policy-applied { margin-bottom: 22px; padding: 15px 16px; background: #303438; border: 1px solid #4b4f53; border-left: 4px solid var(--signal-orange); }
.policy-applied span,
.policy-applied strong,
.policy-applied small { display: block; }
.policy-applied span { margin-bottom: 4px; color: var(--ash-mist); font-size: 8px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.policy-applied strong { color: var(--paper-white); font-size: 16px; }
.policy-applied small { margin-top: 4px; color: #b9c1c8; font-size: 10px; line-height: 1.5; }
.policy-runner .demo-progress { margin-top: auto; }
.policy-runner .demo-progress span { background: #4b4f53; }
.policy-runner .demo-progress span.is-active { background: var(--signal-orange); }
.policy-test-result { min-height: 24px; margin-top: 13px; color: #b9c1c8; font-size: 11px; text-align: center; }
.policy-test-result.is-success { color: #9ad7c1; font-weight: 700; }
.policy-test-result.is-error { color: #ffb7a3; font-weight: 700; }
.policy-test-meta { grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 17px; }
.policy-test-meta:not([hidden]) { display: grid; }
.policy-test-meta > span { padding: 10px 7px; background: #303438; border: 1px solid #4b4f53; text-align: center; }
.policy-test-meta strong,
.policy-test-meta small { display: block; }
.policy-test-meta strong { color: var(--paper-white); font-size: 12px; }
.policy-test-meta small { margin-top: 2px; color: var(--ash-mist); font-size: 8px; }
.policy-test-matches { margin-top: 15px; padding-top: 14px; border-top: 1px solid #4b4f53; }
.policy-test-matches > strong { display: block; margin-bottom: 6px; color: var(--paper-white); font-size: 10px; }
.policy-test-matches ul { display: flex; flex-wrap: wrap; gap: 5px; margin: 0; padding: 0; list-style: none; }
.policy-test-matches li { padding: 4px 7px; color: #d9dee3; background: #303438; border: 1px solid #4b4f53; font-size: 9px; }

.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--paper-white); border: 1px solid var(--line); }
.faq-item summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; color: var(--midnight-ink); cursor: pointer; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--signal-orange); font-size: 22px; font-weight: 400; transition: transform 160ms ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > div { padding: 0 58px 20px 20px; }
.faq-item p { margin: 0; font-size: 13px; }
.faq-page { border-bottom: 1px solid var(--line); }
.faq-group { display: grid; grid-template-columns: minmax(250px, 0.7fr) minmax(440px, 1.3fr); gap: 80px; align-items: start; }
.faq-group h2 { font-size: clamp(43px, 5vw, 62px); }
.faq-number { display: block; margin-bottom: 30px; color: var(--signal-orange); font-family: var(--font-display); font-size: 34px; }

.cta-section { background: var(--paper-white); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 48px; background: var(--cloud-mist); border: 1px solid var(--line-strong); border-bottom: 6px solid var(--signal-orange); }
.cta-band h2 { max-width: 700px; margin-bottom: 12px; }
.cta-band p { max-width: 680px; margin: 0; }
.cta-band .button { flex: 0 0 auto; }

.site-footer { padding-top: 72px; color: #d9dee3; background: var(--graphite-ink); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 56px; padding-bottom: 62px; }
.site-footer .brand { color: var(--paper-white); }
.footer-intro p { max-width: 330px; margin: 20px 0; color: #b9c1c8; font-size: 13px; }
.site-footer nav { display: grid; align-content: start; gap: 9px; }
.site-footer nav h2 { margin-bottom: 12px; color: var(--paper-white); font-family: var(--font-ui); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer nav a { color: #b9c1c8; font-size: 12px; }
.site-footer nav a:hover { color: var(--paper-white); }
.footer-meta { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--ash-mist); border-top: 1px solid #4b4f53; font-size: 11px; }
.operator-lockup { display: inline-flex; align-items: center; gap: 12px; }
.operator-lockup a { flex: 0 0 auto; opacity: 0.72; transition: opacity 160ms ease; }
.operator-lockup a:hover { opacity: 1; }
.operator-lockup img { width: 24px; height: 24px; filter: brightness(0) invert(1); }

.not-found { min-height: calc(100svh - 78px); display: grid; place-items: center; padding-block: 90px; background: var(--cloud-mist); }
.not-found__inner { max-width: 820px; text-align: center; }
.not-found__inner .eyebrow { justify-content: center; }
.not-found__inner p { margin-bottom: 30px; font-size: 18px; }
.not-found__inner > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.error-code { display: block; margin-bottom: 12px; color: var(--signal-orange); font-family: var(--font-display); font-size: 36px; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease var(--reveal-delay, 0ms), transform 500ms ease var(--reveal-delay, 0ms); }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

@keyframes verify-spin { to { transform: rotate(1turn); } }
@keyframes pixel-blink { 50% { opacity: 0.2; transform: translateY(3px); } }

@media (max-width: 1050px) {
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .site-nav { justify-self: center; }
  .hero__grid,
  .page-hero__grid,
  .demo-layout,
  .split-section,
  .docs-grid { gap: 48px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); }
  .vulmir-plan { grid-template-columns: auto 1fr 0.8fr auto; }
  .vulmir-total { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 860px) {
  .section { padding-block: 84px; }
  .nav-shell { min-height: 70px; grid-template-columns: 1fr auto; }
  .nav-toggle { display: flex; justify-self: end; }
  .nav-cta { display: none; }
  .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; align-items: stretch; padding: 16px 24px 24px; background: var(--paper-white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px; }
  .site-nav a.mobile-nav-cta { display: inline-flex; min-height: 48px; margin-top: 8px; padding: 12px; color: var(--paper-white); background: var(--signal-orange); border-color: var(--signal-orange); }
  .site-nav a.mobile-nav-cta:hover { color: var(--paper-white); background: var(--orange-dark); border-color: var(--orange-dark); }
  .hero { min-height: auto; }
  .hero__grid,
  .page-hero__grid,
  .demo-layout,
  .split-section,
  .docs-grid,
  .faq-layout,
  .faq-group { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; }
  .page-hero { padding-block: 82px 70px; }
  .feature-grid,
  .process-grid,
  .plans-grid,
  .docs-steps,
  .policy-workspace,
  .policy-test { grid-template-columns: 1fr; }
  .policy-preview { position: static; }
  .feature-card { min-height: 260px; }
  .feature-card .card-index,
  .process-grid li > span { margin-bottom: 30px; }
  .process-grid { gap: 12px; background: transparent; border: 0; }
  .process-grid li { min-height: 250px; border: 1px solid var(--line); }
  .truth-panel > div:first-child { grid-template-columns: 1fr; gap: 18px; }
  .vulmir-plan { grid-template-columns: auto 1fr auto; }
  .vulmir-metric { display: none; }
  .plan-card { min-height: auto; }
  .faq-group { gap: 38px; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid nav:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 68px; }
  h1 { font-size: clamp(54px, 18vw, 76px); }
  h2 { font-size: clamp(43px, 14vw, 60px); }
  .hero { padding-block: 62px 74px; }
  .hero__grid { gap: 48px; }
  .pixel-cloud { display: none; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .guardian-status { right: 9px; bottom: 9px; left: 9px; padding: 10px; }
  .page-hero { padding-block: 64px 58px; }
  .page-hero__grid { gap: 34px; }
  .demo-card__body { padding: 22px; }
  .captyo-widget { grid-template-columns: auto 1fr; }
  .captyo-mini-brand { display: none; }
  .use-grid,
  .truth-columns,
  .policy-levels { grid-template-columns: 1fr; }
  .policy-rule { grid-template-columns: 1fr; gap: 12px; }
  .policy-fields { grid-template-columns: 1fr; }
  .policy-field--wide { grid-column: auto; }
  .policy-context,
  .policy-runner { padding: 24px 20px; }
  .policy-test-meta { grid-template-columns: 1fr; }
  .use-card { min-height: auto; }
  .pricing-toolbar { align-items: stretch; flex-direction: column; }
  .billing-toggle { width: 100%; }
  .billing-toggle label { flex: 1; }
  .billing-toggle span { justify-content: center; }
  .vulmir-plan { grid-template-columns: auto 1fr; align-items: start; }
  .vulmir-plan .button { grid-column: 1 / -1; width: 100%; }
  .credit-packs { grid-template-columns: 1fr; }
  .credit-pack { min-height: 220px; }
  .plan-card { padding: 24px; }
  .truth-panel,
  .cta-band { padding: 28px 22px; }
  .docs-steps li { min-height: auto; }
  .endpoint-list details > div { padding-left: 16px; }
  .data-list article { grid-template-columns: 1fr; gap: 8px; }
  .faq-item summary { font-size: 14px; }
  .faq-item > div { padding-right: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-intro { grid-column: 1 / -1; }
  .footer-grid nav:last-child { grid-column: auto; }
  .footer-meta { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}
