/* ============================================================
   SW AUTOCARE — design system v2 "midnight showroom"
   Built by NightShyft Studios
   Base: OLED black · Chrome: the premium material (hero, brand)
   Teal: the one signal color (CTAs, price, builder, sliders)
   Type: Anton / Bebas Neue / Inter / JetBrains Mono
   ============================================================ */

:root {
  --void: #050507;
  --asphalt: #0C0C11;
  --panel: #111118;
  --panel-2: #16161F;
  --line: #25252F;
  --line-soft: #1B1B24;
  --gray-mid: #62626E;
  --gray-text: #A0A0AC;
  --white: #F4F4F6;

  --teal: #2DD4BF;
  --teal-deep: #0F766E;
  --teal-mist: #99F6E4;
  --teal-ink: #04231F;
  --teal-glow: rgba(45, 212, 191, 0.14);
  --teal-grad: linear-gradient(115deg, #14B8A6 0%, #6EEDDD 45%, #2DD4BF 70%, #0FA294 100%);

  --chrome-grad: linear-gradient(115deg, #878B94 0%, #F4F5F7 38%, #B7BCC6 55%, #E8EAEE 72%, #767A84 100%);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-head: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;

  --radius: 12px;
  --container: 1180px;
  --ticker-h: 32px;
  --header-h: 86px;
  --head-total: calc(var(--ticker-h) + var(--header-h));
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--gray-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* cinematic grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-mist); }

::selection { background: var(--teal-deep); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* slim custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; border: 2px solid var(--void); }
::-webkit-scrollbar-thumb:hover { background: var(--teal-deep); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- type ---------- */

h1, h2, h3 { color: var(--white); font-weight: 400; }

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
}

.headline {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

/* chrome text — the premium material */
.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
  flex: none;
}

.mono { font-family: var(--font-mono); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 54px); }
.section-head p { margin-top: 14px; font-size: 17px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-solid {
  background: var(--teal-grad);
  background-size: 160% 100%;
  background-position: 0% 0%;
  color: var(--teal-ink);
}
.btn-solid:hover {
  background-position: 90% 0%;
  color: var(--teal-ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px var(--teal-glow), 0 2px 10px rgba(0,0,0,0.6);
}
/* light sweep across solid buttons */
.btn-solid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-solid:hover::after { left: 130%; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal-deep);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ---------- scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--teal-grad);
  z-index: 210;
  pointer-events: none;
}

/* ---------- ticker ---------- */

.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  z-index: 105;
  background: var(--void);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker-track > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.ticker-track > span::after {
  content: "◆";
  color: var(--teal-deep);
  font-size: 7px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- header / floating pill nav ---------- */

.site-header {
  position: fixed;
  top: var(--ticker-h);
  left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 12px 0 18px;
  border-radius: 100px;
  background: rgba(8, 8, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled .nav-shell {
  background: rgba(6, 6, 9, 0.9);
  border-color: rgba(45, 212, 191, 0.22);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand svg { height: 36px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-top: 3px;
}
.brand-name span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 9px 14px;
  border-radius: 100px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.nav-links a[aria-current="page"] {
  color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
}
/* corner brackets on hover — HUD feel */
.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.nav-links a::before {
  top: 2px; left: 2px;
  border-top: 1px solid var(--teal);
  border-left: 1px solid var(--teal);
}
.nav-links a::after {
  bottom: 2px; right: 2px;
  border-bottom: 1px solid var(--teal);
  border-right: 1px solid var(--teal);
}
.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::before,
.nav-links a[aria-current="page"]::after { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-ink);
  white-space: nowrap;
  background: var(--teal-grad);
  border-radius: 100px;
  padding: 11px 20px;
  transition: box-shadow 0.25s ease, transform 0.18s ease;
}
.nav-phone:hover {
  color: var(--teal-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.nav-phone .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #052e2a;
  box-shadow: 0 0 8px rgba(5, 46, 42, 0.8);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px; height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { left: 0; top: -6px; }
.nav-toggle span::after { left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- cursor spotlight (desktop) ---------- */

.spotlight {
  position: fixed;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, rgba(153, 246, 228, 0.02) 35%, transparent 65%);
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.spotlight.on { opacity: 1; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: calc(var(--head-total) + 56px) 0 90px;
  background:
    radial-gradient(1000px 520px at 80% 12%, rgba(45, 212, 191, 0.09), transparent 62%),
    radial-gradient(720px 520px at 10% 90%, rgba(15, 118, 110, 0.07), transparent 60%),
    var(--void);
  overflow: hidden;
}

/* vertical LED strips — echo of the owner's garage bay */
.hero-leds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-leds i {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent 0%, rgba(45,212,191,0.32) 35%, rgba(45,212,191,0.06) 70%, transparent 100%);
  transform: skewX(-8deg);
}
.hero-leds i:nth-child(odd) {
  background: linear-gradient(180deg, transparent 0%, rgba(244,245,247,0.18) 35%, rgba(244,245,247,0.04) 70%, transparent 100%);
}
.hero-leds i:nth-child(1) { left: 58%; }
.hero-leds i:nth-child(2) { left: 67%; opacity: 0.75; }
.hero-leds i:nth-child(3) { left: 76%; opacity: 0.45; }
.hero-leds i:nth-child(4) { left: 85%; opacity: 0.85; }
.hero-leds i:nth-child(5) { left: 94%; opacity: 0.35; }

/* vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.5) 100%);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mist);
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.05);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(52px, 8.5vw, 118px);
  max-width: 11ch;
}
/* the money words: chrome metal */
.hero h1 em {
  font-style: normal;
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* chrome clip breaks when descendants get stacking contexts (animated spans) —
   re-apply the gradient on the innermost animated element */
html.js .hero h1 em .w > i {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* split-word reveal (spans injected by JS) */
html.js .hero h1 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
html.js .hero h1 .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(110%);
  animation: word-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(var(--wi) * 90ms + 120ms);
}
@keyframes word-up { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 2vw, 20px);
  max-width: 54ch;
  color: var(--gray-text);
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero-proof .stars { color: var(--teal); letter-spacing: 2px; }
.hero-proof span b { color: var(--white); font-weight: 600; }

/* ---------- sections ---------- */

section { padding: 96px 0; position: relative; }
section.tight { padding: 72px 0; }

.section-alt { background: var(--asphalt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------- marquee divider ---------- */

.marquee {
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--void);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 28s linear infinite;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-track > span {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  line-height: 1;
  padding: 0 28px;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track > span::after {
  content: "◆";
  font-size: 14px;
  color: var(--teal-deep);
  -webkit-text-stroke: 0;
}
.marquee-track > span.fill {
  color: var(--teal);
  -webkit-text-stroke: 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- trust strip ---------- */

.trust-strip {
  background: var(--asphalt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 36px 28px;
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-item:first-child { border-left: none; }
.trust-item .t-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.trust-item .t-num span {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-item .t-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ---------- tilt cards (3D, JS-driven) ---------- */

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt .tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(420px 280px at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}
.tilt:hover .tilt-glare { opacity: 1; }

/* ---------- service cards ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}
.svc-card:hover {
  border-color: var(--teal-deep);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(45, 212, 191, 0.16);
}
.svc-card .svc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.07);
  border: 1px solid rgba(45, 212, 191, 0.3);
  display: grid;
  place-items: center;
  color: var(--teal);
}
.svc-card h3 { font-family: var(--font-head); font-size: 26px; letter-spacing: 0.04em; }
.svc-card p { font-size: 15px; }
.svc-card .svc-from {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  border-top: 1px dashed var(--line);
}

/* ---------- spec-sheet package cards ---------- */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pkg-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}
.pkg-card:hover {
  border-color: var(--teal-deep);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
.pkg-card.featured { border-color: rgba(45, 212, 191, 0.45); }
.pkg-card.featured::before {
  content: "MOST BOOKED";
  position: absolute;
  top: 14px; right: -34px;
  transform: rotate(38deg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  background: var(--teal-grad);
  color: var(--teal-ink);
  padding: 4px 38px;
  z-index: 2;
}

.pkg-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(45,212,191,0.05), transparent);
}
.pkg-head .pkg-id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 8px;
}
.pkg-head h3 { font-family: var(--font-head); font-size: 30px; letter-spacing: 0.04em; }
.pkg-head .pkg-price {
  font-family: var(--font-mono);
  margin-top: 10px;
  font-size: 15px;
  color: var(--teal);
}
.pkg-head .pkg-price small { color: var(--gray-mid); font-size: 12px; }

.pkg-body { padding: 22px 26px 28px; display: flex; flex-direction: column; gap: 0; flex: 1; }

.pkg-body ul { list-style: none; flex: 1; }
.pkg-body li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line-soft);
}
.pkg-body li:last-child { border-bottom: none; }
.pkg-body li::before {
  content: "✓";
  font-family: var(--font-mono);
  color: var(--teal);
  font-size: 13px;
  flex: none;
}
.pkg-body .btn { margin-top: 22px; width: 100%; }

.pkg-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-mid);
  display: flex;
  gap: 18px;
  margin-top: 14px;
}

/* ---------- quote builder ---------- */

.quote-builder {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
}

.qb-form { padding: 40px; border-right: 1px solid var(--line); }

.qb-step { margin-bottom: 30px; }
.qb-step:last-child { margin-bottom: 0; }
.qb-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qb-step-label b { color: var(--teal); font-weight: 600; white-space: nowrap; }

.qb-options { display: flex; flex-wrap: wrap; gap: 10px; }

.qb-opt {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray-text);
  background: var(--asphalt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 18px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.qb-opt:hover { border-color: var(--gray-mid); color: var(--white); }
.qb-opt.selected {
  background: rgba(45, 212, 191, 0.09);
  border-color: var(--teal);
  color: var(--teal);
}

.qb-result {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(440px 320px at 80% 0%, var(--teal-glow), transparent 70%),
    var(--asphalt);
}
.qb-result .qb-est-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: center;
}

/* tachometer gauge */
.qb-gauge { width: min(290px, 100%); margin: 4px auto 0; display: block; overflow: visible; }
.qb-gauge .g-track { stroke: var(--line); }
.qb-gauge .g-fill {
  stroke: url(#g-grad);
  transition: stroke-dashoffset 0.6s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.qb-gauge .g-needle {
  stroke: var(--white);
  transition: transform 0.6s cubic-bezier(0.3, 0.8, 0.3, 1);
  transform-origin: 130px 122px;
}
.qb-gauge .g-hub { fill: var(--teal); }
.qb-gauge text {
  font-family: var(--font-mono);
  fill: var(--gray-mid);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.qb-price {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 52px);
  color: var(--white);
  line-height: 1;
  text-align: center;
}
.qb-price .qb-currency {
  background: var(--teal-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.qb-note { font-size: 13px; color: var(--gray-mid); text-align: center; }
.qb-result .btn { margin-top: 16px; }
.qb-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-mid);
  text-align: center;
}

/* ---------- before / after slider ---------- */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  user-select: none;
}
.ba-slider img,
.ba-slider .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 var(--ba-pos, 50%)); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos, 50%);
  width: 2px;
  background: var(--teal);
  z-index: 3;
  pointer-events: none;
}
.ba-handle::after {
  content: "◂ ▸";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--teal);
  color: #052e2a;
  font-size: 11px;
  letter-spacing: -1px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
}

.ba-tag {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  background: rgba(5,5,7,0.78);
  backdrop-filter: blur(4px);
}
.ba-tag.before { left: 14px; color: var(--gray-text); }
.ba-tag.after { right: 14px; color: var(--teal); }

.ba-caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

/* ---------- the garage (horizontal drag strip) ---------- */

.garage-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.garage-strip::-webkit-scrollbar { display: none; }
.garage-strip.dragging { cursor: grabbing; scroll-behavior: auto; }
.garage-strip.dragging * { pointer-events: none; }

.garage-card {
  flex: 0 0 min(420px, 82vw);
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.garage-card::after {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 120%;
  background: radial-gradient(closest-side, var(--teal-glow), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.garage-card.chrome::after { background: radial-gradient(closest-side, rgba(244,245,247,0.07), transparent 70%); }

.garage-card .g-plate {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal-mist);
  border: 1px solid var(--teal-deep);
  border-radius: 5px;
  padding: 5px 12px;
  margin-bottom: 22px;
  background: rgba(45, 212, 191, 0.05);
}
.garage-card h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 46px);
  text-transform: uppercase;
  line-height: 0.98;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  letter-spacing: 0.01em;
}
.garage-card h3 b {
  font-weight: 400;
  color: var(--white);
  -webkit-text-stroke: 0;
}
.garage-card .g-specs {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.garage-card .g-specs span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.garage-card .g-specs span:last-child { border-bottom: none; }
.garage-card .g-specs b { color: var(--teal); font-weight: 500; }
.garage-card.your-build { border-style: dashed; border-color: var(--teal-deep); }
.garage-card.your-build h3 { -webkit-text-stroke: 1.5px var(--teal); }

.garage-hint {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.garage-hint::before { content: "⟵"; color: var(--teal); }
.garage-hint::after { content: "⟶"; color: var(--teal); }

/* ---------- reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review-card .stars { color: var(--teal); letter-spacing: 3px; font-size: 14px; }
.review-card blockquote { font-size: 15px; color: var(--gray-text); flex: 1; }
.review-card cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12.5px;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
}
.review-card cite b { color: var(--white); font-weight: 500; }

.review-source {
  margin-top: 34px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-mid);
}

/* ---------- products ---------- */

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prod-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
}
.prod-card:hover { border-color: var(--teal-deep); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.prod-img {
  aspect-ratio: 4 / 3;
  background: var(--asphalt);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.prod-img svg { width: 38%; height: auto; opacity: 0.9; }
.prod-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 200px at 50% 110%, var(--teal-glow), transparent 70%);
}

.prod-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-body h3 { font-family: var(--font-head); font-size: 22px; letter-spacing: 0.04em; }
.prod-body .prod-blurb { font-size: 14px; flex: 1; }
.prod-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-soft);
}
.prod-price { font-family: var(--font-mono); font-size: 17px; color: var(--teal); }
.prod-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 3px;
}
.prod-body .btn { width: 100%; margin-top: 12px; padding: 12px 20px; font-size: 13px; }

/* ---------- process / checklist ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  padding: 28px 24px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 46px;
  color: transparent;
  -webkit-text-stroke: 1px var(--teal-deep);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 { font-family: var(--font-head); font-size: 22px; letter-spacing: 0.04em; margin-bottom: 8px; }
.process-step p { font-size: 14px; }

/* ---------- service area ---------- */

.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 22px;
}
.area-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-text);
  border: 1px solid var(--line);
  background: var(--asphalt);
  border-radius: 100px;
  padding: 8px 18px;
}
.area-list li.hq { border-color: var(--teal-deep); color: var(--teal); }

.area-visual {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(420px 320px at 50% 45%, rgba(45,212,191,0.08), transparent 70%),
    var(--asphalt);
  aspect-ratio: 1 / 0.82;
  position: relative;
  overflow: hidden;
}
.area-visual .ring {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--teal-deep);
  border-radius: 50%;
}
.area-visual .ring.r1 { width: 130px; height: 130px; animation: ring-pulse 4s ease infinite; }
.area-visual .ring.r2 { width: 280px; height: 280px; animation: ring-pulse-2 4s ease 0.6s infinite; }
.area-visual .ring.r3 { width: 430px; height: 430px; animation: ring-pulse-3 4s ease 1.2s infinite; }
@keyframes ring-pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.3; } }
@keyframes ring-pulse-2 { 0%, 100% { opacity: 0.45; } 50% { opacity: 0.15; } }
@keyframes ring-pulse-3 { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.08; } }
.area-visual .hq-pin {
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45,212,191,0.16), 0 0 24px var(--teal);
}
.area-visual .area-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.area-visual .area-label.center {
  top: 45%; left: 50%;
  transform: translate(-50%, 18px);
  color: var(--teal);
}

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(760px 380px at 50% 0%, rgba(45, 212, 191, 0.1), transparent 70%),
    var(--asphalt);
  border-top: 1px solid var(--line-soft);
  text-align: center;
  padding: 110px 0;
}
.cta-band h2 { font-size: clamp(38px, 5.5vw, 64px); max-width: 18ch; margin: 0 auto; }
.cta-band p { margin: 20px auto 0; max-width: 50ch; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 8px;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
select, textarea {
  width: 100%;
  background: var(--asphalt);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2362626E' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 14px;
  min-height: 20px;
}
.form-status.ok { color: var(--teal); }
.form-status.err { color: #ff7b72; }

/* ---------- contact cards ---------- */

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; align-items: start; }

.contact-aside { display: flex; flex-direction: column; gap: 22px; }

.contact-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.contact-card p { font-size: 14.5px; }
.contact-card .big-link {
  font-family: var(--font-mono);
  font-size: 19px;
  color: var(--white);
  display: inline-block;
  margin-top: 8px;
}
.contact-card .big-link:hover { color: var(--teal); }

.hours-table { width: 100%; font-family: var(--font-mono); font-size: 13.5px; border-collapse: collapse; }
.hours-table td { padding: 7px 0; border-bottom: 1px dashed var(--line-soft); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--white); }

.form-panel {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px;
}

/* ---------- gallery grid ---------- */

.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.gal-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--panel);
}
.gal-item img, .gal-item svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item .gal-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal-mist);
  background: rgba(5,5,7,0.8);
  padding: 5px 10px;
  border-radius: 4px;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--asphalt);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 54px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a, .footer-grid ul li { font-size: 14.5px; color: var(--gray-text); }
.footer-grid ul a:hover { color: var(--teal); }
.footer-about p { font-size: 14.5px; margin-top: 16px; max-width: 36ch; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gray-mid);
}
.footer-bottom .studio-credit a { color: var(--gray-text); }
.footer-bottom .studio-credit a:hover { color: var(--teal); }

/* ---------- sticky mobile action bar ---------- */

.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--white);
}
.sticky-bar a.bar-quote {
  background: var(--teal-grad);
  color: var(--teal-ink);
  border-color: transparent;
  font-weight: 600;
}

/* ---------- reveal animations (gated on .js) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .hero h1 .w > i { transform: none; animation: none; }
  .nav-phone .dot { animation: none; }
  .ticker-track, .marquee-track { animation: none; }
  .area-visual .ring { animation: none; }
  .spotlight { display: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .svc-grid, .pkg-grid, .review-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-builder { grid-template-columns: 1fr; }
  .qb-form { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: calc(var(--ticker-h) + var(--header-h) - 6px);
    left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--void);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7);
    padding: 14px;
  }
  .nav-links.open a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 760px) {
  section { padding: 70px 0; }

  .hero { min-height: 0; padding-bottom: 64px; }
  .hero-proof { gap: 10px 22px; }

  .nav-phone { display: none; } /* sticky bar owns call/text on mobile */
  .nav-shell { height: 58px; padding: 0 8px 0 14px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--line-soft); }
  .trust-item:nth-child(-n+2) { border-top: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line-soft); }

  .svc-grid, .pkg-grid, .review-grid, .prod-grid, .process-grid, .ba-grid, .gal-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .qb-form, .qb-result { padding: 28px 22px; }
  .form-panel { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .sticky-bar { display: grid; }
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 8px; }
}
