/* ============================================================
   /websites — Website Package sales page styles
   Ported from sales-outreach/website-demos/wbs-websites-page.html
   (the 2026-08-05 single-tier artifact) for the sales-funnel rework.
   - All selectors scoped under .ws-page so nothing collides with app.css
     (same discipline as for-restaurants.css / .fr-page).
   - Fonts, shared .top-nav, and the aurora/particles backdrop come from
     app.css — the artifact's embedded fonts + static nav preview dropped.
   - Tokens identical to .fr-page so the two funnel pages read as one set.
   ============================================================ */

/* ---- Tokens (scoped) ---- */
.ws-page {
  --bg: #0B0D10;
  --bg-elev: #14181C;
  --bg-elev-2: #1A1F25;

  --line: #1F252B;
  --line-strong: #2A3138;

  --ink: #F5F1EA;
  --ink-2: #B8BDC4;
  --ink-mute: #7C828A;
  --ink-dim: #4B5159;

  --orange: #F97316;
  --orange-hi: #FB923C;
  --orange-soft: rgba(249, 115, 22, 0.12);
  --orange-line: rgba(249, 115, 22, 0.28);

  --green: #22C55E;
  --green-soft: rgba(34, 197, 94, 0.14);
  --green-line: rgba(34, 197, 94, 0.32);

  --amber: #F59E0B;

  --display: 'Outfit', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --body: 'Outfit', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.ws-page *, .ws-page *::before, .ws-page *::after { box-sizing: border-box; }
.ws-page a { color: inherit; text-decoration: none; }
.ws-page button { font-family: inherit; cursor: pointer; }
.ws-page img { display: block; max-width: 100%; }
.ws-page section[id] { scroll-margin-top: calc(72px + var(--safe-top, 0px)); }

.ws-page .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; }

.ws-page main, .ws-page footer { position: relative; z-index: 1; }

/* ---- Type ---- */
.ws-page .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.ws-page h1, .ws-page h2, .ws-page h3, .ws-page h4 {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.ws-page h1 { font-size: 58px; line-height: 1.02; letter-spacing: -0.035em; }
.ws-page h2 { font-size: 42px; line-height: 1.05; letter-spacing: -0.03em; }
.ws-page h3 { font-size: 24px; line-height: 1.14; letter-spacing: -0.02em; font-weight: 600; }
.ws-page h1 .accent, .ws-page h2 .accent { color: var(--orange); }
.ws-page .lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2); font-weight: 400;
  max-width: 58ch;
}
.ws-page .lede b { color: var(--ink); font-weight: 600; }

/* ---- Buttons ---- */
.ws-page .btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  padding: 14px 22px; border-radius: 12px; border: 0;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.ws-page .btn-primary {
  background: var(--orange); color: #1A0A00;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -8px rgba(249,115,22,0.55);
}
.ws-page .btn-primary:hover { background: var(--orange-hi); transform: translateY(-1px); }
.ws-page .btn-primary[disabled] { opacity: 0.6; transform: none; cursor: default; }
.ws-page .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.ws-page .btn-ghost:hover { border-color: var(--ink-2); }
.ws-page .btn-lg { padding: 18px 28px; font-size: 17px; }
.ws-page .btn .arr { transition: transform .15s ease; }
.ws-page .btn:hover .arr { transform: translateX(3px); }
.ws-page .btn:focus-visible, .ws-page a:focus-visible, .ws-page summary:focus-visible,
.ws-page input:focus-visible, .ws-page select:focus-visible, .ws-page textarea:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 2px;
}

/* ---- Hero ---- */
.ws-page .hero { padding: 84px 0 72px; overflow: hidden; }
.ws-page .hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.ws-page .hero-eye { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.ws-page .hero-eye .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.ws-page .hero-sub { margin: 22px 0 32px; }
.ws-page .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ws-page .hero-fine {
  margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* Browser-frame mockup — what "your site" looks like */
.ws-page .mock-wrap { position: relative; }
.ws-page .mock {
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  transform: rotate(1.2deg);
}
.ws-page .mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
  background: var(--bg-elev-2);
}
.ws-page .mock-dots { display: flex; gap: 5px; }
.ws-page .mock-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-dim); opacity: .5; }
.ws-page .mock-url {
  flex: 1; text-align: center;
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line); border-radius: 7px;
  padding: 5px 10px; margin: 0 8px;
}
.ws-page .mock-url .lock { color: var(--green); margin-right: 6px; }
.ws-page .mock-body { padding: 22px 22px 20px; }
.ws-page .mock-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.ws-page .mock-tag { font-size: 12.5px; color: var(--ink-mute); margin-top: 3px; }
.ws-page .mock-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 7px 12px; border-radius: 999px;
  background: var(--orange-soft); border: 1px solid var(--orange-line);
  font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: var(--orange-hi);
  letter-spacing: 0.04em;
}
.ws-page .badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: ws-pulse 2.2s ease-in-out infinite;
}
@keyframes ws-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,.45) } 55% { box-shadow: 0 0 0 6px rgba(249,115,22,0) } }
.ws-page .mock-rows { margin-top: 18px; display: grid; gap: 9px; }
.ws-page .mock-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 11px 14px;
  font-size: 13.5px; color: var(--ink-2);
}
.ws-page .mock-row b { color: var(--ink); font-weight: 600; }
.ws-page .mock-row .price { font-family: var(--mono); font-size: 12.5px; color: var(--green); font-weight: 600; }
.ws-page .mock-foot { margin-top: 16px; display: flex; gap: 8px; }
.ws-page .mock-btn {
  flex: 1; text-align: center; font-size: 12.5px; font-weight: 600;
  padding: 10px 8px; border-radius: 9px;
}
.ws-page .mock-btn.solid { background: var(--orange); color: #1A0A00; }
.ws-page .mock-btn.line { border: 1px solid var(--line-strong); color: var(--ink-2); }
.ws-page .mock-note {
  position: absolute; right: -8px; bottom: -18px;
  background: var(--bg-elev-2); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 10px 14px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-2);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.7);
  display: flex; align-items: center; gap: 8px;
  transform: rotate(-1deg);
}
.ws-page .mock-note .chk { color: var(--green); font-weight: 700; }

/* ---- Stats strip ---- */
.ws-page .stats { padding: 0 0 76px; }
.ws-page .stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-elev); overflow: hidden;
}
.ws-page .stat { padding: 26px 28px; border-right: 1px solid var(--line); }
.ws-page .stat:last-child { border-right: 0; }
.ws-page .stat .n {
  font-family: var(--display); font-size: 34px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ws-page .stat .n em { font-style: normal; color: var(--orange); }
.ws-page .stat .l { margin-top: 6px; font-size: 14px; color: var(--ink-mute); line-height: 1.4; }

/* ---- Section head ---- */
.ws-page .sec-head { max-width: 700px; margin-bottom: 48px; }
.ws-page .sec-head h2 { margin-top: 14px; }
.ws-page .sec-head .lede { margin-top: 16px; font-size: 17px; }

/* ---- How it works ---- */
.ws-page .how { padding: 72px 0; border-top: 1px solid var(--line); }
.ws-page .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ws-page .step {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px;
}
.ws-page .step .k {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--orange);
}
.ws-page .step h3 { margin: 12px 0 10px; font-size: 21px; }
.ws-page .step p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.ws-page .step p b { color: var(--ink); font-weight: 600; }

/* ---- PWA dashboard section ---- */
.ws-page .pwa { padding: 72px 0; border-top: 1px solid var(--line); }
.ws-page .pwa-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.ws-page .pwa-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.ws-page .pwa-points li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.ws-page .pwa-points li b { color: var(--ink); font-weight: 600; }
.ws-page .pwa-points .chk {
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--orange-soft); border: 1px solid var(--orange-line);
  display: inline-flex; align-items: center; justify-content: center;
}
.ws-page .pwa-points .chk svg { width: 11px; height: 11px; stroke: var(--orange); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ws-page .phone-wrap { display: flex; justify-content: center; }
/* "One post → three places" concept card (honest summary, not a fake
   screenshot of the real dashboard). */
.ws-page .flow-demo {
  width: 350px; max-width: 100%;
  background: var(--bg-elev); border: 1px solid var(--line-strong);
  border-radius: var(--r-xl); padding: 22px 20px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.ws-page .flow-post {
  background: var(--bg); border: 1px solid var(--orange-line);
  border-radius: var(--r-md); padding: 14px 16px;
}
.ws-page .flow-post-cap {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
}
.ws-page .flow-post-row { margin-top: 8px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.ws-page .flow-post-name { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.ws-page .flow-post-price { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--green); }
.ws-page .flow-link { display: flex; align-items: center; gap: 10px; margin: 14px 2px; }
.ws-page .flow-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.ws-page .flow-link-cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-mute); white-space: nowrap; }
.ws-page .flow-dests { display: grid; gap: 10px; }
.ws-page .flow-dest {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px 14px;
}
.ws-page .flow-ic { font-size: 20px; flex: none; line-height: 1; }
.ws-page .flow-dest-t { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ws-page .flow-dest-t b { font-size: 14px; font-weight: 600; color: var(--ink); }
.ws-page .flow-dest-t span { font-size: 12px; color: var(--ink-mute); line-height: 1.35; }
.ws-page .flow-chk {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-line);
  color: var(--green); font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---- Pricing ---- */
.ws-page .pricing { padding: 72px 0; border-top: 1px solid var(--line); }
.ws-page .tiers { display: grid; grid-template-columns: min(560px, 100%); justify-content: center; gap: 20px; align-items: stretch; }
/* Two-up: Featured + Website Package side by side */
.ws-page .tiers-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; margin-left: auto; margin-right: auto; }
.ws-page .tiers-two .tier-for { min-height: 62px; }
.ws-page .tier {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
}
.ws-page .tier.pop {
  background: linear-gradient(180deg, rgba(249,115,22,0.07), rgba(249,115,22,0.015) 40%), var(--bg-elev);
  border-color: var(--orange-line);
  box-shadow: 0 24px 70px -30px rgba(249,115,22,0.35);
}
.ws-page .tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #1A0A00;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.ws-page .tier-name { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; }
.ws-page .tier-for { margin-top: 6px; font-size: 13.5px; color: var(--ink-mute); line-height: 1.45; }
.ws-page .tier-price { margin-top: 20px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.ws-page .tier-price .amt {
  font-family: var(--display); font-size: 44px; font-weight: 700;
  letter-spacing: -0.035em; font-variant-numeric: tabular-nums;
}
.ws-page .tier-price .per { font-family: var(--mono); font-size: 13px; color: var(--ink-mute); }
.ws-page .tier-setup {
  margin-top: 6px; font-family: var(--mono); font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.ws-page .tier-setup b { color: var(--ink-2); font-weight: 600; }
.ws-page .tier-setup .was { text-decoration: line-through; color: var(--ink-dim); }
.ws-page .tier-setup .zero { color: var(--green); font-weight: 700; }
.ws-page .founding-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 7px 12px; border-radius: 999px;
  background: var(--green-soft); border: 1px solid var(--green-line);
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--green);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ws-page .tier-feats { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 11px; }
.ws-page .tier-feats li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.45; color: var(--ink-2);
}
.ws-page .tier-feats li b { color: var(--ink); font-weight: 600; }
.ws-page .tier-feats .chk {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: inline-flex; align-items: center; justify-content: center;
}
.ws-page .tier-feats .chk svg { width: 10px; height: 10px; stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ws-page .tier .btn { width: 100%; justify-content: center; margin-top: auto; }
.ws-page .pricing-fine {
  margin-top: 26px; text-align: center;
  font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.02em;
}
.ws-page .pricing-fine .sep { margin: 0 10px; color: var(--ink-dim); }
.ws-page .pricing-alt {
  margin-top: 34px; text-align: center; font-size: 14.5px; color: var(--ink-mute);
}
.ws-page .pricing-alt a { color: var(--orange-hi); font-weight: 600; }
.ws-page .pricing-alt a:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.ws-page .faq { padding: 72px 0; border-top: 1px solid var(--line); }
.ws-page .faq-list { max-width: 760px; display: grid; gap: 12px; }
.ws-page .faq-item {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r-md);
}
.ws-page .faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-size: 16px; font-weight: 600; cursor: pointer;
}
.ws-page .faq-item summary::-webkit-details-marker { display: none; }
.ws-page .faq-item summary .tog {
  font-family: var(--mono); color: var(--ink-mute); font-size: 16px;
  transition: transform .15s ease; flex: 0 0 auto;
}
.ws-page .faq-item[open] summary .tog { transform: rotate(45deg); color: var(--orange); }
.ws-page .faq-item p {
  margin: 0; padding: 0 22px 20px; font-size: 15px; line-height: 1.6; color: var(--ink-2);
  max-width: 62ch;
}
.ws-page .faq-item p b { color: var(--ink); font-weight: 600; }

/* ---- Book a call ---- */
.ws-page .book { padding: 76px 0 90px; border-top: 1px solid var(--line); }
.ws-page .book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ws-page .book-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.ws-page .book-points li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.ws-page .book-points li b { color: var(--ink); font-weight: 600; }
.ws-page .book-points .chk {
  flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: inline-flex; align-items: center; justify-content: center;
}
.ws-page .book-points .chk svg { width: 11px; height: 11px; stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ws-page .book-alt { margin-top: 30px; font-size: 14px; color: var(--ink-mute); }
.ws-page .book-alt a { color: var(--orange-hi); font-weight: 600; }
.ws-page .book-alt a:hover { text-decoration: underline; }

.ws-page .book-card {
  background: var(--bg-elev); border: 1px solid var(--line-strong);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8);
}
.ws-page .book-card h3 { font-size: 20px; }
.ws-page .book-card .sub { margin: 8px 0 24px; font-size: 14px; color: var(--ink-mute); line-height: 1.5; }
.ws-page .field { margin-bottom: 16px; }
.ws-page .field label {
  display: block; font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 8px;
}
.ws-page .field input, .ws-page .field select, .ws-page .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 13px 14px;
  font-family: var(--body); font-size: 15px; color: var(--ink);
}
.ws-page .field input::placeholder, .ws-page .field textarea::placeholder { color: var(--ink-dim); }
.ws-page .field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%), linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat;
}
.ws-page .field textarea { resize: vertical; min-height: 78px; }
.ws-page .book-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.ws-page .book-card .fine {
  margin-top: 14px; text-align: center;
  font-family: var(--mono); font-size: 11px; color: var(--ink-dim); letter-spacing: 0.03em;
}
/* Honeypot — visually gone, still in the form for bots to fill. */
.ws-page .hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
}
.ws-page .book-error {
  display: none; margin-top: 14px; padding: 12px 14px;
  background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 10px; font-size: 13.5px; line-height: 1.5; color: #FCA5A5;
}
.ws-page .book-error a { color: var(--orange-hi); font-weight: 600; }
.ws-page .book-done { text-align: center; padding: 34px 10px; display: none; }
.ws-page .book-done .big {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-line);
  display: flex; align-items: center; justify-content: center;
}
.ws-page .book-done .big svg { width: 24px; height: 24px; stroke: var(--green); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ws-page .book-done h3 { margin-bottom: 10px; }
.ws-page .book-done p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---- Footer ---- */
.ws-page .ws-footer { border-top: 1px solid var(--line); padding: 36px 0 46px; }
.ws-page .foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.ws-page .foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.ws-page .foot-brand img { width: 24px; height: 24px; border-radius: 6px; }
.ws-page .foot-brand .o { color: var(--orange); }
.ws-page .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.ws-page .foot-links a { font-size: 13px; color: var(--ink-mute); }
.ws-page .foot-links a:hover { color: var(--ink); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ws-page .badge-dot, .ws-page .mock-badge { animation: none !important; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .ws-page h1 { font-size: 44px; }
  .ws-page h2 { font-size: 34px; }
  .ws-page .hero { padding: 56px 0 56px; }
  .ws-page .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .ws-page .mock { transform: none; max-width: 440px; }
  .ws-page .steps, .ws-page .tiers { grid-template-columns: 1fr; }
  .ws-page .tier.pop { order: -1; }
  /* Two-tier ladder keeps source order on mobile: Featured ($19.99) first,
     then the Website Package — don't let .pop jump ahead. */
  .ws-page .tiers-two .tier.pop { order: 0; }
  .ws-page .tiers-two .tier-for { min-height: 0; }
  .ws-page .stats-grid { grid-template-columns: 1fr; }
  .ws-page .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .ws-page .stat:last-child { border-bottom: 0; }
  .ws-page .book-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .ws-page h1 { font-size: 36px; }
  .ws-page h2 { font-size: 29px; }
  .ws-page .hero-ctas .btn { width: 100%; justify-content: center; }
  .ws-page .mock-note { display: none; }
}
