:root {
  --ink: #111827;
  --muted: #56657d;
  --soft: #eef3f7;
  --line: #d7e0ea;
  --panel: #ffffff;
  --teal: #006f73;
  --blue: #285ea8;
  --hold: #b3362d;
  --review: #a06b00;
  --pass: #19784b;
  --shadow: 0 22px 55px rgba(34, 54, 82, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fafc;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 800;
}

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

.brand strong {
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-links a,
.header-cta,
.button {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta {
  color: var(--blue);
  background: #fff;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
}

.button.dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
  border-color: #9fb0c3;
}

.section-band {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
}

.hero {
  padding: 30px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 34px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.safe-grid > *,
.proof-grid > *,
.product-grid > *,
.path-card,
.media-frame,
.queue-table-wrap {
  min-width: 0;
}

.trust-line {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
}

.positioning-note {
  max-width: 640px;
  margin: -4px 0 14px;
  color: #43546f;
  font-size: 15px;
  font-weight: 800;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.14;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 22px;
  color: #43546f;
  font-size: 19px;
}

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

.start-chain {
  margin: 0 0 10px;
  padding: 11px 12px;
  border: 1px solid #b9d5d5;
  border-radius: var(--radius);
  color: #154b4d;
  background: #effafa;
  font-size: 14px;
  font-weight: 800;
}

.bundle-proof-line,
.setup-note {
  margin: 0 0 12px;
  color: #43546f;
  font-size: 14px;
  line-height: 1.45;
}

.bundle-proof-line {
  font-weight: 800;
}

.setup-note {
  max-width: 620px;
  color: #5a6678;
}

.buy-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.buy-ladder a {
  padding: 7px 10px;
  border: 1px solid #bfd0df;
  border-radius: 6px;
  color: #23435f;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.buy-ladder a:hover {
  transform: translateY(-1px);
  border-color: #7f9db7;
  background: #fff;
}

.mobile-status-strip {
  display: none;
}

.mobile-proof-card,
.mobile-boundary-line {
  display: none;
}

.boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #184b56;
  font-size: 14px;
  font-weight: 800;
}

.hero-panel,
.path-card,
.safe-steps article,
.proof-list article,
.fit-list article,
details,
.media-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hero-panel {
  padding: 16px;
  box-shadow: var(--shadow);
}

.queue-toolbar,
.section-heading,
.workflow-header,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.queue-toolbar {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.queue-toolbar strong {
  color: var(--teal);
}

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

.summary-tile {
  min-height: 156px;
  padding: 16px;
  border-radius: var(--radius);
  background: #f3f6f9;
}

.summary-tile span,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
}

.summary-tile span {
  margin-bottom: 12px;
  font-size: 28px;
}

.summary-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.summary-tile p {
  margin-bottom: 0;
  color: #43546f;
  font-size: 14px;
}

.hold span,
.status.hold {
  background: var(--hold);
}

.review span,
.status.review {
  background: var(--review);
}

.pass span,
.status.pass {
  background: var(--pass);
}

.queue-table-wrap {
  overflow-x: auto;
}

.queue-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  table-layout: fixed;
  font-size: 14px;
}

.queue-table th,
.queue-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e6edf4;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.queue-table th {
  color: #5c697c;
  background: #f4f7fa;
  font-size: 12px;
  text-transform: uppercase;
}

.status {
  min-width: 70px;
  padding: 6px 10px;
  font-size: 12px;
}

.safe-start,
.workflow-section,
.faq-section {
  padding: 76px 0;
}

.buyer-proof-section {
  padding: 56px 0 72px;
  background: #fff;
}

.buyer-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
}

.buyer-proof-copy,
.proof-visual {
  min-width: 0;
}

.buyer-proof-copy p:not(.trust-line) {
  color: var(--muted);
  font-size: 17px;
}

.proof-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 18px;
}

.proof-flow span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid #b9d5d5;
  border-radius: var(--radius);
  color: #174e52;
  background: #effafa;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.proof-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #33445c;
}

.proof-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.proof-visual img {
  width: 100%;
  height: auto;
}

.proof-visual figcaption {
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.safe-grid,
.proof-grid,
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.safe-grid p,
.section-heading p,
.workflow-header p,
.proof-list p,
.path-card p,
.fit-list p,
details p {
  color: var(--muted);
}

.safe-steps {
  display: grid;
  gap: 12px;
}

.safe-steps article,
.proof-list article,
.fit-list article {
  padding: 20px;
}

.safe-steps span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #e7f5f4;
  color: var(--teal);
  font-weight: 900;
}

.proof-section,
.product-section {
  padding: 80px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.delivery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.delivery-strip article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.delivery-strip strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.delivery-strip span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading p,
.workflow-header p {
  max-width: 660px;
  margin-bottom: 0;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(34, 54, 82, 0.08);
}

.media-frame img {
  width: 100%;
  height: auto;
}

.media-frame figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.decision-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #b9d5d5;
  border-radius: var(--radius);
  background: #f0fbfa;
}

.decision-cta strong,
.decision-cta span {
  display: block;
}

.decision-cta strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.decision-cta span,
.path-bridge {
  color: #43546f;
  font-size: 14px;
  line-height: 1.45;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.workflow-header {
  align-items: end;
  margin-bottom: 28px;
}

.workflow-header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

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

.path-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.path-card.emphasized {
  border-color: #9fc9cc;
  box-shadow: var(--shadow);
}

.path-meta {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal);
  background: #eaf8f7;
  font-size: 14px;
  font-weight: 900;
}

.path-card ul {
  display: grid;
  gap: 10px;
  margin: 2px 0 24px;
  padding-left: 20px;
  color: #33445c;
}

.path-card .button {
  margin-top: auto;
}

.path-secondary-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.path-secondary-link:hover {
  text-decoration: underline;
}

.product-grid {
  align-items: center;
}

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

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-inner a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 940px) {
  .hero-grid,
  .buyer-proof-grid,
  .safe-grid,
  .proof-grid,
  .product-grid,
  .delivery-strip,
  .path-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .nav-links {
    display: none;
  }

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

  .buyer-proof-section {
    padding: 52px 0 58px;
  }

  .proof-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-tile {
    min-height: auto;
  }

  .section-heading,
  .workflow-header,
  .decision-cta,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .decision-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section-inner {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 24px 0 26px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.02;
    margin-bottom: 14px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.46;
  }

  .boundary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .boundary-list li {
    padding: 8px 10px;
    font-size: 13px;
  }

  .boundary-list li:last-child {
    grid-column: 1 / -1;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero-actions .button.dark {
    min-height: 36px;
    color: var(--ink);
    background: #fff;
    border-color: #bfd0df;
  }

  .buy-ladder {
    display: none;
  }

  .buy-ladder a {
    min-width: 0;
    padding: 6px 5px;
    font-size: 11px;
    text-align: center;
  }

  .bundle-proof-line,
  .setup-note {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .setup-note,
  .positioning-note,
  .boundary-list,
  .hero-panel {
    display: none;
  }

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

  .mobile-status-strip .status {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 7px 6px;
    font-size: 12px;
  }

  .mobile-proof-card {
    display: grid;
    gap: 4px;
    margin: 0 0 8px;
    padding: 10px 11px;
    border: 1px solid #d8e3ed;
    border-radius: var(--radius);
    background: #fff;
    color: #26364c;
    box-shadow: 0 10px 26px rgba(34, 54, 82, 0.08);
  }

  .mobile-proof-card strong {
    font-size: 13px;
  }

  .mobile-proof-card span {
    color: #43546f;
    font-size: 12px;
    line-height: 1.35;
  }

  .mobile-boundary-line {
    display: block;
    margin: 0 0 10px;
    color: #184b56;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
  }

  .hero-panel {
    padding: 12px;
  }

  .queue-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
  }

  .queue-summary {
    gap: 8px;
    margin-bottom: 10px;
  }

  .summary-tile {
    padding: 12px;
  }

  .summary-tile span {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .summary-tile strong {
    margin-bottom: 4px;
  }

  .queue-table-wrap {
    overflow: visible;
  }

  .queue-table,
  .queue-table thead,
  .queue-table tbody,
  .queue-table tr,
  .queue-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .queue-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
  }

  .queue-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .queue-table tr {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #e1e8ef;
    border-radius: var(--radius);
    background: #fff;
  }

  .queue-table tr:last-child {
    margin-bottom: 0;
  }

  .queue-table td {
    display: grid;
    grid-template-columns: minmax(82px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #edf2f6;
  }

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

  .queue-table td::before {
    content: attr(data-label);
    color: #5c697c;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .status {
    width: fit-content;
    min-width: 68px;
  }

  .safe-start,
  .buyer-proof-section,
  .workflow-section,
  .faq-section,
  .proof-section,
  .product-section {
    padding: 54px 0;
  }

  .buyer-proof-copy p:not(.trust-line) {
    font-size: 15px;
  }

  .proof-flow {
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 16px 0 14px;
  }

  .proof-flow span {
    min-height: 42px;
    justify-content: flex-start;
    padding: 9px 11px;
    text-align: left;
  }

  .proof-visual figcaption {
    font-size: 11px;
  }

  .path-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .header-cta {
    transition: none;
  }
}
