:root {
  --navy-950: #0b0f12;
  --navy-900: #11171c;
  --navy-850: #182128;
  --navy-800: #202b33;
  --navy-700: #34424b;
  --ink: #182126;
  --muted: #5d686f;
  --muted-light: #aeb8be;
  --line: #d6dcdf;
  --line-dark: #3b4850;
  --surface: #f3f4f2;
  --surface-raised: #f9faf8;
  --surface-blue: #e9edef;
  --white: #fff;
  --accent: #ff6a32;
  --accent-dark: #c3461f;
  --accent-soft: #fff0e9;
  --blue: #397b9c;
  --danger: #a92d3c;
  --warning: #b86121;
  --success: #24765f;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 14px 35px rgba(11, 15, 18, 0.08);
  --shadow-lg: 0 32px 80px rgba(3, 6, 8, 0.35);
}

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

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

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  background-image: linear-gradient(rgba(24, 33, 38, 0.025) 1px, transparent 1px);
  background-size: 100% 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand,
.price-card strong {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ff9b73;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 750;
  transform: translateY(-170%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow-container {
  width: min(780px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(11, 15, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: clamp(100px, 18vw, 280px);
  height: 2px;
  background: var(--accent);
  content: "";
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand > span:last-child > span {
  color: var(--accent);
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #52616a;
  background: #172027;
  clip-path: polygon(0 6px, 6px 0, 100% 0, 100% 25px, 25px 100%, 0 100%);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark > span::before {
  position: absolute;
  left: 5px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  content: "";
  transform-origin: left center;
}

.brand-mark::before {
  top: 9px;
  width: 20px;
}

.brand-mark::after {
  top: 15px;
  width: 19px;
  transform: rotate(-24deg);
}

.brand-mark > span::before {
  top: 21px;
  width: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #c5ced2;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0.015em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(185, 59, 22, 0.18);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  border-color: #ff8153;
  background: #a93818;
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 14px;
}

.header-cta-short {
  display: none;
}

.header-login-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding-inline: 4px;
  color: #c5ced2;
  font-size: 13px;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: #59676e;
  text-underline-offset: 4px;
}

.header-login-link:hover {
  color: var(--white);
  text-decoration-color: var(--accent);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
}

.button-light {
  border-color: var(--white);
  color: var(--navy-950);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  border-color: #e9edef;
  background: #e9edef;
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #d7dee1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--accent);
  content: "";
}

.eyebrow-dark {
  color: #526068;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 15, 18, 0.99), rgba(24, 33, 40, 0.96)),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to right, transparent 5%, #000 70%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -130px;
  width: 470px;
  height: 240px;
  border-top: 2px solid rgba(255, 106, 50, 0.32);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  left: 28%;
  background: rgba(255, 106, 50, 0.16);
}

.hero-glow-two {
  right: 6%;
  bottom: -270px;
  background: rgba(57, 123, 156, 0.24);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-block: 76px 66px;
}

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

.hero-copy h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 770;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-copy h1 > span {
  display: block;
  color: #c5d0d4;
}

.hero-copy h1 .hero-title-word {
  color: var(--white);
  white-space: nowrap;
}

.hero-text {
  max-width: 655px;
  margin-bottom: 24px;
  color: #c7d0d4;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.positioning-line {
  max-width: 640px;
  margin-bottom: 30px;
  padding: 13px 0 13px 17px;
  border-left: 3px solid var(--accent);
  color: var(--white);
  font-size: 17px;
  font-weight: 760;
}

.positioning-line span {
  color: #bbc6ca;
}

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

.hero-footnote {
  margin: 17px 0 0;
  color: #aeb9be;
  font-size: 13px;
}

.hero-footnote span {
  padding-inline: 5px;
  color: var(--accent);
}

.decision-preview {
  position: relative;
  margin: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(250, 251, 249, 0.98);
  box-shadow: var(--shadow-lg);
}

.decision-preview::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 27%, #44545c 27% 100%);
  content: "";
}

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

.preview-kicker,
.preview-measures > span {
  display: block;
  margin-bottom: 6px;
  color: #68747a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-head h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.preview-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid #d8ad8f;
  border-radius: 99px;
  color: #874019;
  background: #fff4eb;
  font-size: 11px;
  font-weight: 750;
}

.preview-facts {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 18px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.preview-facts div {
  min-width: 0;
}

.preview-facts dt,
.preview-meta span {
  margin-bottom: 4px;
  color: #68747a;
  font-size: 11px;
  font-weight: 700;
}

.preview-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.risk-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--warning);
}

.preview-measures {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.preview-measures ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-measures li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.preview-measures li + li {
  margin-top: 7px;
}

.preview-measures li::before {
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--success);
  background: #e7f2ee;
  content: "";
}

.preview-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 18px;
}

.preview-meta p {
  min-width: 0;
  margin: 0;
}

.preview-meta span,
.preview-meta strong {
  display: block;
}

.preview-meta strong {
  font-size: 12px;
  line-height: 1.4;
}

.preview-note {
  margin: 18px 0 -4px;
  color: #758087;
  font-size: 10px;
  text-align: right;
}

.route-strip {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.route-strip > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #b9c4c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-strip > p > span {
  position: relative;
  width: 30px;
  height: 12px;
  flex: 0 0 auto;
}

.route-strip > p > span::before,
.route-strip > p > span::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform-origin: left center;
}

.route-strip > p > span::before {
  top: 3px;
}

.route-strip > p > span::after {
  bottom: 2px;
  transform: rotate(-15deg);
}

.route-strip ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 54px);
  margin: 0;
  padding: 0;
  color: #d3dade;
  font-size: 12px;
  font-weight: 680;
  list-style: none;
}

.route-strip li {
  position: relative;
  padding-left: 15px;
  white-space: nowrap;
}

.route-strip li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  background: var(--navy-900);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(78px, 9vw, 124px);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(52, 66, 75, 0.28) 24%, rgba(255, 106, 50, 0.45) 24% 31%, rgba(52, 66, 75, 0.18) 31% 95%, transparent);
  content: "";
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-heading h2 span {
  color: #617078;
}

.section-heading > p:not(.eyebrow, .founder-name, .pricing-note) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.centered-heading {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
}

.centered-heading h2,
.centered-heading > p:not(.eyebrow) {
  margin-inline: auto;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.problem-section {
  background: var(--white);
  background-image:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(32, 43, 51, 0.035) 50%, transparent calc(50% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(32, 43, 51, 0.025) 63px 64px);
  background-size: 100% 100%, 100% 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-width: 0;
  padding: 36px 34px 40px;
  border-right: 1px solid var(--line);
}

.problem-card:first-child {
  padding-left: 0;
}

.problem-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.card-number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #a5afb4;
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.line-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 24px;
  border: 1px solid #b9c2c6;
  background: var(--surface);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon-files::before {
  top: 10px;
  left: 12px;
  width: 14px;
  height: 17px;
  border: 2px solid var(--navy-700);
  box-shadow: 5px 5px 0 -1px var(--surface), 5px 5px 0 1px var(--accent);
}

.line-icon-owner::before {
  top: 8px;
  left: 15px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--navy-700);
  border-radius: 50%;
}

.line-icon-owner::after {
  bottom: 8px;
  left: 10px;
  width: 20px;
  height: 10px;
  border: 2px solid var(--accent);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.line-icon-history::before {
  inset: 9px;
  border: 2px solid var(--navy-700);
  border-radius: 50%;
}

.line-icon-history::after {
  top: 15px;
  left: 20px;
  width: 7px;
  height: 8px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.problem-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.015em;
}

.problem-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-bridge {
  margin-top: 38px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 740;
  text-align: center;
}

.pilot-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-850);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 72%, rgba(255, 106, 50, 0.065) 72% 72.25%, transparent 72.25%);
  background-size: 96px 100%, 100% 100%;
  border-top: 1px solid #354149;
  border-bottom: 1px solid #354149;
}

.pilot-banner::after {
  position: absolute;
  top: 50%;
  right: clamp(20px, 5vw, 80px);
  width: 9px;
  height: 9px;
  border: 1px solid #64727a;
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.025);
  content: "";
  transform: translateY(-50%);
}

.pilot-banner-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: start;
  gap: 42px;
  padding-block: 42px;
}

.pilot-banner .eyebrow {
  margin: 6px 0 0;
  color: #ffb090;
}

.pilot-banner h2 {
  margin-bottom: 7px;
  font-size: 25px;
  letter-spacing: -0.015em;
}

.pilot-banner p:last-child {
  max-width: 800px;
  margin: 0;
  color: #c5ced2;
}

.workflow-section {
  background: var(--surface);
  background-image:
    linear-gradient(rgba(52, 66, 75, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 66, 75, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.workflow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.workflow-list::before {
  position: absolute;
  top: 26px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #aab4b9;
  content: "";
}

.workflow-list li {
  position: relative;
  min-width: 0;
  padding: 0 15px;
  text-align: center;
}

.workflow-number {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid #849097;
  border-radius: 50%;
  color: var(--navy-800);
  background: var(--surface);
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.workflow-list li:nth-child(3) .workflow-number {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 0 0 7px var(--accent-soft);
}

.workflow-list h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.section-action p {
  margin: 0;
  color: #445158;
  font-weight: 680;
}

.data-section {
  color: var(--white);
  background: var(--navy-900);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 12% 40%, rgba(57, 123, 156, 0.11), transparent 33%);
  background-size: 100% 40px, 80px 100%, 100% 100%;
}

.data-section .eyebrow {
  color: #aeb9be;
}

.data-section .section-heading h2 span {
  color: #9dadb4;
}

.data-section .section-heading > p:not(.eyebrow) {
  color: #b8c3c8;
}

.data-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

@media (max-width: 1100px) {
  .data-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .data-grid .section-heading {
    max-width: 800px;
  }
}

.data-model {
  border-top: 1px solid var(--line-dark);
}

.data-group {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-dark);
}

.data-group > p {
  margin: 1px 0 0;
  color: #ff9a72;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-group li {
  position: relative;
  padding-left: 15px;
  color: #d6dde0;
  font-size: 14px;
  line-height: 1.5;
}

.data-group li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
  content: "";
}

.comparison-section {
  background: var(--white);
  background-image:
    linear-gradient(105deg, transparent 0 16%, rgba(32, 43, 51, 0.025) 16% 16.15%, transparent 16.15% 84%, rgba(255, 106, 50, 0.035) 84% 84.15%, transparent 84.15%),
    linear-gradient(90deg, transparent 0 49.95%, rgba(32, 43, 51, 0.025) 49.95% 50.05%, transparent 50.05%);
}

.comparison-track {
  display: grid;
  grid-template-columns: 1fr 48px 1.2fr 48px 1fr;
  align-items: center;
  gap: 0;
}

.comparison-track article {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  text-align: center;
}

.comparison-track .comparison-focus {
  min-height: 280px;
  border-color: #46545b;
  color: var(--white);
  background: var(--navy-850);
  box-shadow: var(--shadow-sm);
}

.comparison-label {
  display: block;
  margin-bottom: 10px;
  color: #768188;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison-focus .comparison-label {
  color: #ff9c76;
}

.comparison-track h3 {
  margin-bottom: 9px;
  font-size: 28px;
}

.comparison-track p {
  margin: 0;
  color: var(--muted);
}

.comparison-track ul {
  margin: 5px auto 0;
  padding: 0;
  color: #cdd5d8;
  list-style: none;
}

.comparison-track li + li {
  margin-top: 5px;
}

.comparison-arrow {
  color: #87939a;
  font-size: 25px;
  text-align: center;
}

.comparison-conclusion {
  margin-top: 34px;
  margin-bottom: 0;
  font-weight: 730;
  text-align: center;
}

.fit-section {
  background: var(--surface-blue);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(52, 66, 75, 0.025) 18px 19px),
    linear-gradient(90deg, rgba(32, 43, 51, 0.03), transparent 28% 72%, rgba(32, 43, 51, 0.03));
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.fit-copy h2 {
  margin-bottom: 30px;
}

.fit-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.fit-list li,
.check-list li {
  position: relative;
  padding-left: 25px;
}

.fit-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.47em;
  left: 1px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--success);
  border-left: 2px solid var(--success);
  content: "";
  transform: rotate(-45deg);
}

.scope-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid #bec8cc;
  background: rgba(255, 255, 255, 0.78);
}

.scope-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--accent);
  content: "";
}

.scope-label {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scope-card h3 {
  margin-bottom: 16px;
  font-size: 29px;
  line-height: 1.15;
}

.scope-card p:not(.scope-label) {
  color: var(--muted);
}

.scope-card p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}

.founder-section {
  background: var(--white);
  background-image:
    radial-gradient(circle at 24px 24px, rgba(52, 66, 75, 0.08) 0 1px, transparent 1.5px),
    linear-gradient(90deg, transparent 0 72%, rgba(32, 43, 51, 0.025) 72% 100%);
  background-size: 48px 48px, 100% 100%;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(58px, 9vw, 125px);
}

.founder-name {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 28px 0 0;
  font-size: 14px;
}

.founder-name > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-850);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.trust-panel {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-panel h3 {
  margin-bottom: 24px;
  font-size: 25px;
}

.trust-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 15px;
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

.trust-panel li:last-child {
  padding-bottom: 0;
}

.trust-panel li > span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border: 2px solid var(--success);
  border-radius: 50%;
}

.trust-panel strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.trust-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-section {
  color: var(--white);
  background: var(--navy-950);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.018) 22px 23px),
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.04) 49.95% 50.05%, transparent 50.05%),
    radial-gradient(circle at 84% 22%, rgba(255, 106, 50, 0.09), transparent 28%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.pricing-copy .eyebrow {
  color: #ffac8b;
}

.pricing-copy h2 span {
  color: #9cabb1;
}

.pricing-copy > p:not(.eyebrow, .pricing-note) {
  color: #c1cbd0;
}

.pricing-note {
  max-width: 620px;
  margin: 26px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  color: #aeb9be;
  font-size: 14px;
}

.price-card {
  position: relative;
  padding: 36px;
  border: 1px solid #4a5961;
  border-top: 3px solid var(--accent);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.price-card-head h3 {
  display: block;
  margin: 0 0 3px;
  color: #59666c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-head p {
  margin: 0;
  line-height: 1;
}

.price-card-head strong {
  font-size: 51px;
  letter-spacing: -0.04em;
}

.price-card-head small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.price-pill {
  padding: 5px 9px;
  border: 1px solid #ddaf94;
  color: #843b19;
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 760;
}

.price-card-label {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 760;
}

.check-list {
  margin-bottom: 27px;
}

.check-list li + li {
  margin-top: 10px;
}

.price-disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.faq-section {
  background: var(--surface);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(52, 66, 75, 0.08) 1px, transparent 1.2px),
    linear-gradient(90deg, transparent 0 34%, rgba(32, 43, 51, 0.025) 34% 34.1%, transparent 34.1%);
  background-size: 32px 32px, 100% 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(480px, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 118px;
}

.faq-list {
  border-top: 1px solid #b8c2c6;
}

.faq-list details {
  border-bottom: 1px solid #b8c2c6;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 730;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid #97a3a8;
  border-radius: 50%;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: var(--navy-700);
  content: "";
}

.faq-list summary > span::after {
  transform: rotate(90deg);
  transition: transform 140ms ease;
}

.faq-list details[open] summary {
  color: var(--accent-dark);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -2px 48px 22px 0;
  color: var(--muted);
}

.faq-list a {
  color: #075c64;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  color: var(--white);
  background: var(--accent-dark);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(11, 15, 18, 0.075) 28px 30px),
    linear-gradient(90deg, rgba(11, 15, 18, 0.12), transparent 45%);
}

.final-cta-inner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 55px;
}

.final-cta .eyebrow {
  margin-bottom: 13px;
  color: #ffd6c6;
}

.final-cta h2 {
  max-width: 740px;
  margin-bottom: 9px;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: #ffe0d4;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  color: #abb6bb;
  background: var(--navy-950);
  border-top: 1px solid #313c42;
}

.footer-grid {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.65fr;
  align-items: center;
  gap: 50px;
  padding-block: 40px;
}

.brand-footer {
  margin-bottom: 15px;
}

.footer-grid p {
  max-width: 380px;
  margin-bottom: 0;
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-grid nav a,
.footer-note a {
  text-decoration: underline;
  text-decoration-color: #59666d;
  text-underline-offset: 4px;
}

.footer-grid nav a:hover,
.footer-note a:hover {
  color: var(--white);
}

.footer-note {
  text-align: right;
}

/* Form, confirmation and legal pages */
.page-hero {
  padding-block: 60px 70px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 15, 18, 0.98), rgba(25, 35, 42, 0.96)),
    var(--navy-950);
}

.page-hero h1,
.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero-copy {
  max-width: 690px;
  margin-bottom: 25px;
  color: #c5ced2;
  font-size: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #718087;
  text-underline-offset: 4px;
}

.back-link:hover {
  color: var(--accent);
}

.form-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin: 0;
  padding: 0;
  color: #b9c4c8;
  font-size: 13px;
  list-style: none;
}

.form-reassurance li {
  position: relative;
  padding-left: 17px;
}

.form-reassurance li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.form-section {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--surface);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 55px;
}

.form-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-intro {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.form-intro > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-family: Bahnschrift, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.form-intro h2 {
  margin-bottom: 4px;
  font-size: 26px;
  line-height: 1.2;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-intro b,
.form-field label > span:not(.optional-label),
.consent-field label > span {
  color: var(--danger);
}

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

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #313c42;
  font-size: 13px;
  font-weight: 740;
}

.optional-label {
  margin-left: 6px;
  color: #77838a;
  font-size: 11px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  display: block;
  padding: 11px 13px;
  border: 1px solid #aeb8bd;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #76848b;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #18727a;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(24, 114, 122, 0.18);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
}

.help-text,
.privacy-hint,
.submit-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.help-text {
  margin: 7px 0 0;
}

.privacy-hint {
  margin: 13px 0 20px;
}

.privacy-hint a {
  color: #075c64;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-note {
  margin: 0 0 10px;
  text-align: center;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
}

.consent-field.has-error {
  border-color: var(--danger);
  background: #fff4f5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--success);
}

.consent-field label {
  font-size: 13px;
  line-height: 1.55;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error-summary {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--danger);
  color: #6f1e29;
  background: #fff1f3;
}

.form-error-summary strong {
  display: block;
}

.form-error-summary p {
  margin: 2px 0 0;
  font-size: 13px;
}

.field-errors {
  margin-top: 6px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 680;
}

.field-errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.consent-errors {
  margin-bottom: 5px;
}

.form-aside {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-top: 3px solid var(--accent);
  background: var(--surface-blue);
}

.form-aside .eyebrow {
  margin-bottom: 20px;
}

.form-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-aside li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid #c7d0d3;
}

.form-aside li > span {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #89969c;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.form-aside strong {
  display: block;
  font-size: 14px;
}

.form-aside li p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.aside-note {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin-top: 21px;
  padding: 14px;
  color: #5e3321;
  background: #fff2ec;
}

.aside-note > span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-dark);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.aside-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.status-page {
  min-height: calc(100vh - 286px);
  display: grid;
  place-items: center;
  padding-block: 75px;
  background: var(--surface);
}

.status-card {
  width: min(680px, calc(100% - 40px));
  padding: clamp(35px, 6vw, 70px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.success-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 25px;
}

.status-card .eyebrow {
  justify-content: center;
}

.status-card h1 {
  margin-bottom: 13px;
  font-size: clamp(36px, 6vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.status-card > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.legal-page {
  padding-block: clamp(55px, 8vw, 90px);
  background: var(--white);
}

.legal-content {
  width: min(820px, calc(100% - 40px));
}

.legal-content .back-link {
  color: #405057;
}

.legal-content h1 {
  margin-bottom: 10px;
}

.legal-meta {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: 25px;
  line-height: 1.25;
  scroll-margin-top: 100px;
}

.legal-content p,
.legal-content li {
  color: #48545a;
}

.legal-content ul {
  padding-left: 23px;
}

.legal-content li + li {
  margin-top: 5px;
}

.legal-address {
  padding: 20px 23px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: #48545a;
  font-style: normal;
}

.legal-address strong {
  color: var(--ink);
}

.legal-link,
.legal-contact a {
  color: #075c64;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-link:hover,
.legal-contact a:hover {
  color: #043e43;
}

.legal-toc {
  margin: 35px 0 45px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal-toc > strong {
  display: block;
  margin-bottom: 10px;
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 25px;
  margin: 0;
  padding-left: 21px;
}

.legal-toc a {
  color: #075c64;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(385px, 0.9fr);
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 6.4vw, 64px);
  }

  .problem-card {
    padding-inline: 25px;
  }

  .data-grid,
  .founder-grid,
  .pricing-grid {
    gap: 55px;
  }

  .workflow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 0;
  }

  .workflow-list::before {
    display: none;
  }

  .data-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .data-group ul {
    grid-template-columns: 1fr;
  }

  .comparison-track {
    grid-template-columns: 1fr 35px 1.15fr 35px 1fr;
  }

  .comparison-track article {
    padding-inline: 19px;
  }

  .fit-grid {
    gap: 50px;
  }

  .founder-grid {
    grid-template-columns: 1fr 0.8fr;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 70px;
  }

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

  .decision-preview {
    width: min(650px, 100%);
  }

  .route-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-block: 22px;
  }

  .route-strip ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .split-heading,
  .data-grid,
  .fit-grid,
  .founder-grid,
  .pricing-grid,
  .faq-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

  .split-heading > p {
    max-width: 690px;
  }

  .comparison-track {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(600px, calc(100% - 40px));
  }

  .comparison-track article,
  .comparison-track .comparison-focus {
    min-height: auto;
    padding-block: 29px;
  }

  .comparison-arrow {
    padding: 8px;
    transform: rotate(90deg);
  }

  .fit-grid,
  .founder-grid,
  .pricing-grid {
    gap: 50px;
  }

  .scope-card,
  .trust-panel,
  .price-card {
    width: min(620px, 100%);
  }

  .faq-heading,
  .form-aside {
    position: static;
  }

  .faq-heading {
    margin-bottom: 10px;
  }

  .form-layout {
    width: min(780px, calc(100% - 40px));
  }

  .form-aside {
    width: min(600px, 100%);
  }
}

@media (max-width: 700px) {
  .section {
    padding-block: 72px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 68px;
    gap: 15px;
  }

  .brand {
    font-size: 17px;
  }

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

  .button-small {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero-grid {
    padding-block: 56px 64px;
  }

  .route-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-copy h1 .hero-title-word {
    white-space: normal;
  }

  .hero-text {
    font-size: 18px;
  }

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

  .problem-card,
  .problem-card:first-child,
  .problem-card:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-card:last-child {
    border-bottom: 0;
  }

  .card-number {
    right: 5px;
  }

  .section-bridge {
    text-align: left;
  }

  .pilot-banner-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pilot-banner .eyebrow {
    margin-top: 0;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-list::before {
    top: 25px;
    bottom: 25px;
    left: 25px;
    width: 1px;
    height: auto;
    display: block;
  }

  .workflow-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 0 0 34px;
    text-align: left;
  }

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

  .workflow-number {
    margin: 0;
  }

  .workflow-list li > div {
    padding-top: 11px;
  }

  .section-action {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .section-action .button {
    width: 100%;
  }

  .data-grid {
    gap: 45px;
  }

  .data-group ul {
    gap: 8px;
  }

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

  .final-cta-inner {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
  }

  .footer-note {
    text-align: right;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .narrow-container,
  .legal-content,
  .form-layout,
  .status-card {
    width: min(100% - 32px, 1160px);
  }

  .header-inner {
    gap: 10px;
  }

  .header-cta-long {
    display: none;
  }

  .header-login-link {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-footnote {
    line-height: 1.8;
  }

  .route-strip > p {
    white-space: normal;
  }

  .decision-preview {
    padding: 20px;
  }

  .preview-head,
  .price-card-head {
    flex-direction: column;
  }

  .preview-facts,
  .preview-meta {
    grid-template-columns: 1fr;
  }

  .preview-meta {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .section-heading > p:not(.eyebrow, .founder-name, .pricing-note) {
    font-size: 16px;
  }

  .scope-card,
  .trust-panel,
  .price-card {
    padding: 27px 23px;
  }

  .form-card {
    padding: 25px 20px;
  }

  .form-intro {
    gap: 12px;
  }

  .form-intro > span {
    width: 34px;
    height: 34px;
  }

  .form-intro h2 {
    font-size: 22px;
  }

  .form-aside {
    padding: 24px 20px;
  }

  .faq-list summary {
    gap: 15px;
  }

  .faq-list details p {
    margin-right: 0;
  }

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

  .footer-grid > div {
    grid-column: auto;
  }

  .footer-note {
    text-align: left;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .hero-glow,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
