/* Tech Layoff Command Center — D4 noindexed staging build. Local CSS only. Self-hosted IBM Plex fonts. No external font CDN. */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #070d19;
  --navy-900: #0b1220;
  --navy-850: #101a2e;
  --navy-800: #10213d;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --danger-50: #fff1f2;
  --danger-300: #fda4af;
  --danger-800: #9f1239;
  --green-50: #f0fdf4;
  --green-300: #86efac;
  --green-800: #166534;
  --shadow: 0 18px 55px rgba(2, 8, 23, .16);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, .09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Inter", Arial, Helvetica, sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 99, 235, .16), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(251, 191, 36, .12), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 44%, #f8fafc 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(15, 23, 42, .6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .6) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 68%);
}

a { color: inherit; }
img, svg { max-width: 100%; }

.page-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.topbar {
  padding: 20px 0 8px;
  color: #dbeafe;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 999px;
  background: rgba(7, 13, 25, .88);
  box-shadow: 0 14px 44px rgba(2, 8, 23, .22);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  width: 44px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(37, 99, 235, .26));
}
.brand-copy { min-width: 0; }
.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.05;
}
.brand-sub {
  display: block;
  margin-top: 2px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #93c5fd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.build-pill,
.eyebrow,
.badge,
.code-label,
.micro-label {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
}
.build-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, .34);
  color: var(--amber-400);
  background: rgba(251, 191, 36, .08);
  font-size: 12px;
}

.hero {
  padding: 34px 0 28px;
}
.hero-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 6%, rgba(59, 130, 246, .30), transparent 26rem),
    radial-gradient(circle at 84% 2%, rgba(251, 191, 36, .16), transparent 22rem),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 58%, #12284c 100%);
  color: #e5e7eb;
  box-shadow: var(--shadow);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 58px);
}
.hero-copy { align-self: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #92400e;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero-card .eyebrow,
.card.dark .eyebrow {
  color: var(--amber-400);
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, .15), 0 0 24px rgba(59, 130, 246, .8);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .93;
  letter-spacing: -0.055em;
  color: var(--white);
}
.hero-copy .subhead {
  max-width: 780px;
  color: #d1d5db;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
  margin-bottom: 24px;
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0 12px;
}
.btn,
button.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 13px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #08111f;
  background: linear-gradient(180deg, #ffd56b 0%, var(--amber-400) 100%);
  box-shadow: 0 12px 24px rgba(251, 191, 36, .22);
}
.btn-secondary {
  color: #eff6ff;
  background: rgba(37, 99, 235, .15);
  border-color: rgba(147, 197, 253, .42);
}
.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  border-color: #20314f;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
}
.btn-outline {
  color: var(--blue-700);
  background: var(--white);
  border-color: var(--blue-100);
}
.btn[aria-disabled="true"], button.btn[aria-disabled="true"] { cursor: default; }
.btn[aria-disabled="true"]:hover { transform: none; }
.microcopy,
.form-note,
.small-note {
  color: #64748b;
  font-size: 14px;
}
.hero-card .microcopy { color: #cbd5e1; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-chip {
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 999px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, .06);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}
.command-panel {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(147, 197, 253, .26);
  border-radius: 24px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, .78), rgba(15, 23, 42, .96)),
    radial-gradient(circle at 30% 0%, rgba(37, 99, 235, .28), transparent 18rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.status-dots { display: flex; gap: 7px; }
.status-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-500);
}
.status-dots span:nth-child(1) { background: #ef4444; }
.status-dots span:nth-child(2) { background: var(--amber-400); }
.status-dots span:nth-child(3) { background: #22c55e; }
.panel-title {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
}
.metric b {
  display: block;
  color: var(--amber-400);
  font-size: 32px;
  line-height: 1;
}
.metric span {
  display: block;
  margin-top: 6px;
  color: #cbd5e1;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.radar {
  position: relative;
  height: 190px;
  margin-top: 16px;
  border: 1px solid rgba(147, 197, 253, .18);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(147, 197, 253, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 197, 253, .12) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(37, 99, 235, .22), transparent 62%);
  background-size: 24px 24px, 24px 24px, auto;
}
.radar::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(251, 191, 36, .34);
  border-radius: 50%;
}
.radar::after {
  content: "DEADLINES / HR / EQUITY / BENEFITS";
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #dbeafe;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .08em;
}
.scan-line {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-400), transparent);
  transform-origin: left center;
  transform: rotate(-24deg);
  box-shadow: 0 0 18px rgba(251, 191, 36, .75);
}

.section {
  padding: 28px 0;
}
.section.compact { padding: 18px 0; }
.section-header {
  max-width: 780px;
  margin-bottom: 20px;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2,
.download-hero h1,
.product-title h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.section-header p,
.lead {
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.6;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}
.card.dark {
  color: #e5e7eb;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  border-color: #20314f;
}
.card.dark h2, .card.dark h3 { color: var(--white); }
.card.blue { background: #eff6ff; border-color: #bfdbfe; }
.card.amber { background: var(--amber-50); border-color: #fde68a; }
.card.green { background: var(--green-50); border-color: var(--green-300); }
.card.red { background: var(--danger-50); border-color: var(--danger-300); }
.card h3 {
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.card p:last-child, .card ul:last-child, .card ol:last-child { margin-bottom: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 12px;
}
.badge.amber { color: #92400e; background: var(--amber-100); }
.badge.red { color: var(--danger-800); background: #ffe4e6; }
.badge.green { color: var(--green-800); background: #dcfce7; }
.list-clean { padding-left: 0; list-style: none; }
.list-clean li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
}
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 11px;
  height: 11px;
  border: 2px solid var(--blue-600);
  border-radius: 3px;
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}
.number-list {
  counter-reset: item;
  padding-left: 0;
  list-style: none;
}
.number-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 13px;
}
.number-list li::before {
  content: counter(item, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--amber-400);
  background: var(--navy-900);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 800;
  font-size: 13px;
}
.split-band {
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,246,255,.88)),
    radial-gradient(circle at 100% 0%, rgba(251,191,36,.16), transparent 20rem);
  box-shadow: var(--shadow-soft);
}
.form-card,
.purchase-card,
.download-card {
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  color: var(--slate-900);
  box-shadow: var(--shadow);
}
.purchase-card > p:not(.disclaimer):not(.small-note) {
  color: var(--slate-700);
  font-weight: 700;
}
.purchase-card h2,
.purchase-card h3,
.checkout-form label {
  color: var(--navy-900);
}
.checkout-form label {
  font-weight: 800;
}
.form-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-weight: 800;
}
.input {
  width: 100%;
  min-height: 50px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  background: var(--slate-50);
  font: inherit;
}
.input:focus { outline: 3px solid rgba(37,99,235,.16); border-color: var(--blue-600); }
.placeholder-code,
code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--slate-50);
  color: var(--blue-700);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .92em;
  overflow-wrap: anywhere;
}
.disclaimer {
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid #fde68a;
  border-left: 5px solid var(--amber-400);
  border-radius: 14px;
  background: var(--amber-50);
  color: #713f12;
  font-size: 14px;
  line-height: 1.45;
}
.disclaimer strong { color: #713f12; }
.placeholder-note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(37, 99, 235, .42);
  border-radius: 14px;
  color: var(--blue-700);
  background: #eff6ff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0;
}
.price strong {
  color: var(--navy-900);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.05em;
}
.price span { color: var(--slate-600); font-weight: 700; }
.offer-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.offer-stack div {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px;
  background: var(--slate-50);
  font-weight: 700;
}
.pdf-preview {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pdf-cover {
  min-height: 350px;
  padding: 20px;
  border-radius: 18px;
  color: #e5e7eb;
  background:
    radial-gradient(circle at 18% 0%, rgba(37,99,235,.50), transparent 48%),
    linear-gradient(145deg, #070d19 0%, #0b1220 70%, #10213d 100%);
  box-shadow: 0 20px 36px rgba(2,8,23,.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pdf-cover h3 {
  color: var(--white);
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.05em;
}
.pdf-cover .cover-tag {
  color: var(--amber-400);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  font-size: 12px;
}
.component-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.component-list div {
  min-height: 66px;
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--blue-600);
  border-radius: 12px;
  padding: 10px 11px;
  background: var(--white);
  font-weight: 800;
  font-size: 14px;
}
.component-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--slate-500);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.92);
}
.faq-item h3 { margin: 0 0 8px; font-size: 19px; }
.download-hero {
  padding: 48px 0 22px;
}
.download-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
}
.download-card .btn { width: 100%; }
.warning-box {
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 16px;
  background: var(--amber-50);
  color: #713f12;
  font-weight: 700;
}
.support-line {
  padding: 15px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-50);
}
.footer {
  margin-top: 36px;
  padding: 28px 0 40px;
  color: var(--slate-600);
  font-size: 13px;
}
.footer .page-shell {
  border-top: 1px solid var(--slate-200);
  padding-top: 20px;
}
.qa-banner {
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255,255,255,.75);
  color: var(--slate-700);
  font-size: 13px;
}

@media (max-width: 960px) {
  .hero-grid,
  .download-grid,
  .pdf-preview,
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .component-list,
  .offer-stack { grid-template-columns: 1fr; }
  .topbar__inner { border-radius: 20px; align-items: flex-start; flex-direction: column; }
  .build-pill { white-space: normal; }
}

@media (max-width: 560px) {
  .page-shell { width: min(var(--container), calc(100% - 24px)); }
  .hero-grid { padding: 24px; }
  h1 { font-size: 40px; }
  .section-header h2, .download-hero h1 { font-size: 30px; }
  .btn { width: 100%; }
}

@media print {
  body { background: #fff; }
  body::before { display: none; }
  .topbar__inner, .hero-card, .card, .form-card, .purchase-card, .download-card, .split-band { box-shadow: none; }
}


/* Source ledger patch — official source links only; no live funnel destinations. */
.source-ledger { padding-top: 14px; }
.source-card { border-color: rgba(37, 99, 235, .22); }
.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.source-list li {
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: 12px;
  background: rgba(248, 250, 252, .86);
  font-size: 14px;
}
.source-list a { color: var(--blue-700); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.source-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  margin-right: 7px;
  color: #08111f;
  background: var(--amber-400);
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}
@media (max-width: 760px) { .source-list { grid-template-columns: 1fr; } }


/* D4 policy + unwired form upgrade — 2026-06-03 */
.checkout-card { scroll-margin-top: 28px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.btn-full { width: 100%; justify-content: center; }
.checkbox-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--slate-700);
  font-weight: 700 !important;
  line-height: 1.4;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue-600); }
.form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px dashed rgba(37, 99, 235, .42);
  border-radius: 14px;
  background: #eff6ff;
  color: var(--blue-700);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}
.form-status:empty { display: none; }
.form-status.is-error { border-color: #fda4af; background: #fff1f2; color: #9f1239; }
.form-status.is-ok { border-color: #86efac; background: #f0fdf4; color: #166534; }
.mini-ledger { display: grid; gap: 9px; margin: 16px 0; }
.mini-ledger div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  background: var(--slate-50);
}
.mini-ledger strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--amber-400);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}
.mini-ledger span { color: var(--slate-700); font-weight: 800; }
.policy-card h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.05; letter-spacing: -.035em; margin-top: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: var(--blue-700);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.optin-card .badge { margin-bottom: 16px; }
@media (max-width: 760px) { .field-grid { grid-template-columns: 1fr; } }
