:root {
  --bg: #050505;
  --bg-soft: #0f0f0f;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: #b6b6b6;
  --yellow: #ffef00;
  --yellow-strong: #ffd400;
  --white-glow: rgba(255, 255, 255, 0.12);
  --yellow-glow: rgba(255, 239, 0, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 239, 0, 0.08), transparent 18%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(180deg, #040404 0%, #0a0a0a 100%);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 95%);
  content: "";
}

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

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

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
}

.glow-yellow {
  top: 10%;
  right: -6%;
  width: 24vw;
  height: 24vw;
  background: rgba(255, 239, 0, 0.14);
}

.glow-white {
  left: -6%;
  bottom: 18%;
  width: 22vw;
  height: 22vw;
  background: rgba(255, 255, 255, 0.08);
}

.track-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 46%, rgba(255, 239, 0, 0.04) 50%, transparent 54%),
    linear-gradient(115deg, transparent 58%, rgba(255, 255, 255, 0.025) 62%, transparent 66%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(265px, 40vw);
  padding: 4px 8px;
  border: 1px solid rgba(255, 239, 0, 0.14);
  border-radius: 16px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.65);
}

.brand img,
.footer-logo {
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  background: #000;
  filter: contrast(1.06) brightness(0.94);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(255, 212, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255, 212, 0, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: none;
}

.button-header {
  min-height: 46px;
  min-width: 132px;
  padding: 0 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  min-height: calc(84vh - 82px);
  padding: 34px 0 20px;
}

.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.hero-stats strong,
.highlight-frame strong {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.92;
}

.accent {
  color: var(--yellow);
}

.hero-text,
.service-card p,
.about-copy p,
.benefit-card p,
.cta-card p,
.quick-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 760px;
}

.hero-points span,
.contact-note span {
  color: var(--muted);
}

.hero-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.hero-panel {
  position: relative;
}

.hero-card,
.quick-card,
.service-card,
.highlight-frame,
.benefit-card,
.cta-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.hero-card::after {
  position: absolute;
  inset: auto -14% 12% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 239, 0, 0.22), transparent 70%);
  content: "";
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.speed-panel {
  position: relative;
  min-height: 220px;
  margin: 18px 0 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(255, 239, 0, 0.08), transparent 42%);
  overflow: hidden;
}

.speed-line {
  position: absolute;
  left: -10%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 239, 0, 0.8), transparent);
  animation: driveLine 4.2s linear infinite;
}

.line-1 {
  top: 30%;
}

.line-2 {
  top: 50%;
  animation-delay: 400ms;
}

.line-3 {
  top: 70%;
  animation-delay: 800ms;
}

.speed-arc {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 260px;
  height: 260px;
  border: 18px solid rgba(255, 239, 0, 0.16);
  border-left-color: transparent;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transform: rotate(18deg);
}

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

.hero-stats article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--yellow);
  line-height: 0.9;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quick-strip,
.services-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.quick-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 4px;
}

.quick-card,
.service-card,
.benefit-card {
  border-radius: var(--radius-lg);
}

.quick-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 16px;
}

.quick-card span,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 239, 0, 0.12);
  color: var(--yellow);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.46;
}

.section {
  padding: 26px 0;
}

.section-head {
  max-width: 900px;
}

.section-head h2,
.cta-card h2,
.about-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

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

.service-card {
  padding: 20px;
}

.service-card h3,
.benefit-card h3 {
  margin: 20px 0 12px;
  font-size: 1.6rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.highlight-frame {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 239, 0, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.highlight-frame span {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlight-frame strong {
  margin: 10px 0 12px;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--yellow);
}

.highlight-frame p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-benefits {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.section-subhead {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 18px;
}

.section-subhead h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 0.98;
}

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

.benefit-card {
  padding: 20px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 239, 0, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.cta-actions {
  display: grid;
  gap: 14px;
  min-width: 260px;
}

.contact-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 24px;
  color: var(--muted);
}

.footer-logo {
  width: min(200px, 40vw);
  padding: 4px 8px;
  border: 1px solid rgba(255, 239, 0, 0.14);
  border-radius: 16px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes driveLine {
  0% {
    transform: translateX(-14%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(14%);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero,
  .quick-strip,
  .services-grid,
  .about-section,
  .benefits-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-card {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .header-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    flex-direction: row;
    justify-content: stretch;
  }

  .brand {
    width: min(230px, 72vw);
  }

  .button-header {
    flex: 1 1 160px;
    width: auto;
  }

  .hero {
    gap: 18px;
    padding: 18px 0 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.6rem);
    line-height: 0.96;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button,
  .button-secondary {
    width: 100%;
    white-space: normal;
  }

  .hero-card {
    min-height: auto;
    padding: 18px;
  }

  .speed-panel {
    min-height: 190px;
  }

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

  .quick-card,
  .service-card,
  .benefit-card,
  .highlight-frame,
  .cta-card {
    padding: 18px;
  }

  .quick-card {
    gap: 8px;
    padding: 14px;
  }

  .quick-card span {
    min-height: 34px;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }

  .quick-card p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .section {
    padding: 20px 0;
  }

  .section-head h2,
  .cta-card h2,
  .about-copy h2 {
    line-height: 1;
  }

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

@media (max-width: 520px) {
  .card-topline {
    flex-direction: column;
  }

  .speed-arc {
    right: -56px;
    width: 200px;
    height: 200px;
  }

  .service-card h3,
  .benefit-card h3 {
    font-size: 1.4rem;
  }

  .cta-actions {
    width: 100%;
    min-width: 100%;
  }

  .site-footer p {
    margin: 0;
    line-height: 1.6;
  }
}
