/* =========================================================================
   TTPRadar design system. One stylesheet, every page. Sky + teal accents
   on a premium system font stack (no web fonts loaded), so type renders natively
   and instantly. Mobile-first, light touch on animation.
   ========================================================================= */

:root {
  --primary: #0EA5E9; --primary-dark: #0284C7; --teal: #14B8A6;
  --ink: #0F172A;
  --slate-50:#F8FAFC; --slate-100:#F1F5F9; --slate-200:#E2E8F0; --slate-300:#CBD5E1;
  --slate-400:#94A3B8; --slate-500:#64748B; --slate-600:#475569; --slate-700:#334155;
  --success:#10B981; --danger:#EF4444; --warn:#F59E0B;
  --bg:#F8FAFC;
  /* Premium system font stack: no external/web fonts, no render-blocking, no flash. */
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-system);
  --font-body: var(--font-system);
  --nav-h: 64px;
  --maxw: 1160px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
  /* Sticky footer: lay the page out as a column at least one viewport tall so the
     footer stays at the bottom even on short pages (404, legal, etc.) instead of
     floating mid-screen. box-sizing:border-box already includes the nav padding. */
  display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1 0 auto; }
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; line-height: 1.12; }
p { margin: 0 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 18px; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; box-shadow: 0 10px 24px -8px rgba(14,165,233,0.45); }
.btn-primary:hover { color:#fff; box-shadow: 0 14px 30px -8px rgba(14,165,233,0.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { color:#fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--slate-200); }
.btn-ghost:hover { color: var(--ink); border-color: var(--slate-300); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
/* High-contrast CTA pill (nav "Start alerts" + key marketing CTAs). A deeper
   sky->teal than .btn-primary so the white label clears WCAG AA in every state,
   fixing the low-contrast button the brief flagged. */
.btn-cta { background: linear-gradient(135deg, #0369A1, #0F766E); color: #fff; box-shadow: 0 10px 24px -10px rgba(3,105,161,0.5); }
.btn-cta:hover { color: #fff; background: linear-gradient(135deg, #075985, #115E59); box-shadow: 0 14px 30px -10px rgba(3,105,161,0.6); }
.btn-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.btn-cta:active { transform: translateY(0); box-shadow: 0 4px 12px -8px rgba(3,105,161,0.6); filter: brightness(0.96); }
/* The menu link rules (.nav-menu a / .mobile-menu a, specificity 0-1-1) outrank
   .btn-cta's colour (0-1-0) and would paint the "Start alerts" label dark slate
   on the dark gradient (and wash the mobile button grey on hover). Re-assert the
   white label + readable gradient in every state with higher specificity. */
.nav .nav-menu a.btn-cta,
.nav .nav-menu a.btn-cta:hover,
.nav .nav-menu a.btn-cta:focus,
.nav .nav-menu a.btn-cta:active,
.mobile-menu .menu-cta-wrap a.btn-cta,
.mobile-menu .menu-cta-wrap a.btn-cta:hover,
.mobile-menu .menu-cta-wrap a.btn-cta:focus { color: #fff; }
.mobile-menu .menu-cta-wrap a.btn-cta { display: inline-flex; width: 100%; border-bottom: none; font-weight: 800; }
.mobile-menu .menu-cta-wrap a.btn-cta:hover { background: linear-gradient(135deg, #075985, #115E59); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
/* Checkout flow: distraction-free header with just the centered brand. */
.nav-inner--center { justify-content: center; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo b { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--slate-700); font-weight: 600; font-size: 15px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-cta { padding: 9px 20px; border-radius: 999px; }
.menu-btn { display: none; background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px; }

.mobile-menu { position: fixed; inset: var(--nav-h) 0 auto auto; width: 290px; max-width: 80vw;
  height: calc(100dvh - var(--nav-h)); background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%); transition: transform .25s ease; z-index: 1002; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 15px 22px; color: var(--slate-700); font-weight: 600; border-bottom: 1px solid var(--slate-100); font-family: var(--font-display); }
.mobile-menu a:hover { background: var(--slate-50); color: var(--primary); }
.mobile-menu .menu-cta-wrap { margin-top: auto; padding: 18px 22px; border-top: 1px solid var(--slate-200); }
.menu-overlay { position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 1001; }
.menu-overlay.open { opacity: 1; visibility: visible; }

/* Authenticated dashboard header: minimal — logo only (hamburger ≤900px). */
.nav--dash .nav-inner--dash { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: var(--nav-h); }
.nav--dash .logo { grid-column: 2; }
.nav-dash-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 12px; }
/* Sign out: a quiet menu item, styled exactly like the other side-nav links
   (reset native button chrome), just muted. Flows as the final item. */
.mobile-menu-signout { margin: 0; }
.mobile-menu-signout button {
  display: block; width: 100%; text-align: left; margin: 0; cursor: pointer;
  -webkit-appearance: none; appearance: none; background: none; border: none;
  border-bottom: 1px solid var(--slate-100);
  padding: 15px 22px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--slate-500);
}
.mobile-menu-signout button:hover { background: var(--slate-50); color: var(--primary); }

/* Desktop sign out: a quiet, unobtrusive control in the dashboard header. Hidden
   on mobile, where the hamburger menu carries the "Sign out" item instead. */
.nav-signout { margin: 0; }
.nav-signout button {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 999px;
  padding: 8px 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--slate-500); transition: color .15s ease, border-color .15s ease;
}
.nav-signout button:hover { color: var(--ink); border-color: var(--slate-300); }
.nav-signout button:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .menu-btn { display: block; }
  .nav-signout { display: none; }
}

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: linear-gradient(180deg, #ECFEFF 0%, #F0FDFA 100%); }
.section.white { background: #fff; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.eyebrow { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: 40px; font-weight: 900; max-width: 760px; }
.section-sub { font-size: 18px; color: var(--slate-600); margin-top: 14px; max-width: 640px; }
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 64px 0 80px; }
.hero::before { content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 82% 22%, rgba(14,165,233,0.16) 0%, transparent 55%),
              radial-gradient(ellipse at 12% 88%, rgba(20,184,166,0.13) 0%, transparent 55%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--slate-200);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1.6s ease-in-out infinite; }
.hero h1 { font-size: 60px; font-weight: 900; margin: 22px 0 18px; text-wrap: balance; }
/* Darker stops so clipped gradient text still meets large-text contrast (the
   lightest stop, teal-600 #0D9488, clears 3:1 on white). */
.gradient-text { background: linear-gradient(90deg, var(--primary-dark), #0D9488); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: 19px; color: var(--slate-600); margin: 0 0 28px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-link { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--slate-500); display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; }
.hero-link:hover { color: var(--primary); }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--slate-500); display: flex; align-items: center; gap: 8px; }
.hero-steps { margin-top: 20px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--slate-600); }

/* ---- Cards / generic ---- */
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; }
.card-soft { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px; }

/* ---- Live feed card ---- */
.feed-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 20px; padding: 22px;
  box-shadow: 0 30px 60px -22px rgba(15,23,42,0.16), 0 8px 20px -10px rgba(14,165,233,0.14); }
.feed-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.feed-label { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); }
.feed-list { display: flex; flex-direction: column; gap: 10px; }
.feed-row { display: flex; align-items: center; gap: 13px; padding: 13px 14px; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; }
.feed-code { width: 44px; height: 44px; border-radius: 10px; background: #E0F2FE; color: var(--primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 13px; flex-shrink: 0; }
.feed-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.feed-when { color: var(--slate-500); font-size: 13px; }
.feed-foot { margin-top: 14px; padding: 11px 14px; background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 10px; font-size: 12px; color: var(--slate-500); text-align: center; }
.feed-empty { padding: 18px; text-align: center; color: var(--slate-500); font-size: 13px; }

/* ---- Steps (how it works) ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--slate-200); border-radius: 18px; padding: 28px; }
.step-num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.step-num span { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; display: grid; place-items: center; font-size: 14px; }
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--slate-600); margin: 0; font-size: 15px; }

/* ---- Feature/benefit cards ---- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { background: #fff; border: 1px solid var(--slate-200); border-left: 4px solid var(--primary); border-radius: 12px; padding: 22px; }
.benefit.sms { border-left-color: var(--teal); }
.benefit h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.benefit p { color: var(--slate-600); margin: 0; font-size: 15px; }
.benefit-icon { width: 40px; height: 40px; border-radius: 10px; background: #E0F2FE; color: var(--primary); display: grid; place-items: center; margin-bottom: 14px; }
.benefit.sms .benefit-icon { background: #CCFBF1; color: #0D9488; }

/* ---- Problem → solution story (zigzag rows + branded scenes) -------------
   Replaces the old flat .problem-list. Three alternating copy/visual beats —
   the long official wait, why refreshing by hand fails, then our fix. Each
   visual is composed from house components (feed rows, a window chrome, the
   phone-notif motif) instead of stock illustration, so it reads as ours. */
.pz { --scene-shadow: 0 30px 60px -30px rgba(15,23,42,.22), 0 8px 20px -14px rgba(15,23,42,.12);
  display: flex; flex-direction: column; gap: 76px; max-width: 1080px; margin: 0 auto; }
.pz-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pz-row.flip .pz-copy { order: 2; }   /* even beat: visual on the left */
.pz-row.flip .pz-art  { order: 1; }
.pz-copy { max-width: 470px; }
.pz-title { font-family: var(--font-display); font-size: 30px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin: 16px 0 14px; }
.pz-copy .pz-title:first-child { margin-top: 0; }  /* beat with no badge above it */
.pz-copy p { color: var(--slate-600); font-size: 16px; margin: 0 0 14px; }
.pz-copy p:last-child { margin-bottom: 0; }

/* Beat badges — solid, AA-safe fills that punctuate problem vs. solution. */
.pz-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding: 7px 14px; border-radius: 999px; }
.pz-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.pz-tag--problem { background: #DC2626; box-shadow: 0 8px 18px -10px rgba(220,38,38,.55); }      /* red-600 clears AA on white text */
.pz-tag--problem .pz-tag-dot { animation: pulse 1.6s ease-in-out infinite; }
.pz-tag--solution { background: linear-gradient(135deg, #0369A1, #0F766E); box-shadow: 0 8px 18px -10px rgba(3,105,161,.5); }  /* deep brand sky→teal (AA on white) */

/* The three scene visuals are decorative UI mockups (role="img"), not real
   content — make them unselectable so the faux numbers/labels can't be
   highlighted. The marketing copy in .pz-copy stays selectable. */
.pz-art { display: flex; justify-content: center; -webkit-user-select: none; user-select: none; cursor: default; }

/* Scene 1 — "soonest appointment" board: only far-off dates, all in red. */
.pz-scene { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--slate-200); border-radius: 20px; padding: 20px; box-shadow: var(--scene-shadow); }
.pz-scene-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.pz-scene-head h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--ink); margin: 0; }
.pz-chip { font-family: var(--font-display); font-weight: 800; font-size: 11.5px; letter-spacing: .03em; padding: 4px 11px; border-radius: 999px; }
.pz-chip--bad { background: #FEE2E2; color: #B91C1C; }
.pz-rows { display: flex; flex-direction: column; gap: 9px; }
.pz-line { display: flex; align-items: center; gap: 12px; padding: 11px 12px; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; }
.pz-code { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: #E0F2FE; color: var(--primary-dark); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 12.5px; }
.pz-line-main { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.pz-line-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.pz-line-meta { font-size: 12px; color: var(--slate-500); }
.pz-line-date { margin-left: auto; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #DC2626; white-space: nowrap; }
.pz-scene-foot { margin-top: 14px; padding: 10px 12px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; font-size: 12.5px; color: #B91C1C; text-align: center; font-weight: 600; }

/* Scene 2 — the real TTP "Choose an Appointment Date" page with every date full
   or unavailable, inside a browser chrome. The grey "/"-slashed cells are the
   official scheduler's "Appointments full" state; no cell is "available". */
.pz-win { width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--slate-200); border-radius: 18px; overflow: hidden; box-shadow: var(--scene-shadow); }
.pz-win-bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.pz-dots { display: flex; gap: 6px; flex-shrink: 0; }
.pz-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-300); }
.pz-url { flex: 1; background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; padding: 4px 12px; font-size: 11.5px; color: var(--slate-500); text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pz-ttp { padding: 15px 16px 16px; text-align: left; }
.pz-ttp-h { font-size: 15px; font-weight: 400; color: #5f6571; margin: 0 0 9px; letter-spacing: -0.01em; }
.pz-ttp-loc { background: #eaf2fb; border: 1px solid #d3e2f2; border-radius: 3px; padding: 6px 9px; font-size: 11px; color: #475569; margin-bottom: 11px; }
.pz-ttp-loc b { color: #1f8b4c; font-weight: 800; }
.pz-ttp-ctrl { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.pz-ttp-jump { display: flex; flex-direction: column; gap: 4px; }
.pz-ttp-radio { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #1f2937; }
.pz-ttp-dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid #9aa3b2; flex-shrink: 0; }
.pz-ttp-dot.on { border-color: #1565c0; background: #1565c0; box-shadow: inset 0 0 0 2px #fff; }
.pz-ttp-apply { flex-shrink: 0; background: #1565c0; color: #fff; font-weight: 800; font-size: 11px; letter-spacing: .05em; padding: 8px 16px; border-radius: 5px; }
.pz-ttp-cals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pz-ttp-mon { font-size: 14px; font-weight: 400; color: #6b7280; margin: 0 0 3px; }
.pz-ttp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.pz-ttp-dow { font-size: 7.5px; font-weight: 800; color: #6b7280; text-align: center; padding-bottom: 1px; }
.pz-ttp-cell { aspect-ratio: 1 / 0.8; display: grid; place-items: center; font-size: 9px; color: #aab2bf; }
.pz-ttp-cell.full { color: #5f6571; background-color: #d6d9de;
  background-image: linear-gradient(135deg, transparent calc(50% - 0.6px), #8b93a1 calc(50% - 0.6px), #8b93a1 calc(50% + 0.6px), transparent calc(50% + 0.6px)); }
.pz-ttp-legend { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--slate-200); }
.pz-ttp-legend span { display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; color: #334155; }
.pz-ttp-legend b { font-weight: 800; }
.pz-ttp-sq { width: 13px; height: 11px; flex-shrink: 0; }
.pz-ttp-sq.avail { border: 1.5px solid #1565c0; background: #fff; }
.pz-ttp-sq.full { background-color: #d6d9de; background-image: linear-gradient(135deg, transparent calc(50% - 0.6px), #8b93a1 calc(50% - 0.6px), #8b93a1 calc(50% + 0.6px), transparent calc(50% + 0.6px)); }
.pz-ttp-sq.na { border: 1px solid #cbd5e1; background: #fff; }

/* Scene 3 — the alert you actually get: green check seal + notification. */
.pz-alert { position: relative; width: 100%; max-width: 420px; padding-top: 30px; }
.pz-seal { position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 2; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--success), #0D9488); display: grid; place-items: center; box-shadow: 0 14px 28px -10px rgba(16,185,129,.55); border: 4px solid #fff; }
.pz-note { background: #fff; border: 1px solid var(--slate-200); border-radius: 20px; padding: 32px 20px 20px; box-shadow: var(--scene-shadow); }
.pz-note-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pz-note-icon { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; background: linear-gradient(180deg, #5AF77B, #16C72E); display: grid; place-items: center; }
.pz-note-app { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink); }
.pz-note-ts { margin-left: auto; font-size: 12px; color: var(--slate-400); }
.pz-note-body { font-size: 14.5px; color: var(--slate-700); line-height: 1.5; margin: 0; }
.pz-note-body strong { color: var(--ink); }
.pz-note-cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--primary-dark); }

.pz-cta { text-align: center; margin-top: 56px; }

@media (max-width: 900px) {
  .pz { gap: 52px; }
  .pz-row, .pz-row.flip { grid-template-columns: 1fr; gap: 30px; }
  .pz-row .pz-copy, .pz-row.flip .pz-copy { order: 1; }   /* stack: copy first, scene after */
  .pz-row .pz-art,  .pz-row.flip .pz-art  { order: 2; }
  .pz-title { font-size: 26px; }
}

/* ---- Pricing ---- */
.pricing-card { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--slate-200);
  border-radius: 24px; padding: 44px 38px 36px; position: relative; box-shadow: 0 40px 80px -32px rgba(14,165,233,0.3); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--warn), #F97316); color: #fff; padding: 7px 18px; border-radius: 999px; font-family: var(--font-display); font-weight: 800; font-size: 13px; white-space: nowrap; }
.price-row { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--slate-100); margin-bottom: 22px; }
.price-amount { font-family: var(--font-display); font-size: 66px; font-weight: 900; line-height: 1; }
.price-period { color: var(--slate-500); font-size: 15px; margin-top: 6px; }
.features { list-style: none; padding: 0; margin: 0 0 26px; }
.features li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--slate-100); font-size: 15px; }
.features li:last-child { border-bottom: none; }
.feature-check { width: 22px; height: 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.feature-check.sms { background: var(--teal); }
.pricing-foot { text-align: center; color: var(--slate-500); font-size: 13.5px; margin-top: 12px; }

/* ---- FAQ ---- */
/* Native <details>/<summary> accordion: content is in the HTML and opens with no
   JS. Markers are hidden so the custom +/x icon is the only affordance. */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 20px 22px; text-align: left; font-family: var(--font-display); font-size: 16px; font-weight: 800; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; color: var(--ink); list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-q-text { margin: 0; font: inherit; }
.faq-q:hover { background: var(--slate-50); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 900; flex-shrink: 0; transition: transform .25s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate-600); font-size: 15px; }

/* ---- CTA band ---- */
.cta-band { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18) 0%, transparent 50%), radial-gradient(ellipse at 72% 72%, rgba(255,255,255,0.12) 0%, transparent 50%); }
.cta-band h2 { font-size: 42px; font-weight: 900; max-width: 720px; margin: 0 auto 14px; position: relative; }
.cta-band p { font-size: 18px; opacity: 0.95; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-ink { position: relative; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3); }

/* ---- Locations grid ---- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 18px 20px; color: inherit; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(15,23,42,0.16); border-color: var(--primary); color: inherit; }
.loc-card .loc-code { font-family: var(--font-display); font-weight: 900; color: var(--primary); font-size: 13px; letter-spacing: 0.04em; }
.loc-card h3 { font-size: 16px; font-weight: 800; margin: 6px 0 4px; }
.loc-card p { font-size: 13.5px; color: var(--slate-500); margin: 0; }
.state-block { margin-bottom: 28px; }
.state-block h3 { font-size: 18px; margin-bottom: 12px; }
.state-list { display: flex; flex-wrap: wrap; gap: 8px; }
.state-list .chip { background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; padding: 6px 14px; font-size: 13px; color: var(--slate-600); }

/* ---- Breadcrumbs ---- */
.crumbs { font-size: 13px; color: var(--slate-500); margin-bottom: 16px; }
.crumbs a { color: var(--slate-500); }
.crumbs a:hover { color: var(--primary); }
.crumbs span { margin: 0 6px; color: var(--slate-300); }

/* ---- Prose (article-style content) ---- */
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin: 36px 0 12px; }
.prose h3 { font-size: 20px; margin: 26px 0 8px; }
.prose p { color: var(--slate-700); font-size: 16px; }
.prose ul { color: var(--slate-700); padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 7px; color: var(--ink); }
.form-hint { font-size: 12.5px; color: var(--slate-500); margin-top: 5px; }
.input, select.input, textarea.input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--slate-300); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-height: 280px; overflow-y: auto; border: 1px solid var(--slate-200); border-radius: 12px; padding: 14px; background: var(--slate-50); }
.checkbox-row { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; }
.checkbox-row input { margin-top: 3px; }
.toggle-row { display: flex; align-items: center; gap: 10px; padding: 12px 0; }

/* ---- Alerts / flash ---- */
.flash { border-radius: 10px; padding: 13px 16px; margin-bottom: 18px; font-size: 14px; }
.flash.ok { background: #F0FDF4; border: 1px solid #86EFAC; color: #166534; }
.flash.err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.field-error { color: #DC2626; font-size: 13px; margin-top: 5px; } /* red-600: clears WCAG AA on white */

/* ---- Trust / disclaimer ---- */
.disclaimer { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 12px; padding: 16px 18px; font-size: 13px; color: var(--slate-600); }
.disclaimer strong { color: var(--slate-700); }

/* =========================================================================
   Flow shell — shared by the signup (/start) and dashboard (/dashboard).
   Calm, single-column, mobile-first. One title, one card, one action row.
   ========================================================================= */
.flow { padding: 24px 0 56px; }
.flow-wrap { max-width: 480px; margin: 0 auto; padding: 0 20px; }
.flow-title { font-size: 25px; font-weight: 900; text-align: center; letter-spacing: -0.02em; margin: 0 0 18px; line-height: 1.15; }
.flow-card { padding: 24px; }
.flow-legal { margin: 16px auto 0; max-width: 430px; text-align: center; }
.flow-legal p { font-size: 11.5px; line-height: 1.55; color: var(--slate-500); margin: 0; }

/* compact progress, INSIDE the card at the top: a quiet "Step n of 3" label
   above one slim bar — never louder than the step heading below it. */
.flow-prog { margin: 0 0 18px; }
.flow-prog-label { margin: 0 0 8px; font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.01em; color: var(--slate-500); }
.flow-prog-track { height: 4px; border-radius: 999px; background: var(--slate-200); overflow: hidden; }
.flow-prog-fill { height: 100%; width: 33.33%; border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--teal)); transition: width .35s cubic-bezier(.4,0,.2,1); }

/* per-step heading + helper inside the card (small, not competing with the title) */
.su-h { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 4px; }
.su-sub { color: var(--slate-500); font-size: 13.5px; line-height: 1.5; margin: 0 0 16px; }

/* action row */
.su-nav { display: flex; gap: 10px; margin-top: 20px; }
.su-nav .su-grow { flex: 1; }
.btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }

/* =========================================================================
   Centers picker — searchable, chips for selection, compact single-column list.
   Shared by signup step 1 and the dashboard.
   ========================================================================= */
.cpick-search { margin-bottom: 10px; }
.cpick-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.cpick-chips[hidden], .cpick-empty[hidden] { display: none; } /* author display must beat [hidden] */
.cpick-chip { display: inline-flex; align-items: center; gap: 2px; background: #E0F2FE; color: var(--primary-dark);
  border: 1px solid #BAE6FD; border-radius: 999px; padding: 3px 4px 3px 12px; font-size: 12.5px; font-weight: 700; font-family: var(--font-display); }
.cpick-chip button { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 26px;
  margin: -3px 0; background: none; border: none; color: var(--primary-dark); cursor: pointer; font-size: 18px;
  line-height: 1; padding: 0; border-radius: 50%; opacity: .65; }
.cpick-chip button:hover { opacity: 1; background: #BAE6FD; }
.cpick-list { border: 1px solid var(--slate-200); border-radius: 12px; background: var(--slate-50);
  max-height: 244px; overflow-y: auto; padding: 5px; -webkit-overflow-scrolling: touch; }
.cpick-row { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 9px; cursor: pointer;
  font-size: 14px; transition: background .12s ease, box-shadow .12s ease; }
.cpick-row:hover { background: #fff; }
.cpick-row input { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; margin: 0; cursor: pointer; }
.cpick-main { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.cpick-name { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cpick-loc { font-size: 12px; color: var(--slate-500); }
.cpick-row.is-on { background: #fff; box-shadow: inset 0 0 0 1.5px var(--primary); }
.cpick-row.is-on .cpick-name { color: var(--primary-dark); }
.cpick-row.is-disabled { opacity: .4; }
.cpick-row.is-disabled input { cursor: not-allowed; }
.cpick-count { font-size: 12px; color: var(--slate-600); margin: 9px 2px 0; font-weight: 600; }
.cpick-count.is-max { color: #0F766E; } /* teal-700: clears WCAG AA on the slate-50 list bg */
.cpick-empty { padding: 16px; text-align: center; color: var(--slate-600); font-size: 13px; }

@media (max-width: 560px) {
  .flow { padding: 16px 0 44px; }
  .flow-wrap { padding: 0 16px; }
  .flow-title { font-size: 22px; }
  .flow-card { padding: 18px; }
}

/* ---- Footer (light, multi-column, premium/calm — Apple-inspired) ---- */
.footer { background: #fff; color: var(--slate-600); border-top: 1px solid var(--slate-200); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 48px; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: var(--ink); }
.footer-brand b { color: var(--primary); }
.footer-brand:hover { color: var(--ink); }
.footer-tagline { margin: 12px 0 0; font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; color: var(--slate-500); line-height: 1.5; max-width: 320px; }
.footer-note { margin: 12px 0 0; font-size: 12.5px; color: var(--slate-500); line-height: 1.55; max-width: 330px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col-head { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--slate-600); font-size: 14.5px; font-weight: 600; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--slate-200); font-size: 13px; color: var(--slate-500); }
.footer-bottom p { margin: 0; line-height: 1.6; max-width: 780px; }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer { padding: 44px 0 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--slate-500); }
.stack-sm > * + * { margin-top: 10px; }
/* visually hidden but available to screen readers (keeps a page-level heading) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.35);} }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps, .benefits, .loc-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; }
  .hero h1 { font-size: 42px; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .hero h1 { font-size: 34px; }
  .hero .lead { font-size: 17px; }
  .price-amount { font-size: 54px; }
  .checkboxes { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 30px; }
  .hero-cta .btn { width: 100%; }
}
