:root {
  --bg: #06080c;
  --surface: #0d1118;
  --surface-2: #141923;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f8fafc;
  --muted: #aab4c3;
  --muted-strong: #d8dee8;
  --red: #e42c37;
  --red-dark: #a91522;
  --blue: #2879ff;
  --blue-dark: #0d4fc9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(40, 121, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(228, 44, 55, 0.14), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(16px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 12, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 44, 55, 0.9), rgba(228, 44, 55, 0) 46%),
    linear-gradient(315deg, rgba(40, 121, 255, 0.95), rgba(40, 121, 255, 0) 46%),
    #0b0f16;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 13, 19, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a {
  padding: 12px 10px;
  border-radius: 7px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 64px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/solo-automotive-hero.png");
  background-size: cover;
  background-position: 62% center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.82) 36%, rgba(6, 8, 12, 0.38) 70%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.38) 0%, rgba(6, 8, 12, 0.22) 45%, rgba(6, 8, 12, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 720px);
  max-width: 720px;
  margin-left: max(16px, calc((100vw - var(--container)) / 2));
  margin-right: 16px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8eb9ff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 13vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-lede {
  width: 100%;
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 3.6vw, 1.22rem);
  overflow-wrap: break-word;
}

.hero-actions,
.footer-links,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 16px 38px rgba(228, 44, 55, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff404b, var(--red-dark));
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(40, 121, 255, 0.82);
  background: rgba(40, 121, 255, 0.16);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(40, 121, 255, 0.14);
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.trust-item span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-item strong {
  font-size: 0.95rem;
}

.section {
  padding: 76px 0;
}

.split-layout,
.request-layout {
  display: grid;
  gap: 28px;
}

.section-copy p,
.section-heading p,
.service-card p,
.proof-card p,
.step p,
.testimonial p,
.site-footer p {
  color: var(--muted);
}

.section-copy > p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.03rem;
}

.about-panel,
.request-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.about-panel {
  padding: 24px;
}

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

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.services-section,
.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #080b10;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.services-grid,
.proof-grid,
.testimonial-grid,
.steps {
  display: grid;
  gap: 14px;
}

.service-card,
.proof-card,
.step,
.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card,
.proof-card,
.step {
  padding: 22px;
}

.service-card:hover,
.proof-card:hover,
.step:hover,
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 44, 55, 0.88), rgba(228, 44, 55, 0) 52%),
    linear-gradient(315deg, rgba(40, 121, 255, 0.92), rgba(40, 121, 255, 0) 52%),
    #101722;
  color: white;
  font-weight: 900;
}

.proof-section {
  background:
    linear-gradient(90deg, rgba(228, 44, 55, 0.08), transparent 36%),
    linear-gradient(270deg, rgba(40, 121, 255, 0.08), transparent 36%),
    var(--bg);
}

.proof-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.proof-topline span {
  color: var(--text);
  font-weight: 900;
}

.proof-topline small {
  color: var(--muted);
  font-size: 0.76rem;
}

.proof-card p {
  margin-bottom: 12px;
}

.proof-card p:last-child {
  margin-bottom: 0;
}

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

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(40, 121, 255, 0.52);
  border-radius: 50%;
  color: #b9d2ff;
  font-weight: 900;
}

.testimonial {
  padding: 24px;
}

.testimonial p {
  margin-bottom: 18px;
  color: var(--muted-strong);
}

.testimonial cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.request-section {
  position: relative;
  overflow: hidden;
}

.request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(228, 44, 55, 0.1), transparent 30%),
    linear-gradient(315deg, rgba(40, 121, 255, 0.12), transparent 32%);
}

.contact-points {
  margin-top: 24px;
}

.contact-points span,
.contact-points a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.contact-points a:hover,
.contact-points a:focus-visible {
  border-color: rgba(40, 121, 255, 0.82);
  color: var(--text);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 5, 9, 0.66);
  color: var(--text);
  outline: 0;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(40, 121, 255, 0.82);
  background: rgba(3, 5, 9, 0.92);
  box-shadow: 0 0 0 4px rgba(40, 121, 255, 0.14);
}

::placeholder {
  color: #6f7b8b;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #b9d2ff;
  font-size: 0.94rem;
}

.site-footer {
  padding: 32px 0 92px;
  border-top: 1px solid var(--line);
  background: #05070a;
}

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

.site-footer p {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-credit {
  color: #7f8898;
  font-size: 0.86rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

@media (min-width: 560px) {
  .trust-grid,
  .services-grid,
  .proof-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 18px;
  }

  .trust-item:nth-child(even) {
    padding-left: 18px;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 104px 0;
  }

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

@media (max-width: 919px) {
  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 560px) {
  .hero-lede {
    max-width: 30ch;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .hero {
    min-height: 760px;
    padding-top: 120px;
  }

  .hero-content {
    margin-left: max(32px, calc((100vw - var(--container)) / 2));
  }

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

  .trust-item {
    min-height: 96px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 0 22px;
  }

  .trust-item:nth-child(even),
  .trust-item:nth-child(odd) {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .split-layout,
  .request-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
    align-items: start;
    gap: 54px;
  }

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

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

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

  .request-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}

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

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

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