:root {
  --navy-950: #0a172d;
  --navy-900: #10213f;
  --navy-800: #193258;
  --navy-700: #29466f;
  --ink: #18243a;
  --muted: #58657a;
  --orange: #c6530d;
  --orange-dark: #963b08;
  --orange-soft: #fff0e6;
  --mist: #f4f6fa;
  --white: #ffffff;
  --line: #dce2eb;
  --line-dark: rgba(255, 255, 255, 0.18);
  --success: #1f6f4a;
  --warning: #8b4f07;
  --shadow: 0 24px 70px rgba(10, 23, 45, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --wrap: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button {
  -webkit-font-smoothing: antialiased;
}

.error-page {
  background: var(--navy-950);
}

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

a {
  color: var(--navy-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--orange-dark);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 820px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 33, 63, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 12px;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  border-radius: 8px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 9px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 84px 0 76px;
}

.hero::after {
  position: absolute;
  top: -220px;
  right: -190px;
  width: 510px;
  height: 510px;
  border: 76px solid var(--orange-soft);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--orange);
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Avenir Next", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.045em;
}

h2 {
  max-width: 850px;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(21px, 2vw, 26px);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 19px;
}

p {
  margin: 0;
}

.lead {
  max-width: 800px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.hero .lead {
  margin-top: 24px;
}

.boundary-note {
  max-width: 790px;
  margin-top: 24px;
  border-left: 4px solid var(--orange);
  color: var(--navy-800);
  font-size: 16px;
  font-weight: 750;
  padding: 4px 0 4px 16px;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid var(--navy-900);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 850;
  padding: 12px 18px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.btn.primary:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: var(--white);
}

.btn.dark {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-950);
}

.btn.dark:hover {
  border-color: #ffd4b5;
  background: #fff6ef;
  color: var(--orange-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 800;
}

.secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 750;
}

.evidence-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 30px;
}

.evidence-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.evidence-card > * {
  position: relative;
  z-index: 1;
}

.evidence-card .label {
  color: #ffc99f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.evidence-card h2 {
  margin-top: 12px;
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.025em;
}

.evidence-list {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.evidence-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  padding: 16px 0;
}

.evidence-row:last-child {
  padding-bottom: 0;
}

.evidence-index {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffc99f;
  font-size: 12px;
  font-weight: 900;
}

.evidence-row strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.evidence-row span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section.mist {
  background: var(--mist);
}

.section.navy {
  border-color: transparent;
  background: var(--navy-950);
  color: var(--white);
}

.section.orange-soft {
  background: var(--orange-soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head .lead {
  max-width: 620px;
  font-size: 18px;
}

.section-head.stacked {
  display: block;
}

.section-head.stacked .lead {
  margin-top: 18px;
}

.section.navy h2,
.section.navy h3,
.section.navy h4 {
  color: var(--white);
}

.section.navy .lead,
.section.navy p {
  color: rgba(255, 255, 255, 0.74);
}

.section.navy .eyebrow {
  color: #ffc99f;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.card.accent {
  border-top: 5px solid var(--orange);
}

.card.lead-card {
  border-color: var(--orange);
  box-shadow: 0 16px 44px rgba(198, 83, 13, 0.12);
}

.card h3 + p,
.card h4 + p {
  margin-top: 12px;
}

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

.card p + p,
.card p + .btn,
.card ul + .btn,
.card .resource-links {
  margin-top: 18px;
}

.meta {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.num {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  color: var(--muted);
  padding-left: 22px;
}

.list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.compact-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

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

.claim-list li {
  min-height: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-800);
  font-weight: 750;
  padding: 20px;
}

.claim-list li span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow li {
  position: relative;
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px 18px;
  counter-increment: flow;
}

.flow li::before {
  display: block;
  margin-bottom: 26px;
  color: var(--orange-dark);
  content: "0" counter(flow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 49%;
  right: -11px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}

.flow strong {
  display: block;
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.35;
}

.flow span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.architecture-line {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px 26px;
}

.architecture-line strong {
  display: block;
  color: var(--navy-950);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.25;
}

.architecture-line span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.boundary-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 28px;
}

.boundary-panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}

.boundary-panel h3::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff9a4d;
  content: "";
}

.boundary-panel .list li {
  color: rgba(255, 255, 255, 0.75);
}

.boundary-quote {
  margin-top: 34px;
  border-left: 4px solid #ff9a4d;
  color: var(--white);
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  padding-left: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.proof-item {
  min-height: 150px;
  padding: 24px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.35;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.badge.warning::before {
  background: var(--warning);
}

.split-callout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 38px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(32px, 5vw, 56px);
}

.split-callout h2,
.split-callout h3 {
  color: var(--white);
}

.split-callout p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.split-callout .cta-row {
  justify-content: flex-end;
  margin: 0;
}

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

.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.comparison-card.governed {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.quote-line {
  margin-top: 18px;
  color: var(--navy-950);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.3;
}

.caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.roadmap {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.roadmap-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
}

.roadmap-row strong {
  color: var(--orange-dark);
  font-size: 20px;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0 22px;
}

.faq summary {
  position: relative;
  cursor: pointer;
  color: var(--navy-950);
  font-weight: 820;
  list-style: none;
  padding: 20px 44px 20px 0;
}

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

.faq summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  content: "+";
  font-size: 20px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 860px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 18px 0 22px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.resource-links a {
  font-size: 14px;
  font-weight: 800;
}

.section.navy .resource-links a {
  color: #ff9a4d;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section.navy .resource-links a:hover {
  color: #ffc99f;
  text-decoration-thickness: 3px;
}

.section.navy .resource-links a:focus-visible {
  color: #ffc99f;
  outline-color: #ffad57;
  text-decoration-thickness: 3px;
}

.price {
  margin: 10px 0 12px;
  color: var(--orange-dark);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-path {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(28px, 4vw, 42px);
}

.contact-path.primary-path {
  border-color: var(--orange);
  box-shadow: 0 18px 50px rgba(198, 83, 13, 0.1);
}

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

.prompt-list li {
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-weight: 850;
}

.independence {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--muted);
  padding: 22px 24px;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding: 58px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer h2 {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
}

.footer-copy {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #ffc99f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  padding-top: 22px;
}

.legacy-shell {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.legacy-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 42px;
  text-align: center;
}

.legacy-card .cta-row {
  justify-content: center;
}

@media (max-width: 1040px) {
  .header-inner {
    position: relative;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    border-top: 1px solid var(--line);
    padding: 12px 0 16px;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: grid;
  }

  .header-inner {
    flex-wrap: wrap;
  }

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

  .evidence-card {
    max-width: 680px;
  }

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

  .proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .flow li:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(100% - 30px, var(--wrap));
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero::after {
    top: -150px;
    right: -230px;
    opacity: 0.6;
  }

  h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .problem-grid,
  .split-callout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head .lead {
    margin-top: 16px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .boundary-grid,
  .comparison,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .claim-list,
  .prompt-list {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .flow li {
    min-height: 0;
  }

  .flow li::before {
    margin-bottom: 14px;
  }

  .flow li:not(:last-child)::after,
  .flow li:nth-child(3)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -12px;
    left: -15px;
    transform: rotate(135deg);
  }

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

  .proof-item + .proof-item,
  .proof-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-callout .cta-row {
    justify-content: flex-start;
  }

  .roadmap-row {
    grid-template-columns: 74px 1fr;
    gap: 16px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
