@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #111820;
  --muted: #61717b;
  --faint: #82919a;
  --paper: #fffdf8;
  --surface: #f7f3ea;
  --surface-2: #ece6d8;
  --line: #d9d0c0;
  --midnight: #102136;
  --evergreen: #0d2f2a;
  --evergreen-2: #123c36;
  --cobalt: #2457b8;
  --mint: #b7ead8;
  --copper: #b96a3d;
  --wine: #7b2f33;
  --gold: #b08a45;
  --shadow: 0 30px 80px rgba(17, 24, 32, 0.18);
  --soft-shadow: 0 18px 44px rgba(17, 24, 32, 0.1);
  --radius: 8px;
  --wrap: 1180px;
  --font-body: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    repeating-linear-gradient(90deg, rgba(16, 33, 54, 0.035) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(16, 33, 54, 0.03) 0 1px, transparent 1px 56px),
    var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  letter-spacing: 0;
  text-wrap: balance;
  font-family: var(--font-display);
}

p { line-height: 1.62; }

.wrap {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 0 auto;
}

.site-nav,
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 max(22px, calc((100vw - var(--wrap)) / 2));
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(217, 208, 192, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}

.brand-mark,
.mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background:
    url("./logo-mark.png?v=20260515-logo2") center / cover no-repeat,
    var(--evergreen);
  color: transparent;
  font-size: 0;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(13,47,42,0.22);
}

.brand strong,
.brand small,
.brand span {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.brand small,
.brand span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #52616b;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ink); }

.nav-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--evergreen);
  border-radius: var(--radius);
  padding: 0 15px;
  background: var(--evergreen);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(13, 47, 42, 0.18);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding: 64px max(22px, calc((100vw - var(--wrap)) / 2)) 52px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 950;
}

h1 {
  margin-bottom: 24px;
  max-width: 860px;
  font-size: 86px;
  line-height: 0.94;
  font-weight: 950;
}

.lead {
  max-width: 690px;
  color: #40515c;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--evergreen);
  color: var(--paper);
  border-color: var(--evergreen);
  box-shadow: 0 16px 34px rgba(13, 47, 42, 0.22);
}

.button.ghost,
.button.secondary {
  background: rgba(255,253,248,0.84);
  border-color: var(--line);
  color: var(--ink);
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
}

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

.signal-row div {
  background: rgba(255,253,248,0.72);
  border: 1px solid rgba(217,208,192,0.9);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(17, 24, 32, 0.05);
}

.signal-row strong,
.signal-row span {
  display: block;
}

.signal-row strong {
  font-size: 16px;
  font-weight: 920;
}

.signal-row span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.operator-console h1 {
  max-width: 820px;
}

.operator-auth {
  margin-top: 30px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.metrics-strip div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 28px rgba(17, 24, 32, 0.06);
}

.metrics-strip strong,
.metrics-strip span {
  display: block;
}

.metrics-strip strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.metrics-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-console-card {
  padding: 0;
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 13px;
}

.lead-table th,
.lead-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(217, 208, 192, 0.86);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: var(--muted);
  background: rgba(236, 230, 216, 0.74);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-table th:nth-child(1),
.lead-table td:nth-child(1) { width: 15%; }

.lead-table th:nth-child(2),
.lead-table td:nth-child(2) { width: 12%; }

.lead-table th:nth-child(3),
.lead-table td:nth-child(3) { width: 14%; }

.lead-table th:nth-child(4),
.lead-table td:nth-child(4) { width: 18%; }

.lead-table th:nth-child(5),
.lead-table td:nth-child(5) { width: 20%; }

.lead-table th:nth-child(6),
.lead-table td:nth-child(6) { width: 13%; }

.lead-table th:nth-child(7),
.lead-table td:nth-child(7) { width: 10%; }

.lead-table th:nth-child(8),
.lead-table td:nth-child(8) {
  width: 120px;
  text-align: right;
}

.lead-table td {
  overflow-wrap: anywhere;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 54px 28px 34px 64px;
  background: var(--midnight);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: -1;
}

.notice-sheet,
.dashboard-card,
.packet-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid rgba(217,208,192,0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice-sheet {
  top: 28px;
  left: 4px;
  width: 360px;
  padding: 18px;
  transform: rotate(-4deg);
}

.sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.sheet-top span,
.sheet-grid span,
.tiny-label,
.comp span,
.plan-label,
.meta,
.pill {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 880;
}

.sheet-top strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.barcode {
  width: 66px;
  height: 42px;
  background:
    linear-gradient(90deg, #111 0 4px, transparent 4px 8px, #111 8px 10px, transparent 10px 16px, #111 16px 24px, transparent 24px 28px, #111 28px 31px, transparent 31px 38px, #111 38px 44px, transparent 44px 48px, #111 48px 52px, transparent 52px);
  opacity: 0.78;
}

.sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
}

.sheet-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.sheet-grid .wide { grid-column: 1 / -1; }

.alert-line {
  margin-top: 16px;
  border-left: 4px solid var(--copper);
  background: #fff3e4;
  padding: 10px 11px;
  color: #6b3e25;
  font-size: 13px;
  font-weight: 760;
}

.dashboard-card {
  top: 118px;
  right: 0;
  width: 520px;
  padding: 20px;
  background: #fbfaf5;
}

.card-header,
.panel-head,
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.card-header h3,
.price-head h3,
.workflow-card h3,
.article h2,
.article h3 {
  margin-bottom: 7px;
}

.score {
  min-width: 78px;
  min-height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--copper) 0 78%, #eadfcc 78% 100%);
  color: var(--paper);
  font-size: 26px;
  font-weight: 950;
  box-shadow: inset 0 0 0 8px #fbfaf5;
}

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

.comp {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  border: 1px solid #ded5c7;
  border-radius: var(--radius);
  padding: 12px;
  background: white;
}

.comp strong {
  display: block;
  font-size: 21px;
  margin-top: 4px;
}

.lead-comp {
  border-color: rgba(185, 106, 61, 0.5);
  background: #fff6eb;
}

.evidence-rail {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.evidence-rail div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e6ded0;
  padding-top: 9px;
  color: #465660;
  font-size: 13px;
  font-weight: 760;
}

.evidence-rail b { color: var(--evergreen); }

.packet-card {
  right: 72px;
  bottom: 20px;
  width: 430px;
  padding: 18px;
  background: #fffdf9;
  transform: rotate(2.5deg);
}

.packet-card .packet-lines {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.packet-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #dfd5c5;
}

.packet-lines i:nth-child(1) { width: 100%; }
.packet-lines i:nth-child(2) { width: 88%; }
.packet-lines i:nth-child(3) { width: 94%; }
.packet-lines i:nth-child(4) { width: 72%; }

.stamp {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(13,47,42,0.28);
  border-radius: 999px;
  padding: 0 11px;
  background: #e9f8f0;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 48px max(22px, calc((100vw - var(--wrap)) / 2));
  background: var(--midnight);
  color: var(--paper);
}

.proof-copy h2,
.section-heading h2,
.pricing-section h2,
.guide-section h2,
.article h1 {
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
}

.proof-copy p,
.section-heading p,
.guide-section p,
.pricing-grid > article p,
.price-card p,
.workflow-card p,
.article p,
.article li {
  color: #586871;
}

.proof-band .proof-copy p { color: rgba(255,253,248,0.72); }

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

.proof-grid div,
.proof-grid article {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.055);
}

.proof-grid strong {
  display: block;
  font-size: 31px;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255,253,248,0.68);
  font-size: 13px;
  line-height: 1.35;
}

.proof-grid article > span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 9px;
  margin-top: 0;
  background: rgba(183,234,216,0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
}

.proof-grid h3 {
  margin: 18px 0 8px;
  color: var(--paper);
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255,253,248,0.68);
  font-size: 14px;
}

.workflow-section,
.pricing-section,
.guide-section,
.section {
  padding: 82px max(22px, calc((100vw - var(--wrap)) / 2));
}

.article {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.workflow-card,
.pricing-grid > article,
.price-card,
.card,
.callout {
  border: 1px solid rgba(217,208,192,0.92);
  border-radius: var(--radius);
  background: rgba(255,253,248,0.9);
  box-shadow: var(--soft-shadow);
}

.workflow-card {
  min-height: 290px;
  padding: 20px;
}

.step-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 50px;
  background: var(--evergreen);
  color: var(--mint);
  font-weight: 950;
}

.workflow-card h3 {
  font-size: 22px;
  line-height: 1.08;
}

.pricing-section {
  background: #fbfaf5;
  border-top: 1px solid rgba(217,208,192,0.9);
  border-bottom: 1px solid rgba(217,208,192,0.9);
}

.pricing-grid > article,
.price-card {
  padding: 22px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.pricing-grid > article.featured-plan,
.featured-plan {
  background: var(--evergreen);
  color: var(--paper);
  border-color: rgba(183,234,216,0.28);
  box-shadow: 0 28px 70px rgba(13, 47, 42, 0.24);
}

.featured-plan p,
.featured-plan li,
.featured-plan .plan-label {
  color: rgba(255,253,248,0.72);
}

.price {
  margin: 16px 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}

.featured-plan .price small { color: rgba(255,253,248,0.62); }

.pricing-grid > article ul,
.price-card ul,
.article ul,
.article ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.pricing-grid > article li,
.price-card li,
.article li {
  margin: 9px 0;
  line-height: 1.5;
}

.pricing-grid > article .button,
.price-card .button { margin-top: auto; }

.pricing-grid > article > strong {
  display: block;
  margin: 16px 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.pill.blue { background: var(--soft-blue); color: var(--cobalt); }
.pill.green { background: #e7f7ef; color: var(--evergreen); }
.pill.amber { background: #fff1da; color: #81500d; }

.county-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.county-card h2 {
  margin-top: 16px;
  font-size: 24px;
}

.county-card:hover {
  border-color: rgba(13,47,42,0.42);
  transform: translateY(-1px);
}

.guide-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border: 1px solid rgba(217,208,192,0.9);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255,253,248,0.86);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17,24,32,0.06);
}

.guide-list a:hover {
  border-color: rgba(13,47,42,0.4);
  transform: translateY(-1px);
}

.guide-list strong {
  font-size: 17px;
}

.guide-list span {
  color: var(--copper);
  font-weight: 950;
}

.article {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 0 auto;
  background: transparent;
}

.article h1 {
  max-width: 900px;
  font-size: 56px;
}

.article h2 {
  margin-top: 42px;
  font-size: 32px;
}

.article h3 {
  margin-top: 28px;
  font-size: 22px;
}

.article .lead,
.section .lead {
  font-size: 20px;
}

.article > p,
.article > ul,
.article > ol,
.article > h2,
.article > h3,
.article > .lead,
.article > .callout {
  max-width: 900px;
}

.card,
.callout {
  padding: 18px;
  margin: 18px 0;
}

.callout {
  border-left: 5px solid var(--copper);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  background: #eef8f3;
  color: var(--evergreen);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
  border-radius: var(--radius);
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #efe7d8;
  color: #27333b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 11px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; }

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

.form-grid .full {
  grid-column: 1 / -1;
}

.evidence-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 248, 246, 0.72);
}

.evidence-fieldset legend {
  padding: 0 8px;
  color: #33424b;
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.evidence-fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  text-transform: none;
  letter-spacing: 0;
}

.evidence-fieldset input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  accent-color: var(--evergreen);
}

.hidden {
  display: none !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(36, 87, 184, 0.12);
}

.waitlist-card label {
  display: grid;
  gap: 7px;
  color: #33424b;
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

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

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--evergreen);
  font-weight: 820;
}

.waitlist-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.lead-count {
  min-width: 128px;
  min-height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--paper);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.08);
}

.lead-count strong,
.lead-count span {
  display: block;
  text-align: center;
}

.lead-count strong {
  font-size: 44px;
  line-height: 1;
}

.lead-count span {
  color: rgba(255,253,248,0.65);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sample-packet-page {
  max-width: 1080px;
}

.sample-hero-card,
.sample-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin: 28px 0;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(99, 187, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #071421, #0f2335 52%, #0e362b);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.sample-hero-card::after,
.sample-cta::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% 42%;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: rotate(-9deg);
}

.sample-hero-card h2,
.sample-hero-card p,
.sample-cta h2,
.sample-cta p,
.sample-cta .button {
  position: relative;
  z-index: 1;
}

.sample-hero-card p,
.sample-cta p {
  color: rgba(255,255,255,0.76);
}

.sample-score {
  position: relative;
  z-index: 1;
  width: 190px;
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.04);
}

.sample-score span,
.sample-score small {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
}

.sample-score strong {
  display: block;
  color: white;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.packet-sheet {
  margin: 28px 0;
  padding: clamp(24px, 5vw, 54px);
  background: #fffdf8;
  border: 1px solid rgba(16, 36, 52, 0.12);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(15, 35, 53, 0.16);
}

.packet-sheet-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(16, 36, 52, 0.14);
}

.packet-stamp {
  padding: 10px 14px;
  border: 2px solid rgba(178, 49, 49, 0.62);
  color: #9d2525;
  border-radius: 4px;
  font-weight: 920;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.packet-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.packet-kpis div {
  padding: 14px;
  border: 1px solid rgba(16, 36, 52, 0.12);
  background: rgba(244, 248, 246, 0.82);
  border-radius: 6px;
}

.packet-kpis span,
.sample-table th {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-kpis strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 22px;
}

.sample-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sample-two-col > div,
.check-grid span {
  padding: 16px;
  border: 1px solid rgba(16, 36, 52, 0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.74);
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.sample-table th,
.sample-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(16, 36, 52, 0.12);
  text-align: left;
  vertical-align: top;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.packet-sheet blockquote {
  margin: 16px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--evergreen);
  background: rgba(31, 109, 82, 0.08);
  color: var(--ink);
  font-weight: 760;
}

.checklist-page {
  max-width: 1080px;
}

.checklist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 28px 0;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31,109,82,0.12), rgba(36,87,184,0.1)),
    #ffffff;
  border: 1px solid rgba(16, 36, 52, 0.1);
  box-shadow: var(--shadow);
}

.prep-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.prep-timeline article {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(16, 36, 52, 0.1);
  box-shadow: 0 18px 48px rgba(15, 35, 53, 0.08);
  overflow: hidden;
}

.prep-timeline article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--evergreen), var(--cobalt));
}

.prep-timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--midnight);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.prep-timeline ul {
  padding-left: 18px;
}

.prep-timeline li {
  margin: 8px 0;
}

.checklist-matrix {
  margin: 28px 0;
  overflow-x: auto;
}

.next-page {
  max-width: 1080px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.next-steps article {
  min-height: 250px;
  padding: 22px;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(183,234,216,0.2), transparent 34%),
    linear-gradient(145deg, #071421, #102435);
  box-shadow: 0 20px 54px rgba(15, 35, 53, 0.18);
}

.next-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #b7ead8;
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 920;
}

.next-steps h2 {
  margin-top: 22px;
  color: white;
  font-size: 24px;
}

.next-steps p {
  color: rgba(255,255,255,0.72);
}

.expectation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.expectation-meter {
  width: 160px;
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 50%;
  background: var(--midnight);
  color: white;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.08);
}

.expectation-meter strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.expectation-meter span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.payment-page {
  max-width: 1040px;
}

.pricing-page,
.trust-page,
.county-index-page {
  max-width: var(--wrap);
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
  margin: 30px 0;
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 18% 8%, rgba(183,234,216,0.22), transparent 30%),
    linear-gradient(135deg, #071421, #102435 58%, #15382e);
  box-shadow: var(--shadow);
}

.payment-panel h2 {
  color: white;
  margin-top: 18px;
}

.payment-panel p,
.payment-panel li {
  color: rgba(255,255,255,0.74);
}

.payment-panel aside {
  padding: 20px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.payment-panel aside h3 {
  color: white;
  margin-top: 0;
}

.payment-price {
  margin: 16px 0;
  color: white;
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 950;
  line-height: 1;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(22px, calc((100vw - var(--wrap)) / 2));
  border-top: 1px solid rgba(217,208,192,0.9);
  color: var(--muted);
  background: rgba(255,253,248,0.64);
  font-size: 14px;
}

.footer a { color: var(--ink); }

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .proof-band,
  .guide-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .nav {
    position: static;
    min-height: auto;
    padding: 18px 22px;
    align-items: flex-start;
  }

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

  h1 {
    font-size: 54px;
    line-height: 1;
  }

  .lead { font-size: 18px; }

  .signal-row,
  .proof-grid,
  .workflow-grid,
  .pricing-grid,
  .grid,
  .form-grid,
  .evidence-fieldset,
  .sample-hero-card,
  .sample-cta,
  .sample-two-col,
  .packet-kpis,
  .check-grid,
  .checklist-hero,
  .prep-timeline,
  .next-steps,
  .expectation-card,
  .payment-panel {
    grid-template-columns: 1fr;
  }

  .sample-score {
    width: 160px;
    min-height: 160px;
  }

  .dashboard-card,
  .notice-sheet,
  .packet-card {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
    margin-bottom: 14px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual::before {
    inset: 20px -12px 20px 28px;
  }

  .comp-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap,
  .article {
    width: min(100% - 28px, var(--wrap));
  }

  .site-nav,
  .nav,
  .footer {
    flex-direction: column;
  }

  .hero,
  .workflow-section,
  .pricing-section,
  .guide-section,
  .proof-band,
  .section,
  .article {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 { font-size: 42px; }

  .proof-copy h2,
  .section-heading h2,
  .pricing-section h2,
  .guide-section h2,
  .article h1 {
    font-size: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .sheet-grid,
  .guide-list a,
  .packet-sheet-header {
    grid-template-columns: 1fr;
  }

  .packet-sheet {
    padding: 22px;
  }

  .sample-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .waitlist-ledger {
    grid-template-columns: 1fr;
  }
}

/* Executive-grade homepage override */
.ultra-theater {
  min-height: 720px;
  overflow: visible;
}

.satellite-plane {
  position: absolute;
  inset: 40px 12px 62px 0;
  border: 1px solid rgba(183,234,216,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(183,234,216,0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(183,234,216,0.05) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 32%, rgba(183,234,216,0.16), transparent 48%),
    #07141f;
  background-size: 38px 38px, 38px 38px, auto, auto;
  transform: rotateY(-8deg) rotateX(4deg) skewY(-1deg);
  box-shadow: 0 50px 140px rgba(0,0,0,0.52);
  overflow: hidden;
}

.satellite-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.12) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: awSweep 7s ease-in-out infinite;
}

.satellite-plane svg {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
}

.satellite-plane .map-line {
  fill: none;
  stroke: rgba(248,242,232,0.28);
  stroke-width: 2;
}

.satellite-plane .map-line.alt {
  stroke: rgba(36,87,184,0.42);
}

.satellite-plane .parcel-shape,
.satellite-plane .neighbor-shape {
  fill: rgba(183,234,216,0.12);
  stroke: rgba(183,234,216,0.92);
  stroke-width: 3;
  filter: drop-shadow(0 0 22px rgba(183,234,216,0.36));
}

.satellite-plane .neighbor-shape {
  fill: rgba(217,154,103,0.13);
  stroke: rgba(217,154,103,0.9);
}

.satellite-plane circle {
  fill: #f8f2e8;
  filter: drop-shadow(0 0 12px rgba(248,242,232,0.72));
}

.ultra-console {
  position: absolute;
  left: 28px;
  right: 18px;
  top: 96px;
  bottom: 174px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(9, 18, 29, 0.78);
  box-shadow: 0 42px 120px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.console-topline {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7ead8;
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.console-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7ead8;
  box-shadow: 0 0 16px rgba(183,234,216,0.9);
}

.console-topline strong {
  color: rgba(248,242,232,0.8);
  font-size: 13px;
  font-weight: 840;
}

.console-topline em {
  color: rgba(248,242,232,0.54);
  font-size: 12px;
  font-style: normal;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.9fr);
  grid-template-areas:
    "case notice"
    "comp evidence";
  gap: 12px;
  padding: 14px;
}

.intel-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.intel-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(183,234,216,0.22);
  pointer-events: none;
}

.panel-kicker {
  color: rgba(248,242,232,0.56);
  font-size: 11px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel {
  grid-area: case;
  min-height: 188px;
  padding: 18px;
}

.hero-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  align-items: start;
  gap: 16px;
  margin-top: 10px;
}

.hero-panel h2 {
  max-width: 280px;
  margin: 0;
  color: #fffaf0;
  font-size: clamp(24px, 1.95vw, 31px);
  line-height: 1.03;
}

.readiness-core {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b1725 0 48%, transparent 49%),
    conic-gradient(#d99a67 0 78%, rgba(255,255,255,0.12) 78% 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 44px rgba(217,154,103,0.28);
}

.readiness-core strong {
  color: #fffaf0;
  font-size: 25px;
  line-height: 1;
}

.readiness-core span {
  color: rgba(248,242,232,0.54);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.value-comparison div {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}

.value-comparison span {
  display: block;
  color: rgba(248,242,232,0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-comparison strong {
  display: block;
  margin-top: 6px;
  color: #fffaf0;
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.notice-panel {
  grid-area: notice;
  min-height: 188px;
  padding: 18px;
}

.notice-panel h3,
.comp-panel h3,
.evidence-panel h3 {
  color: #fffaf0;
}

.notice-panel h3 {
  margin: 28px 0 8px;
  font-size: 25px;
}

.notice-panel p {
  color: rgba(248,242,232,0.6);
  font-size: 13px;
  line-height: 1.5;
}

.scan-track {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
}

.scan-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b7ead8, #d99a67);
  animation: awScan 3.4s ease-in-out infinite alternate;
}

.comp-panel {
  grid-area: comp;
  min-height: 210px;
  padding: 18px;
}

.comp-board {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.comp-row {
  display: grid;
  grid-template-columns: 1.35fr 0.6fr 0.7fr 0.85fr;
  gap: 8px;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(248,242,232,0.66);
  font-size: 13px;
}

.comp-row:last-child { border-bottom: 0; }
.comp-row.head {
  background: rgba(255,255,255,0.06);
  color: rgba(248,242,232,0.46);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comp-row strong {
  color: #fffaf0;
}

.comp-row.active {
  background: rgba(183,234,216,0.1);
  color: #eafff8;
}

.comp-row.active strong {
  color: #b7ead8;
}

.evidence-panel {
  grid-area: evidence;
  min-height: 210px;
  padding: 18px;
}

.evidence-bars {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.evidence-bars div {
  position: relative;
  min-height: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.075);
}

.evidence-bars span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(183,234,216,0.34), rgba(217,154,103,0.28));
}

.evidence-bars b {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fffaf0;
  font-size: 12px;
}

.glass-card {
  position: absolute;
  width: calc(50% - 34px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(248,242,232,0.92);
  color: #111820;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
}

.glass-card span {
  display: block;
  color: #9d623d;
  font-size: 11px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.glass-card small {
  display: block;
  margin-top: 8px;
  color: #5b6870;
  line-height: 1.42;
}

.appeal-packet-card {
  left: 28px;
  right: auto;
  bottom: 16px;
}

.exemption-card {
  top: auto;
  right: 18px;
  bottom: 16px;
  width: calc(50% - 34px);
}

@keyframes awSweep {
  0%, 24% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(120%); }
}

@keyframes awScan {
  from { transform: translateX(0); }
  to { transform: translateX(138%); }
}

@media (max-width: 1160px) {
  .ultra-console,
  .satellite-plane,
  .glass-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    margin-top: 14px;
  }

  .ultra-console {
    left: auto;
    right: auto;
    top: auto;
  }

  .ultra-theater {
    min-height: auto;
  }
}

@media (max-width: 800px) {
  .console-topline,
  .console-grid,
  .hero-panel-head,
  .value-comparison,
  .comp-row {
    grid-template-columns: 1fr;
  }

  .console-grid {
    grid-template-areas:
      "case"
      "notice"
      "comp"
      "evidence";
  }
}

/* Premium launch homepage */
body.home-page {
  background: #07141f;
  color: #f8f2e8;
}

.home-page .home-nav {
  background: rgba(7, 20, 31, 0.82);
  border-bottom: 1px solid rgba(210, 196, 171, 0.14);
  color: #f8f2e8;
}

.home-page .brand { color: #f8f2e8; }
.home-page .brand small { color: rgba(248,242,232,0.58); }
.home-page .brand-mark {
  background:
    url("./logo-mark.png?v=20260515-logo2") center / cover no-repeat,
    #f8f2e8;
  color: transparent;
}

.home-page .nav-links { color: rgba(248,242,232,0.7); }
.home-page .nav-links a:hover { color: #ffffff; }
.home-page .nav-action {
  border-color: rgba(183,234,216,0.3);
  background: rgba(183,234,216,0.12);
  color: #eafff8;
  box-shadow: none;
}

.cinema-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 48px max(28px, calc((100vw - var(--wrap)) / 2)) 38px;
  background:
    linear-gradient(115deg, rgba(8, 20, 31, 0.97) 0%, rgba(7,20,31,0.9) 46%, rgba(15,48,43,0.9) 100%),
    #07141f;
}

.cinema-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(20deg, rgba(183,234,216,0.018) 0 1px, transparent 1px 13px);
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(48px, 5.2vw, 84px);
  align-items: center;
  width: 100%;
}

.home-page .hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 3;
}

.home-page .eyebrow {
  color: #d99a67;
  letter-spacing: 0.14em;
}

.home-page h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #fffaf0;
  font-size: clamp(52px, 4.8vw, 70px);
  line-height: 0.98;
  font-weight: 950;
}

.home-page .lead {
  max-width: 680px;
  color: rgba(248,242,232,0.76);
  font-size: 21px;
  line-height: 1.58;
}

.home-page .button.primary {
  background: #f8f2e8;
  color: #07141f;
  border-color: #f8f2e8;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.home-page .button.ghost {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: #f8f2e8;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-metrics div {
  min-height: 92px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(12px);
}

.hero-metrics span,
.command-window span,
.notice-float span,
.packet-float span,
.evidence-stack > span {
  display: block;
  color: rgba(248,242,232,0.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-top: 12px;
  color: #fffaf0;
  font-size: 19px;
  line-height: 1.12;
}

.product-theater {
  position: relative;
  min-height: 650px;
  margin-left: clamp(10px, 2vw, 34px);
  perspective: 1500px;
}

.product-theater::before {
  content: "";
  position: absolute;
  inset: 42px 30px 18px 22px;
  border: 1px solid rgba(183,234,216,0.15);
  background: rgba(255,255,255,0.035);
  transform: skewY(-2deg);
  box-shadow: 0 40px 120px rgba(0,0,0,0.34);
}

.command-window {
  position: absolute;
  inset: 26px 0 64px 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: #0b1725;
  box-shadow: 0 44px 120px rgba(0,0,0,0.46);
  transform: rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}

.window-chrome {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.window-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d99a67;
}

.window-chrome span:nth-child(2) { background: #d7bd76; }
.window-chrome span:nth-child(3) { background: #91dcbf; }

.window-chrome strong {
  margin-left: 8px;
  color: rgba(248,242,232,0.62);
  font-size: 12px;
  font-weight: 780;
}

.command-body {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 544px;
}

.mini-rail {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding-top: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.mini-rail b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #f8f2e8;
  color: #0d2f2a;
  font-size: 12px;
}

.mini-rail i {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(248,242,232,0.32);
}

.case-room {
  padding: 22px;
}

.case-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.case-header h2 {
  margin: 7px 0 0;
  color: #fffaf0;
  font-size: 32px;
  line-height: 1;
}

.readiness-orbit {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#d99a67 0 78%, rgba(255,255,255,0.12) 78% 100%);
  box-shadow: inset 0 0 0 12px #0b1725, 0 20px 45px rgba(217,154,103,0.18);
}

.readiness-orbit strong {
  color: #fffaf0;
  font-size: 34px;
  line-height: 1;
}

.readiness-orbit span {
  color: rgba(248,242,232,0.54);
  font-size: 12px;
}

.value-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.value-lane article,
.comp-matrix,
.evidence-stack {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.065);
}

.value-lane article {
  min-height: 126px;
  padding: 14px;
}

.value-lane article strong {
  display: block;
  margin-top: 12px;
  color: #fffaf0;
  font-size: 30px;
  line-height: 1;
}

.value-lane article em {
  display: block;
  margin-top: 10px;
  color: rgba(248,242,232,0.56);
  font-size: 12px;
  font-style: normal;
}

.value-lane .target-value {
  border-color: rgba(183,234,216,0.34);
  background: rgba(183,234,216,0.1);
}

.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(190px, 0.5fr);
  gap: 12px;
}

.comp-matrix {
  overflow: hidden;
}

.matrix-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.matrix-head strong {
  color: #fffaf0;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.9fr;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(248,242,232,0.66);
  font-size: 13px;
}

.matrix-row:last-child { border-bottom: 0; }
.matrix-row b {
  color: #fffaf0;
  font-weight: 850;
}
.matrix-row.highlight {
  background: rgba(217,154,103,0.12);
}
.matrix-row.highlight b:last-child {
  color: #ffd2ad;
}

.evidence-stack {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.evidence-stack div {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 10px;
}

.evidence-stack b {
  display: block;
  color: #fffaf0;
  font-size: 22px;
}

.evidence-stack small {
  display: block;
  margin-top: 2px;
  color: rgba(248,242,232,0.56);
  line-height: 1.35;
}

.notice-float,
.packet-float {
  position: absolute;
  width: 260px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(248,242,232,0.94);
  color: #111820;
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}

.notice-float {
  top: 0;
  right: 18px;
}

.packet-float {
  right: 56px;
  bottom: 10px;
}

.notice-float span,
.packet-float span {
  color: #9d623d;
}

.notice-float strong,
.packet-float strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.notice-float small,
.packet-float small {
  display: block;
  margin-top: 7px;
  color: #5b6870;
  line-height: 1.42;
}

.operator-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 64px max(22px, calc((100vw - var(--wrap)) / 2));
  background: #f8f2e8;
  color: var(--ink);
}

.operator-band h2,
.mission-section h2,
.luxe-pricing h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
}

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

.operator-grid article {
  min-height: 230px;
  border: 1px solid #d7cbb8;
  border-radius: var(--radius);
  padding: 18px;
  background: white;
  box-shadow: 0 18px 42px rgba(17,24,32,0.08);
}

.operator-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: #e8f6ef;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 950;
}

.operator-grid h3,
.mission-grid h3 {
  margin: 42px 0 9px;
  font-size: 22px;
  line-height: 1.08;
}

.operator-grid p,
.mission-grid p {
  margin: 0;
  color: #5b6870;
}

.mission-section {
  padding: 88px max(22px, calc((100vw - var(--wrap)) / 2));
  background:
    linear-gradient(180deg, #f8f2e8, #eee5d6);
  color: var(--ink);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mission-grid article {
  min-height: 300px;
  border: 1px solid #d7cbb8;
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,253,248,0.78);
  box-shadow: 0 20px 55px rgba(17,24,32,0.08);
}

.mission-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--midnight);
  color: #b7ead8;
  font-weight: 950;
}

.home-page .luxe-pricing {
  background: #0b1725;
  color: #f8f2e8;
  border-color: rgba(255,255,255,0.1);
}

.home-page .luxe-pricing h2 {
  color: #fffaf0;
}

.home-page .luxe-pricing .section-heading p {
  color: #d99a67;
}

.home-page .luxe-pricing .pricing-grid > article {
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.13);
  color: #fffaf0;
  box-shadow: 0 26px 70px rgba(0,0,0,0.24);
}

.home-page .luxe-pricing .pricing-grid > article p {
  color: rgba(248,242,232,0.66);
}

.home-page .luxe-pricing .featured-plan {
  background: #f8f2e8;
  color: #07141f;
}

.home-page .luxe-pricing .featured-plan p,
.home-page .luxe-pricing .featured-plan .plan-label {
  color: #5b6870;
}

.home-page .guide-section {
  background: #f8f2e8;
  color: var(--ink);
}

.home-page .guide-section h2 {
  color: var(--ink);
}

.home-page .guide-list a {
  grid-template-columns: auto 1fr;
  min-height: 84px;
}

.home-page .guide-list strong {
  color: var(--ink);
}

.home-page .home-footer {
  background: #07141f;
  border-color: rgba(255,255,255,0.12);
  color: rgba(248,242,232,0.68);
}

.home-page .home-footer a {
  color: #f8f2e8;
}

@media (max-width: 1240px) {
  .cinema-hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-copy {
    max-width: 760px;
  }

  .home-page h1 {
    max-width: 760px;
  }

  .product-theater {
    min-height: 650px;
    margin-left: 0;
  }

  .operator-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-page h1 {
    font-size: 56px;
  }

  .product-theater {
    min-height: auto;
  }

  .product-theater::before,
  .command-window,
  .notice-float,
  .packet-float {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    margin-top: 14px;
  }

  .command-body,
  .value-lane,
  .analysis-grid,
  .operator-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mini-rail {
    display: none;
  }

  .matrix-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cinema-hero,
  .operator-band,
  .mission-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-page h1 {
    font-size: 42px;
  }

  .home-page .lead {
    font-size: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .case-header {
    display: grid;
  }
}
