:root {
  --bg: #0b0d10;
  --bg-elev: #12161d;
  --bg-soft: #171c24;
  --text: #eaf0ff;
  --muted: #a9b5c9;
  --line: rgba(163, 188, 235, 0.18);
  --blue: #6fa6ff;
  --violet: #9d8cff;
  --halo-blue: rgba(111, 166, 255, 0.22);
  --halo-violet: rgba(157, 140, 255, 0.18);
  --radius: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(600px 380px at 15% -5%, var(--halo-blue), transparent 65%),
    radial-gradient(640px 420px at 88% 0%, var(--halo-violet), transparent 66%),
    var(--bg);
  line-height: 1.55;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }

.glass {
  background: linear-gradient(180deg, rgba(20, 25, 34, 0.88), rgba(15, 19, 27, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 40;
  width: min(1120px, 92vw);
  margin: 10px auto 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}
.site-logo__img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(166, 193, 243, 0.24);
  padding: .78rem 1.08rem;
  color: #f4f8ff;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(88, 140, 233, 0.9), rgba(134, 112, 239, 0.9));
  box-shadow:
    0 0 0 0 rgba(111, 166, 255, 0),
    0 12px 26px rgba(16, 22, 38, 0.5);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), filter 280ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 36px 2px rgba(111, 166, 255, 0.22),
    0 16px 30px rgba(11, 16, 28, 0.58);
  filter: brightness(1.04);
}

.btn.ghost {
  background: rgba(18, 24, 34, 0.82);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.btn.ghost:hover {
  box-shadow: 0 0 28px 1px rgba(157, 140, 255, 0.16);
}

.scene {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
}
.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.48) saturate(.7);
  z-index: -2;
}
.hero-vignette {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(540px 340px at 50% 36%, rgba(111, 166, 255, 0.18), transparent 65%),
    radial-gradient(740px 400px at 50% 12%, rgba(157, 140, 255, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(11,13,16,.7), rgba(11,13,16,.9));
  z-index: -1;
}

.hero-content {
  max-width: 940px;
  text-align: center;
  margin: 2rem auto 0;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,20,28,.7), rgba(14,18,25,.82));
  box-shadow: 0 0 64px rgba(111, 166, 255, 0.14);
}

.eyebrow {
  margin: 0;
  color: #b8c8e8;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 6.5vw, 5rem); line-height: 1.05; margin-top: .55rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.8rem); line-height: 1.12; margin-bottom: .65rem; max-width: 22ch; }
h3 { font-size: 1.08rem; }

.sub { color: var(--muted); max-width: 62ch; margin: .85rem auto 0; font-size: 1.04rem; }
p { color: #d6e0f2; margin: 0; max-width: 64ch; }
.emphasis { color: #edf3ff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.section { padding: 5rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.two-col.reverse { grid-template-columns: 1fr 1fr; }

#problem .two-col > div:first-child,
#solution .two-col > div:last-child,
#receive .two-col > div:first-child,
#fleet .two-col > div:last-child,
#service-area .two-col > div:first-child,
#pricing .container,
#booking .booking-wrap > div:first-child,
.price-card,
.step-card,
.report-mock,
main.container section {
  background: linear-gradient(180deg, rgba(18,22,31,.88), rgba(14,18,25,.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(.9rem, 2vw, 1.25rem);
}

.media-card {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -90px 120px rgba(11, 13, 16, 0.45);
}
.uncertainty { background-image: linear-gradient(120deg, rgba(10,12,16,.58), rgba(10,12,16,.2)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1400&auto=format&fit=crop'); }
.inspector { background-image: linear-gradient(120deg, rgba(10,12,16,.58), rgba(10,12,16,.2)), url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?q=80&w=1400&auto=format&fit=crop'); }
.fleet-bg { background-image: linear-gradient(120deg, rgba(10,12,16,.58), rgba(10,12,16,.2)), url('https://images.unsplash.com/photo-1551830820-330a71b99659?q=80&w=1400&auto=format&fit=crop'); }

.bullet-list { margin: .8rem 0 0; padding-left: 1rem; }
.bullet-list li { margin: .42rem 0; color: #cfdbf2; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: .95rem; }
.step-card { position: relative; overflow: hidden; }
.step-card::before,
.price-card::before,
.report-mock::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(111,166,255,.22), transparent 62%);
  pointer-events: none;
}
.step-card span { color: #b8ccf6; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
.step-card i { color: #bdd0f5; width: 20px; height: 20px; margin: .35rem 0; }

.report-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: .55rem; margin-bottom: .65rem; }
.report-grid { display: grid; gap: .58rem; }
.chip { border-radius: 999px; display: inline-flex; width: fit-content; padding: .34rem .7rem; font-size: .79rem; font-weight: 700; }
.good { background: rgba(68, 161, 112, 0.2); color: #a7f2cb; border: 1px solid rgba(113, 224, 168, 0.4); }
.warn { background: rgba(140, 120, 50, 0.2); color: #ffe7a2; border: 1px solid rgba(255, 221, 127, 0.35); }
.bad { background: rgba(152, 66, 78, 0.2); color: #ffc3ca; border: 1px solid rgba(255, 150, 164, 0.35); }
.line-item { background: rgba(255,255,255,0.02); border: 1px solid var(--line); border-radius: 11px; padding: .56rem; color: #d5e1f7; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 1rem; }
.price-card { position: relative; overflow: hidden; }
.price-card.featured { border-color: rgba(126, 170, 255, 0.58); }
.price-card.exotic { border-color: rgba(172, 160, 255, 0.42); }
.tag { display: inline-block; border-radius: 999px; padding: .24rem .56rem; font-size: .72rem; font-weight: 700; background: rgba(111,166,255,.18); border: 1px solid rgba(111,166,255,.32); color: #ddebff; margin-bottom: .5rem; }
.price { font-size: 2.05rem; font-weight: 800; color: #ecf2ff; margin: .45rem 0; }

.booking-wrap { display: grid; grid-template-columns: 1fr 1.12fr; gap: .95rem; }
.square-embed-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #0f131a; min-height: 620px; }
.square-embed-wrap iframe { width: 100%; height: 620px; border: 0; }

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.site-footer { border-top: 1px solid var(--line); padding: 1.1rem 0 1.4rem; background: rgba(10,12,16,.7); }
.footer-inner { display: grid; gap: .4rem; }
.legal { color: #90a0bf; font-size: .88rem; }

/* Reduced-motion-safe hover halos for cards */
.price-card, .step-card, .report-mock, .card-hover {
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.price-card:hover, .step-card:hover, .report-mock:hover, .card-hover:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 176, 255, 0.38);
  box-shadow: 0 0 28px rgba(111, 166, 255, 0.16), 0 16px 32px rgba(0,0,0,.34);
}

@media (max-width: 980px) {
  .topbar { width: 95vw; top: 8px; }
  .nav { padding: 10px 12px; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-actions .btn.ghost { display: none; }

  .section { padding: 3.5rem 0; }
  .two-col, .two-col.reverse { display: flex; flex-direction: column; gap: .75rem; }
  .two-col > * { width: 100%; }
  .steps, .pricing-grid, .booking-wrap { grid-template-columns: 1fr; }

  #problem .two-col > .media-card,
  #solution .two-col > .media-card,
  #receive .two-col > .report-mock,
  #fleet .two-col > .media-card,
  #service-area .two-col > .report-mock { order: 1; }

  #problem .two-col > div:first-child,
  #solution .two-col > div:last-child,
  #receive .two-col > div:first-child,
  #fleet .two-col > div:last-child,
  #service-area .two-col > div:first-child { order: 2; }

  .square-embed-wrap,
  .square-embed-wrap iframe { min-height: 520px; height: 520px; }
}

@media (max-width: 560px) {
  .container { width: 94vw; }
  .topbar { position: fixed; top: 8px; width: 94vw; }
  main { padding-top: 82px; }
  .section { padding: 3.1rem 0; }
  .hero-content { text-align: left; box-shadow: 0 0 36px rgba(111, 166, 255, 0.12); }
  h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  h2 { font-size: clamp(1.35rem, 7vw, 2rem); }
  .sub, p { font-size: .98rem; }
  .step-card, .price-card, .report-mock, main.container section { padding: .85rem; }
  .hero-actions { justify-content: stretch; gap: .55rem; }
  .hero-actions .btn,
  .pricing-grid .btn,
  .service-links .btn,
  .booking .hero-actions .btn { width: 100%; }
  .service-links { display: grid; gap: .55rem; margin-top: .7rem; }
  .media-card { min-height: 250px; }
  .square-embed-wrap,
  .square-embed-wrap iframe { min-height: 470px; height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
