/* ProShine — one-page marketing site.
   Palette sampled straight out of the supplied logo: black, #909090 grey,
   #D0FF00 lime. The artwork is cartoon line-art, so the UI leans on flat
   fills, heavy black outlines and one loud accent rather than gradients. */

:root {
  --ink: #0a0a0b;
  --ink-2: #131316;
  --ink-3: #1c1c21;
  --line: #2a2a31;
  --grey: #909090;
  --muted: #a6a6ad;
  --paper: #f4f4f2;
  --paper-2: #e8e8e4;
  --lime: #d0ff00;
  --lime-deep: #a8cf00;
  --yellow: #f5c518;

  --text: #ffffff;
  --text-dim: #b9b9c0;

  --wrap: 1180px;
  --gutter: 20px;
  --r: 14px;
  --r-lg: 22px;

  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 18px 44px rgba(0, 0, 0, .45);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
/* Anchor targets sit under a sticky header — offset them or the heading
   lands behind it on every in-page jump. */
:target, [id] { scroll-margin-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.4rem; letter-spacing: .01em; }
p { margin: 0 0 1em; }
a { color: var(--lime); }

.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--lime); color: #000; padding: 10px 16px;
  border-radius: 0 0 10px 10px; font-weight: 700; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 0; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .95rem;
  color: var(--lime);
  margin: 0 0 .7em;
}

.icon { width: 1.5em; height: 1.5em; flex: none; }

/* ---------- Preview bar ---------- */
.preview-bar {
  background: repeating-linear-gradient(135deg, #1a1a12 0 14px, #15150f 14px 28px);
  border-bottom: 1px solid #3b3b22;
  color: #e2e2c8;
  font-size: .82rem;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .01em;
}
.preview-bar strong { color: var(--lime); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 11, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { background: rgba(10, 10, 11, .95); border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 74px; }

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; }
.nav__menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__menu a {
  text-decoration: none; font-weight: 600; font-size: .95rem;
  position: relative;
}
/* Scoped away from .btn — `.nav__menu a` (0,2,1) outranks `.btn` (0,1,0), so
   anything declared unscoped here beats the button's own styling. It was
   putting white text on the lime pill and collapsing the pill onto its label. */
.nav__menu a:not(.btn) { color: var(--text); padding: 6px 0; }
.nav__menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--lime); transition: right .28s var(--ease);
}
.nav__menu a:not(.btn):hover::after { right: 0; }

.nav__toggle {
  display: none; background: none; border: 0; color: var(--text);
  padding: 10px; cursor: pointer;
}
.nav__bars { display: grid; gap: 5px; width: 26px; }
.nav__bars i { display: block; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .26s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] .nav__bars i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars i:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bars i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--lime); color: #000;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; cursor: pointer;
  padding: 13px 26px; border: 2px solid var(--lime); border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: #fff; border-color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(208, 255, 0, .22); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 9px 18px; font-size: .95rem; }
.btn--lg { padding: 16px 34px; font-size: 1.2rem; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(86svh, 820px);
  display: flex; align-items: flex-end;
  padding: 120px 0 72px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero__gl { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; display: block; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(10, 10, 11, .88) 26%, rgba(10, 10, 11, .35) 56%, rgba(10, 10, 11, .55) 100%),
    linear-gradient(to right, rgba(10, 10, 11, .9) 0%, rgba(10, 10, 11, .35) 52%, rgba(10, 10, 11, 0) 78%);
}
/* Van cut-out, parked in the bottom-right of the hero. It sits above the
   scrim so the livery stays readable, and drives in on load. */
.hero__van {
  position: absolute;
  right: clamp(-70px, -3vw, -14px);
  bottom: 0;
  width: clamp(400px, 48vw, 760px);
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .55));
  animation: van-in 1.15s var(--ease) .15s both;
}
.hero__van img { width: 100%; }
@keyframes van-in {
  from { opacity: 0; transform: translateX(11%) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  margin: 0 0 .28em;
  text-shadow: 0 6px 34px rgba(0, 0, 0, .6);
}
.hero__title em { font-style: italic; color: var(--lime); }
.hero__lead { max-width: 46ch; font-size: clamp(1.05rem, 1.9vw, 1.24rem); color: #e6e6ea; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.8em 0 1.4em; }
.hero__strap {
  display: inline-flex; align-items: center; gap: .55em; margin: 0;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .12em; color: var(--lime); font-size: 1.05rem;
}
.hero__hint {
  position: absolute; right: 24px; bottom: 22px; margin: 0;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  animation: hintfade 4.5s ease-in-out infinite;
}
@keyframes hintfade { 0%, 100% { opacity: .25; } 50% { opacity: .85; } }
@media (hover: none) { .hero__hint { content: none; visibility: hidden; } }

/* ---------- Trust strip ---------- */
.strip { background: var(--lime); color: #000; }
.strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 20px 0;
}
.strip__item { display: flex; align-items: center; gap: 12px; font-size: .95rem; line-height: 1.35; }
.strip__item strong { font-weight: 700; }
.strip__item .icon { width: 1.75em; height: 1.75em; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section__head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 58px); }
.section__lead { color: var(--text-dim); font-size: 1.1rem; }

/* ---------- Services ---------- */
.services {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.service {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.service::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--lime); border-radius: 0 0 var(--r-lg) var(--r-lg);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service:hover { transform: translateY(-5px); border-color: #3d3d47; background: var(--ink-3); }
.service:hover::after { transform: scaleX(1); }
.service--feature { background: var(--ink-3); border-color: #3a3a44; }
.service--feature .service__icon { background: var(--lime); color: #000; border-color: var(--lime); }

.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 18px;
  border: 2px solid var(--line); border-radius: 15px;
  background: #000; color: var(--lime);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service__icon .icon { width: 28px; height: 28px; }
.service__title { font-size: 1.55rem; margin-bottom: .12em; }
.service__lead { color: var(--lime); font-weight: 600; font-size: .9rem; margin-bottom: .9em; }
.service__body { color: var(--text-dim); font-size: .97rem; }
.service__points { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.service__points li { display: flex; gap: 9px; align-items: flex-start; font-size: .89rem; color: #cfcfd6; }
.service__points .icon { width: 1.05em; height: 1.05em; margin-top: .3em; color: var(--lime); stroke-width: 3.2; }

/* ---------- Showcase ---------- */
.showcase { background: var(--ink-2); border-block: 1px solid var(--line); padding: clamp(60px, 8vw, 104px) 0; }
.showcase__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.showcase__media {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.showcase__media img { width: 100%; }
.showcase__copy p { color: var(--text-dim); }
.ticks { list-style: none; margin: 0 0 1.6em; padding: 0; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; color: #d8d8de; }
.ticks .icon { width: 1.2em; height: 1.2em; margin-top: .28em; color: var(--lime); stroke-width: 3.2; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}
.step { background: var(--ink); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; }
.step__n {
  display: block; font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 2.8rem; line-height: 1; color: var(--lime); margin-bottom: .18em;
}
.step h3 { font-size: 1.25rem; }
.step p { color: var(--text-dim); font-size: .95rem; margin: 0; }

/* ---------- Quote ---------- */
.quote { position: relative; padding: clamp(64px, 9vw, 112px) 0; overflow: hidden; isolation: isolate; }
.quote__gl { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; display: block; }
.quote__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 5vw, 62px); align-items: start; }
.quote__lead { color: var(--text-dim); font-size: 1.08rem; }
.quote__contact { list-style: none; margin: 1.8em 0 0; padding: 0; display: grid; gap: 14px; }
.quote__contact li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.quote__contact .icon { color: var(--lime); }
.quote__contact a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(208, 255, 0, .5); }
.quote__contact a:hover { color: var(--lime); }

/* ---------- Form ---------- */
.form {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; min-width: 0; border: 0; padding: 0; margin: 0; }
.field--wide { grid-column: 1 / -1; }
.field label, .field legend {
  font-size: .86rem; font-weight: 600; letter-spacing: .02em; color: #d2d2d8; padding: 0;
}
.field input, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: #fff;
  background: #000; border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(208, 255, 0, .16);
}
.field textarea { resize: vertical; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; cursor: pointer;
  font-size: .84rem; line-height: 1;
  padding: 9px 14px; border-radius: 999px;
  background: #000; border: 1px solid var(--line); color: #c8c8cf;
  transition: all .2s var(--ease);
}
.chip span:hover { border-color: #4a4a55; color: #fff; }
.chip input:checked + span { background: var(--lime); border-color: var(--lime); color: #000; font-weight: 600; }
.chip input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 2px; }

.form__submit { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 4px; }
.form__note { margin: 0; font-size: .84rem; color: var(--muted); }
.form__note.is-error { color: #ff8f8f; }
.form__note.is-ok { color: var(--lime); }

/* ---------- Footer ---------- */
.site-footer { background: #000; border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 0; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  padding-bottom: 42px;
}
.site-footer__brand img { height: 74px; width: auto; margin-bottom: 14px; }
.site-footer__strap {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .12em; color: var(--lime);
  margin: 0 0 .5em;
}
.site-footer__blurb { color: var(--muted); font-size: .93rem; max-width: 34ch; }
.site-footer__col h2 { font-size: 1.1rem; letter-spacing: .1em; margin-bottom: .9em; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer__col a { color: var(--text-dim); text-decoration: none; font-size: .93rem; }
.site-footer__col a:hover { color: var(--lime); }
.site-footer__contact li { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: .93rem; }
.site-footer__contact .icon { width: 1.15em; height: 1.15em; color: var(--lime); }
.site-footer__legal {
  border-top: 1px solid var(--line); padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between;
}
.site-footer__legal p { margin: 0; font-size: .84rem; color: #76767e; }
.site-footer__note { color: #9a9a5e !important; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 1000px) {
  /* Keep the copy clear of the van. */
  .hero__inner > * { max-width: 620px; }
  .hero__title { max-width: none; }
}

@media (max-width: 1000px) {
  .showcase__inner, .quote__inner { grid-template-columns: 1fr; }
  /* Below the two-column breakpoint the van stops being a background prop
     and becomes the last item in the stack. Flowing it rather than anchoring
     it to the hero's bottom edge is what keeps it off the buttons. */
  .hero {
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 0;
  }
  .hero__inner { order: 1; }
  .hero__van {
    order: 2; position: relative;
    right: auto; bottom: auto;
    width: 116%; margin: 30px -8% -1px auto;
    animation-name: van-in-flow;
  }
  @keyframes van-in-flow {
    from { opacity: 0; transform: translateX(9%); }
    to   { opacity: 1; transform: none; }
  }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 auto; top: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8, 8, 9, .98);
    backdrop-filter: blur(18px);
    padding: 96px 22px 32px;
    transform: translateY(-101%);
    transition: transform .34s var(--ease);
    height: 100svh;
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border: 0; padding-top: 22px; }
  .nav__menu a:not(.btn) { display: block; padding: 17px 0; font-size: 1.3rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; }
  .nav__toggle { position: relative; z-index: 2; }

  .hero { min-height: auto; padding: 84px 0 0; }
  .hero__media img { object-position: 70% 40%; }
  .hero__van { width: 128%; margin: 40px -14% -1px auto; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__hint { display: none; }

  .strip__inner { grid-template-columns: 1fr; gap: 12px; }
  .form { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

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

/* ---------- Reviews ---------- */
.reviews__head { max-width: 70ch; }

.rating { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 4px; }
.rating__stars { display: inline-flex; gap: 3px; color: var(--lime); }
.rating__stars .icon { width: 1.5em; height: 1.5em; }
.rating__score {
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  line-height: 1; color: #fff;
}
.rating__count { color: var(--text-dim); font-size: .95rem; }
.rating__count--todo { color: #9a9a5e; font-style: italic; }
.reviews__link { margin: 14px 0 0; }
.reviews__link a { font-weight: 600; }

.reviews__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* Pin to three so six reviews make two even rows rather than 4 + 2. */
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px;
}
.review--placeholder { border-style: dashed; border-color: #4a4a32; background: #14140f; }
.review__badge {
  align-self: flex-start; margin: 0;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #0a0a0b; background: #9a9a5e; padding: 4px 10px; border-radius: 999px;
}
.review__stars { display: inline-flex; gap: 2px; color: var(--lime); }
.review__stars .icon { width: 1.15em; height: 1.15em; }
.review__body { margin: 0; flex: 1; }
.review__body p { margin: 0; color: #d6d6dc; font-size: .98rem; }
.review__body p::before { content: "\201C"; }
.review__body p::after  { content: "\201D"; }
.review__by {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.review__who { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 9px; min-width: 0; }
.review__author { font-weight: 600; font-size: .94rem; }
.review__date { color: var(--muted); font-size: .84rem; }
.review__source {
  flex: none; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}

.review__title {
  margin: 0; font-weight: 700; font-size: 1.02rem; color: #fff;
}
/* Marks a quote Google itself truncated, so the excerpt is visibly an
   excerpt rather than a sentence we chose to end there. */
.review__more { color: var(--muted); padding-left: .22em; }
