:root {
  color: #f5f6f8;
  background: #07080a;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
  --base: #07080a;
  --surface: #0e1014;
  --raised: #15181e;
  --raised-soft: #1a1e25;
  --ink: #f5f6f8;
  --muted: #9ca3af;
  --subtle: #666e7b;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --racing: #e51e32;
  --racing-bright: #ff3447;
  --display: 'Arial Narrow', 'Roboto Condensed', 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--base);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 10%, rgba(229, 30, 50, 0.08), transparent 22rem), var(--base);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
a {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

button {
  cursor: pointer;
}

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

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

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: var(--racing);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--racing-bright);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--racing-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: '';
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--racing-bright);
  font-style: normal;
}

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 78px;
  align-items: center;
  gap: 44px;
  padding-inline: clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
}

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

.brand-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--racing-bright);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #b7bdc7;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--racing-bright);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.login-button {
  border: 0;
  background: transparent;
  color: #c5cad2;
  font-size: 13px;
  font-weight: 700;
}

.login-button:hover {
  color: white;
}

.header-cta,
.light-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--racing);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--racing-bright);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 1040px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050608;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 8, 0.98) 0%,
      rgba(5, 6, 8, 0.91) 32%,
      rgba(5, 6, 8, 0.22) 74%
    ),
    linear-gradient(0deg, rgba(5, 6, 8, 0.92) 0%, transparent 46%, rgba(5, 6, 8, 0.32) 100%);
}

.hero-grid {
  opacity: 0.19;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  padding: 150px 0 80px;
}

.hero-content > .eyebrow,
.hero-content > h1,
.hero-lead,
.hero-proof,
.search-card {
  max-width: 620px;
  animation: rise-in 700ms both;
}

.hero-content > h1 {
  max-width: 780px;
  margin: 24px 0 25px;
  font-size: clamp(58px, 6.7vw, 104px);
  line-height: 0.91;
  text-transform: uppercase;
}

.hero-lead {
  margin: 0;
  color: #bec3cc;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  animation-delay: 80ms;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 27px 0 34px;
  animation-delay: 140ms;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dde0e5;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof svg {
  color: var(--racing-bright);
}

.search-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 15, 19, 0.89);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
  animation-delay: 200ms;
  scroll-margin-top: 100px;
}

.search-heading {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.search-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-heading p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.search-index {
  color: var(--racing-bright);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.pilot-label {
  padding: 5px 8px;
  border: 1px solid rgba(255, 52, 71, 0.35);
  color: #ff6977;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-field,
.problem-field,
.location-field,
.radius-field {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.vehicle-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.field-kicker,
.problem-field > span,
.radius-field > span {
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vehicle-field strong {
  font-size: 14px;
}

.vehicle-field small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.problem-field {
  display: flex;
  flex-direction: column;
  padding: 12px 14px 8px;
}

.problem-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.search-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 112px;
  gap: 14px;
}

.location-field {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  color: #e2e4e8;
  font-size: 12px;
  font-weight: 700;
}

.location-field > svg {
  color: var(--racing-bright);
}

.location-field span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-field small {
  color: var(--subtle);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.radius-field {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
}

.radius-field select {
  border: 0;
  outline: 0;
  background: var(--raised);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.primary-button,
.outline-button,
.match-card-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.primary-button {
  grid-column: 1 / -1;
  min-height: 52px;
  padding: 0 18px;
  background: var(--racing);
  color: white;
}

.primary-button:hover:not(:disabled) {
  background: var(--racing-bright);
}

.primary-button:hover:not(:disabled) svg,
.outline-button:hover svg,
.light-button:hover svg {
  transform: translateX(4px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.primary-button svg,
.outline-button svg,
.light-button svg {
  transition: transform 180ms ease;
}

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  color: #ff919b;
  font-size: 11px;
  line-height: 1.5;
}

.hero-telemetry {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-telemetry i {
  width: 52px;
  height: 1px;
  background: var(--racing);
}

.performance-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: #0b0d10;
}

.performance-strip > div {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
}

.performance-strip span {
  color: #c5c9d0;
  font-family: var(--display);
  font-size: clamp(15px, 1.8vw, 23px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.performance-strip i {
  width: 4px;
  height: 4px;
  background: var(--racing-bright);
  transform: rotate(45deg);
}

.matching-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-block: 132px;
  scroll-margin-top: 70px;
}

.matching-copy h2,
.process-heading h2,
.product-heading h2,
.workshop-copy h2 {
  margin: 23px 0 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.99;
}

.matching-copy > p:last-of-type,
.product-heading > p:last-child,
.workshop-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 52, 71, 0.35);
  color: var(--racing-bright);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.feature-list > div > span:last-child {
  display: grid;
  gap: 6px;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.match-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.match-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.match-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.06), rgba(7, 8, 10, 0.92)),
    linear-gradient(90deg, transparent, rgba(229, 30, 50, 0.14));
  content: '';
}

.match-glow {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: -15%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(229, 30, 50, 0.26);
  filter: blur(90px);
}

.match-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 14, 18, 0.91);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.match-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.workshop-identity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.workshop-monogram {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, #222731, #0d0f13);
  color: white;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff6977;
  font-family: ui-monospace, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-identity h3 {
  margin: 7px 0 5px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.workshop-identity p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.score-gauge {
  --score: 0deg;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  align-items: baseline;
  justify-content: center;
  padding-top: 26px;
  border-radius: 50%;
  background: conic-gradient(var(--racing-bright) var(--score), rgba(255, 255, 255, 0.1) 0);
}

.score-gauge::before {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #111318;
  content: '';
}

.score-gauge strong,
.score-gauge small {
  position: relative;
  z-index: 1;
}

.score-gauge strong {
  font-family: var(--display);
  font-size: 22px;
}

.score-gauge small {
  color: var(--muted);
  font-size: 8px;
}

.match-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.match-metrics > div {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.match-metrics span {
  color: var(--subtle);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.match-metrics strong {
  font-size: 11px;
}

.reason-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
}

.reason-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8ccd3;
  font-size: 10px;
}

.reason-list svg {
  flex: 0 0 auto;
  color: var(--racing-bright);
}

.match-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.match-card-footer > span {
  color: var(--subtle);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-card-footer button {
  padding: 0;
  background: transparent;
  color: white;
  font-size: 10px;
}

.match-card-footer button:hover {
  color: var(--racing-bright);
}

.no-match {
  min-height: 240px;
}

.no-match h3 {
  max-width: 420px;
  margin: 35px 0 12px;
  font-family: var(--display);
  font-size: 34px;
}

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

.card-overline {
  color: var(--racing-bright);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-section {
  padding-block: 120px 130px;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(229, 30, 50, 0.05), transparent), #0b0d10;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.process-heading h2 {
  max-width: 780px;
  margin-top: 0;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  margin-top: 68px;
}

.process-line::before {
  position: absolute;
  z-index: 0;
  top: 41px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--racing), var(--line-strong));
  content: '';
}

.process-line article {
  position: relative;
  z-index: 1;
}

.process-line article > span {
  color: var(--racing-bright);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.process-dot {
  width: 13px;
  height: 13px;
  margin: 27px 0 34px;
  border: 3px solid #0b0d10;
  outline: 1px solid var(--racing-bright);
  background: var(--racing-bright);
  transform: rotate(45deg);
}

.process-line h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.process-line p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-section {
  padding-block: 132px;
  scroll-margin-top: 70px;
}

.product-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.product-heading .eyebrow,
.product-heading h2 {
  grid-column: 1;
}

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

.product-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 4px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-grid article {
  position: relative;
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.pillar-grid article::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--racing);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.pillar-grid article:hover {
  background: var(--raised);
}

.pillar-grid article:hover::before {
  transform: scaleX(1);
}

.pillar-topline {
  display: flex;
  align-items: center;
  gap: 13px;
}

.pillar-topline span {
  color: var(--racing-bright);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.pillar-topline i {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.pillar-grid h3 {
  margin: 90px 0 14px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.pillar-grid article > svg {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: var(--subtle);
}

.trust-section {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--racing);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
  padding-block: 70px;
}

.trust-section .eyebrow {
  color: white;
}

.trust-grid h2 {
  max-width: 420px;
  margin: 20px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-stats > div {
  display: grid;
  gap: 11px;
  padding: 12px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-stats strong {
  font-family: var(--display);
  font-size: 45px;
  letter-spacing: -0.04em;
}

.trust-stats span {
  max-width: 160px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.5;
}

.workshop-section {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 670px;
  margin-block: 132px;
  border: 1px solid var(--line);
  background: var(--surface);
  scroll-margin-top: 100px;
}

.workshop-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.workshop-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--surface));
  content: '';
}

.workshop-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
}

.workshop-image-label {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 8, 10, 0.75);
  backdrop-filter: blur(12px);
}

.workshop-image-label span {
  color: var(--racing-bright);
  font-family: var(--display);
  font-weight: 900;
}

.workshop-image-label p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workshop-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 80px);
}

.workshop-copy h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}

.workshop-copy ul {
  display: grid;
  gap: 13px;
  padding: 25px 0;
  margin: 30px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.workshop-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8dbe1;
  font-size: 12px;
}

.workshop-copy li svg {
  color: var(--racing-bright);
}

.outline-button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: white;
}

.outline-button:hover {
  border-color: var(--racing-bright);
  background: var(--racing);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  overflow: hidden;
  padding: 80px 24px;
  background:
    linear-gradient(rgba(229, 30, 50, 0.88), rgba(182, 11, 29, 0.94)),
    url('/hero-sports-car.png') center 68% / cover;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.17);
  content: '';
}

.final-cta::before {
  left: 14%;
}

.final-cta::after {
  right: 14%;
}

.final-cta > div {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
  color: white;
}

.final-cta h2 {
  max-width: 820px;
  margin: 22px auto 14px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
}

.final-cta p:not(.eyebrow) {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.light-button {
  gap: 22px;
  min-height: 54px;
  padding-inline: 22px;
  background: white;
  color: #111318;
}

.light-button:hover {
  background: #111318;
  color: white;
}

.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  opacity: 0.15;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  -webkit-text-stroke: 1px white;
}

.footer {
  border-top: 1px solid var(--line);
  background: #060709;
}

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

.footer-brand p {
  max-width: 310px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main strong {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main > div > span {
  color: var(--muted);
  font-size: 11px;
}

.footer-main a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .matching-section {
    grid-template-columns: 1fr;
  }

  .matching-copy {
    max-width: 760px;
  }

  .match-stage {
    min-height: 650px;
  }

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

  .trust-grid,
  .workshop-section {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 45px;
  }

  .workshop-visual::after {
    background: linear-gradient(0deg, var(--surface), transparent 40%);
  }
}

@media (max-width: 820px) {
  .section,
  .hero-content {
    width: min(100% - 32px, 680px);
  }

  .topbar {
    height: 70px;
    padding-inline: 16px;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 8, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .login-button,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-image {
    height: 620px;
    object-position: 58% top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, #050608 0%, rgba(5, 6, 8, 0.88) 46%, rgba(5, 6, 8, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.62), transparent);
  }

  .hero-grid {
    height: 620px;
    mask-image: linear-gradient(black, transparent);
  }

  .hero-content {
    padding: 440px 0 58px;
  }

  .hero-content > h1 {
    font-size: clamp(48px, 12vw, 76px);
  }

  .hero-telemetry {
    display: none;
  }

  .performance-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .performance-strip > div {
    justify-content: flex-start;
  }

  .matching-section,
  .product-section {
    padding-block: 90px;
  }

  .process-section {
    padding-block: 90px;
  }

  .process-heading,
  .product-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-heading h2 {
    margin-top: 24px;
  }

  .product-heading .eyebrow,
  .product-heading h2,
  .product-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .product-heading > p:last-child {
    margin-top: 24px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
  }

  .process-line::before {
    display: none;
  }

  .process-dot {
    margin-block: 18px 24px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-stats > div {
    grid-template-columns: 100px 1fr;
    align-items: center;
  }

  .workshop-section {
    margin-block: 90px;
  }

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

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

@media (max-width: 560px) {
  .brand-name {
    font-size: 15px;
  }

  .hero-content {
    padding-top: 390px;
  }

  .hero-image,
  .hero-grid {
    height: 555px;
  }

  .hero-content > h1 {
    margin-top: 20px;
    font-size: 49px;
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    display: grid;
  }

  .search-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .search-heading,
  .search-row,
  .primary-button,
  .form-error {
    grid-column: 1;
  }

  .search-row {
    grid-template-columns: 1fr 100px;
  }

  .matching-copy h2,
  .process-heading h2,
  .product-heading h2,
  .workshop-copy h2 {
    font-size: 41px;
  }

  .match-stage {
    min-height: 680px;
  }

  .match-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 18px;
  }

  .match-card-head,
  .match-card-footer {
    align-items: flex-start;
  }

  .workshop-monogram {
    display: none;
  }

  .score-gauge {
    width: 64px;
    height: 64px;
    padding-top: 22px;
  }

  .score-gauge strong {
    font-size: 18px;
  }

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

  .match-card-footer {
    flex-direction: column;
  }

  .process-line,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    min-height: 260px;
  }

  .pillar-grid h3 {
    margin-top: 60px;
  }

  .trust-stats > div {
    grid-template-columns: 84px 1fr;
    padding-inline: 20px;
  }

  .trust-stats strong {
    font-size: 36px;
  }

  .workshop-section {
    width: calc(100% - 24px);
  }

  .workshop-visual {
    min-height: 360px;
  }

  .workshop-copy {
    padding: 28px 22px 36px;
  }

  .final-cta {
    min-height: 470px;
  }

  .final-cta h2 {
    font-size: 51px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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

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