:root {
  --ink: #10212b;
  --muted: #53636f;
  --subtle: #758791;
  --page: #f6f8fb;
  --surface: #ffffff;
  --line: #d9e1e8;
  --line-strong: #b8c4ce;
  --primary: #164e63;
  --primary-dark: #0e3747;
  --primary-soft: #e0f2f1;
  --blue-soft: #eff6ff;
  --green: #0f766e;
  --green-soft: #ccfbf1;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --red: #b91c1c;
  --red-soft: #fee2e2;
  --shadow-tight: 0 8px 8px rgba(16, 33, 43, 0.06);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
}

.shell {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  font-size: 20px;
  font-weight: 850;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-cta,
.button.primary {
  background: var(--primary);
  color: #fff;
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--primary-dark);
}

.button.secondary:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.brand:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.policy-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(22, 78, 99, 0.28);
  outline-offset: 4px;
}

.hero {
  padding: clamp(58px, 7vw, 96px) 0 64px;
  background:
    linear-gradient(135deg, rgba(224, 242, 241, 0.88) 0%, rgba(239, 246, 255, 0.68) 42%, rgba(246, 248, 251, 0.24) 100%),
    var(--page);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.page-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  background: rgba(204, 251, 241, 0.5);
  color: #115e59;
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p,
li,
dd {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

p,
li,
dd {
  color: var(--muted);
  line-height: 1.6;
}

.lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: #31444f;
  font-size: 21px;
  line-height: 1.45;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.quick-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 750;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 640px);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(14, 55, 71, 0.14);
  border-radius: 16px;
  background: rgba(14, 55, 71, 0.14);
}

.proof-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

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

.product-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-tight);
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 88px;
  background: linear-gradient(90deg, rgba(22, 78, 99, 0.08), rgba(15, 118, 110, 0.05));
  pointer-events: none;
}

.preview-top {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.preview-top span:last-child {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
}

.preview-top span {
  min-width: 0;
}

.preview-top span:first-child {
  color: var(--primary);
}

.preview-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 24px 22px 12px;
}

.preview-head > div {
  min-width: 0;
}

.preview-head p {
  max-width: 44ch;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.preview-head h2 {
  max-width: 18ch;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.link-chip,
.status {
  height: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.link-chip {
  padding: 8px 10px;
  background: var(--primary-dark);
  color: #fff;
}

.mock-list {
  display: grid;
  gap: 10px;
  padding: 10px 16px 18px;
}

.mock-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--page);
}

.mock-row:hover {
  border-color: var(--line-strong);
}

.doc-mark {
  width: 18px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 -5px 0 rgba(22, 78, 99, 0.08);
}

.mock-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.mock-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.mock-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.status {
  padding: 7px 9px;
  font-size: 12px;
}

.status-missing {
  background: var(--amber-soft);
  color: var(--amber);
}

.status-received,
.status-accepted {
  background: var(--green-soft);
  color: var(--green);
}

.status-replace {
  background: var(--red-soft);
  color: var(--red);
}

.receipt-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 16px 18px;
  padding: 14px;
  border-radius: 12px;
  background: var(--primary-dark);
  color: #fff;
}

.receipt-note strong {
  flex: 0 0 auto;
}

.receipt-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: clamp(62px, 7vw, 90px) 0;
}

.section-soft,
.related-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.42)),
    #fff;
}

.two-col,
.checklist-layout,
.related-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.two-col p,
.checklist-layout p,
.product-story-grid p,
.cta-band p {
  max-width: 62ch;
}

.issue-list,
.step-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.issue-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.issue-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

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

.step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.step-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 850;
}

.step-list p {
  margin: 4px 0 0;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.list-panel,
.comparison-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.list-panel,
.comparison-panel {
  padding: 28px;
}

.comparison-panel {
  background: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.16);
}

.comparison-panel h2,
.comparison-panel li {
  color: #fff;
}

.comparison-panel .plain-list li {
  border-color: rgba(255, 255, 255, 0.2);
}

.list-panel h2,
.comparison-panel h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.list-panel p {
  margin: 12px 0 20px;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding: 0 0 0 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.plain-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.plain-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.plain-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.section-product {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(204, 251, 241, 0.4), transparent 34%),
    linear-gradient(135deg, #f1f7fb 0%, #e6f7f4 100%);
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.product-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 18px;
  align-items: end;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(14, 55, 71, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(239, 246, 255, 0.7);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: auto 9% 0 18%;
  height: 42%;
  border-radius: 999px 999px 0 0;
  background: rgba(14, 55, 71, 0.08);
  filter: blur(28px);
  pointer-events: none;
}

.firm-screen,
.client-phone {
  position: relative;
  z-index: 1;
}

.firm-screen {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-tight);
}

.screen-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(246, 248, 251, 0.96), rgba(224, 242, 241, 0.38));
}

.screen-bar strong,
.phone-firm {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
}

.screen-bar span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.screen-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 360px;
}

.screen-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: #f7fafc;
}

.screen-sidebar span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 850;
}

.screen-sidebar strong,
.screen-sidebar small {
  padding: 10px 11px 0;
}

.screen-sidebar strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.05;
}

.screen-sidebar small {
  padding-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.screen-sidebar em {
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.screen-main {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.screen-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.screen-summary > div,
.screen-summary dl > div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.screen-summary > div {
  padding: 16px;
}

.screen-summary h3 {
  max-width: 18ch;
  font-size: 26px;
  line-height: 1.02;
}

.screen-summary p {
  margin: 8px 0 0;
  font-size: 14px;
}

.screen-summary dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.screen-summary dl > div {
  padding: 14px 12px;
}

.screen-summary dt {
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
}

.screen-summary dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.screen-rows {
  display: grid;
  gap: 10px;
}

.screen-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.2fr) minmax(104px, 0.8fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.screen-row strong,
.screen-row span,
.screen-row small {
  min-width: 0;
  line-height: 1.2;
}

.screen-row strong {
  color: var(--ink);
  font-size: 14px;
}

.screen-row span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.screen-row small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.client-phone {
  overflow: hidden;
  min-height: 460px;
  padding: 28px 14px 14px;
  border: 12px solid #10212b;
  border-radius: 30px;
  background: #f8fbfd;
  box-shadow: var(--shadow-tight);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 70px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #c8d0d6;
}

.phone-inner {
  display: grid;
  gap: 11px;
}

.phone-inner h3 {
  max-width: 9ch;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.phone-inner p {
  margin: 0;
  color: #475a66;
  font-size: 13px;
  line-height: 1.4;
}

.phone-progress,
.phone-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.phone-progress strong {
  color: var(--primary-dark);
  font-size: 24px;
  line-height: 1;
}

.phone-progress span,
.phone-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.phone-item strong {
  color: var(--ink);
  font-size: 14px;
}

.phone-action {
  justify-self: end;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 850;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 22px;
}

.faq-item p {
  margin: 10px 0 0;
}

.policy-hero {
  padding-bottom: 56px;
}

.policy-hero-copy {
  max-width: 820px;
}

.policy-hero-copy h1 {
  max-width: 16ch;
}

.trust-hero .hero-copy > p:not(.page-kicker, .lede) {
  max-width: 68ch;
  margin-top: 18px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.policy-nav strong {
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 14px;
}

.policy-nav a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.policy-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.policy-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.policy-section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.policy-section h2 {
  max-width: 21ch;
  font-size: clamp(26px, 3.2vw, 38px);
}

.policy-section p {
  max-width: 76ch;
  margin: 14px 0 0;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.policy-section li {
  position: relative;
  padding-left: 22px;
}

.policy-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.note-panel {
  background:
    linear-gradient(135deg, rgba(224, 242, 241, 0.7), rgba(239, 246, 255, 0.65)),
    var(--surface);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.subprocessor-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.subprocessor-table th,
.subprocessor-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.subprocessor-table th {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
}

.subprocessor-table td {
  color: var(--muted);
  line-height: 1.45;
}

.subprocessor-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.subprocessor-table tr:last-child td {
  border-bottom: 0;
}

.related-links {
  display: grid;
  gap: 12px;
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--page);
  color: var(--primary-dark);
  font-weight: 850;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.related-links a::after {
  content: "Read guide";
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.related-links a:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.cta-band {
  padding: clamp(48px, 6vw, 70px) 0;
  background:
    linear-gradient(135deg, var(--primary-dark), #123f4f 62%, #0b2d3b),
    var(--primary-dark);
  color: #fff;
}

.cta-band h2 {
  max-width: 18ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .button.primary {
  justify-self: end;
  background: #fff;
  color: var(--primary-dark);
}

.cta-band .button.primary:hover {
  background: var(--primary-soft);
}

.cta-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cta-details span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  padding: 30px 0 42px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-grid > div {
  display: grid;
  gap: 5px;
}

.footer-brand {
  color: var(--primary-dark);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  .nav {
    position: relative;
    justify-content: flex-start;
    padding-right: 150px;
  }

  .nav-links {
    position: absolute;
    top: 14px;
    right: 0;
    flex: 0 0 auto;
    gap: 0;
  }

  .nav-links a:not(.nav-cta) {
    display: none !important;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    width: 138px;
    min-width: 0;
    padding: 0 12px;
    white-space: nowrap;
  }

  .hero-grid,
  .two-col,
  .checklist-layout,
  .evidence-layout,
  .product-story-grid,
  .policy-layout,
  .related-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }

  .product-stage {
    max-width: 820px;
  }

  h1 {
    max-width: 15ch;
  }

  .product-preview {
    max-width: 720px;
  }

  .cta-band .button.primary {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  body {
    overflow-x: hidden;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .nav-links {
    top: 10px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-cta {
    min-height: 44px;
    font-size: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.04;
    text-wrap: normal;
  }

  h2 {
    max-width: none;
  }

  .lede {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

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

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

  .hero-grid,
  .hero-copy,
  .product-preview,
  .policy-content,
  .policy-section {
    max-width: 100%;
  }

  .quick-points span {
    max-width: 100%;
  }

  .preview-head,
  .receipt-note {
    display: grid;
  }

  .mock-row {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .status {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
    font-size: 14px;
  }

  .mock-copy small,
  .preview-head p,
  .receipt-note span {
    font-size: 14px;
  }

  .step-list li {
    grid-template-columns: 1fr;
  }

  .product-stage {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .screen-body {
    grid-template-columns: 1fr;
  }

  .screen-sidebar {
    display: none;
  }

  .screen-summary {
    grid-template-columns: 1fr;
  }

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

  .screen-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .screen-row span,
  .screen-row small {
    grid-column: 1;
  }

  .screen-row .status {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .client-phone {
    width: min(100%, 320px);
    min-height: auto;
    margin: 0 auto;
  }

  .related-links a {
    display: grid;
    gap: 6px;
  }
}
