:root {
  color-scheme: dark;
  --ink: #f3f5f6;
  --muted: #9ca3a8;
  --surface: #111417;
  --surface-soft: #171b1f;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #f59b23;
  --accent-hot: #ffb13b;
  --page: #090b0d;
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--page); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 155, 35, 0.09), transparent 24rem),
    linear-gradient(135deg, #0d1013 0%, #07090b 56%, #0b0d10 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible {
  outline: 3px solid var(--accent-hot);
  outline-offset: 5px;
  border-radius: 2px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.page-shell {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 68px);
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark { width: 42px; height: 42px; fill: var(--ink); }
.brand-mark-accent { fill: var(--accent); }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: 18px; line-height: 1; letter-spacing: .13em; }
.brand small, .domain { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .2em; }

main { flex: 1; }

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(70px, 9vw, 130px) 0 clamp(64px, 8vw, 110px);
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent-hot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro {
  max-width: 640px;
  margin: 30px 0 34px;
  color: #b7bdc1;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(23, 27, 31, .75);
  backdrop-filter: blur(8px);
}

.status-light {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(245,155,35,.12), 0 0 18px rgba(245,155,35,.45);
}

.status span:last-child { display: grid; gap: 3px; }
.status strong { font-size: 13px; letter-spacing: .03em; }
.status small { color: var(--muted); font-size: 11px; }

.hero-art {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 13% 3% 5%;
  z-index: -1;
  content: "";
  border: 1px solid var(--line);
  transform: skewX(-8deg);
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 62%);
}

.hero-art svg { width: 100%; overflow: visible; filter: drop-shadow(0 18px 34px rgba(0,0,0,.45)); }
.car-outline, .car-detail, .car-shadow, .car-accent { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.car-outline { stroke: #d9dddf; stroke-width: 3; }
.car-detail { stroke: #626a70; stroke-width: 2; }
.car-shadow { stroke: rgba(0,0,0,.65); stroke-width: 20; filter: blur(8px); }
.car-accent { stroke: var(--accent); stroke-width: 3; filter: drop-shadow(0 0 7px rgba(245,155,35,.55)); }
.wheel { fill: #0b0d0f; stroke: #c7cccf; stroke-width: 3; }
.wheel-hub { fill: none; stroke: var(--accent); stroke-width: 3; }
.art-label { position: absolute; right: 1%; bottom: 1%; color: #7f878c; font-size: 9px; font-weight: 800; letter-spacing: .26em; }

.speed-line { position: absolute; z-index: -1; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,155,35,.65), transparent); transform: rotate(-6deg); }
.speed-line-one { top: 22%; right: 3%; width: 66%; }
.speed-line-two { top: 32%; right: 14%; width: 47%; opacity: .55; }
.speed-line-three { top: 12%; right: 24%; width: 34%; opacity: .3; }

.preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preview article { min-height: 170px; padding: 30px clamp(20px, 3vw, 42px) 32px 0; }
.preview article + article { padding-left: clamp(20px, 3vw, 42px); border-left: 1px solid var(--line); }
.preview span { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.preview h2 { margin: 24px 0 9px; font-size: 17px; letter-spacing: -.01em; }
.preview p { max-width: 340px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #747c82;
  font-size: 10px;
  line-height: 1.5;
}

footer p { margin: 0; }

@media (max-width: 930px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(760px, 100%); margin: -25px auto 0; }
}

@media (max-width: 650px) {
  .site-header { min-height: 82px; }
  .domain { display: none; }
  .hero { gap: 42px; padding-top: 62px; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .intro { margin-top: 24px; }
  .status { width: 100%; }
  .hero-art::before { inset: 8% 1% 1%; }
  .preview { grid-template-columns: 1fr; }
  .preview article { min-height: 0; padding: 26px 0; }
  .preview article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .preview h2 { margin-top: 15px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; padding: 28px 0; }
}
