/* ============================================================================
   Phone Bud — marketing site stylesheet (served at /assets/site.css)
   Self-contained. Palette mirrors the app tokens in client/src/index.css.
   ============================================================================ */

:root {
  color-scheme: dark;

  /* Neutrals (mirrored from app) */
  --grey-0: #ffffff;
  --grey-50: #f5f6f7;
  --grey-100: #e6e7ea;
  --grey-200: #c9ccd2;
  --grey-300: #b6bbca;
  --grey-400: #8b92a6;
  --grey-500: #50545d;
  --grey-600: #383b42;
  --grey-700: #292e42;
  --grey-800: #1a1f31;
  --grey-850: #14192a;
  --grey-900: #0c1020;
  --grey-950: #070a14;

  /* Brand */
  --brand: #8b9dff;
  --brand-hover: #a7b3ff;
  --brand-bg: rgba(139, 157, 255, 0.13);
  --brand-border: rgba(139, 157, 255, 0.38);
  --success-fg: #61d6b0;
  --success-bg: rgba(55, 195, 151, 0.12);
  --warning-fg: #f2bd67;

  /* Semantic surfaces / text */
  --surface-page: var(--grey-900);
  --surface-1: var(--grey-850);
  --surface-2: var(--grey-800);
  --surface-3: var(--grey-700);
  --border-subtle: var(--grey-700);
  --border-default: var(--grey-600);
  --border-strong: var(--grey-500);
  --text-primary: var(--grey-50);
  --text-secondary: var(--grey-300);
  --text-tertiary: var(--grey-400);
  --text-inverse: var(--grey-950);
  --action-bg: var(--brand);
  --action-bg-hover: var(--brand-hover);
  --action-text: var(--grey-950);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.08em;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 8px 28px rgba(0, 0, 0, 0.28);
  --shadow-3: 0 24px 48px rgba(0, 0, 0, 0.45);

  --duration-base: 180ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --focus-ring: 0 0 0 2px var(--grey-950), 0 0 0 4px var(--brand);
  --tap-target: 44px;

  --container-w: 1080px;

  font-family: var(--font-sans);
}

/* ----------------------------------------------------------------------------
   Reset / base
   ---------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% -8%, rgba(139, 157, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 0% 0%, rgba(104, 83, 210, 0.10), transparent 28rem),
    var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--brand-hover); text-decoration: none; }
a:hover { color: var(--text-primary); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-bold);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* Skip link */
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--brand);
  color: var(--text-inverse);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  transform: translateY(-160%);
  transition: transform var(--duration-base) var(--ease-standard);
}
.skip-link:focus { transform: translateY(0); color: var(--text-inverse); }

/* ----------------------------------------------------------------------------
   Layout primitives
   ---------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(56px, 9vw, 104px); }
.section--alt {
  background: var(--surface-1);
  border-block: 1px solid var(--border-subtle);
}
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.section__head {
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.section__head--left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-hover);
  margin-bottom: 14px;
}
.lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
}

h2.section__title { font-size: clamp(28px, 4.2vw, 42px); }

/* ----------------------------------------------------------------------------
   Nav
   ---------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface-page) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}
.site-nav > .container:not(.site-nav__inner):not(.lp-nav__inner){display:flex;align-items:center;gap:24px;min-height:64px;}
.site-nav > .container:not(.site-nav__inner):not(.lp-nav__inner) .site-nav__links{margin-left:auto;}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav__brand:hover { color: var(--text-primary); }
.site-nav__mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  color: var(--brand-hover);
  flex: none;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  list-style: none;
}
.site-nav__links a:not(.btn) {
  color: var(--text-secondary);
  padding: 11px 12px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: var(--weight-medium);
}
.site-nav__links a:not(.btn):hover { color: var(--text-primary); background: var(--surface-2); }

@media (max-width: 760px) {
  .site-nav__links .nav-hide { display: none; }
}

/* ----------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap-target);
  padding: 11px 18px;
  font: inherit;
  font-weight: var(--weight-semibold);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--text-primary);
  cursor: pointer;
  text-align: center;
  transition: background var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-standard);
}
.btn:hover { background: var(--surface-3); border-color: var(--border-strong); color: var(--text-primary); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--action-bg);
  color: var(--action-text);
  border-color: var(--action-bg);
}
.btn--primary:hover { background: var(--action-bg-hover); border-color: var(--action-bg-hover); color: var(--action-text); }

.btn--ghost {
  background: transparent;
  border-color: var(--border-default);
  color: var(--text-primary);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--border-strong); }

.btn--lg {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}
.btn--block { width: 100%; }

/* ----------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 9vw, 112px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__title .accent { color: var(--brand-hover); }
.hero__sub {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--text-secondary);
  max-width: 36ch;
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__trust {
  margin-top: 26px;
  font-size: 14px;
  color: var(--text-tertiary);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.hero__trust .dot { color: var(--brand); }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__sub { max-width: 52ch; }
}

/* ----------------------------------------------------------------------------
   Call-mock visual (hero + LPs)
   ---------------------------------------------------------------------------- */
.call-mock {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
  padding: 18px;
  max-width: 440px;
  margin-inline: auto;
}
.call-mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.call-mock__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--success-fg);
}
.call-mock__live .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-fg);
  animation: pb-pulse 1.5s ease-in-out infinite;
}
@keyframes pb-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.call-mock__who { font-size: 13px; color: var(--text-tertiary); margin-left: auto; }
.call-mock__line {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  max-width: 88%;
  border: 1px solid var(--border-subtle);
  background: var(--surface-2);
}
.call-mock__line .tag {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-tertiary);
  margin-bottom: 3px;
}
.call-mock__line--them { margin-right: auto; }
.call-mock__line--bud { margin-left: auto; border-color: var(--brand-border); background: var(--brand-bg); }
.call-mock__result {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--success-bg);
  border: 1px solid color-mix(in srgb, var(--success-fg) 40%, transparent);
  font-size: 14px;
}
.call-mock__result strong { color: var(--success-fg); }

/* ----------------------------------------------------------------------------
   Grids + cards
   ---------------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 880px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-1);
  transition: border-color var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-standard);
}
.card--hover:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  color: var(--brand-hover);
  margin-bottom: 16px;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--text-secondary); margin: 0; font-size: 15px; }

/* Step cards (how it works) */
.step { position: relative; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--action-text);
  font-weight: var(--weight-bold);
  margin-bottom: 14px;
}

/* Feature strip rows */
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-row__icon {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  color: var(--brand-hover);
}
.feature-row h3 { font-size: 17px; margin-bottom: 4px; }
.feature-row p { color: var(--text-secondary); margin: 0; font-size: 15px; }

/* ----------------------------------------------------------------------------
   Pills / chips
   ---------------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--weight-medium);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.chip--brand { background: var(--brand-bg); border-color: var(--brand-border); color: var(--brand-hover); }

/* ----------------------------------------------------------------------------
   Stats / counter
   ---------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat__value {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}
.stat__value .brand { color: var(--brand-hover); }
.stat__label { color: var(--text-tertiary); font-size: 14px; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }

/* Testimonials */
.quote { display: flex; flex-direction: column; gap: 16px; }
.quote p { font-size: 16px; color: var(--text-primary); margin: 0; line-height: 1.6; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-3);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-weight: var(--weight-semibold);
  flex: none;
}
.quote__name { font-weight: var(--weight-semibold); font-size: 14px; }
.quote__role { color: var(--text-tertiary); font-size: 13px; }

/* ----------------------------------------------------------------------------
   Results table (campaigns / quotes)
   ---------------------------------------------------------------------------- */
.results-table {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.results-table__scroll { overflow-x: auto; }
table.pb-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.pb-table th, .pb-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.pb-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-tertiary);
  font-weight: var(--weight-semibold);
  background: var(--surface-2);
}
.pb-table tbody tr:last-child td { border-bottom: none; }
.pb-table td .pb-yes { color: var(--success-fg); font-weight: var(--weight-semibold); }
.pb-table td .pb-price { font-weight: var(--weight-semibold); color: var(--text-primary); }
.pb-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--success-fg);
}
.pb-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success-fg); }

/* ----------------------------------------------------------------------------
   Pricing teaser
   ---------------------------------------------------------------------------- */
.price-card { display: flex; flex-direction: column; gap: 6px; height: 100%; }
.price-card--featured { border-color: var(--brand-border); box-shadow: 0 0 0 1px var(--brand-border), var(--shadow-2); }
.price-card__name { font-size: 15px; font-weight: var(--weight-semibold); color: var(--text-secondary); }
.price-card__amt { font-size: clamp(30px, 4vw, 38px); font-weight: var(--weight-bold); letter-spacing: var(--tracking-tight); }
.price-card__amt span { font-size: 15px; font-weight: var(--weight-medium); color: var(--text-tertiary); }
.price-card__note { font-size: 13px; color: var(--text-tertiary); margin: 2px 0 0; }
.price-card ul { list-style: none; margin: 12px 0 20px; display: flex; flex-direction: column; gap: 9px; }
.price-card li { font-size: 14px; color: var(--text-secondary); display: flex; gap: 9px; align-items: flex-start; }
.price-card li::before { content: "✓"; color: var(--success-fg); font-weight: var(--weight-bold); }
.price-card .btn { margin-top: auto; }

/* ----------------------------------------------------------------------------
   FAQ (details/summary)
   ---------------------------------------------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4px 20px;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: var(--weight-semibold);
  font-size: 16px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand-hover);
  font-weight: var(--weight-regular);
  transition: transform var(--duration-base) var(--ease-standard);
  flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { color: var(--text-secondary); padding: 0 0 18px; font-size: 15px; margin: 0; }

/* ----------------------------------------------------------------------------
   CTA band
   ---------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band__box {
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 157, 255, 0.18), transparent 60%),
    var(--surface-1);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px) 24px;
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.cta-band p { color: var(--text-secondary); font-size: 18px; max-width: 48ch; margin: 0 auto 28px; }

/* ----------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-1);
  padding-block: 48px 40px;
  font-size: 14px;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.site-footer__brand { max-width: 280px; }
.site-footer__brand .site-nav__brand { margin-bottom: 12px; }
.site-footer__brand p { color: var(--text-tertiary); font-size: 14px; margin: 0; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: 48px; }
.site-footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: var(--text-secondary); }
.site-footer__col a:hover { color: var(--text-primary); }
.site-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--text-tertiary);
}
.site-footer__note { max-width: 60ch; }

/* ----------------------------------------------------------------------------
   Landing-page helpers (single-purpose LPs)
   ---------------------------------------------------------------------------- */
.lp-nav { border-bottom: 1px solid var(--border-subtle); }
.lp-nav__inner { display: flex; align-items: center; min-height: 64px; }
.lp-hero { padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 72px); }
.lp-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.lp-hero__inner--solo { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
.lp-hero__title { font-size: clamp(32px, 5.4vw, 54px); line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 18px; }
.lp-hero__title .accent { color: var(--brand-hover); }
.lp-hero__sub { font-size: clamp(17px, 2.3vw, 20px); color: var(--text-secondary); margin-bottom: 26px; max-width: 40ch; }
@media (max-width: 880px) { .lp-hero__inner { grid-template-columns: 1fr; } }

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 22px 0 0; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text-secondary); }
.benefit-list li strong { color: var(--text-primary); }
.benefit-list .check {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--success-bg); color: var(--success-fg);
  font-weight: var(--weight-bold); font-size: 13px;
}

.proof-strip {
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  padding: 18px 0; color: var(--text-tertiary); font-size: 14px;
}
.proof-strip strong { color: var(--text-primary); }

/* ----------------------------------------------------------------------------
   Sticky mobile CTA (≤760px)
   ---------------------------------------------------------------------------- */
.sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:60;display:none;padding:10px 16px calc(10px + env(safe-area-inset-bottom));background:color-mix(in srgb, var(--surface-page) 92%, transparent);backdrop-filter:saturate(140%) blur(12px);border-top:1px solid var(--border-subtle);}
.sticky-cta .btn{width:100%;}
@media (max-width:760px){.sticky-cta{display:block;}}
/* On mobile the sticky bottom CTA covers conversion, so drop the redundant
   header CTA on pages that have it (home + landing pages). Answer/legal pages
   have no sticky bar, so their header CTA (in a bare .container) stays. */
@media (max-width:760px){
  .site-nav__inner .btn,
  .lp-nav__inner .btn { display: none; }
}
