:root {
  --bg: #f4f5f8;
  --bg-soft: #fbfcff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-muted: rgba(255, 255, 255, 0.64);
  --border: rgba(15, 23, 42, 0.07);
  --border-strong: rgba(10, 132, 255, 0.18);
  --text: #0f172a;
  --text-soft: rgba(15, 23, 42, 0.72);
  --text-dim: rgba(15, 23, 42, 0.5);
  --accent: #0071e3;
  --accent-soft: rgba(0, 113, 227, 0.08);
  --accent-strong: #0066cc;
  --success: #00a36c;
  --shadow: 0 36px 120px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 46px rgba(15, 23, 42, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --mx: 50%;
  --my: 30%;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(920px 560px at var(--mx) calc(var(--my) - 18%), rgba(79, 156, 255, 0.18), transparent 60%),
    radial-gradient(760px 520px at 12% 16%, rgba(119, 197, 255, 0.12), transparent 56%),
    radial-gradient(860px 540px at 92% 16%, rgba(0, 113, 227, 0.08), transparent 62%),
    linear-gradient(180deg, #fbfcff 0%, #f3f5f9 52%, #eef2f8 100%);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-copy h1,
.hero-title,
.screen-summary h2,
.section-head h2,
.soft-card h3,
.price-card h3,
.form-head h3,
.feature-item h3,
.feature-hero-copy h2,
.step-card h3,
.lookup-glance-card h2,
.lookup-helper-card h3,
.lookup-stage-head h2,
.vehicle-head h3,
.faq-card summary,
.cta-band h2,
.page-panel h2,
.legal-panel h2,
.legal-prose h3 {
  font-family: var(--font-heading);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -160px;
  left: 50%;
  width: min(1100px, 92vw);
  height: 440px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

body::after {
  right: -120px;
  bottom: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(117, 188, 255, 0.12), rgba(117, 188, 255, 0));
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
}

.orb-a {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(10, 132, 255, 0.45), transparent 62%);
  animation: floatA 16s var(--motion-ease) infinite;
}

.orb-b {
  width: 560px;
  height: 560px;
  right: -220px;
  top: 120px;
  background: radial-gradient(circle at 40% 40%, rgba(88, 202, 255, 0.28), transparent 62%);
  animation: floatB 20s var(--motion-ease) infinite;
}

.orb-c {
  width: 520px;
  height: 520px;
  left: 20%;
  bottom: -260px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.18), transparent 62%);
  animation: floatC 22s var(--motion-ease) infinite;
}

.grain {
  position: absolute;
  inset: -40%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  transform: translate3d(0, 0, 0);
}

@keyframes floatA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(60px, 40px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floatB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-70px, 30px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floatC {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -60px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 40;
  background: rgba(17, 17, 17, 0.06);
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(10, 132, 255, 0.12), rgba(10, 132, 255, 0.9));
  transform-origin: left center;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  z-index: 30;
}

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

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.66));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 14px;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 113, 227, 0.2));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--text-dim);
  font-size: 12px;
}

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

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  transition: background 220ms ease, color 220ms ease, transform 280ms var(--motion-ease);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locale-trigger,
.nav-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
}

.locale-switcher {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.locale-trigger {
  min-height: 42px;
  min-width: 126px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 280ms var(--motion-ease), color 180ms ease;
  cursor: pointer;
}

.locale-trigger:hover,
.locale-switcher.is-open .locale-trigger {
  background: #fff;
  border-color: var(--border-strong);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.locale-trigger:focus-visible {
  outline: none;
  border-color: rgba(10, 132, 255, 0.26);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
}

.locale-trigger-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.locale-trigger-icon {
  width: 8px;
  height: 8px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(15, 23, 42, 0.58);
  border-bottom: 1.5px solid rgba(15, 23, 42, 0.58);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease;
}

.locale-switcher.is-open .locale-trigger-icon {
  transform: translateY(2px) rotate(225deg);
}

.locale-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 148px;
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 24;
}

.locale-switcher.is-open .locale-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.locale-option {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.locale-option:hover,
.locale-option:focus-visible {
  outline: none;
  background: rgba(10, 132, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.locale-option.is-active {
  background: linear-gradient(180deg, rgba(18, 146, 255, 0.12), rgba(0, 113, 227, 0.08));
  color: var(--accent-strong);
}

.locale-option-check {
  width: 8px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0;
}

.locale-option.is-active .locale-option-check {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #1f2937;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 280ms var(--motion-ease),
    background 180ms ease,
    box-shadow 280ms var(--motion-ease),
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #1292ff, #0071e3);
  box-shadow: 0 18px 36px rgba(0, 113, 227, 0.24);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  opacity: 0;
  transition: opacity 280ms var(--motion-ease);
  pointer-events: none;
}

.button {
  position: relative;
}

.button-primary:hover::after {
  opacity: 1;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.hero {
  padding-top: 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.screen-label,
.price-tier,
.feature-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-kicker,
.screen-label,
.price-tier {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.hero-copy h1 {
  margin: 20px 0 0;
  font-size: clamp(46px, 5.8vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.hero-title {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 860px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
}

.stat-card,
.soft-card,
.feature-item,
.lookup-controls,
.lookup-result,
.price-card,
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    transform 520ms var(--motion-ease),
    box-shadow 520ms var(--motion-ease),
    border-color 220ms ease;
}

.stat-card:hover,
.soft-card:hover,
.feature-item:hover,
.price-card:hover,
.form-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(0, 113, 227, 0.12);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.stat-card {
  padding: 22px;
}

.stat-card dt {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.stat-card dd {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 14px;
}

.hero-panel {
  min-width: 0;
}

.hero-window {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.window-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.12);
}

.hero-screen {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.screen-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
}

.screen-summary h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.055em;
}

.screen-summary p {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 330px;
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 108, 0.08);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
}

.screen-canvas {
  margin-top: 22px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfcff, #eef3f8);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.screen-canvas::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(10, 132, 255, 0.18), transparent 55%);
  opacity: 0.8;
  transition: opacity 500ms var(--motion-ease);
  pointer-events: none;
}

.screen-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.meta-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.meta-card span {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
}

.meta-card strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-head p {
  margin: 0;
  max-width: 920px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.overview-grid,
.requirements-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.soft-card {
  padding: 30px;
}

.soft-card h3,
.price-card h3,
.form-head h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.soft-card p,
.feature-item p,
.price-card li,
.form-head p,
.result-empty p,
.part-card p,
.lookup-status,
.vehicle-description,
.vehicle-badges span {
  color: var(--text-soft);
}

.soft-card p {
  margin: 10px 0 0;
  font-size: 15px;
}

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

.trust-section {
  padding-top: 34px;
}

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

.trust-strip span,
.footer-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
}

.feature-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 28px;
}

.feature-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.feature-item h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.feature-item p {
  margin: 8px 0 0;
  font-size: 15px;
}

.page-link-grid,
.quote-grid,
.faq-preview-grid {
  display: grid;
  gap: 16px;
}

.page-link-grid,
.quote-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

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

.quote-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.quote-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(10, 132, 255, 0.16), rgba(10, 132, 255, 0.05) 42%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(10, 132, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.88));
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.08),
    0 0 0 6px rgba(255, 255, 255, 0.52);
  object-fit: cover;
  flex-shrink: 0;
  align-self: flex-end;
  margin-top: auto;
  order: 2;
  position: relative;
  z-index: 1;
}

.testimonial-body {
  min-width: 0;
  display: grid;
  align-content: start;
  flex: 1;
  min-height: 212px;
  position: relative;
  z-index: 1;
}

.testimonial-person {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-right: 72px;
}

.testimonial-person strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

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

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.feature-hero {
  padding: 6px 0 118px;
}

.feature-hero-tight {
  padding-bottom: 0;
  margin-top: 34px;
}

.feature-hero-inner {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 254, 0.72));
  box-shadow: var(--shadow);
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.feature-hero-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 28% 30%, rgba(0, 113, 227, 0.12), transparent 58%);
  opacity: 0.8;
  pointer-events: none;
}

.feature-hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22));
  pointer-events: none;
}

.feature-hero-copy {
  position: relative;
  z-index: 1;
}

.feature-hero-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.feature-hero-copy p {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 16px;
  color: var(--text-soft);
}

.feature-hero-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.step-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 520ms var(--motion-ease), box-shadow 520ms var(--motion-ease);
}

.step-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 8px rgba(10, 132, 255, 0.08);
}

.step-card h3 {
  margin: 14px 0 6px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.lookup-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
}

.lookup-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.lookup-entry-copy,
.lookup-entry-preview,
.lookup-sidebar-card,
.lookup-glance-card,
.lookup-stage {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 253, 0.7));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lookup-entry-copy {
  padding: 34px;
  display: grid;
  gap: 24px;
  align-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(10, 132, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.9));
}

.lookup-entry-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

.lookup-entry-art {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(10, 132, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.88));
  box-shadow: 0 18px 40px rgba(10, 132, 255, 0.08);
}

.lookup-entry-art-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  background: rgba(10, 132, 255, 0.08);
}

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

.lookup-entry-art-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.lookup-entry-art-card span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.lookup-entry-art-card strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

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

.lookup-entry-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-soft);
}

.lookup-entry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.lookup-entry-preview {
  padding: 28px;
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.9));
}

.lookup-shot,
.lookup-shot-window {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.9));
  box-shadow: var(--shadow-soft);
}

.lookup-shot {
  padding: 18px;
}

.lookup-shot-window {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 253, 0.92));
}

.lookup-shot-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.lookup-shot-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.14);
}

.lookup-shot-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lookup-shot-sidebar,
.lookup-shot-result {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.94);
  padding: 20px;
}

.lookup-shot-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.lookup-shot-label {
  color: var(--text-dim);
  background: rgba(15, 23, 42, 0.05);
}

.lookup-shot-field {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.lookup-shot-field span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.lookup-shot-field strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.lookup-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

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

.lookup-preview-filter,
.lookup-preview-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lookup-preview-filter span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.lookup-preview-filter strong,
.lookup-preview-card strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.lookup-preview-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.lookup-page .site-header {
  background: transparent;
}

.lookup-page-hero {
  padding-top: 88px;
  padding-bottom: 46px;
}

.lookup-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.lookup-page-copy,
.lookup-page-glance {
  min-width: 0;
}

.lookup-glance-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 254, 0.9));
}

.lookup-glance-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.lookup-glance-card h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.lookup-glance-card > p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 760px;
}

.lookup-helper-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lookup-helper-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lookup-helper-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.lookup-helper-card p,
.lookup-sidebar-text,
.lookup-stage-head p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.lookup-workbench-section {
  padding-top: 30px;
}

.lookup-shell {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.lookup-sidebar {
  position: sticky;
  top: 96px;
}

.lookup-sidebar-card {
  padding: 26px;
}

.lookup-controls-page {
  padding: 0;
  margin-top: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lookup-status-page {
  margin-top: 16px;
}

.lookup-stage {
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.92));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.lookup-stage-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.lookup-stage-head h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.lookup-result-stage {
  padding: 28px;
  min-height: 680px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 251, 254, 0.92));
  border-radius: 30px;
}

.lookup-controls,
.lookup-result,
.price-card,
.form-card {
  padding: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 13px;
  color: var(--text-soft);
}

.lookup-controls {
  display: grid;
  gap: 14px;
}

select,
input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 240ms var(--motion-ease);
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(10, 132, 255, 0.26);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
  transform: translateY(-1px);
}

select:disabled {
  color: var(--text-dim);
  background: rgba(245, 245, 247, 0.96);
}

.lookup-status {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  font-size: 14px;
}

.result-empty {
  min-height: 300px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
}

.result-empty strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.vehicle-card {
  display: grid;
  gap: 22px;
}

.vehicle-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.vehicle-head h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.055em;
}

.vehicle-description {
  margin: 8px 0 0;
  max-width: 620px;
  font-size: 15px;
}

.vehicle-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.08);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
}

.vehicle-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-badges div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
}

.vehicle-badges strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.vehicle-badges span {
  font-size: 12px;
}

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

.part-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  transition: transform 320ms var(--motion-ease), box-shadow 320ms var(--motion-ease), border-color 220ms ease;
}

.part-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.14);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.part-thumb {
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: linear-gradient(180deg, #fbfcff, #eef4fa);
}

.part-thumb svg {
  width: 100%;
  height: 100%;
}

.part-card h4 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.part-card p {
  margin: 6px 0 0;
  font-size: 13px;
}

.part-body {
  padding: 14px 16px 16px;
}

.billing-toggle {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.toggle-btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.toggle-btn.is-active {
  color: #fff;
  background: linear-gradient(180deg, #1485ff, #0071e3);
  border-color: transparent;
}

.billing-note {
  justify-self: end;
  color: var(--text-dim);
  font-size: 13px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
}

.price-tier {
  margin-bottom: 16px;
}

.feature-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a84ff, #4db6ff);
  box-shadow: 0 14px 28px rgba(10, 132, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 2;
}

.featured {
  border-color: rgba(10, 132, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(77, 182, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92));
  box-shadow:
    0 28px 60px rgba(10, 132, 255, 0.18),
    0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-10px) scale(1.02);
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0a84ff, #7dc8ff);
}

.featured::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(10, 132, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.featured .price-tier {
  color: #005fcb;
  background: rgba(10, 132, 255, 0.12);
}

.featured .amount,
.featured h3 {
  color: #0b1d3a;
}

.featured:hover {
  transform: translateY(-14px) scale(1.025);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
}

.amount {
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.period {
  color: var(--text-dim);
  font-size: 16px;
}

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

.checklist li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.mini-compare {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 254, 0.76));
  box-shadow: var(--shadow-soft);
}

.mini-compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mini-compare-row:first-child {
  border-top: 0;
}

.mini-compare-head {
  background: rgba(0, 113, 227, 0.05);
  color: var(--text);
  font-weight: 600;
}

.mini-compare-row span {
  color: var(--text-soft);
  font-size: 14px;
}

.mini-compare-head span {
  color: var(--text);
}

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

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

.form-grid-layout-single {
  grid-template-columns: 1fr;
}

.form-head {
  margin-bottom: 18px;
}

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

.field-full {
  grid-column: 1 / -1;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.form-note,
.form-toast {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.form-toast {
  min-height: 18px;
}

.trial-form-panel {
  margin-top: 28px;
  max-width: 920px;
  margin-inline: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 280ms ease, transform 280ms ease;
}

.trial-form-panel.is-hidden {
  display: none;
}

.trial-form-card {
  text-align: left;
}

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

.faq-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 254, 0.78));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.faq-card p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.faq-card[open] summary {
  color: var(--accent-strong);
}

.cta-band {
  padding: 56px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(10, 132, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 253, 0.8));
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-band h2 {
  margin: 18px auto 0;
  max-width: none;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta-band p {
  margin: 16px auto 0;
  max-width: 860px;
  color: var(--text-soft);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 44px 0 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

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

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand span {
  font-size: 18px;
  font-weight: 600;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 520px;
}

.footer-meta {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-inner-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 28px;
}

.footer-inner-wide > :first-child {
  min-width: 0;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: none;
  justify-content: flex-end;
  align-self: start;
}

.footer-links a {
  min-height: 42px;
  padding: 0 14px;
  box-shadow: none;
  font-size: 14px;
  white-space: nowrap;
}

.page-shell {
  padding-top: 88px;
}

.page-hero {
  padding-top: 88px;
  padding-bottom: 42px;
}

.page-hero-grid,
.page-content-grid,
.page-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: start;
}

.page-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.page-panel,
.legal-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.82));
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.page-panel h2,
.legal-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.page-panel p,
.legal-panel p,
.legal-panel li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.page-panel + .page-panel,
.legal-panel + .legal-panel {
  margin-top: 18px;
}

.page-content-grid > .page-panel + .page-panel,
.page-hero-grid > .page-panel + .page-panel {
  margin-top: 0;
}

.stack-list,
.inline-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.stack-list li,
.inline-list li {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
}

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

.info-pairs div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.82);
}

.info-pairs span {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
}

.info-pairs strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.legal-prose h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

section[id] {
  scroll-margin-top: 110px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 900ms var(--motion-ease), transform 900ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

  .reveal,
  .button,
  .site-nav a,
  .locale-toggle,
  .toggle-btn,
  .stat-card,
  .soft-card,
  .feature-item,
  .price-card,
  .form-card,
  .step-card,
  .orb {
    transition: none;
  }

  .orb-a,
  .orb-b,
  .orb-c {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .lookup-grid,
  .form-grid-layout,
  .lookup-entry-grid,
  .lookup-page-hero-grid,
  .lookup-shell,
  .lookup-stage-head,
  .page-hero-grid,
  .page-content-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .pricing-grid,
  .requirements-grid,
  .lookup-helper-grid,
  .vehicle-badges,
  .part-grid,
  .page-link-grid,
  .quote-grid,
  .page-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lookup-shot-body {
    grid-template-columns: 1fr;
  }

  .lookup-entry-art-grid {
    grid-template-columns: 1fr;
  }

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

  .lookup-sidebar {
    position: static;
  }

  .lookup-result-stage {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    padding: 12px 14px;
  }

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

  .site-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(26px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .screen-meta,
  .form-grid,
  .overview-grid,
  .pricing-grid,
  .requirements-grid,
  .lookup-preview-grid,
  .lookup-helper-grid,
  .vehicle-badges,
  .part-grid,
  .page-link-grid,
  .quote-grid,
  .faq-preview-grid,
  .page-summary-grid,
  .info-pairs {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    grid-template-columns: auto auto;
  }

  .billing-note {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .featured,
  .featured:hover {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .section {
    padding: 88px 0;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .section-head h2 {
    font-size: 34px;
  }

  .hero-window,
  .soft-card,
  .feature-item,
  .lookup-controls,
  .lookup-result,
  .price-card,
  .form-card,
  .feature-hero-inner,
  .lookup-entry-copy,
  .lookup-entry-preview,
  .lookup-glance-card,
  .lookup-stage,
  .lookup-sidebar-card,
  .page-panel,
  .legal-panel,
  .cta-band {
    padding: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
