@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #020617;
  --bg-soft: #1d1d1d;
  --bg-panel: #202224;
  --line: rgba(91, 199, 202, 0.22);
  --line-strong: #5bc7ca;
  --text: #ffffff;
  --muted: #bfc6c8;
  --muted-soft: #8f9a9d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(91, 199, 202, 0.08), transparent 32%),
    linear-gradient(180deg, #141414 0%, #101010 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

nav,
.hero-stage,
.overview,
.detail-stage,
.showcase,
.pricing,
.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.menu a {
  color: rgba(255, 255, 255, 0.88);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 14, 0.56);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 58px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  touch-action: manipulation;
}

.language-option:hover,
.language-option:focus-visible {
  color: #ffffff;
  border-color: rgba(91, 199, 202, 0.38);
  outline: none;
}

.language-option.is-active {
  border-color: rgba(91, 199, 202, 0.62);
  background: rgba(91, 199, 202, 0.16);
  color: #ffffff;
}

.flag {
  position: relative;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0,
    #b22234 7.69%,
    #ffffff 7.69%,
    #ffffff 15.38%
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 54%;
  background: #3c3b6e;
}

.flag-es {
  background: linear-gradient(
    to bottom,
    #aa151b 0,
    #aa151b 25%,
    #f1bf00 25%,
    #f1bf00 75%,
    #aa151b 75%,
    #aa151b 100%
  );
}

.menu-btn {
  display: none;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 1.1rem;
}

.menu-btn i {
  display: none;
}

.menu-btn::before {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) top left / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center left / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom left / 100% 2px no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 180ms ease;
}

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

.menu .btn,
.btn-solid {
  background: var(--line-strong);
  color: #081415;
  font-weight: 600;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.82) 0%, rgba(8, 11, 12, 0.52) 42%, rgba(8, 11, 12, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.18) 0%, rgba(8, 11, 12, 0.36) 100%),
    url("./images/leadloadr-tow-hero.png")
      center/cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stage {
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: flex-end;
  padding: 40px 0 86px;
}

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

.eyebrow,
.mini-label,
.price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--line-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.mini-label::before,
.price-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.pricing-copy h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.hero-copy p,
.section-heading p,
.pricing-copy p,
.price-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.hero-copy p {
  max-width: 31rem;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e7e8;
  font-size: 1rem;
}

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

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(91, 199, 202, 0.12), rgba(91, 199, 202, 0.03) 18%, rgba(255, 255, 255, 0) 52%),
    #111315;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}

.ticker-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  padding: 18px 0;
}

.ticker-item {
  color: #f4f8f8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-separator {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid rgba(91, 199, 202, 0.9);
  background: rgba(91, 199, 202, 0.16);
  transform: rotate(45deg);
}

.overview,
.pricing {
  padding: 88px 0;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.pricing-copy h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  margin-top: 20px;
  max-width: 16ch;
}

.section-heading p,
.pricing-copy p {
  margin-top: 20px;
}

.overview-rail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 46px;
}

.overview-intro,
.overview-spec,
.overview-photo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-intro,
.overview-spec {
  padding: 28px 30px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #141618;
}

.overview-intro::before,
.overview-spec::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(91, 199, 202, 0.4), transparent 80%);
}

.overview-intro h3,
.overview-spec strong,
.price-card strong {
  font-size: 1.7rem;
  line-height: 1.04;
}

.overview-intro h3 {
  max-width: 16ch;
  margin-top: 18px;
}

.overview-intro p {
  margin-top: 18px;
  max-width: 33rem;
}

.intro-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-soft);
}

.intro-code {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overview-photo {
  display: block;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.88) contrast(0.96);
}

.overview-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 11, 0.12), rgba(6, 10, 11, 0.2)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.image-consultation {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url("./images/leadloadr-paperwork.png")
      center/cover no-repeat;
}

.image-lot {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url("./images/leadloadr-used-cars.png")
      center/cover no-repeat;
}

.overview-spec ol,
.overview-photo {
  position: relative;
  z-index: 1;
}

.overview-photo-wide {
  min-height: 300px;
}

.overview-photo-tall {
  min-height: 360px;
}

.overview-spec {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #111315;
}

.overview-spec ol {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.overview-spec li {
  display: grid;
  gap: 8px;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(91, 199, 202, 0.5);
}

.overview-spec span {
  color: var(--muted-soft);
  line-height: 1.7;
  font-size: 0.94rem;
}

.price-card {
  padding: 28px;
  border-radius: 0;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-card strong {
  margin-top: 18px;
}

.price-card p {
  margin-top: 14px;
}

.detail-stage {
  position: relative;
  min-height: 44em;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 88px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 40%, rgba(0, 0, 0, 0.22) 100%),
    url("./images/leadloadr-tow-detail.png")
      center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-shell {
  width: min(760px, calc(100% - 88px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.detail-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  padding-left: 1.1em;
  border-left: 0.1em solid var(--line-strong);
}

.detail-heading span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.detail-list {
  list-style: none;
  margin-top: 2.8em;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0.82em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-list li span:first-child {
  color: rgba(255, 255, 255, 0.92);
}

.detail-list li span:last-child {
  color: rgba(255, 255, 255, 0.98);
}

.showcase {
  padding-bottom: 88px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  min-height: 31em;
  max-width: 820px;
  margin: 0 auto;
}

.showcase-copy,
.showcase-photo {
  min-height: 12em;
}

.showcase-copy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accent-panel {
  background: var(--line-strong);
  color: #ffffff;
}

.accent-panel a {
  font-size: 0.86rem;
}

.note-panel {
  background: #f1efee;
  color: #5b524d;
}

.note-panel h3 {
  max-width: 10ch;
}

.showcase-photo {
  background-size: cover;
  background-position: center;
  position: relative;
}

.photo-performance {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5)),
    url("./images/leadloadr-paperwork.png");
}

.photo-showroom {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5)),
    url("./images/leadloadr-used-cars.png");
}

.photo-drift {
  grid-column: 3;
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    url("./images/leadloadr-tow-lot.png");
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
}

.icon-badge.dark {
  border-color: #5b524d;
  color: #5b524d;
}

.showcase-copy h3 {
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 300;
}

.showcase-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin: 88px auto 0;
  text-align: center;
}

.showcase-stats > div {
  position: relative;
  min-width: 10em;
}

.showcase-stats > div h1:nth-child(2) {
  color: #282828;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  font-size: 2.5em;
  font-weight: 700;
}

.showcase-stats h5 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.7em;
}

.showcase-car {
  padding: 5em 1em 0;
}

.car-ring {
  border: 2px #ccc solid;
  border-radius: 50%;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: #020617;
  animation: glow 4s ease-in-out infinite;
  aspect-ratio: 3 / 1;
}

.car-stock {
  width: min(62%, 34rem);
  aspect-ratio: 16 / 10;
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 1.8em 4em rgba(0, 0, 0, 0.45);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 16%);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("./images/leadloadr-used-cars.png")
      center/cover no-repeat;
}

.ring {
  border: inherit;
  border-radius: inherit;
  background: inherit;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: inherit;
}

.ring-md {
  width: 75%;
  height: 75%;
  top: 10%;
  animation-delay: 3s;
}

.ring-sm {
  width: 50%;
  height: 50%;
  top: 20%;
  animation-delay: 6s;
}

.pricing {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: 32px;
}

.pricing-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-meta div {
  display: grid;
  gap: 6px;
}

.meta-label {
  color: var(--muted-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-meta strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.pricing-board {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.price-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #1b1d1f;
}

.price-card::before,
.pricing-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 1px;
  background: var(--line-strong);
}

.price-card strong {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
}

.price-card p {
  max-width: 24ch;
}

.price-card-subscription,
.price-card-credits {
  min-height: 240px;
}

.price-card-featured {
  min-height: 496px;
  justify-content: flex-end;
  padding-top: 36px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(91, 199, 202, 0.18), rgba(91, 199, 202, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #202729;
  border-color: rgba(91, 199, 202, 0.32);
}

.price-card-featured strong {
  font-size: clamp(4rem, 9vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-top: auto;
}

.featured-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.featured-code {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-note {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #111315;
}

.pricing-note p {
  margin-top: 20px;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  padding: 0 0 32px;
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  padding: 28px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block,
.footer-links-block,
.footer-contact-block {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    #141618;
}

.footer-lead {
  max-width: 28rem;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid rgba(91, 199, 202, 0.35);
  color: var(--line-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-heading {
  display: inline-block;
  color: #f4f8f8;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.footer-link-list a,
.footer-meta a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-link-list a:hover,
.footer-meta a:hover,
.footer-pill:hover {
  color: #ffffff;
}

.footer-meta {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.footer-meta div {
  display: grid;
  gap: 6px;
}

.footer-meta strong,
.footer-meta a {
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note {
  text-align: right;
}

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

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(91, 199, 202, 0.08), transparent 28%),
    linear-gradient(180deg, #111214 0%, #0d0e10 100%);
}

.login-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(91, 199, 202, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(11, 13, 15, 0.98) 0%, rgba(11, 13, 15, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.login-stage {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
  flex: 1;
}

.login-intro {
  max-width: 30rem;
}

.login-intro h1 {
  margin-top: 22px;
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.login-intro p {
  max-width: 24rem;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.login-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.login-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(15, 17, 19, 0.86);
  backdrop-filter: blur(8px);
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--line-strong);
}

.login-card h2 {
  margin-top: 20px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.login-card > p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-label {
  color: #eef6f6;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-group input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.field-group input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field-group input:focus {
  outline: none;
  border-color: rgba(91, 199, 202, 0.9);
  box-shadow: 0 0 0 1px rgba(91, 199, 202, 0.18);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  accent-color: var(--line-strong);
}

.login-link {
  color: var(--line-strong);
}

.login-submit {
  width: 100%;
  min-height: 56px;
}

.form-feedback {
  min-height: 1.4em;
  color: var(--line-strong);
  font-size: 0.9rem;
}

.login-card-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.login-card-footer div {
  display: grid;
  gap: 6px;
}

.login-card-footer strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

@media screen and (max-width: 1080px) {
  .hero-stage,
  .overview-rail,
  .pricing,
  .pricing-board,
  .login-stage {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    position: static;
  }

  .pricing-meta {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .login-stage {
    gap: 28px;
  }
}

@media screen and (max-width: 820px) {
  nav {
    position: relative;
  }

  .nav-controls {
    gap: 12px;
  }

  .language-switcher {
    min-height: 44px;
  }

  .language-option {
    min-width: 50px;
    min-height: 34px;
    padding: 0 7px;
  }

  .flag {
    width: 22px;
    height: 15px;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 0;
    background: rgba(18, 19, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

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

  .hero {
    background-position: 68% center;
  }

  .detail-stage {
    min-height: auto;
    padding: 72px 0;
  }

  .detail-shell {
    width: min(100% - 40px, 760px);
  }

  .detail-heading,
  .detail-list li,
  .showcase-stats {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 760px;
  }

  .photo-drift {
    grid-column: auto;
    grid-row: auto;
    min-height: 18em;
  }

  .hero-stage {
    min-height: calc(100vh - 104px);
    padding-top: 20px;
    padding-bottom: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
    max-width: 11ch;
  }

  .login-stage {
    width: min(100% - 32px, 1180px);
    padding-top: 20px;
    padding-bottom: 72px;
  }

  .login-options {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  nav,
  .hero-grid,
  .overview,
  .detail-stage,
  .showcase,
  .pricing,
  .footer,
  .login-stage {
    width: min(100% - 28px, 1180px);
  }

  .overview,
  .pricing {
    padding: 72px 0;
  }

  .price-card,
  .pricing-note {
    padding: 22px;
  }

  .overview-intro h3 {
    font-size: 1.4rem;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .pricing-meta {
    grid-template-columns: 1fr;
  }

  .detail-list li {
    align-items: flex-start;
  }

  .showcase-copy h3 {
    font-size: 1.55rem;
  }

  .showcase-stats > div h1:nth-child(2) {
    left: 0;
    transform: translateY(-50%);
  }

  .price-card-featured {
    min-height: 320px;
  }

  .price-card-featured strong {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .ticker-group {
    gap: 14px;
    padding: 16px 0;
  }

  .ticker-item {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .footer-brand-block,
  .footer-links-block,
  .footer-contact-block {
    padding: 20px;
  }

  .login-intro h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .login-card {
    padding: 22px;
  }

  .login-card h2 {
    font-size: 1.8rem;
  }

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0c0e10;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.88) 0%, rgba(8, 11, 12, 0.58) 42%, rgba(8, 11, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.18) 0%, rgba(8, 11, 12, 0.42) 100%);
}

.hero > nav,
.hero-stage {
  position: relative;
  z-index: 2;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0c0e10;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-slide-fade 18s ease-in-out infinite;
}

.hero-slide-tow {
  background-image: url("./images/leadloadr-tow-hero.png");
}

.hero-slide-flatbed {
  animation-delay: 6s;
  background-image: url("./images/leadloadr-tow-detail.png");
  background-position: 54% center;
}

.hero-slide-lot {
  animation-delay: 12s;
  background-image: url("./images/leadloadr-used-cars.png");
  background-position: 58% center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-link,
.footer-legal-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(91, 199, 202, 0.28);
  color: #dffbfc;
  background: rgba(91, 199, 202, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible,
.footer-legal-list a:hover,
.footer-legal-list a:focus-visible {
  color: #ffffff;
  border-color: rgba(91, 199, 202, 0.74);
  background: rgba(91, 199, 202, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.social-link i {
  width: 16px;
  text-align: center;
  font-size: 0.98rem;
}

.footer-bottom {
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.login-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(91, 199, 202, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(12, 14, 16, 0.98) 0%, rgba(9, 10, 12, 0.96) 100%);
}

.login-photo-panel {
  display: flex;
  align-items: flex-end;
  min-height: 210px;
  margin-top: 34px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.08), rgba(4, 6, 8, 0.72)),
    url("./images/leadloadr-tow-detail.png")
      center/cover no-repeat;
}

.login-photo-panel strong {
  display: block;
  max-width: 18rem;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.2;
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.server-flash-slot {
  display: none;
}

.server-flash-slot.is-visible {
  display: grid;
}

.flash {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.5;
  font-size: 0.9rem;
}

.flash.success {
  color: #d1fae5;
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(6, 78, 59, 0.74);
}

.flash.error {
  color: #fee2e2;
  border-color: rgba(239, 68, 68, 0.54);
  background: rgba(127, 29, 29, 0.78);
}

.flash.info {
  color: #dbeafe;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(30, 58, 138, 0.74);
}

.field-group textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field-group textarea:focus {
  outline: none;
  border-color: rgba(91, 199, 202, 0.9);
  box-shadow: 0 0 0 1px rgba(91, 199, 202, 0.18);
}

.login-actions {
  display: grid;
  gap: 12px;
}

.login-secondary {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.14);
  color: #dffbfc;
}

.login-contact-panel {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.025);
}

.login-contact-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 18px;
  color: #eef6f6;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  touch-action: manipulation;
}

.login-contact-panel summary::-webkit-details-marker {
  display: none;
}

.login-contact-panel summary i {
  transition: transform 180ms ease;
}

.login-contact-panel[open] summary i {
  transform: rotate(180deg);
}

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

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(91, 199, 202, 0.08), transparent 32%),
    linear-gradient(180deg, #141414 0%, #101010 100%);
}

.legal-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.88), rgba(8, 11, 12, 0.68)),
    url("./images/leadloadr-paperwork.png")
      center/cover no-repeat;
}

.legal-stage,
.legal-main {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-stage {
  padding: 42px 0 62px;
}

.legal-stage h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.legal-stage p {
  max-width: 38rem;
  margin-top: 18px;
  color: #e2e7e8;
  line-height: 1.8;
}

.legal-main {
  padding: 48px 0 88px;
}

.legal-document {
  display: grid;
  gap: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0)),
    #141618;
}

.legal-summary {
  display: inline-grid;
  gap: 8px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(91, 199, 202, 0.26);
  background: rgba(91, 199, 202, 0.07);
}

.legal-summary strong {
  color: #ffffff;
}

.legal-section {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section h2 {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-section p,
.legal-section ul {
  margin-top: 12px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-section a {
  color: var(--line-strong);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes hero-slide-fade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }

  8%,
  30% {
    opacity: 1;
    transform: scale(1);
  }

  38% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

@media screen and (max-width: 820px) {
  .hero::after {
    background:
      linear-gradient(90deg, rgba(8, 11, 12, 0.9) 0%, rgba(8, 11, 12, 0.72) 54%, rgba(8, 11, 12, 0.34) 100%),
      linear-gradient(180deg, rgba(8, 11, 12, 0.16) 0%, rgba(8, 11, 12, 0.48) 100%);
  }

  .hero-slide {
    background-position: 64% center;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(91, 199, 202, 0.48);
    background: rgba(8, 12, 14, 0.72);
    color: #ffffff;
    cursor: pointer;
  }

  .social-link,
  .footer-legal-list a {
    flex: 1 1 150px;
  }

  .footer-legal-list {
    justify-content: stretch;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  nav {
    gap: 12px;
  }

  .nav-controls {
    min-width: 0;
    flex-shrink: 0;
    gap: 8px;
  }

  .menu-btn {
    order: -1;
    position: absolute;
    top: 28px;
    right: 0;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: grid !important;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(91, 199, 202, 0.68);
    background: var(--line-strong);
    color: #081415;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }

  .language-switcher {
    display: none;
  }

  .eyebrow,
  .mini-label,
  .price-kicker {
    flex-wrap: wrap;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .intro-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-stage > *,
  .login-card {
    min-width: 0;
  }

  .login-card h2 {
    max-width: 12ch;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .login-photo-panel {
    min-height: 168px;
    margin-top: 26px;
    padding: 18px;
  }

  .legal-stage,
  .legal-main {
    width: min(100% - 28px, 980px);
  }

  .legal-document {
    padding: 22px;
  }

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