/* Dropin marketing site — one stylesheet, no build step, no dependencies.
   Design system from the Dropin brand design: orange on near-black, a deep green
   secondary, cream tints, Sora over Inter.

   Deliberately a single light theme with dark sections, as the brand design is —
   so every surface paints its own background and no colour depends on the host. */

:root {
  /* brand */
  --orange: #ff5a1f;
  --orange-dark: #c94a1a;
  --orange-tint: #ffe9dd;
  --green: #1f6b3f;
  --green-dark: #175633;
  --green-light: #2f8a54;
  --dark: #121212;
  --dark-2: #1c1c1c;
  --cream: #f6f5f2;

  /* ink & lines */
  --ink: #1f1f1f;
  --ink-2: #444;
  --muted: #666;
  --muted-2: #777;
  --faint: #999;
  --line: #eee;
  --line-2: #e2e0dc;
  --bg: #ffffff;

  --radius: 14px;
  --max: 1080px;
  --display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.6vw, 2.75rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.lead { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 640px) { .wrap { padding: 0 22px; } }

/* ---------- brand mark ---------- */
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo span { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
/* the mark is 28px in the markup; the size belongs here so every page follows */
.logo svg { flex: none; width: 38px; height: 38px; }

/* the footer signs off rather than announces, so it stays a little quieter */
.site-footer .logo span { font-size: 1.15rem; }
.site-footer .logo svg { width: 32px; height: 32px; }

@media (max-width: 480px) {
  .logo span { font-size: 1.15rem; }
  .logo svg { width: 32px; height: 32px; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 24px; padding: 16px 40px; max-width: 1280px; margin: 0 auto; }
.nav-spacer { flex: 1; }
.nav-links { display: flex; align-items: center; gap: 22px; }
/* :not(.btn) so the call-to-action keeps its own white-on-orange colours —
   `.nav-links a` would otherwise out-specify `.btn-primary`. */
.nav-links a:not(.btn) { font-size: 0.875rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.nav-links a:not(.btn):hover { color: var(--orange); }
.nav-links a.active:not(.btn) { color: var(--orange); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  width: 42px; height: 38px; font-size: 1.1rem; color: var(--ink); cursor: pointer;
}

@media (max-width: 860px) {
  .nav { padding: 14px 22px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 22px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 11px 0; }
  .nav-links .btn { margin-top: 10px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 8px; border: 1px solid transparent;
  font-family: var(--body); font-size: 0.94rem; font-weight: 700; white-space: nowrap; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* text link with an arrow, as used beside the hero button */
.link-arrow { font-size: 0.875rem; font-weight: 600; }

/* ---------- sections ---------- */
section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.tinted { background: var(--cream); }
.eyebrow {
  display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.eyebrow::after {
  content: ""; display: block; width: 26px; height: 3px; border-radius: 2px;
  background: currentColor; margin-top: 8px; opacity: 0.55;
}
.section-head .eyebrow::after { margin-left: auto; margin-right: auto; }
.eyebrow-green { color: var(--green); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head p { font-size: 0.94rem; color: var(--muted); margin: 0; }

@media (max-width: 640px) { section { padding: 60px 0; } }

/* ---------- hero ---------- */
.hero { background: var(--dark); position: relative; overflow: hidden; padding: 80px 0; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Heaviest over the copy on the left, lightest over the photograph on the right. */
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18, 18, 18, 0.92) 30%, rgba(18, 18, 18, 0.5) 65%, rgba(18, 18, 18, 0.25) 100%);
}
.hero::before {
  content: ""; position: absolute; left: -120px; bottom: -120px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(31, 107, 63, 0.35), transparent 70%);
  z-index: 1;
}
.hero-shot {
  width: 100%; max-width: 480px; display: block; margin: 0 auto;
  border-radius: 20px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  object-fit: cover; aspect-ratio: 4 / 3;
}
.hero .wrap { position: relative; z-index: 1; max-width: 1180px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 2.75rem); margin-bottom: 18px; }
.hero p { color: #ccc; font-size: 1rem; line-height: 1.6; max-width: 480px; margin-bottom: 28px; }
.hero .eyebrow { color: var(--green-light); }
.hero-note { font-size: 0.75rem; color: #888; margin: 22px 0 0; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* till mock — pure CSS, nothing to ship */
.device { max-width: 420px; margin: 0 auto; border-radius: 32px; background: #000; padding: 14px 14px 22px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }
.device-screen { background: var(--dark-2); border-radius: 18px; padding: 16px; }
.device-head { display: flex; justify-content: space-between; align-items: center; padding: 0 4px 12px; }
.device-head span { color: #eee; font-size: 0.8rem; font-weight: 600; }
.device-head b { color: var(--green-light); font-size: 0.8rem; font-weight: 700; }
.device-search { background: #2b2b2b; border-radius: 8px; height: 38px; display: flex; align-items: center; padding: 0 12px; color: #888; font-size: 0.8rem; margin-bottom: 10px; }
.device-row { display: flex; justify-content: space-between; padding: 6px 4px; color: #ddd; font-size: 0.8rem; }
.device-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.device-tile { height: 36px; display: grid; place-items: center; background: #333; color: #ddd; border-radius: 7px; font-size: 0.72rem; font-weight: 700; }
.device-tile.on { background: var(--orange); color: #fff; }
.device-tile.go { background: var(--green); color: #fff; }


/* ---------- video ---------- */
/* Clips are muted, looping and decorative: they carry no information the copy does not,
   so they are hidden from screen readers and stopped for anyone who asks for less motion. */
.video-card {
  max-width: 520px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  background: #000; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); line-height: 0;
}
.video-card video { width: 100%; height: auto; display: block; }

.video-band { position: relative; overflow: hidden; background: var(--dark); }
.video-band video,
.video-band img.video-bg,
.video-band img.band-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42;
}
.video-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.55), rgba(18, 18, 18, 0.8));
}
.video-band > .wrap { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .video-card video, .video-band video { animation: none; }
}


/* ---------- photographic page head ---------- */
.page-head.on-photo { position: relative; overflow: hidden; border-bottom: 0; background: var(--dark); padding: 84px 0 76px; }
.page-head.on-photo img.head-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-head.on-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18, 18, 18, 0.9) 25%, rgba(18, 18, 18, 0.6) 70%, rgba(18, 18, 18, 0.35) 100%);
}
.page-head.on-photo > .wrap { position: relative; z-index: 2; }
.page-head.on-photo h1 { color: #fff; }
.page-head.on-photo p { color: rgba(255, 255, 255, 0.82); }

/* ---------- a strip of the park ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.strip img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; display: block; }
@media (max-width: 900px) { .strip { grid-template-columns: repeat(2, 1fr); } .strip img { height: 150px; } }

/* ---------- a section set on a photograph ---------- */
.on-dark { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.on-dark > img.section-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.on-dark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(18, 18, 18, 0.94) 20%, rgba(18, 18, 18, 0.72) 60%, rgba(18, 18, 18, 0.5) 100%);
}
.on-dark > .wrap { position: relative; z-index: 2; }
.on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .lead, .on-dark p { color: rgba(255, 255, 255, 0.82); }
.on-dark .feature-list li { color: rgba(255, 255, 255, 0.9); }

/* a line worth pulling out of the copy */
.pull {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.35; letter-spacing: -0.01em; max-width: 22ch; margin: 0;
}
.pull span { color: var(--orange); }

/* ---------- photography ---------- */
.photo { margin: 0; }
.photo img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.photo figcaption { margin-top: 12px; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ---------- the demo film ---------- */
.film { width: 100%; max-width: 820px; margin: 0 auto; display: block; border-radius: 16px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18); }

/* ---------- stats bar ---------- */
.stats { background: var(--cream); padding: 36px 40px; display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; text-align: center; }
.stats > div { position: relative; padding: 0 18px; }
.stats > div + div::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line-2); }
.stats b { display: block; font-family: var(--display); font-size: 1.75rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }
.stats span { font-size: 0.75rem; color: var(--muted-2); }
@media (max-width: 720px) { .stats { gap: 32px 40px; } }

/* ---------- cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
/* a short rule of brand across the top corner, so a grid of cards has a rhythm to it */
.card::before {
  content: ""; position: absolute; top: -1px; left: 26px; width: 34px; height: 3px;
  background: var(--orange); border-radius: 0 0 3px 3px; opacity: 0.9;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09); border-color: var(--line-2); }
.card.plain::before { display: none; }
@media (prefers-reduced-motion: reduce) { .card, .card:hover { transform: none; transition: none; } }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; font-family: var(--body); }
.card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin: 0; }
.card p + p { margin-top: 0.8em; }

/* numbered chip — used only where the content really is a short, ordered set */
.icon {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange); margin-bottom: 16px;
}
.icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.icon.green { background: rgba(31, 107, 63, 0.1); color: var(--green); }

.card-num {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  background: var(--orange-tint); color: var(--orange);
  font-family: var(--display); font-weight: 800; font-size: 0.94rem; margin-bottom: 16px;
}

/* ---------- dotted lists ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; gap: 10px; font-size: 0.875rem; color: #333; line-height: 1.55; }
.feature-list li::before { content: "·"; color: var(--orange); font-weight: 700; flex: none; }
.list-green li::before { color: var(--green); }

/* ---------- outcomes strip ---------- */
.outcomes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); }
.outcome { padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background 0.16s ease; }
.outcome:hover { background: var(--cream); }
.outcome b { display: block; font-family: var(--display); font-size: 2.15rem; font-weight: 800; color: var(--green); letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.outcome h3 { font-family: var(--body); font-size: 0.94rem; font-weight: 700; margin-bottom: 6px; }
.outcome p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--orange); }
.price-card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.price-tag { font-family: var(--display); font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; margin: 14px 0 2px; }
.price-tag .per { font-family: var(--body); font-size: 0.9rem; font-weight: 600; color: var(--muted-2); }
.price-card .feature-list { margin: 20px 0 24px; }
.price-card .btn { margin-top: auto; }
.badge {
  position: absolute; top: -12px; right: 22px; background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

/* ---------- free-trial strip ---------- */
.trial-banner {
  background: var(--orange-tint); border-radius: var(--radius); padding: 20px 26px;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 14px;
  text-align: center; margin-bottom: 28px;
}
.trial-banner b { font-family: var(--display); font-size: 1.05rem; font-weight: 800; color: var(--orange-dark); }
.trial-banner span { font-size: 0.9rem; color: var(--ink-2); }
.trial-line {
  display: inline-block; margin: 8px 0 0; padding: 4px 10px; border-radius: 999px;
  background: var(--orange-tint); color: var(--orange-dark);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.01em;
}


/* ---------- showcase blocks (passes, waivers, integrations) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showcase h2 { font-size: clamp(1.7rem, 3.4vw, 2.2rem); }
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; gap: 36px; } }

/* an Apple Wallet style pass */
.pass {
  max-width: 320px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  background: var(--dark); color: #fff; box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.pass-top { padding: 16px 18px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.pass-top b { font-family: var(--display); font-size: 0.9rem; }
.pass-body { padding: 18px; }
.pass-row { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.pass-label { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.pass-value { font-size: 0.92rem; font-weight: 700; }
.pass-qr {
  margin-top: 4px; background: #fff; border-radius: 10px; padding: 12px;
  display: grid; place-items: center;
}
.pass-qr svg { display: block; }
.pass-strip { height: 6px; background: var(--orange); }

/* a signed waiver */
.waiver { max-width: 340px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.waiver-head { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.waiver-sig { font-family: "Segoe Script", "Bradley Hand", cursive; font-size: 1.7rem; color: var(--ink); border-bottom: 1px solid var(--line-2); padding-bottom: 10px; }
.waiver-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 0.78rem; color: var(--muted); }
.waiver-ok { color: var(--green); font-weight: 700; }

/* accounting providers */
.providers { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.provider {
  border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 18px;
  font-family: var(--display); font-weight: 800; font-size: 0.95rem; background: #fff;
}
.tick-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; }
.tick-list li::before {
  content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: grid; place-items: center; margin-top: 1px;
}


/* ---------- the plan a park usually lands on, inverted so it leads ---------- */
.price-card.featured {
  background: var(--dark); border-color: var(--dark); color: #fff;
  box-shadow: 0 24px 50px rgba(18, 18, 18, 0.28);
}
.price-card.featured::before { background: var(--orange); opacity: 1; }
.price-card.featured h3, .price-card.featured .price-tag { color: #fff; }
.price-card.featured .muted, .price-card.featured .price-tag .per { color: rgba(255, 255, 255, 0.6); }
.price-card.featured .feature-list li { color: rgba(255, 255, 255, 0.88); }
.price-card.featured .trial-line { background: rgba(255, 90, 31, 0.18); color: #ffb492; }
.price-card.featured:hover { transform: translateY(-3px); box-shadow: 0 30px 60px rgba(18, 18, 18, 0.34); }

/* the free-trial ribbon does more work than a sentence would */
.trial-banner {
  background: var(--dark); color: #fff; border-radius: var(--radius); padding: 22px 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px;
  text-align: center; margin-bottom: 30px; position: relative; overflow: hidden;
}
.trial-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 120px at 15% 0%, rgba(255, 90, 31, 0.45), transparent 70%);
}
.trial-banner b, .trial-banner span { position: relative; z-index: 1; }
.trial-banner b { font-family: var(--display); font-size: 1.15rem; font-weight: 800; color: #fff; }
.trial-banner span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); }

/* questions read better in two columns with the question marked */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; } }
.faq .card { padding: 22px 24px; }
.faq h3 { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; margin-bottom: 8px; }
.faq h3::before {
  content: "Q"; flex: none; width: 22px; height: 22px; border-radius: 6px;
  background: var(--orange-tint); color: var(--orange);
  font-family: var(--display); font-size: 0.7rem; font-weight: 800;
  display: grid; place-items: center; margin-top: 1px;
}

/* the column a reader is being pointed at */
table th.spotlight, table td.spotlight { background: rgba(255, 90, 31, 0.06); }
table th.spotlight { color: var(--orange); }

/* ---------- numbered steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative; padding: 14px 0 14px 52px; font-size: 0.94rem;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 12px;
  width: 32px; height: 32px; border-radius: 9px; background: var(--orange); color: #fff;
  font-family: var(--display); font-size: 0.85rem; font-weight: 800; display: grid; place-items: center;
}
.on-dark .steps li { border-color: rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.88); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 0.875rem; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
th { background: var(--cream); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }
td.yes { color: var(--green); font-weight: 700; }

/* ---------- quote ---------- */
.quote { border-left: 3px solid var(--orange); padding: 4px 0 4px 20px; margin: 0; font-size: 1rem; color: var(--ink-2); line-height: 1.6; }
.quote footer { margin-top: 10px; font-size: 0.82rem; color: var(--muted-2); }

/* ---------- hardware panel ---------- */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); }
.panel-mark { width: 56px; height: 56px; border-radius: 50%; background: var(--dark); display: grid; place-items: center; }
.panel b { font-size: 0.94rem; }
.panel p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ---------- forms ---------- */
.field { margin-bottom: 16px; }
label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-2); }
input, select, textarea {
  width: 100%; font-family: var(--body); font-size: 0.94rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line-2); border-radius: 8px; padding: 12px 14px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.checkline input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--orange); }
.checkline label { font-weight: 500; margin: 0; }
.form-note { font-size: 0.8rem; color: var(--muted-2); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; font-size: 1.75rem; margin-bottom: 14px; }
.cta-band p { color: #ccc; font-size: 0.94rem; max-width: 52ch; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- page head ---------- */
.page-head { border-bottom: 1px solid var(--line); padding: 64px 0 52px; }
.page-head h1 { margin-bottom: 14px; }
.page-head p { font-size: 0.98rem; color: var(--muted); max-width: 60ch; margin: 0; }

/* ---------- legal pages ---------- */
.legal { max-width: 720px; }
.legal h2 { font-size: 1.2rem; margin-top: 2.2em; }
.legal h3 { font-family: var(--body); font-size: 0.98rem; font-weight: 700; margin-top: 1.7em; }
.legal p, .legal li { font-size: 0.92rem; color: var(--ink-2); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.updated { font-size: 0.85rem; color: var(--muted-2); border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.toc { background: var(--cream); border-radius: var(--radius); padding: 20px 24px; margin: 26px 0; font-size: 0.9rem; }
.toc ol { margin: 8px 0 0; padding-left: 20px; }
.toc li { margin-bottom: 4px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0 32px; text-align: center; }
.site-footer .logo { justify-content: center; margin-bottom: 16px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-bottom: 18px; }
.footer-links a { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.footer-links a:hover { color: var(--orange); }
.site-footer small { display: block; font-size: 0.75rem; color: var(--faint); line-height: 1.7; }

/* placeholder markers so nothing ships to production unnoticed */
.placeholder { border-bottom: 2px dotted var(--orange); }
