:root {
  --navy-950: #02060d;
  --navy-900: #06101f;
  --navy-800: #0a1728;
  --navy-700: #10233b;
  --blue-600: #5ea1ff;
  --blue-500: #0d6efd;
  --blue-400: #78b2ff;
  --blue-100: #12345e;
  --blue-050: #081b34;
  --ink: #f4f7fb;
  --slate: #b7c3d1;
  --slate-light: #8393a6;
  --line: rgba(125, 161, 204, 0.2);
  --cool-100: #040a12;
  --cool-050: #07101b;
  --surface: #08121f;
  --surface-raised: #0b1726;
  --white: #ffffff;
  --success: #8dd0ad;
  --success-bg: #0c2a1d;
  --error: #f0a0a0;
  --error-bg: #34191b;
  --focus: #78b2ff;
  --content: 1240px;
  --reading: 760px;
  --shadow-sm: 0 16px 42px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 30px 86px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: #07090c;
  font-weight: 750;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - var(--content)) / 2));
  border-bottom: 1px solid rgba(55, 137, 255, 0.42);
  background: linear-gradient(
    100deg,
    rgba(4, 18, 38, 0.98),
    rgba(8, 40, 78, 0.98) 52%,
    rgba(4, 18, 38, 0.98)
  );
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  background: linear-gradient(100deg, #06162b, #0a2b54 52%, #06162b);
}

.brand {
  display: inline-flex;
  width: 188px;
  height: 82px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #edf4ff;
  font-size: 12.5px;
  font-weight: 680;
  letter-spacing: 0.012em;
}

.site-header nav a:not(.nav-cta) {
  position: relative;
  padding: 31px 0 29px;
}

.site-header nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--blue-400);
  box-shadow: 0 0 18px rgba(13, 110, 253, 0.35);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.nav-cta,
.button-primary {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(13, 110, 253, 0.22);
}

.nav-cta:hover,
.button-primary:hover {
  border-color: var(--blue-400);
  background: #287fff;
  color: var(--white);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(94, 161, 255, 0.72);
  background: rgba(8, 27, 52, 0.42);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue-400);
  background: rgba(13, 110, 253, 0.18);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: #07090c;
}

.button-light:hover {
  background: #dfe6ea;
}

.button-wide {
  width: 100%;
  min-height: 54px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
}

.menu-icon {
  display: grid;
  width: 18px;
  gap: 5px;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main {
  min-height: 60vh;
}

.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  border-color: rgba(94, 161, 255, 0.34);
  background: linear-gradient(
    100deg,
    rgba(5, 20, 41, 0.97),
    rgba(9, 42, 83, 0.96) 52%,
    rgba(5, 20, 41, 0.97)
  );
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.22, 0.75, 0.18, 1);
}

.home-page.has-scrolled .site-header {
  border-color: rgba(94, 161, 255, 0.42);
  background: linear-gradient(
    100deg,
    rgba(3, 15, 31, 0.98),
    rgba(7, 34, 68, 0.98) 52%,
    rgba(3, 15, 31, 0.98)
  );
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.editorial-gateway {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #000000;
}

.editorial-gateway::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(94, 161, 255, 0.72) 18%,
    rgba(13, 110, 253, 0.46) 82%,
    transparent
  );
  box-shadow: 0 0 34px rgba(13, 110, 253, 0.24);
  content: "";
  pointer-events: none;
  transition: opacity 260ms ease;
}

.gateway-transition-mark {
  position: fixed;
  z-index: 0;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(13, 110, 253, 0.2), transparent 36%),
    var(--navy-950);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.gateway-transition-mark img {
  width: clamp(220px, 24vw, 350px);
  height: auto;
  opacity: 0.88;
  transform: scale(0.92);
  transition: opacity 360ms ease 160ms, transform 620ms cubic-bezier(0.22, 0.75, 0.18, 1);
}

.gateway-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  will-change: transform;
  transition:
    box-shadow 760ms cubic-bezier(0.72, 0, 0.18, 1),
    transform 760ms cubic-bezier(0.72, 0, 0.18, 1);
}

.gateway-panel + .gateway-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gateway-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.001);
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gateway-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 9, 19, 0.38) 0%,
      rgba(2, 9, 19, 0.06) 40%,
      rgba(1, 6, 13, 0.9) 100%
    ),
    linear-gradient(90deg, rgba(3, 16, 35, 0.3), transparent 58%);
  transition: background-color 260ms ease;
}

.gateway-content {
  display: flex;
  width: min(100%, 680px);
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding: 0 clamp(28px, 4.8vw, 72px) clamp(50px, 8vh, 90px);
  transition: opacity 240ms ease, transform 380ms ease;
}

.gateway-label {
  margin-bottom: 18px;
  color: #93c5ff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gateway-title {
  max-width: 630px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.3vw, 70px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.gateway-copy {
  max-width: 540px;
  margin: 21px 0 26px;
  color: rgba(231, 239, 249, 0.88);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.gateway-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid rgba(94, 161, 255, 0.88);
  border-radius: 4px;
  background: rgba(5, 24, 48, 0.66);
  color: var(--white);
  font-size: 14px;
  font-weight: 740;
  letter-spacing: 0.015em;
  backdrop-filter: blur(7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gateway-panel:focus-visible {
  z-index: 3;
  outline: 3px solid var(--focus);
  outline-offset: -6px;
}

.gateway-panel:focus-visible .gateway-cta {
  border-color: var(--blue-400);
  background: var(--blue-500);
  color: var(--white);
}

.home-page.gateway-exiting {
  overflow: hidden;
}

.home-page.gateway-exiting .gateway-transition-mark {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.home-page.gateway-exiting .site-header {
  opacity: 0;
  transform: translateY(-110%);
}

.gateway-exiting .gateway-individual {
  box-shadow: 36px 0 100px rgba(0, 0, 0, 0.52);
  transform: translate3d(-101%, 0, 0);
}

.gateway-exiting .gateway-company {
  box-shadow: -36px 0 100px rgba(0, 0, 0, 0.52);
  transform: translate3d(101%, 0, 0);
}

.gateway-exiting .gateway-content {
  opacity: 0;
  transform: translateY(12px);
}

.gateway-exiting .gateway-transition-mark img {
  opacity: 1;
  transform: scale(1);
}

.gateway-exiting .editorial-gateway::after {
  opacity: 0;
}

@media (hover: hover) {
  .gateway-panel:hover > img {
    transform: scale(1.045);
  }

  .gateway-panel:hover .gateway-cta {
    border-color: var(--blue-400);
    background: var(--blue-500);
    color: var(--white);
  }
}

.visual-hero {
  display: grid;
  min-height: calc(100svh - 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  overflow: hidden;
  border-bottom: 1px solid rgba(94, 161, 255, 0.24);
  background:
    radial-gradient(circle at 12% 25%, rgba(13, 110, 253, 0.13), transparent 34%),
    linear-gradient(145deg, var(--navy-900), var(--cool-050));
}

.visual-hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 9vw, 128px) clamp(38px, 5vw, 78px)
    clamp(76px, 9vw, 128px) max(24px, calc((100vw - var(--content)) / 2));
  animation: visual-copy-in 720ms cubic-bezier(0.22, 0.75, 0.18, 1) both;
}

.visual-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(43px, 5.1vw, 70px);
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.046em;
  line-height: 1.04;
}

.visual-hero-copy .hero-copy {
  max-width: 650px;
}

.visual-hero-copy .actions {
  margin-top: 32px;
}

.visual-hero-media {
  position: relative;
  min-width: 0;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  background: #05070a;
}

.visual-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 38, 0.54), transparent 27%),
    linear-gradient(180deg, rgba(6, 32, 65, 0.12), transparent 45%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 32%);
  content: "";
  pointer-events: none;
}

.visual-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: visual-image-in 980ms cubic-bezier(0.22, 0.75, 0.18, 1) both;
}

.visual-hero-individual .visual-hero-media img {
  object-position: 48% center;
}

.visual-hero-company .visual-hero-media img {
  object-position: 48% center;
}

.visual-hero-founder .visual-hero-media img {
  object-position: center 30%;
}

.visual-hero-deal-review .visual-hero-media img {
  object-position: 60% center;
}

.visual-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@keyframes visual-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-image-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px max(24px, calc((100% - var(--content)) / 2)) 84px;
  background:
    radial-gradient(circle at 86% 15%, rgba(13, 110, 253, 0.1), transparent 34%),
    var(--cool-050);
}

.hero::after {
  position: absolute;
  top: -180px;
  right: max(-220px, calc((100vw - var(--content)) / 2 - 300px));
  width: 560px;
  height: 560px;
  border: 1px solid rgba(94, 161, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(13, 110, 253, 0.035),
    0 0 0 140px rgba(13, 110, 253, 0.022);
  content: "";
  pointer-events: none;
}

.hero.hero-home {
  padding-bottom: 44px;
  background: var(--navy-950);
  color: var(--white);
}

.hero.hero-home::after {
  border-color: rgba(105, 189, 240, 0.23);
  box-shadow: 0 0 0 80px rgba(37, 132, 198, 0.06), 0 0 0 160px rgba(37, 132, 198, 0.04);
}

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

.hero-inner {
  max-width: 960px;
}

.hero.compact {
  padding-top: 76px;
  padding-bottom: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-home .eyebrow {
  color: #8ec3ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(43px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.046em;
  line-height: 1.04;
}

.hero.compact h1 {
  max-width: 900px;
  font-size: clamp(40px, 5.2vw, 64px);
}

.hero-copy {
  max-width: 735px;
  margin: 25px 0 0;
  color: #bdc9d7;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-home .hero-copy {
  color: #c6d2dc;
}

.hero .actions {
  margin-top: 32px;
}

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

.actions-spaced {
  margin-top: 28px;
}

.resource-masthead {
  position: relative;
  z-index: 2;
  max-width: var(--content);
  height: clamp(300px, 43vw, 540px);
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(94, 161, 255, 0.3);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.resource-masthead::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 6, 13, 0.84)),
    linear-gradient(90deg, rgba(2, 6, 13, 0.1), transparent 38%, rgba(2, 6, 13, 0.08));
  content: "";
  pointer-events: none;
}

.resource-masthead img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resource-masthead figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 24px;
  left: 34px;
  color: #e9f2ff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.audience-wrap {
  padding: 0 max(24px, calc((100% - var(--content)) / 2)) 88px;
  background: var(--navy-950);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-lg);
}

.audience-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  background: var(--surface-raised);
  color: var(--ink);
  transition: background-color 180ms ease, transform 180ms ease;
}

.audience-card.company {
  background: var(--navy-800);
  color: var(--white);
}

.audience-card:hover {
  transform: translateY(-3px);
}

.audience-label {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card.company .audience-label {
  color: #8ecdf1;
}

.audience-card h2 {
  margin: 54px 0 15px;
  font-size: clamp(34px, 4vw, 49px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.audience-card p {
  max-width: 470px;
  margin: 0 0 28px;
  color: var(--slate);
  font-size: 17px;
}

.audience-card.company p {
  color: #c8d7e3;
}

.audience-card .arrow-link {
  margin-top: auto;
}

.section {
  padding: 100px max(24px, calc((100% - var(--content)) / 2));
}

.section-tight {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-cool {
  background:
    linear-gradient(180deg, rgba(13, 110, 253, 0.025), transparent 36%),
    var(--cool-100);
}

.section-navy {
  background: var(--navy-900);
  color: var(--white);
}

.section-blue {
  background:
    radial-gradient(circle at 88% 12%, rgba(13, 110, 253, 0.11), transparent 30%),
    var(--blue-050);
}

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

.section-head > div:first-child {
  max-width: 780px;
}

.section-head h2,
.split h2,
.form-intro h2,
.cta-band h2 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-head > p {
  max-width: 450px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

.section-navy .section-head > p {
  color: #b8cad8;
}

.kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-navy .kicker {
  color: #8ec3ff;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-400);
  font-weight: 760;
}

.arrow-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.arrow-link:hover::after {
  transform: translateX(4px);
}

.audience-card.company .arrow-link,
.section-navy .arrow-link {
  color: #9bc8ff;
}

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

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

.card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 29px;
  overflow: hidden;
  border: 1px solid rgba(125, 161, 204, 0.22);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(14, 31, 52, 0.96), rgba(8, 18, 31, 0.98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::before {
  position: absolute;
  top: 0;
  left: 29px;
  width: 58px;
  height: 2px;
  background: var(--blue-500);
  box-shadow: 0 0 18px rgba(13, 110, 253, 0.46);
  content: "";
}

.card:hover {
  border-color: rgba(94, 161, 255, 0.68);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.card .card-index,
.card .type {
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card h3 {
  margin: 35px 0 12px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.card .type + h3 {
  margin-top: 16px;
}

.card p {
  margin: 0 0 24px;
  color: var(--slate);
}

.card .arrow-link {
  margin-top: auto;
}

.card.featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 90% 0%, rgba(13, 110, 253, 0.2), transparent 36%),
    var(--blue-050);
}

.section-navy .card {
  border-color: rgba(94, 161, 255, 0.2);
  background: linear-gradient(145deg, rgba(13, 31, 52, 0.98), var(--navy-800));
}

.section-navy .card p {
  color: #bdccd8;
}

.section-navy .card .type {
  color: #8ec3ff;
}

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

.service-path {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid rgba(125, 161, 204, 0.2);
  border-top: 4px solid var(--blue-500);
  border-radius: 6px;
  background: linear-gradient(145deg, var(--surface-raised), var(--surface));
  color: var(--ink);
}

.service-path.dark {
  border-top-color: var(--blue-400);
  background: var(--navy-800);
  color: var(--white);
}

.service-path h3 {
  margin: 52px 0 13px;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 770;
  letter-spacing: -0.042em;
  line-height: 1.07;
}

.service-path p {
  color: var(--slate);
  font-size: 17px;
}

.service-path.dark p {
  color: #c3d2dd;
}

.service-path .arrow-link {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: start;
}

.split > div > p {
  color: var(--slate);
  font-size: 18px;
}

.split .actions {
  margin-top: 28px;
}

.checklist,
.number-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li,
.number-list li {
  position: relative;
  padding: 15px 0 15px 32px;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  position: absolute;
  left: 0;
  color: var(--blue-600);
  content: "✓";
  font-weight: 820;
}

.number-list {
  counter-reset: steps;
}

.number-list li {
  padding-left: 48px;
  counter-increment: steps;
}

.number-list li::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-600);
  content: counter(steps);
  font-size: 13px;
  font-weight: 800;
}

.process-timeline {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(125, 161, 204, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.08), transparent 54%),
    var(--surface-raised);
}

.process-step::after {
  position: absolute;
  right: -28px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(94, 161, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.process-index {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.process-step h3 {
  max-width: 320px;
  margin: 32px 0 12px;
  color: var(--white);
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.process-step p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--slate);
}

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

.deliverable-card {
  min-height: 245px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  border-radius: 6px;
  background: rgba(11, 23, 38, 0.88);
}

.illustrative-label,
.story-service {
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverable-card h3 {
  margin: 42px 0 12px;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.deliverable-card p {
  margin: 0;
  color: var(--slate);
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 5px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.price small {
  color: var(--slate);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.notice {
  padding: 22px 24px;
  border-left: 3px solid var(--blue-500);
  background: var(--blue-050);
  color: var(--slate);
}

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

.notice-spaced {
  margin-top: 42px;
}

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

.package {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
}

.package.featured {
  border-top: 4px solid var(--blue-500);
  box-shadow: var(--shadow-sm);
}

.package h3 {
  margin: 8px 0 7px;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.package .package-level {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package > p {
  color: var(--slate);
}

.package .plain-list {
  margin: 16px 0 26px;
}

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

.package .button {
  margin-top: auto;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.topic-cloud a,
.topic-cloud span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface-raised);
  font-size: 14px;
  font-weight: 660;
}

.topic-cloud a:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface-raised);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.filter[aria-pressed="true"] {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: #06080a;
}

.resource-card.hidden {
  display: none;
}

.resource-status {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 9px;
  background: var(--cool-100);
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  max-width: var(--content);
  grid-template-columns: minmax(0, var(--reading)) minmax(250px, 320px);
  gap: 82px;
  margin: 0 auto;
  padding: 74px 24px 100px;
}

.article-body .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.55;
}

.article-body h2 {
  margin: 50px 0 15px;
  color: var(--ink);
  font-size: 32px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.article-body h3 {
  margin: 34px 0 10px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.article-body p,
.article-body li {
  color: #bcc5cd;
  font-size: 18px;
}

.article-body li {
  margin-bottom: 9px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
  color: var(--slate);
  font-size: 14px;
}

.article-note {
  margin: 34px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--blue-500);
  background: var(--blue-050);
}

.article-example {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(94, 161, 255, 0.3);
  border-left: 4px solid var(--blue-500);
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.09), transparent 65%),
    var(--surface-raised);
}

.article-example > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-example p:last-child {
  margin-bottom: 0;
}

.article-example .article-source {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 13px;
}

.article-source a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue-500);
  text-underline-offset: 3px;
}

.article-aside {
  position: sticky;
  top: 110px;
  height: max-content;
  padding: 28px;
  border-top: 4px solid var(--blue-500);
  background: var(--cool-100);
}

.article-aside h2 {
  margin: 8px 0 12px;
  font-size: 25px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-aside p {
  color: var(--slate);
}

.draft-banner {
  padding: 13px 24px;
  background: #2d2412;
  color: #f0d18c;
  font-size: 14px;
  font-weight: 680;
  text-align: center;
}

.empty-state {
  padding: 48px;
  border: 1px dashed #53616c;
  background: var(--cool-050);
  text-align: center;
}

.empty-state h2,
.empty-state h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.empty-state p {
  max-width: 610px;
  margin: 0 auto 25px;
  color: var(--slate);
}

.cta-band {
  display: flex;
  max-width: var(--content);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto 88px;
  padding: 52px;
  border: 1px solid rgba(94, 161, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgba(94, 161, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #071a36, #0a3976);
  color: var(--white);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.cta-band h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 48px);
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: #bdccd8;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(94, 161, 255, 0.2);
  border-bottom: 1px solid rgba(94, 161, 255, 0.2);
  background: linear-gradient(90deg, #050c16, #07182c, #050c16);
}

.social-proof-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(13, 110, 253, 0.13), transparent 30%),
    var(--navy-950);
}

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

.proof-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  background: rgba(11, 23, 38, 0.86);
  box-shadow: var(--shadow-sm);
}

.proof-card-featured {
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.11), transparent 62%),
    var(--surface-raised);
}

.proof-label {
  margin-bottom: auto;
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card h3,
.proof-card blockquote {
  max-width: 620px;
  margin: 38px 0 12px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.proof-card p,
.proof-card figcaption span {
  color: var(--slate);
}

.proof-card .arrow-link {
  margin-top: 22px;
}

.proof-quote figcaption {
  display: grid;
  gap: 2px;
}

.success-empty {
  max-width: 900px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(94, 161, 255, 0.36);
  border-left: 4px solid var(--blue-500);
  border-radius: 6px;
  background:
    radial-gradient(circle at 92% 8%, rgba(13, 110, 253, 0.15), transparent 34%),
    var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.success-empty h3 {
  max-width: 720px;
  margin: 34px 0 14px;
  color: var(--white);
  font-size: clamp(29px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.success-empty p {
  max-width: 760px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
}

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

.success-story-card,
.success-category-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.08), transparent 58%),
    var(--surface-raised);
}

.success-story-card h3,
.success-category-card h3 {
  max-width: 520px;
  margin: 44px 0 12px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.success-story-card p,
.success-category-card p {
  color: var(--slate);
}

.success-story-card .story-service,
.success-category-card .arrow-link {
  margin-top: auto;
  padding-top: 24px;
}

.proof-policy-panel p {
  color: #b8c8d8;
}

.site-next-step {
  display: flex;
  max-width: var(--content);
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  margin: 0 auto 88px;
  padding: 44px 48px;
  border: 1px solid rgba(94, 161, 255, 0.34);
  border-left: 4px solid var(--blue-500);
  background:
    radial-gradient(circle at 94% 0%, rgba(13, 110, 253, 0.21), transparent 36%),
    linear-gradient(120deg, #071526, #0a2344);
  box-shadow: var(--shadow-lg);
}

.site-next-step h2 {
  margin: 7px 0 8px;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.site-next-step p {
  max-width: 700px;
  margin: 0;
  color: #c4d1dd;
}

.site-next-step .actions {
  flex: 0 0 auto;
}

.automotive-tools {
  display: block;
  padding: 54px 48px 48px;
  border-left-width: 1px;
}

.automotive-tools-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.automotive-tools-header h2 {
  max-width: 760px;
}

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

.automotive-tool-card {
  display: flex;
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(132, 178, 228, 0.22);
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.1), transparent 42%),
    rgba(4, 15, 28, 0.76);
  flex-direction: column;
}

.automotive-tool-card.company-tool {
  border-color: rgba(64, 143, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.2), transparent 44%),
    rgba(4, 15, 28, 0.82);
}

.tool-link-card {
  min-height: 320px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-link-card:hover,
.tool-link-card:focus-visible {
  border-color: rgba(94, 161, 255, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.tool-link-card:focus-visible {
  outline: 3px solid rgba(94, 161, 255, 0.38);
  outline-offset: 3px;
}

.tool-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue-400);
  font-size: 14px;
  font-weight: 780;
}

.automotive-tool-card h3 {
  margin: 24px 0 12px;
  color: var(--white);
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.automotive-tool-card > p {
  min-height: 78px;
}

.tool-calculator {
  display: flex;
  height: 100%;
  margin-top: 20px;
  flex-direction: column;
}

.tool-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-fieldset + .tool-fieldset {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(132, 178, 228, 0.18);
}

.tool-fieldset legend {
  margin-bottom: 8px;
  padding: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.tool-fieldset-copy {
  margin: 0 0 20px;
  color: #9fb2c5;
  font-size: 13px;
}

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

.tool-fields-company label:last-child {
  grid-column: 1 / -1;
}

.tool-fields label {
  display: block;
  min-width: 0;
  color: #dbe9f6;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.tool-fields label > small {
  display: block;
  margin-top: 7px;
  color: #8fa7bd;
  font-size: 11px;
  font-weight: 520;
  line-height: 1.45;
}

.tool-fields input {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 11px 13px;
  border: 1px solid rgba(151, 182, 216, 0.34);
  border-radius: 4px;
  outline: 0;
  background: #06111f;
  color: var(--white);
  font: inherit;
  font-weight: 650;
}

.tool-fields input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.22);
}

.input-prefix {
  position: relative;
  display: block;
}

.input-prefix > span {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 13px;
  color: #8ea9c2;
  font-weight: 650;
  pointer-events: none;
}

.input-prefix input {
  padding-left: 29px;
}

.input-suffix {
  position: relative;
  display: block;
}

.input-suffix > span {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 13px;
  color: #8ea9c2;
  font-weight: 650;
  pointer-events: none;
}

.input-suffix input {
  padding-right: 34px;
}

.tool-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.tool-calculator .tool-form-actions .button {
  width: auto;
  flex: 1 1 auto;
}

.tool-privacy-note {
  min-height: 0;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(132, 178, 228, 0.18);
  border-radius: 4px;
  color: #9fb2c5;
  font-size: 12px;
  line-height: 1.5;
}

.tool-result {
  display: block;
  min-height: 118px;
  margin-top: 16px;
  padding: 19px 20px;
  border: 1px solid rgba(94, 161, 255, 0.3);
  border-left: 3px solid var(--blue-500);
  background: rgba(6, 22, 43, 0.76);
}

.tool-result span,
.tool-result small {
  display: block;
}

.tool-result span {
  color: #a9bfd3;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-result strong {
  display: block;
  margin: 6px 0 5px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.tool-result small {
  color: #a9bfd3;
  font-size: 12px;
  line-height: 1.45;
}

.tool-result.has-error {
  border-color: rgba(255, 151, 151, 0.48);
  border-left-color: #ff6d6d;
}

.calculator-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.calculator-metric {
  min-width: 0;
  min-height: 112px;
  padding: 17px 18px;
  border: 1px solid rgba(132, 178, 228, 0.2);
  border-radius: 4px;
  background: rgba(4, 15, 28, 0.56);
}

.calculator-metric span {
  display: block;
  color: #8fa7bd;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.calculator-metric strong {
  display: block;
  margin-top: 14px;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.site-next-step .tool-formula {
  min-height: auto;
  margin: 18px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(132, 178, 228, 0.16);
  color: #9fb2c5;
  font-size: 12px;
  line-height: 1.55;
}

.calculator-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.calculator-page-intro {
  position: sticky;
  top: 118px;
}

.calculator-page-intro h2 {
  max-width: 560px;
  margin: 18px 0;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.calculator-page-intro > p {
  max-width: 600px;
  color: var(--slate);
  font-size: 17px;
}

.calculator-page-intro .checklist {
  margin-top: 28px;
}

.full-tool-card {
  min-height: 0;
  padding: clamp(28px, 4vw, 44px);
}

.full-tool-card > p {
  min-height: 0;
}

.full-tool-card .tool-calculator {
  margin-top: 0;
}

.full-tool-card .tool-formula {
  min-height: 0;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(132, 178, 228, 0.18);
  color: #a9bfd3;
  font-size: 13px;
  line-height: 1.55;
}

.tool-disclosure {
  margin: 14px 0 0;
  color: #8fa7bd;
  font-size: 12px;
  line-height: 1.55;
}

.tool-formula strong {
  color: #dbe9f6;
}

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

.calculator-education-grid article {
  min-height: 285px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.08), transparent 60%),
    var(--surface-raised);
}

.calculator-education-grid h3 {
  margin: 40px 0 12px;
  color: var(--white);
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.calculator-education-grid p {
  margin: 0;
  color: var(--slate);
}

.calculator-copy-panel {
  max-width: 980px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(94, 161, 255, 0.3);
  border-left: 4px solid var(--blue-500);
  border-radius: 6px;
  background:
    radial-gradient(circle at 94% 8%, rgba(13, 110, 253, 0.13), transparent 34%),
    var(--surface-raised);
}

.calculator-copy-panel h2 {
  max-width: 760px;
  margin: 22px 0;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.calculator-copy-panel p {
  max-width: 820px;
  color: var(--slate);
  font-size: 17px;
}

.calculator-copy-panel p:last-child {
  margin-bottom: 0;
}

.home-page .site-next-step {
  display: none;
}

.trust-item {
  padding: 25px;
  border-right: 1px solid rgba(94, 161, 255, 0.18);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.trust-item span {
  color: var(--slate);
  font-size: 13px;
}

.contact-direct {
  padding-bottom: 18px;
}

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

.contact-method-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.08), transparent 58%),
    var(--surface-raised);
  box-shadow: var(--shadow-sm);
}

.contact-method-label {
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method-card h3 {
  max-width: 530px;
  margin: 32px 0 14px;
  font-size: clamp(27px, 3vw, 37px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.contact-method-link {
  display: inline-block;
  color: var(--white);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--blue-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}

.contact-method-link:hover {
  color: var(--blue-400);
}

.contact-method-card p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--slate);
}

.request-progress {
  display: grid;
  max-width: var(--content);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.request-progress span {
  display: flex;
  min-height: 64px;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.request-progress span:last-child {
  border-right: 0;
}

.request-progress strong {
  color: var(--blue-400);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.request-progress .is-current {
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.18), rgba(13, 110, 253, 0.04));
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--blue-500);
}

.lead-form-section {
  display: grid;
  max-width: var(--content);
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  margin: 0 auto;
  padding: 84px 24px 100px;
}

.form-intro {
  position: sticky;
  top: 112px;
  height: max-content;
}

.form-intro h2 {
  font-size: clamp(34px, 4vw, 49px);
}

.form-intro > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 17px;
}

.intake-guidance {
  display: grid;
  gap: 22px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue-500);
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.09), transparent 42%),
    var(--surface);
}

.intake-guidance section {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.intake-guidance h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intake-guidance ul,
.intake-guidance ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
}

.intake-scope-note {
  margin: 0;
  color: var(--slate-light);
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
  padding: 34px 36px;
  border: 1px solid rgba(94, 161, 255, 0.22);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(13, 31, 52, 0.78), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.selected-request,
.form-required-note,
.form-group,
.form-privacy-note {
  grid-column: 1 / -1;
}

.selected-request {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  align-items: center;
  margin: -8px -10px 4px;
  padding: 18px 20px;
  border: 1px solid rgba(94, 161, 255, 0.24);
  background: rgba(13, 110, 253, 0.08);
}

.selected-request span {
  color: var(--blue-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-request strong {
  grid-row: 2;
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.selected-request a {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue-500);
  text-underline-offset: 4px;
}

.selected-request a:hover {
  color: var(--white);
}

.form-required-note {
  margin: -2px 0 2px;
  color: var(--slate-light);
  font-size: 12px;
}

.form-group {
  min-width: 0;
  margin: 0;
  padding: 10px 0 32px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-group legend {
  float: left;
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: flex-start;
  margin: 0 0 22px;
  padding: 0;
}

.form-group legend > span:last-child {
  display: grid;
  gap: 4px;
}

.form-group legend strong {
  color: var(--white);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.form-group legend small {
  max-width: 620px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 480;
  line-height: 1.5;
}

.form-group-index {
  flex: 0 0 auto;
  padding-top: 3px;
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

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

.form-group-fields > .field-wide,
.form-group-fields > .field-checkbox,
.form-group-fields > .upload-field {
  grid-column: 1 / -1;
}

.field {
  min-width: 0;
}

.field:has(textarea),
.field-checkbox,
.upload-field,
.form-configuration-notice,
.lead-form > .button-wide,
.form-status,
.form-legal {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 730;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #46525d;
  border-radius: 2px;
  background: var(--surface-raised);
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(117, 151, 173, 0.24);
  outline-offset: 0;
}

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

.field-hint,
.field-error {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.field-hint {
  color: var(--slate);
}

.field-error {
  min-height: 1px;
  color: var(--error);
  font-weight: 650;
}

.field-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.field-checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--blue-600);
}

.field-checkbox label {
  margin: 0;
  color: var(--slate);
  font-weight: 520;
}

.field-checkbox .field-error {
  grid-column: 2;
}

.consent-field {
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
}

.form-privacy-explanation {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--blue-500);
  background: rgba(13, 110, 253, 0.08);
  color: var(--slate);
  line-height: 1.65;
}

.form-privacy-explanation a {
  color: var(--blue-300);
  font-weight: 750;
  text-underline-offset: 3px;
}

.upload-warning {
  display: grid;
  gap: 5px;
  margin: 0 0 16px;
  padding: 16px 18px;
  border: 1px solid rgba(248, 193, 73, 0.34);
  border-left: 3px solid #f8c149;
  background: rgba(98, 70, 12, 0.2);
  color: #d7e1e9;
  line-height: 1.6;
}

.upload-warning strong {
  color: var(--white);
}

.upload-redaction-consent {
  margin-bottom: 18px;
}

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

.upload-field input:disabled {
  background: #090c10;
  cursor: not-allowed;
}

.form-upload-group {
  padding-top: 4px;
}

.permission-group {
  border-bottom: 0;
  padding-bottom: 4px;
}

.form-privacy-note {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #070d15;
  color: var(--slate);
}

.form-privacy-note strong {
  color: var(--white);
}

.form-configuration-notice {
  display: grid;
  gap: 3px;
  padding: 15px;
  border-left: 3px solid #b88418;
  background: #2d2412;
  color: #f0d18c;
  font-size: 14px;
}

.form-configuration-notice a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  font-weight: 680;
}

.form-status.success,
.form-status.error {
  padding: 14px;
}

.form-status.success {
  background: var(--success-bg);
  color: var(--success);
}

.form-status.error {
  background: var(--error-bg);
  color: var(--error);
}

.form-legal {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  text-align: center;
}

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

.selector-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.07), transparent 42%),
    var(--surface-raised);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.selector-card:last-child {
  min-height: 205px;
  grid-column: 1 / -1;
}

.selector-card:hover,
.selector-card:focus-visible {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.selector-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.selector-audience {
  color: var(--slate-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selector-card h3 {
  margin: 38px 0 10px;
  font-size: clamp(23px, 2.8vw, 31px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.selector-card p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--slate);
}

.selector-card .arrow-link {
  margin-top: auto;
}

.request-choice-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--blue-500);
  background: var(--surface);
}

.request-choice-note strong {
  color: var(--white);
}

.request-choice-note span {
  color: var(--slate);
}

.legal-shell {
  max-width: var(--reading);
  margin: 0 auto;
  padding: 70px 24px 100px;
}

.legal-shell h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: 28px;
}

.legal-shell p,
.legal-shell li {
  color: #bcc5cd;
  font-size: 17px;
}

.site-footer {
  padding: 64px max(24px, calc((100% - var(--content)) / 2)) 26px;
  border-top: 1px solid rgba(13, 110, 253, 0.32);
  background:
    radial-gradient(circle at 16% 0%, rgba(13, 110, 253, 0.1), transparent 28%),
    #020711;
  color: #d5e0e9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  width: 258px;
  height: 111px;
}

.footer-intro p {
  max-width: 390px;
  color: #aebfcd;
}

.footer-founded {
  font-size: 13px;
}

.footer-contact {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.footer-contact a {
  width: max-content;
  max-width: 100%;
  color: var(--white);
  font-size: 14px;
  font-weight: 680;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--blue-400);
}

.site-footer h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-main > div > a:not(.brand) {
  display: block;
  padding: 5px 0;
  color: #bdccd8;
  font-size: 14px;
}

.footer-main > div > a:hover {
  color: var(--white);
}

.footer-legal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #90a5b6;
  font-size: 12px;
}

.footer-legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-cookie-button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cookie-button:hover {
  color: var(--white);
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  text-align: right;
}

.privacy-policy-shell {
  display: grid;
  gap: 34px;
}

.privacy-effective-date {
  margin: 0;
  color: var(--blue-300);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-policy-shell section {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.privacy-policy-shell section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.privacy-policy-shell h2 {
  max-width: 820px;
}

.privacy-policy-shell h3 {
  margin: 24px 0 8px;
  color: var(--white);
  font-size: 18px;
}

.privacy-policy-shell ul {
  columns: 2;
  column-gap: 48px;
  padding-left: 22px;
}

.privacy-policy-shell li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.privacy-policy-shell a,
.privacy-choices-shell a:not(.button) {
  color: var(--blue-300);
}

.inline-link-button {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-300);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.inline-link-button:hover,
.inline-link-button:focus-visible,
.footer-cookie-button:focus-visible,
.cookie-dialog-close:focus-visible {
  color: var(--white);
  outline: 3px solid rgba(98, 170, 255, 0.68);
  outline-offset: 4px;
}

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

.privacy-choice-card {
  padding: 24px;
  border: 1px solid rgba(98, 170, 255, 0.28);
  background: rgba(10, 28, 49, 0.7);
}

.privacy-choice-card h2 {
  margin-top: 0;
  font-size: clamp(20px, 2vw, 26px);
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(98, 170, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(9, 31, 57, 0.98), rgba(3, 12, 24, 0.99));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  max-width: 760px;
  margin: 4px 0 8px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 32px);
}

.cookie-banner p {
  max-width: 780px;
  margin: 0;
  color: #c0ced9;
  font-size: 15px;
}

.cookie-banner a,
.cookie-dialog a {
  color: var(--blue-300);
}

.cookie-gpc-note {
  margin-top: 10px !important;
  color: #d7e8f8 !important;
  font-weight: 700;
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 8px;
}

.cookie-banner-actions .button {
  min-height: 48px;
  white-space: nowrap;
}

.cookie-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid rgba(98, 170, 255, 0.55);
  background: #061423;
  color: #d5e0e9;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
}

.cookie-dialog::backdrop {
  background: rgba(0, 4, 10, 0.78);
  backdrop-filter: blur(6px);
}

.cookie-dialog-panel {
  padding: clamp(22px, 4vw, 38px);
}

.cookie-dialog-heading {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-dialog h2 {
  margin: 4px 0 16px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
}

.cookie-dialog-close {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.cookie-category-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.cookie-category span {
  display: grid;
  gap: 4px;
}

.cookie-category strong {
  color: var(--white);
}

.cookie-category small {
  color: #aebdca;
  line-height: 1.5;
}

.cookie-category input {
  width: 24px;
  height: 24px;
  accent-color: var(--blue-500);
}

.cookie-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-dialog-actions .button {
  flex: 1 1 180px;
  min-height: 50px;
}

.cookie-dialog-links {
  margin: 22px 0 0;
  color: #9cabb8;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 860px) {
  .privacy-policy-shell ul {
    columns: 1;
  }

  .privacy-choice-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 18px;
  }

  .cookie-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .cookie-dialog-panel {
    padding: 20px 16px;
  }

  .cookie-category {
    padding: 14px;
  }
}

@media (max-width: 1050px) {
  .automotive-tools-grid {
    grid-template-columns: 1fr;
  }

  .automotive-tool-card > p {
    min-height: auto;
  }

  .site-header nav {
    gap: 12px;
    font-size: 12px;
  }

  .visual-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  }

  .visual-hero-copy h1 {
    font-size: clamp(40px, 5vw, 58px);
  }

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

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

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

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

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand {
    width: 144px;
    height: 62px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header nav {
    position: fixed;
    z-index: 55;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100dvh - 70px);
    max-height: calc(100dvh - 70px);
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 50% 0%, rgba(13, 110, 253, 0.16), transparent 34%),
      rgba(3, 11, 23, 0.99);
    color: var(--white);
  }

  .site-header nav.open {
    display: flex;
    flex-direction: column;
  }

  .site-header nav a:not(.nav-cta) {
    min-height: 54px;
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-header nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-header .nav-cta {
    margin-top: 20px;
  }

  .editorial-gateway {
    grid-template-columns: 1fr;
  }

  .editorial-gateway::after {
    display: none;
  }

  .gateway-panel {
    min-height: 80svh;
  }

  .gateway-panel + .gateway-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .gateway-content {
    width: min(100%, 640px);
    padding: 0 24px 46px;
  }

  .gateway-title {
    max-width: 580px;
    font-size: clamp(38px, 9vw, 56px);
  }

  .gateway-copy {
    max-width: 530px;
  }

  .visual-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .visual-hero-copy {
    min-height: 500px;
    padding: 96px 24px 64px;
  }

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

  .visual-hero-media {
    min-height: clamp(380px, 68vw, 540px);
  }

  .visual-hero-media::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 35%);
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 66px;
  }

  .resource-masthead {
    height: clamp(270px, 60vw, 420px);
    margin-top: -24px;
  }

  .audience-grid,
  .service-paths,
  .split,
  .calculator-page,
  .contact-method-grid,
  .article-shell,
  .lead-form-section {
    grid-template-columns: 1fr;
  }

  .calculator-page-intro {
    position: static;
  }

  .audience-card {
    min-height: 300px;
  }

  .article-shell,
  .lead-form-section {
    gap: 44px;
  }

  .article-aside,
  .form-intro {
    position: static;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 24px 70px;
  }

  .site-next-step {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 24px 70px;
  }

  .site-next-step .actions {
    width: 100%;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

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

  .footer-legal p:last-child {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .gateway-panel {
    min-height: 78svh;
  }

  .gateway-content {
    padding: 0 20px 38px;
  }

  .gateway-label {
    margin-bottom: 13px;
  }

  .gateway-title {
    font-size: clamp(37px, 11vw, 48px);
  }

  .gateway-copy {
    margin: 16px 0 22px;
    font-size: 16px;
  }

  .visual-hero-copy {
    min-height: 480px;
    padding: 78px 20px 54px;
  }

  .visual-hero-copy h1 {
    font-size: clamp(39px, 11.3vw, 51px);
  }

  .visual-hero-copy .hero-copy {
    font-size: 17px;
  }

  .visual-hero-media {
    min-height: 350px;
  }

  .visual-hero-media figcaption {
    right: 14px;
    bottom: 14px;
    font-size: 9px;
  }

  .hero {
    padding: 56px 20px;
  }

  .hero.hero-home {
    padding-bottom: 34px;
  }

  .resource-masthead {
    height: 260px;
    margin-top: -18px;
  }

  .resource-masthead figcaption {
    right: 18px;
    bottom: 15px;
    left: 18px;
    font-size: 9px;
    line-height: 1.45;
  }

  .hero h1,
  .hero.compact h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

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

  .audience-wrap {
    padding: 0 0 60px;
  }

  .audience-grid {
    border-right: 0;
    border-left: 0;
  }

  .audience-card {
    min-height: 320px;
    padding: 28px 22px;
  }

  .audience-card h2 {
    margin-top: 42px;
  }

  .section {
    padding: 66px 20px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .request-progress {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }

  .request-progress span {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .request-progress span:last-child {
    border-bottom: 0;
  }

  .card-grid,
  .card-grid.two,
  .package-grid,
  .scope-grid,
  .service-selector,
  .process-timeline,
  .deliverable-grid,
  .calculator-education-grid,
  .success-story-grid,
  .success-category-grid {
    grid-template-columns: 1fr;
  }

  .card.featured {
    grid-column: auto;
  }

  .service-path {
    min-height: 330px;
    padding: 30px 24px;
  }

  .lead-form-section {
    padding: 62px 20px 78px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .selected-request {
    grid-template-columns: 1fr;
    margin: -4px -2px 4px;
  }

  .selected-request strong {
    grid-row: auto;
  }

  .selected-request a {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }

  .form-group-fields {
    grid-template-columns: 1fr;
  }

  .form-group legend strong {
    font-size: 18px;
  }

  .selector-card:last-child {
    grid-column: auto;
  }

  .request-choice-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .field:has(textarea),
  .field-checkbox,
  .upload-field,
  .form-configuration-notice,
  .lead-form > .button-wide,
  .form-status,
  .form-legal {
    grid-column: auto;
  }

  .empty-state {
    padding: 36px 22px;
  }

  .cta-band {
    margin: 0 0 60px;
    padding: 38px 22px;
  }

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

  .proof-card {
    min-height: 280px;
    padding: 28px 22px;
  }

  .site-next-step {
    margin: 0 0 60px;
    padding: 38px 22px;
  }

  .automotive-tools {
    padding: 42px 20px 28px;
  }

  .automotive-tools-header {
    margin-bottom: 26px;
  }

  .automotive-tool-card {
    padding: 28px 20px;
  }

  .tool-fields {
    grid-template-columns: 1fr;
  }

  .tool-fields-company label:last-child {
    grid-column: auto;
  }

  .tool-form-actions {
    flex-direction: column;
  }

  .calculator-metric-grid {
    grid-template-columns: 1fr;
  }

  .site-next-step .actions,
  .site-next-step .button {
    width: 100%;
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .footer-brand {
    width: 228px;
    height: 98px;
  }

  .footer-legal div {
    flex-wrap: wrap;
  }
}

.arrow-link::after {
  content: "\2192";
}

.checklist li::before {
  content: "\2713";
}

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