/* Bio-Logic landing page — palette and tone matched to the in-app design */

:root {
  --bg: #f7f5f0;
  --bg-warm: #fdf9f3;
  --surface: #ffffff;
  --border: #e8e0d4;
  /* Two-shade green system, drawn from the Meet Vera contrast:
     light green (logo sage) + deep botanical green. */
  --accent: #88928a;
  --accent-dark: #2f3d33;
  --accent-light: #edf0ec;
  --gold: #d6b573;
  --gold-soft: #e3ca92;
  --logo-sage: #88928a;
  --font-display: 'EB Garamond', 'Georgia', serif;
  /* "Black" text is the dark green — headings, titles, and bold read as deep
     green rather than near-black. Body copy stays in the warm greys below. */
  --text: #2f3d33;
  --text-muted: #8a8278;
  --text-soft: #5e5a52;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 6px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --max-width: 1080px;
  --section-padding-y: 80px;
}

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

html {
  scroll-behavior: smooth;
  /* Offset anchor-link scrolling so the sticky header doesn't cover the
     target section's title. Larger on wide screens (taller header). */
  scroll-padding-top: 76px;
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 60px; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-bottom: 1.1em;
  color: var(--text-soft);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header-brand {
  display: flex;
  align-items: center;
}

.site-header-logo {
  height: 88px;
  width: auto;
  display: block;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
}

/* Hamburger toggle button — hidden on desktop, shown on mobile.
   Three <span> bars animate to an X when the menu is open. */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: background 0.15s;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
  transform-origin: center;
}

/* Open state — bars rotate into an X */
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header-nav a {
  color: var(--text-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Boxed primary CTA in the header nav ("Get Started Free") — matches the
   medallion-style buttons: sage ground, gold label, gold trim, rounded corners. */
.site-header-nav a.nav-cta {
  background: var(--logo-sage);
  color: var(--gold);
  padding: 9px 20px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 3px rgba(214, 181, 115, 0.10);
  flex-shrink: 0;
}
.site-header-nav a.nav-cta:hover {
  background: var(--logo-sage);
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(214, 181, 115, 0.16);
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 32px 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Hero mandala icon — crops the square stacked logo so only the icon shows,
   without needing a separate icon-only asset. object-position: top anchors
   the visible region at the top of the square; the wordmark + tagline get
   cropped off the bottom. If a clean icon-only PNG is provided later, this
   becomes a simple width/height swap with no cropping. */
.hero-icon {
  width: 500px;
  height: 290px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto 44px;
}

.hero-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

/* Each sentence as its own visual line; gracefully wraps on narrow screens */
.hero-line {
  display: block;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Elegant serif foreshadow line in the hero — a first taste of Vera's voice.
   Selector carries .hero-sub too so the 520px mobile rule can't shrink it. */
.hero-sub.hero-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 2.6vw, 2.0rem);
  line-height: 1.35;
  color: var(--accent);
  max-width: 760px;
  margin: -20px auto 40px;
}

/* ---------- CTAs ---------- */

/* The two hero CTAs are a matched pair — identical shape, hairline border, and
   light weight. The primary carries a soft sage tint for gentle hierarchy; the
   secondary stays on plain surface. No heavy fill, no competing outline — they
   read as a cohesive, elegant pair rather than two mismatched buttons. */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: inherit;
  min-width: 264px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  text-align: left;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--accent);
}

/* Medallion-style button: sage ground, gold label, gold trim + gold glow. */
.cta-primary {
  background: var(--logo-sage);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 181, 115, 0.10), 0 8px 22px rgba(214, 181, 115, 0.26);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.cta-primary:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(214, 181, 115, 0.16), 0 12px 28px rgba(214, 181, 115, 0.36);
}

/* Complementary secondary button (Start Free, practitioner): quiet outline with
   the same gold trim and a dark-green label. */
.cta-secondary {
  background: var(--surface);
  border-color: var(--gold);
}

.cta-secondary:hover {
  background: var(--accent-light);
  border-color: var(--gold-soft);
}

.cta-title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--text);
}

.cta-primary .cta-title {
  color: var(--gold);
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Inline CTAs (within the For Individuals / For Practitioners sections) are a
   single line. Same restrained treatment: light weight, soft tint for primary,
   hairline surface for secondary. */
.cta-inline {
  display: inline-block;
  margin-top: 28px;
  min-width: 0;
  padding: 15px 30px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-inline.cta-primary {
  color: var(--gold);
}

.cta-inline.cta-secondary {
  color: var(--accent-dark);
}

.cta-inline .cta-title {
  font-size: inherit;
}

/* The two hero CTAs drop the box entirely and read as elegant CTA links — no
   border, no fill, no card. Color, size, and a trailing arrow (which nudges on
   hover, with an underline appearing) mark them clearly as calls to action.
   Primary leads in accent; secondary recedes in a muted tone. The smaller
   inline CTAs down the page keep the soft-pill treatment defined above. */
.hero-ctas {
  gap: 16px 48px;
  margin-top: 4px;
}

.hero-ctas .cta,
.hero-ctas .cta:hover {
  border: none;
  background: none;
  padding: 0;
  /* Equal footprint for both links so the shorter "I'm a Practitioner" sits
     centered in the same space as the longer label — they read as a balanced
     pair rather than one looking smaller than the other. */
  min-width: 260px;
  border-radius: 0;
  align-items: center;
  text-align: center;
  transform: none;
  box-shadow: none;
}

.hero-ctas .cta .cta-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-dark);
  transition: transform 0.18s ease;
  transform-origin: center;
}

.hero-ctas .cta .cta-title::after {
  content: "\2192";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.hero-ctas .cta:hover .cta-title {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transform: scale(1.06);
}

.hero-ctas .cta:hover .cta-title::after {
  transform: translateX(4px);
}

.hero-ctas .cta-sub {
  color: var(--text-muted);
  margin-top: 7px;
}

/* ---------- Sections ---------- */

.section {
  padding: var(--section-padding-y) 32px;
  border-bottom: 1px solid var(--border);
}

.section-light {
  background: var(--bg-warm);
}

.section-alt {
  background: var(--surface);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-narrow {
  max-width: 760px;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.section-split-text {
  min-width: 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin: 16px 0 16px;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Tool section split-card ---------- */

.meta-card {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.meta-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.meta-card-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* ---------- Feature list ---------- */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-size: 0.9rem;
}

/* ---------- Pull-quote ---------- */

.pull-quote {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--accent-dark);
  text-align: center;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0 !important;
  font-style: normal;
  letter-spacing: 0.01em;
}

.pull-quote em {
  font-style: italic;
  color: var(--accent-dark);
}

/* Quieter inline pull-quote — used between paragraphs for a reflective beat */
.pull-quote-soft {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  text-align: center;
  margin: 24px auto !important;
  max-width: 560px;
  padding: 0;
  border: none;
  background: transparent;
}

.pull-quote-soft em {
  font-style: italic;
  color: var(--text);
}

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

.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
}

/* ---------- Vera section ---------- */

.section-vera {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-warm) 100%);
  text-align: center;
}

.section-vera .section-title {
  margin-bottom: 30px;
}

/* ---------- Meet Vera — elegant dark, set apart from the rest ----------
   Scoped to #meet-vera only (NOT all .section-vera) so the closing CTA
   section keeps its light treatment and this one section stands alone as
   the refined, jewel-box moment of the page. Deep botanical-green ground,
   warm cream text, and a muted-gold accent for a classy, premium feel. */
#meet-vera {
  background: linear-gradient(165deg, #2f3d33 0%, #212b25 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(193, 160, 103, 0.22);
  border-bottom: 1px solid rgba(193, 160, 103, 0.22);
}

/* Soft gold aura behind the medallion for depth */
#meet-vera::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 160, 103, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#meet-vera .section-inner { position: relative; z-index: 1; }
#meet-vera p { color: rgba(255, 255, 255, 0.76); }
#meet-vera strong { color: #f4efe6; }
#meet-vera .section-title { color: #f6f2ea; }

/* Circular "V" monogram medallion — the same avatar the app uses, elevated:
   gold letter on a dark disc, thin gold ring, gentle outer glow. */
.vera-medallion {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, #949e96 0%, #7c867e 100%);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 7px rgba(214, 181, 115, 0.12), 0 14px 34px rgba(0, 0, 0, 0.4);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.vera-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  margin-bottom: 2px;
}

/* "Meet" in the section serif; "Vera" in a large gold cursive beside it. */
#meet-vera .vera-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.26em;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: normal;
  color: #f6f2ea;
  margin-bottom: 12px;
}
.vera-meet {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
  color: #f6f2ea;
}
.vera-name {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(3.4rem, 7.4vw, 4.9rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--gold);
}

/* Slim gold flourish divider under the title */
.vera-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 36px;
}
.vera-divider::before,
.vera-divider::after {
  content: "";
  width: 64px;
  height: 1px;
}
.vera-divider::before {
  background: linear-gradient(90deg, transparent, rgba(193, 160, 103, 0.6));
}
.vera-divider::after {
  background: linear-gradient(90deg, rgba(193, 160, 103, 0.6), transparent);
}
.vera-divider span {
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
}

/* Elegant script pull-quote inside Meet Vera */
#meet-vera .vera-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.4;
  color: var(--gold-soft);
  text-align: center;
  text-wrap: balance;
  margin: 0 !important;
  max-width: 620px;
}

/* Pull-quote flanked by a flourish on each side: line — star — quote — star — line.
   The lines grow to fill the space out to the section edges. */
.vera-quote-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto;
}
.vera-quote-block .vq-line { flex: 1 1 auto; height: 1px; }
.vera-quote-block .vq-line-left { background: linear-gradient(90deg, transparent, rgba(214, 181, 115, 0.6)); }
.vera-quote-block .vq-line-right { background: linear-gradient(90deg, rgba(214, 181, 115, 0.6), transparent); }
.vera-quote-block .vq-star { flex-shrink: 0; color: var(--gold); font-size: 0.85rem; line-height: 1; }

/* ---------- Pricing / sign-up — echoes the Meet Vera dark scheme ----------
   The white plan cards lift off the deep ground and read as premium. Scoped
   to #signup so only the intro copy inverts; the cards keep their light fill. */
#signup {
  background: linear-gradient(165deg, #2f3d33 0%, #212b25 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(193, 160, 103, 0.22);
  border-bottom: 1px solid rgba(193, 160, 103, 0.22);
}
#signup::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 160, 103, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
#signup .section-inner { position: relative; z-index: 1; }
#signup .eyebrow { color: var(--gold); }
#signup .pricing-lead { color: #f6f2ea; }
#signup .pricing-sub { color: rgba(255, 255, 255, 0.72); }
#signup .reassure { color: rgba(255, 255, 255, 0.7); }
#signup .reassure b { color: var(--gold-soft); }
#signup .pricing-login { color: rgba(255, 255, 255, 0.72); }
#signup .pricing-login a { color: var(--gold-soft); }
#signup .concierge-note {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(193, 160, 103, 0.32);
  color: rgba(255, 255, 255, 0.74);
}
#signup .concierge-note strong { color: #f4efe6; }

/* Trust band restyled for the dark ground */
#meet-vera .trust-item .ico { color: var(--gold-soft); }
#meet-vera .trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
#meet-vera .trust-item p { color: rgba(255, 255, 255, 0.62); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 32px;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
}

.site-footer-disclaimer p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}

.site-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.site-footer-legal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 16px 0 14px;
}

.site-footer-legal-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: 0.86rem;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.site-footer-links a:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .site-footer-legal-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.site-footer-copy {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ---------- Legal pages ---------- */

.legal h1.legal-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 6px;
}

.legal .legal-updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 40px 0 14px;
  line-height: 1.35;
}

.legal h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}

.legal p {
  color: var(--text-soft);
  margin-bottom: 1.05em;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 1.1em 1.4em;
  padding: 0;
  color: var(--text-soft);
}

.legal ul li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.legal strong {
  color: var(--text);
}

.legal hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  /* Below ~1024px the full nav (now with Sign In + the Get Started Free button,
     alongside the wide logo lockup) no longer fits on one row, so collapse to
     the hamburger here rather than at 800px. Mobile header: logo on the left,
     hamburger on the right, nav drops down as an absolute-positioned panel
     beneath the header when open. */
  .site-header {
    padding: 14px 20px;
    gap: 12px;
  }

  .site-header-logo {
    height: 56px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Nav becomes a dropdown panel hidden by default; shown when toggled.
     Absolute-positioned so it doesn't push the header taller, and full-
     width so links are easy to tap. */
  .site-header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4px 20px;
    gap: 0;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  }

  .site-header-nav.open {
    display: flex;
  }

  .site-header-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .site-header-nav a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 56px 20px 72px;
  }

  /* Smaller hero icon on mobile — at 340px it overflowed narrow viewports
     and triggered horizontal scroll, which read as a stray right-side
     margin pushing content left. */
  .hero-icon {
    width: 280px;
    height: 165px;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    min-width: 0;
  }

  .section {
    padding: 56px 20px;
  }

  .section-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .meta-card {
    position: static;
  }

  .site-footer {
    padding: 40px 20px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Center all headings in the single-column mobile layout — left-alignment
     reads oddly in a narrow viewport. Body copy stays left-aligned. (The hero
     and Meet Vera sections are already centered.) */
  .section-title,
  .section-subtitle,
  .faq-item h3 {
    text-align: center;
    /* Balance the line breaks so headings wrap at sensible points and never
       strand a single word on the last line. */
    text-wrap: balance;
  }

  .eyebrow {
    display: block;
    text-align: center;
  }
}

@media (max-width: 520px) {
  /* Nav already wraps on mobile via flex-wrap — no need to hide a link.
     Just tighten typography for the smallest screens. */
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 1rem;
  }
}

/* ---------- Sign-up / pricing (inline section on the landing page) ---------- */

/* The lead line — unbold, matched in size to the section titles, centered. */
.pricing-lead {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 14px;
}

.pricing-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 660px;
  margin: 0 auto 8px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 780px;
  margin: 36px auto 0;
}

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

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.plan.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lift);
  position: relative;
}

.plan-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 40px;
  margin-bottom: 16px;
}

.plan-price { margin-bottom: 20px; }
.plan-price .amount { font-size: 2.4rem; font-weight: 700; color: var(--text); }
.plan-price .unit { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.plan-price .sub { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.plan-features { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 10px;
  line-height: 1.45;
}
.plan-features li .check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Avoid a single dangling word on its own line (widows) in the card text.
   Progressive enhancement — ignored by browsers that don't support it. */
.plan-tagline,
.plan-features li span,
.guarantee,
.pricing-sub,
.plan-price .sub { text-wrap: pretty; }
.pricing-lead { text-wrap: balance; }

.plan .cta { width: 100%; text-align: center; justify-content: center; }

.guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.pricing-login {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.concierge-note {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 18px 22px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.concierge-note strong { color: var(--text); }

/* ============================================================
   Direct-response layout enhancements (2026-07)
   ============================================================ */

/* Reassurance microline — small trust points under a CTA or near pricing */
.reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 18px;
}
.reassure span { display: inline-flex; align-items: center; gap: 6px; }
.reassure b { color: var(--accent); font-weight: 600; }

/* A centered CTA button placed at the end of a section */
.cta-band { text-align: center; margin-top: 30px; }

/* Vera conversation mockup — a stand-in for a real product screenshot */
.vera-mock {
  max-width: 440px;
  margin: 40px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 18px 18px 22px;
  text-align: left;
}
.vera-mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.vera-mock-head .dots { display: flex; gap: 5px; }
.vera-mock-head .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border); display: block; }
.vera-mock-head span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bubble {
  max-width: 84%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.bubble .who {
  display: block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.bubble.user { background: var(--accent-light); color: var(--text); margin-left: auto; border-bottom-right-radius: 5px; }
.bubble.vera { background: var(--bg-warm); border: 1px solid var(--border); color: var(--text-soft); border-bottom-left-radius: 5px; }
.bubble.user .who { text-align: right; }

/* How it works — 3 numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 900px; margin: 40px auto 0; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 32px; } }
.step { text-align: center; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 0.92rem; }

/* Trust band — icon + short claim triplet */
.trust-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 940px; margin: 34px auto 0; }
@media (max-width: 720px) { .trust-band { grid-template-columns: 1fr; } }
.trust-item { text-align: center; padding: 16px; }
.trust-item .ico { color: var(--accent); line-height: 1; margin-bottom: 14px; }
.trust-item .ico svg { width: 40px; height: 40px; }
.trust-item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.trust-item p { font-size: 0.86rem; color: var(--text-muted); }

/* Testimonials — experiential (feeling-based), never outcome claims.
   Flex-center so 2 or 3 cards sit balanced. */
.testi-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; max-width: 900px; margin: 36px auto 0; }
.testi { flex: 1 1 320px; max-width: 400px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.testi p { font-size: 1.02rem; color: var(--text); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.testi .who { font-size: 0.84rem; color: var(--text-muted); font-style: normal; }
.testi-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 20px; }

/* ---- Copy emphasis + punchy KT-style accents (kept classy) ---- */

/* Punchy bold lead line under the hero headline */
.hero-lead {
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  font-weight: 700;
  color: var(--accent);
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.35;
  text-wrap: balance;
}

/* Large centered statement pull-quote */
.pull-quote-lg {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--text-soft);
  max-width: 760px;
  margin: 44px auto;
  text-wrap: balance;
}
.pull-quote-lg em { color: var(--accent); font-style: italic; }

/* Accent-bar side pull-quote */
.pull-quote-accent {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--accent);
}

/* Official chat-app chrome for the Vera mockup */
.vera-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--logo-sage); color: var(--gold);
  border: 1.5px solid var(--gold);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', serif; font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
}
.vera-mock-meta { display: flex; flex-direction: column; line-height: 1.25; }
.vera-mock-meta b { font-size: 0.98rem; color: var(--text); }
.vera-mock-meta em {
  font-style: normal; font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.68rem; letter-spacing: 0.03em; color: var(--accent-dark);
  display: flex; align-items: center; gap: 5px;
}
.vera-mock-meta em::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.msg-time { display: block; font-family: system-ui, sans-serif; font-size: 0.6rem; color: var(--text-muted); margin-top: 5px; }
.bubble.user .msg-time { text-align: right; }
.vera-mock-input {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 16px; padding: 10px 10px 10px 16px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--bg-warm);
}
.vera-mock-input span { font-size: 0.85rem; color: var(--text-muted); }
.vera-mock-input .send {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-style: normal; font-size: 0.9rem; flex-shrink: 0;
}

/* ---- Elegant CTA link (replaces the chunky button look) ---- */
.cta-link-band { text-align: center; margin-top: 30px; }
.cta-link {
  display: inline-block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--logo-sage);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 15px 36px;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 5px rgba(214, 181, 115, 0.10), 0 8px 22px rgba(214, 181, 115, 0.26);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.cta-link:hover {
  transform: translateY(-2px);
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 6px rgba(214, 181, 115, 0.16), 0 12px 28px rgba(214, 181, 115, 0.36);
}

/* In the split "For Individuals" layout, give the button the same breathing
   room above it that the practitioner section's inline CTA has. */
.section-split-text .cta-link { margin-top: 28px; }

/* Smaller secondary link under a primary CTA (e.g. "I'm a Practitioner") */
.cta-sub-row { margin-top: 12px; }
.cta-sublink {
  display: inline-block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.98rem;
  color: var(--accent);
  text-decoration: underline;
  transition: transform 0.2s ease, color 0.2s ease;
}
.cta-sublink:hover { color: var(--accent-dark); transform: scale(1.05); }

/* Tighten the gap between stacked hero paragraphs; compact reassurance line */
.hero-sub + .hero-sub:not(.hero-script) { margin-top: -26px; }
.reassure-tight { margin-top: 12px; }

/* ---- Inline emphasis: bold + slightly larger (kept in the grey palette, not near-black) ---- */
.emph-lg { font-weight: 700; font-size: 1.1em; color: var(--text-soft); }

/* ---- Green centered pull-quote variant ---- */
.pull-quote-green {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--accent);
  max-width: 720px;
  margin: 34px auto;
  line-height: 1.45;
  text-wrap: balance;
}

/* ---- App-window mockup: sidebar + conversation (a dressed-up product shot) ---- */
.app-mock {
  max-width: 680px;
  margin: 44px auto 0;
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  text-align: left;
}
@media (max-width: 640px) {
  .app-mock { max-width: 460px; }
  .app-sidebar { display: none; }
}
.app-sidebar {
  width: 216px;
  flex-shrink: 0;
  background: var(--bg-warm);
  border-right: 1px solid var(--border);
  padding: 20px 16px;
}
.app-sidebar-logo { text-align: center; margin-bottom: 18px; }
.app-sidebar-logo img { width: 118px; height: auto; display: block; margin: 0 auto; }
.app-tabs {
  display: flex; gap: 12px; justify-content: center;
  font-size: 0.72rem; border-bottom: 1px solid var(--border);
  padding-bottom: 12px; margin-bottom: 14px;
}
.app-tabs span { color: var(--text-muted); padding-bottom: 3px; }
.app-tabs span.active { color: var(--text); font-weight: 700; border-bottom: 2px solid var(--accent); }
.app-newjourney {
  background: var(--accent); color: #fff; text-align: center;
  font-size: 0.74rem; font-weight: 600; padding: 9px; border-radius: 7px; margin-bottom: 8px;
}
.app-group { font-family: system-ui, sans-serif; font-size: 0.56rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); margin: 16px 0 9px; }
.app-journey { margin-bottom: 11px; }
.app-journey b { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); }
.app-journey i { font-style: normal; font-size: 0.62rem; color: var(--text-muted); }
.app-convo { flex: 1; min-width: 0; padding: 18px; display: flex; flex-direction: column; }
.app-convo .bubble { max-width: 90%; }
.app-convo .bubble strong { color: var(--text); }
