:root {
  --bg: #080808;
  --panel: #101010;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --orange: #ff6a00;
  --orange-soft: rgba(255, 106, 0, 0.18);
  --border: rgba(255, 106, 0, 0.72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.garage-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.garage-image {
  width: 100%;
  height: 100svh;
  display: block;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.garage-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), transparent 20%, transparent 75%, rgba(0,0,0,.48)),
    radial-gradient(circle at center, transparent 35%, rgba(0,0,0,.16) 100%);
}

.hotspot {
  position: absolute;
  display: block;
  border: 1px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hotspot span {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translate(-50%, 8px);
  opacity: 0;
  white-space: nowrap;
  padding: 9px 13px;
  border: 1px solid rgba(255, 106, 0, 0.62);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.9);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hotspot:hover,
.hotspot:focus-visible,
.garage-hero.show-hotspots .hotspot {
  outline: none;
  border-color: var(--border);
  background: rgba(255, 106, 0, 0.045);
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.24), inset 0 0 26px rgba(255, 106, 0, 0.08);
}

.hotspot:hover span,
.hotspot:focus-visible span,
.garage-hero.show-hotspots .hotspot span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hotspot-server { left: 11%; top: 12%; width: 20%; height: 48%; }
.hotspot-workbench { left: 27%; top: 38%; width: 40%; height: 37%; }
.hotspot-ai { left: 61%; top: 21%; width: 18%; height: 37%; }
.hotspot-lounge { left: 68%; top: 54%; width: 31%; height: 44%; }
.hotspot-caps { left: 78%; top: 10%; width: 21%; height: 37%; }

.explore-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.66);
  color: rgba(255,255,255,0.92);
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.035em;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.explore-hint:hover,
.explore-hint:focus-visible {
  outline: none;
  border-color: var(--orange);
}

.explore-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange-soft);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,106,0,.38); }
  70% { box-shadow: 0 0 0 9px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}

.mobile-garage-nav { display: none; }

.content-section {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 150px) clamp(24px, 8vw, 140px);
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 85% 20%, rgba(255,106,0,.06), transparent 38%),
    linear-gradient(180deg, #0a0a0a, #121212);
}

.content-inner { max-width: 900px; }
.content-section h1,
.content-section h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.content-section p {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}
.content-section .eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-action {
  display: inline-flex;
  margin-top: 30px;
  padding: 11px 15px;
  border: 1px solid rgba(255,106,0,.45);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.section-action:hover,
.section-action:focus-visible {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,106,0,.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .garage-hero { min-height: auto; }
  .garage-image {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }
  .hotspot, .explore-hint, .garage-shade { display: none; }
  .mobile-garage-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-garage-nav a {
    padding: 14px 16px;
    border: 1px solid rgba(255,106,0,0.35);
    border-radius: 12px;
    background: #151515;
    text-decoration: none;
  }
  .mobile-garage-nav a:focus-visible,
  .mobile-garage-nav a:hover {
    border-color: var(--orange);
    outline: none;
  }
  .content-section { min-height: 62svh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
