/* ============================================================
   outbound.md — site styles
   Palette: warm paper, near-black ink, burnt-orange accent.
   Chunky borders, offset solid shadows, no soft blurs.
   ============================================================ */

:root {
  --paper: #EEEFE9;
  --card: #FFFDF5;
  --ink: #151515;
  --ink-soft: #3d3d3a;
  --muted: #6b6b66;
  --accent: #FAD254;
  --accent-dark: #EFC23B;
  --accent-deep: #8A6F00;
  --yellow: #FAD254;
  --blue: #2D6BF4;
  --border: 2px solid var(--ink);
  --border-thick: 3px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);
  --radius: 6px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); }
a:hover { color: var(--accent-deep); }

::selection { background: var(--accent); color: var(--ink); }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- markdown-motif section headings ---------- */

.md-heading {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
}

section { padding: 72px 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  padding: 16px 26px;
  border: var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 80ms ease, box-shadow 80ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--ink);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  color: var(--accent-deep);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-microcopy {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
  transition: box-shadow 200ms ease;
}
.nav.scrolled {
  box-shadow: 0 4px 0 var(--ink);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.wordmark:hover { color: var(--ink); }
.wordmark .tld { color: var(--accent-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-deep);
  transition: width 160ms ease;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav .btn { padding: 11px 20px; font-size: 15px; box-shadow: 3px 3px 0 var(--ink); }
.nav .btn:hover { box-shadow: 4px 4px 0 var(--ink); }
.nav .btn:active { box-shadow: 1px 1px 0 var(--ink); }

.nav-toggle {
  display: none;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: var(--border-thick);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    padding: 14px 4px;
    font-size: 18px;
    border-bottom: 1px solid #d8d9d2;
  }
  .nav-links .btn { margin-top: 16px; justify-content: center; }
}

/* ---------- hero ---------- */

.hero { padding: 84px 0 64px; }

.hero h1 {
  font-size: clamp(42px, 8.5vw, 84px);
  font-weight: 800;
  max-width: 13ch;
}

.hero h1 .accent,
.final h2 .accent {
  color: var(--ink);
  background: var(--accent);
  padding: 0 0.12em;
  margin: 0 -0.04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-sub {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 22px 0 30px;
}

.stat-strip {
  margin-top: 44px;
  background: var(--card);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-strip > div {
  padding: 22px 24px;
  border-left: var(--border);
}
.stat-strip > div:first-child { border-left: none; }

.stat-strip .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--accent-deep);
  letter-spacing: -0.03em;
}

.stat-strip .label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.stat-strip-note {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 700px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip > div { border-left: none; border-top: var(--border); }
  .stat-strip > div:first-child { border-top: none; }
}

/* ---------- problem ---------- */

.problem { padding-top: 0; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.problem-card {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.problem-card p { color: var(--ink-soft); font-size: 16px; }

.problem-card .tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 99px;
  margin-bottom: 14px;
  background: var(--paper);
}

@media (max-width: 700px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.step {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step .step-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--ink);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.step h3 { font-size: 22px; }
.step p { color: var(--ink-soft); font-size: 16px; }

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
}

/* code-block stat panel */

.code-panel {
  margin-top: 28px;
  background: var(--ink);
  color: #e8e8e3;
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--accent);
  font-family: var(--mono);
  font-size: 14.5px;
  line-height: 1.75;
  overflow-x: auto;
}

.code-panel .code-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 2px solid #3a3a3a;
  font-size: 12.5px;
  color: #9b9b94;
}

.code-panel .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4a4a46;
}
.code-panel .dot:first-child { background: var(--accent); }

.code-lines {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.code-line {
  display: grid;
  grid-template-columns: 1.4ch 1fr;
  gap: 0 10px;
  align-items: baseline;
}

.code-line .k {
  display: inline-block;
  min-width: 11ch;
  color: #e8e8e3;
}

@media (max-width: 560px) {
  .code-panel { font-size: 13px; box-shadow: 4px 4px 0 var(--accent); }
  .code-lines { padding: 14px 14px; gap: 6px; }
  .code-line .k {
    display: block;
    min-width: 0;
    color: #9b9b94;
  }
  .code-titlebar .titlebar-extra { display: none; }
}

/* (legacy pre rules removed — panel now uses .code-lines) */

.code-panel .c-green { color: #7ED491; }
.code-panel .c-orange { color: #FAD254; }
.code-panel .c-dim { color: #8a8a84; }

/* ---------- why this works ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.why-card {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px;
}

.why-card .why-icon {
  width: 44px;
  height: 44px;
  border: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--paper);
}
.why-card .why-icon svg { width: 22px; height: 22px; }

.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); font-size: 16px; }

@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- results ---------- */

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.case {
  background: var(--card);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case .case-kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.case h3 { font-size: 24px; }
.case > p { color: var(--ink-soft); font-size: 16px; }

.hero-stat {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 76px);
  line-height: 1;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
}

.hero-stat-label {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
}
.hero-stat-label .bench { color: var(--muted); font-weight: 400; }

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-stats > div {
  padding: 14px 16px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  margin: -2px 0 0 -2px;
  background: var(--paper);
}

.case-stats .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.case-stats .label { font-size: 13.5px; color: var(--muted); }

.case blockquote {
  margin: 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
  font-size: 16.5px;
  font-style: italic;
}

.case blockquote footer {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
}

.case .case-note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ---------- pricing ---------- */

.pricing-card {
  margin-top: 36px;
  background: var(--card);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pricing-top {
  padding: 36px;
  border-bottom: var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.price {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price .per {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 20px;
  color: var(--muted);
  letter-spacing: 0;
}

.price-terms {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

.platform-note {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 320px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.pricing-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}

.pricing-lists > div { padding: 30px 36px; }
.pricing-lists > div + div { border-left: var(--border); }

.pricing-lists h3 {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-lists ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15.5px;
}

.pricing-lists li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.pricing-lists .mark {
  font-family: var(--mono);
  font-weight: 700;
  flex: 0 0 auto;
}

.list-in .mark { color: var(--accent-deep); }
.list-out .mark { color: var(--muted); }
.list-out li { color: var(--ink-soft); }

.pricing-lists li small {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
}

.pricing-cta {
  padding: 30px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

@media (max-width: 760px) {
  .pricing-top, .pricing-lists > div, .pricing-cta { padding-left: 22px; padding-right: 22px; }
  .pricing-lists { grid-template-columns: 1fr; }
  .pricing-lists > div + div { border-left: none; border-top: var(--border); }
}

/* ---------- promise (dark band) ---------- */

.promise {
  background: var(--ink);
  color: #f2f2ed;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 80px 0;
}

.promise .md-heading { color: var(--accent); }

.promise h2 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  max-width: 18ch;
  color: #fff;
}

.promise h2 .accent { color: var(--accent); }
.promise h2 .hl { color: var(--yellow); }

.promise p {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #c9c9c2;
  max-width: 640px;
  margin-top: 18px;
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

details.faq {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17.5px;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: var(--radius);
}

details.faq summary .chev {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--accent-deep);
  flex: 0 0 auto;
  transition: transform 150ms ease;
}

details.faq[open] summary .chev { transform: rotate(90deg); }

details.faq .faq-body {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 70ch;
}

/* ---------- final CTA ---------- */

.final {
  padding: 96px 0;
  text-align: center;
}

.final h2 {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 800;
  max-width: 16ch;
  margin: 0 auto 18px;
}

.final h2 .accent { /* highlight treatment defined with .hero h1 .accent above */ }

.final p {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}

.final .btn-row { justify-content: center; }

/* ---------- footer ---------- */

.footer {
  border-top: var(--border-thick);
  background: var(--paper);
  padding: 36px 0 44px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}

.footer .wordmark { font-size: 17px; }

.footer-meta {
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14.5px;
}

.footer-links a { color: var(--ink-soft); text-decoration-thickness: 1px; }
.footer-links a:hover { color: var(--accent-deep); }

/* ---------- legal doc pages ---------- */

.doc-main { padding: 64px 0 96px; }

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.doc h1 {
  font-size: clamp(34px, 5.5vw, 48px);
  font-weight: 800;
  margin-bottom: 8px;
}

.doc .doc-updated {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

.doc h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 40px 0 12px;
}

.doc p, .doc li { font-size: 16.5px; color: var(--ink-soft); }
.doc ul { padding-left: 22px; margin: 0 0 1em; }
.doc li { margin-bottom: 6px; }

.doc .review-flag {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

/* ---------- a11y + motion ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ============================================================
   welcome / post-payment page
   ============================================================ */

.welcome-main { padding-bottom: 80px; }

.welcome-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 20px 8px;
  text-align: center;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: var(--ink);
  border: var(--border-thick);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 9px 18px 9px 14px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.success-badge svg { width: 18px; height: 18px; }

.welcome-hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  max-width: 16ch;
  margin: 6px auto 0;
}

.welcome-lede {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 22px auto 0;
}

/* next-steps (decoupled from main-site .steps grid) */
.next-steps { padding: 48px 20px 8px; }
.flow-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.flow-step-n {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  border: var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 17px;
}
.flow-step h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}
.flow-step p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

@media (max-width: 760px) {
  .flow-steps { grid-template-columns: 1fr; max-width: 520px; }
}

/* booking */
.booking { padding: 44px 20px 0; max-width: 920px; }
.booking-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}
.cal-embed {
  width: 100%;
  min-height: 420px;
  background: var(--card);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* crop Cal.com branding footer (free-plan, can't disable natively) */
.cal-embed iframe {
  display: block;
  margin-bottom: -100px;
}
.welcome-help {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 20px;
}
.welcome-help a { font-weight: 600; }

@media (max-width: 600px) {
  .welcome-hero { padding-top: 44px; }
  .cal-embed { min-height: 560px; }
}

/* secondary-page nav (welcome/terms/privacy): plain inline links, no mobile dropdown overlay */
@media (max-width: 760px) {
  .nav-links--page {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: transparent;
    border-bottom: none;
    padding: 0;
  }
  .nav-links--page a:not(.btn) {
    padding: 0;
    font-size: 15px;
    border-bottom: none;
  }
}
