/* ============================================================
   Grasshopper Go — grasshoppergo.com
   Grasshopper Glass design language: cream field, deep greens,
   gold accents, midnight ink, glassy cards, Sprig, grass.
   ============================================================ */

@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-var.woff2") format("woff2");
  font-weight: 600 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --cream: #F7F5EC;
  --cream-deep: #EFEDE0;
  --ink: #132019;
  --ink-soft: #1E2A2D;
  --deep: #176B42;
  --green: #29A45B;
  --belly: #3FAE6C;
  --gold: #E0A03A;
  --gold-soft: #F3E3C3;
  --slate: #5A6860;
  /* surfaces: glass floats over cream; solid holds long-form text */
  --glass: rgba(255, 255, 255, 0.72);
  --surface-1: rgba(255, 255, 255, 0.72);
  --surface-2: rgba(255, 255, 255, 0.94);
  --glass-brd: rgba(19, 32, 25, 0.08);
  /* on-dark text + fills */
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-2: rgba(255, 255, 255, 0.72);
  --on-dark-3: rgba(255, 255, 255, 0.5);
  --on-dark-fill: rgba(255, 255, 255, 0.14);
  --on-dark-brd: rgba(255, 255, 255, 0.2);
  /* type scale */
  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 15.5px;
  --fs-md: 16.5px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  /* device frame + layout measure */
  --frame: #132019;
  --container: 1220px;
  --gutter: clamp(20px, 5vw, 44px);
  --shadow-soft: 0 18px 44px rgba(19, 32, 25, 0.12);
  --shadow-lift: 0 30px 70px rgba(19, 32, 25, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --display: "Bricolage", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --head-h: 76px;
}

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

html {
  scroll-padding-top: calc(var(--head-h) + 12px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: calc(var(--head-h) + 12px); }

/* ---------- grass (inline SVG blades, tiled) ---------- */
.grass, .foot-grass {
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='44' viewBox='0 0 120 44'%3E%3Cg stroke-linecap='round'%3E%3Cpath d='M6 44 Q5 26 2 20' stroke='%23176B42' stroke-width='3' fill='none'/%3E%3Cpath d='M14 44 Q16 24 20 18' stroke='%2329A45B' stroke-width='3' fill='none'/%3E%3Cpath d='M24 44 Q23 30 21 26' stroke='%23176B42' stroke-width='2.5' fill='none'/%3E%3Cpath d='M33 44 Q35 20 39 14' stroke='%23176B42' stroke-width='3' fill='none'/%3E%3Cpath d='M44 44 Q43 28 40 23' stroke='%2329A45B' stroke-width='2.5' fill='none'/%3E%3Cpath d='M54 44 Q56 24 60 20' stroke='%23176B42' stroke-width='3' fill='none'/%3E%3Cpath d='M64 44 Q63 32 61 28' stroke='%233FAE6C' stroke-width='2.5' fill='none'/%3E%3Cpath d='M74 44 Q76 18 80 12' stroke='%23176B42' stroke-width='3' fill='none'/%3E%3Cpath d='M85 44 Q84 28 81 24' stroke='%2329A45B' stroke-width='2.5' fill='none'/%3E%3Cpath d='M95 44 Q97 26 101 22' stroke='%23176B42' stroke-width='3' fill='none'/%3E%3Cpath d='M106 44 Q105 30 103 27' stroke='%233FAE6C' stroke-width='2.5' fill='none'/%3E%3Cpath d='M115 44 Q117 22 119 18' stroke='%2329A45B' stroke-width='3' fill='none'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
}

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  height: var(--head-h);
  display: flex; align-items: center; gap: 28px;
  padding: 0 clamp(18px, 4vw, 44px);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--glass-brd);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 30px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: var(--fs-lg);
  letter-spacing: -0.02em;
}
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  font-size: var(--fs-base); font-weight: 600; color: var(--slate);
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-md);
  padding: 15px 26px; border-radius: 999px; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 10px 26px rgba(19,32,25,.28); }
.btn-ink:hover { box-shadow: 0 16px 34px rgba(19,32,25,.34); }
.btn-ghost {
  background: var(--glass); color: var(--deep);
  border: 1.5px solid rgba(23,107,66,.28);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(23,107,66,.5); }
.btn-green { background: var(--deep); color: #fff; box-shadow: 0 10px 26px rgba(23,107,66,.32); }
.btn-sm { padding: 11px 20px; font-size: var(--fs-base); }
.apple-glyph { width: 15px; height: 18px; margin-top: -2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(24px, 4vw, 60px);
  padding: clamp(40px, 7vh, 84px) var(--gutter) 110px;
  max-width: var(--container); margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em;
  color: var(--deep);
  background: var(--glass); border: 1px solid rgba(23,107,66,.22);
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(19,32,25,.07);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(41,164,91,.5);
}
@media (prefers-reduced-motion: no-preference) {
  .eyebrow-dot { animation: pulse-dot 2.4s ease-out infinite; }
  @keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(41,164,91,.45); }
    70% { box-shadow: 0 0 0 9px rgba(41,164,91,0); }
    100% { box-shadow: 0 0 0 0 rgba(41,164,91,0); }
  }
}
.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 24px 0 20px;
}
.hero-line { display: block; position: relative; }
.hero-line.accent { color: var(--deep); }
.hero-sprig {
  position: absolute; top: -34px; right: max(6%, 30px);
  width: 62px; height: 55px;
  transform: rotate(-6deg);
}
.hero-sprig svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .hero-sprig { animation: sprig-bob 3.6s ease-in-out infinite; }
  @keyframes sprig-bob {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-7px); }
  }
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--slate);
  max-width: 34em; margin-bottom: 26px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { list-style: none; display: grid; gap: 9px; }
.hero-trust li { font-size: var(--fs-sm); font-weight: 600; color: var(--slate); display: flex; align-items: center; gap: 10px; }
.hero-trust .tick { width: 22px; height: 22px; font-size: 12px; }

/* hero phone */
.hero-phone { position: relative; justify-self: center; }
.phone {
  width: min(360px, 78vw);
  border-radius: 54px;
  border: 10px solid var(--frame);
  background: var(--frame);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.phone img { width: 100%; height: auto; aspect-ratio: 603 / 1311; border-radius: 44px; }
.phone img { border-radius: 44px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-phone .phone { animation: phone-float 7s ease-in-out infinite; }
  @keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(.4deg); }
    50% { transform: translateY(-12px) rotate(-.4deg); }
  }
}
.hero-chip {
  position: absolute;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-sm);
  background: var(--glass); color: var(--ink);
  border: 1px solid rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  padding: 11px 17px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap;
}
.chip-live { top: 33%; left: -12%; }
.chip-paid { bottom: 2%; right: -9%; color: var(--deep); }
.pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse-dot 2s ease-out infinite; }
  .chip-live { animation: chip-drift 5.5s ease-in-out infinite; }
  .chip-paid { animation: chip-drift 6.5s ease-in-out infinite reverse; }
  @keyframes chip-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}
.grass-hero { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.hero::before {
  content: ""; position: absolute; z-index: -1;
  right: -6%; top: 4%; width: 58%; height: 88%;
  background: radial-gradient(48% 46% at 62% 42%, rgba(41,164,91,.14), rgba(41,164,91,0) 70%);
  pointer-events: none;
}

/* ---------- strips ---------- */
.strip {
  background: var(--ink); color: var(--on-dark);
  padding: 15px 0;
  overflow: hidden;
}
.strip-track { display: flex; width: max-content; gap: 44px; }
@media (prefers-reduced-motion: no-preference) {
  .strip-track { animation: strip-scroll 36s linear infinite; }
  @keyframes strip-scroll { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) {
  .strip { padding-inline: clamp(16px, 4vw, 40px); }
  .strip-track { width: auto; justify-content: center; }
  .strip-inner + .strip-inner { display: none; }
  .strip-inner { flex-wrap: wrap; justify-content: center; }
}
.strip-inner {
  flex: none;
  display: flex; align-items: center;
  gap: 44px; padding-right: 44px;
  font-family: var(--display); font-weight: 600; font-size: var(--fs-sm);
  white-space: nowrap;
}
.strip-inner i { font-style: normal; color: var(--gold); }
.strip-gold { background: var(--gold-soft); color: var(--ink); padding: 15px clamp(16px, 4vw, 40px); }
.strip-gold .strip-inner {
  font-size: var(--fs-md); white-space: normal; flex-wrap: wrap; justify-content: center;
  max-width: 1220px; margin: 0 auto; padding-right: 0; text-align: center;
}

/* ---------- sections ---------- */
.section {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(64px, 9vh, 110px) var(--gutter);
}
.section-tight { padding-top: clamp(48px, 7vh, 84px); }
.kicker {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--deep); margin-bottom: 14px;
}
.kicker-gold { color: var(--gold); }
.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04; letter-spacing: -0.025em;
  text-wrap: balance;
}
.accent-gold { color: var(--gold); }

/* ---------- how it works ---------- */
#how .steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 5vh, 56px);
}
.step {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  padding: 22px 22px 26px;
  box-shadow: 0 10px 30px rgba(19,32,25,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream-deep);
  height: 300px; /* fixed window; screenshots crop to their key UI, no fake bezel */
  border: 1px solid var(--glass-brd);
}
.phone-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 14%; /* skip the status bar, land on the real UI */
}
.shot-estimate img { object-position: 50% 37%; }  /* booking: the $ estimate card */
.shot-arrival img { object-position: 50% 23.5%; }
.shot-offers img { object-position: 50% 76%; }   /* activity: the Marcus live card */
.step-num {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--deep); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: var(--fs-md);
  margin-bottom: 12px;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: var(--fs-lg); margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: var(--fs-base); color: var(--slate); }

/* ---------- bands ---------- */
.band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(24px, 4vw, 64px);
  padding: clamp(70px, 10vh, 120px) clamp(20px, 6vw, 84px) 120px;
}
.band-ink { background: radial-gradient(120% 120% at 20% 0%, #1c3226 0%, var(--ink) 58%); color: #fff; }
.band-green { background: radial-gradient(120% 130% at 80% 0%, #1e8552 0%, var(--deep) 55%, #10502f 100%); color: #fff; }
.band .section-title { color: #fff; }
.band-sub { font-size: clamp(16px, 1.5vw, 18.5px); color: var(--on-dark-2); max-width: 36em; margin: 16px 0 24px; }
.band-list { list-style: none; display: grid; gap: 12px; }
.band-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: var(--fs-md); }
.tick {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--on-dark-fill); color: var(--gold);
  font-weight: 800; font-size: var(--fs-sm); flex-shrink: 0;
}
.tick-green { background: color-mix(in srgb, var(--deep) 12%, transparent); color: var(--deep); }
.tick-gold { background: rgba(224,160,58,.16); color: var(--gold); }
.band-shot { justify-self: center; }
.phone-md {
  width: min(310px, 72vw);
  border-radius: 48px; border: 9px solid var(--frame);
  overflow: hidden; background: var(--frame);
  box-shadow: var(--shadow-lift);
}
.phone-md img { width: 100%; height: auto; aspect-ratio: 603 / 1311; border-radius: 39px; }
.tilt-l { transform: rotate(-2.4deg); }
.tilt-r { transform: rotate(2.4deg); }
.grass-dark { position: absolute; left: 0; right: 0; bottom: 0; opacity: .5; }
.band-note { margin-top: 20px; font-size: var(--fs-sm); color: var(--on-dark-3); font-weight: 600; }


/* ---------- pricing ---------- */
.pricing-grid, .pros-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.pricing-copy p, .pros-copy > p { color: var(--slate); font-size: var(--fs-md); margin: 16px 0 20px; max-width: 34em; }
.pricing-copy strong, .pros-copy strong { color: var(--ink); }
.check-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: var(--fs-base); }

/* ---------- pros ---------- */
.pros-shot { justify-self: center; }

/* ---------- download ---------- */
.download { text-align: center; padding-bottom: clamp(70px, 10vh, 110px); }
.dl-sprig { width: 76px; height: 67px; margin: 0 auto 18px; }
.dl-sprig svg { width: 100%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .dl-sprig { animation: sprig-bob 3.2s ease-in-out infinite; }
}
.dl-sub { color: var(--slate); font-size: var(--fs-md); max-width: 36em; margin: 14px auto 26px; }
.dl-ctas { justify-content: center; }
.dl-fine { margin-top: 18px; font-size: var(--fs-xs); font-weight: 600; color: var(--slate); }

/* ---------- footer ---------- */
.site-foot {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark);
  padding-top: 44px;
}
.foot-grass { transform: scaleY(-1); position: absolute; top: 0; left: 0; right: 0; opacity: .35; }
.foot-inner {
  max-width: 1220px; margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 44px) 26px;
  display: grid; gap: 22px; justify-items: center; text-align: center;
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 800; font-size: var(--fs-lg); color: #fff;
}
.brand-mark-lg { width: 42px; height: 37px; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.foot-links a { font-size: var(--fs-sm); font-weight: 600; color: var(--on-dark-2); transition: color .15s ease; }
.foot-links a:hover { color: var(--gold); }
.foot-note { font-size: var(--fs-xs); color: var(--on-dark-3); }
.foot-wordmark {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(64px, 12.5vw, 190px);
  letter-spacing: -0.02em; line-height: .78;
  text-align: center; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.14);
  transform: translateY(18%);
  user-select: none;
}

/* ---------- scroll reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* .js gate: without JS the content is simply visible — no reveal, no loss */
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .tilt-l.is-in { transform: rotate(-2.4deg); }
  .js .tilt-r.is-in { transform: rotate(2.4deg); }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-bottom: 90px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-trust { justify-items: center; }
  .hero-trust li { display: flex; align-items: center; gap: 10px; }
  .hero-sprig { right: 4%; top: -30px; }
  .chip-live { left: -4%; }
  .chip-paid { right: -2%; }
  #how .steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .band { grid-template-columns: 1fr; text-align: left; padding-bottom: 96px; gap: 36px; }
  .pricing-grid, .pros-grid { grid-template-columns: 1fr; }
  .pros-shot { order: 2; }
}
@media (max-width: 560px) {
  .site-head { gap: 10px; padding-inline: 16px; }
  .brand-name { font-size: var(--fs-md); }
  .site-head .btn-sm { padding: 10px 16px; font-size: var(--fs-sm); }
  .hero-title { font-size: clamp(44px, 13vw, 60px); }
  .hero-chip { font-size: var(--fs-xs); padding: 9px 13px; }
  .chip-live { left: 0; top: 30%; }
  .chip-paid { right: 0; bottom: 1%; }
  .btn { font-size: var(--fs-base); padding: 14px 22px; }
  .foot-wordmark { -webkit-text-stroke-width: 1px; }
}

/* ============================================================
   LEGAL / POLICY PAGES — same design system as the landing
   ============================================================ */
.legal-main {
  max-width: 820px; margin: 0 auto;
  padding: clamp(36px, 6vh, 64px) clamp(20px, 5vw, 44px) clamp(56px, 8vh, 88px);
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-sm);
  color: var(--deep); margin-bottom: 22px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--glass); border: 1px solid rgba(23,107,66,.2);
  transition: transform .16s ease, border-color .16s ease;
}
.legal-back:hover { transform: translateX(-3px); border-color: rgba(23,107,66,.45); }
.legal-card {
  background: var(--surface-2);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 4vw, 46px);
}
.legal-card h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 14px; text-wrap: balance;
}
.legal-card h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(19px, 2.1vw, 23px);
  letter-spacing: -0.01em;
  margin: 34px 0 10px; padding-top: 22px;
  border-top: 1px solid var(--glass-brd);
}
.legal-card h2:first-of-type { border-top: none; padding-top: 0; margin-top: 26px; }
.legal-card h3 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-md);
  margin: 22px 0 8px;
}
.legal-card p, .legal-card li { color: var(--slate); font-size: var(--fs-base); }
.legal-card p { margin-bottom: 12px; }
.legal-card ul, .legal-card ol { margin: 0 0 14px 20px; display: grid; gap: 7px; }
.legal-card strong { color: var(--ink); }
.legal-card a { color: var(--deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-card a:hover { color: var(--green); }
.legal-card section { scroll-margin-top: calc(var(--head-h) + 12px); }
.legal-meta {
  font-size: var(--fs-xs); font-weight: 600; color: var(--slate);
  padding: 12px 16px; border-radius: 14px;
  background: var(--cream-deep); display: inline-block;
}
.legal-card table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: var(--fs-sm); }
.legal-card th, .legal-card td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--glass-brd); }
.legal-card th { font-family: var(--display); font-weight: 700; color: var(--ink); }
.legal-card td { color: var(--slate); }
.legal-card .cols { display: grid; gap: 18px; }
@media (min-width: 720px) { .legal-card .cols { grid-template-columns: 1fr 1fr; } }

.legal-card ol.steps, .legal-card ol { list-style: decimal; display: block; margin-left: 22px; }
.legal-card ol > li { margin-bottom: 7px; }

/* ---------- device pair (tracking band): two real phones, overlapped ---------- */
.device-pair { position: relative; display: block; width: min(340px, 78vw); margin-block: 8px; }
.device-pair .phone-md { width: 100%; }
.device-pair .pair-back { transform: rotate(-3deg) translateX(-9%); }
.device-pair .pair-front {
  position: absolute; right: -14%; bottom: -7%;
  width: 66%;
  transform: rotate(4deg);
  box-shadow: 0 34px 74px rgba(19,32,25,.48);
}
@media (max-width: 1020px) {
  .device-pair { width: min(320px, 70vw); margin-inline: auto; }
  .device-pair .pair-front { right: -12%; bottom: -6%; width: 62%; }
}
@media (max-width: 560px) {
  .device-pair { width: min(260px, 62vw); margin: 12px auto 0; }
  .device-pair .pair-back { transform: rotate(-2.5deg) translateX(-8%); }
  .device-pair .pair-front { width: 66%; right: -14%; bottom: -5%; }
}

/* ---------- focus: one ring for every interactive element ---------- */
a:focus-visible, button:focus-visible, .legal-back:focus-visible, .site-nav a:focus-visible, .foot-links a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}
/* centered chromeless pages (404, stripe interstitials) */
.page-center { min-height: 78vh; display: grid; place-content: center; text-align: center; }

/* ---------- pricing: real booking screen in a flat crop window ---------- */
.pricing-shot {
  width: 100%; max-width: 430px; height: 420px;
  justify-self: center;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-brd);
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}
.pricing-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
@media (max-width: 1020px) { .pricing-shot { max-width: 400px; height: 380px; } }
