/* ============================================================
   INTIMATE TRUTHS — MOBILE-FIRST DESIGN SYSTEM
   Base styles = mobile (375px). Desktop via min-width queries.
   ============================================================ */

:root {
  --bg-page: #FEFCFB;
  --bg-card: #F5E8E2;
  --bg-dark: #1C1917;
  --text-primary: #1C1917;
  --text-muted: #6B6460;
  --text-light: #FEFCFB;
  --accent: #9C7B7B;
  --accent-hover: #7A5E5E;
  --border: #E2D4CC;
  --cta-urgent: #8B3A3A;
  --cta-urgent-hover: #A04545;
  --star-gold: #D4A847;
  --live-red: #C0392B;
  --gold-divider: #C8A96E;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 52px;
}
body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-page);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Reading Progress Bar --- */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--gold-divider);
  z-index: 1001;
  transition: width 100ms linear;
  pointer-events: none;
}
#progress-bar.below-sticky { top: 48px; }

/* --- Sticky Top Bar (mobile base: 48px) --- */
#sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: var(--bg-dark);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  transform: translateY(-100%);
  transition: transform 300ms ease-out;
}
#sticky-bar.visible { transform: translateY(0); }

#sticky-bar .tagline {
  display: none; /* hidden on small mobile */
  color: var(--text-light);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 16px;
  opacity: 0.85;
}
#sticky-bar .cta-btn { width: auto; } /* prevent full-width in flex */

/* --- CTA Buttons (mobile base) --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
  white-space: nowrap;
  line-height: 1;
  min-height: 48px;
  width: 100%;
}
.cta-editorial { background: var(--bg-dark); color: var(--text-light); }
.cta-editorial:hover { background: var(--accent); }
.cta-urgent { background: var(--cta-urgent); color: #fff; border-radius: 6px; }
.cta-urgent:hover { background: var(--cta-urgent-hover); transform: scale(1.02); }
.cta-sm { font-size: 13px; padding: 12px 20px; min-height: 48px; }

/* --- Header (mobile base) --- */
.site-header {
  padding: 25px 20px 0;
  background: var(--bg-page);
}
.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.site-header img { height: 60px; width: auto; }

/* --- Passive Strip --- */
.passive-strip {
  margin-top: 25px;
  background: var(--border);
  text-align: center;
  padding: 7px 20px;
}
.passive-strip p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-primary);
}

/* --- Article Top (mobile base) --- */
.article-top {
  max-width: 890px;
  margin: 0 auto;
  padding: 32px 16px 0;
}

.breadcrumb {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.breadcrumb .sep { color: var(--border); }

.category-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.article-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text-primary);
}

.article-subhead {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-top: 12px;
}

.byline-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.byline-meta .sep { color: var(--border); }
.byline-meta .author-name { text-decoration: underline; }

.meta-divider {
  height: 1px;
  background: var(--border);
  margin: 15px 0;
}

/* --- Live Readers --- */
.live-readers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live-red);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Article Body (mobile base) --- */
.article-body {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 16px;
}
.article-body p { margin-bottom: 16px; }

.stage-gap { height: 12px; }
.stage-gap-sm { height: 8px; }

/* --- Article Images --- */
.article-img {
  width: 100%;
  max-width: 860px;
  margin: 24px auto;
  border-radius: 4px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-card);
}

/* --- Pull-Quotes --- */
.pullquote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-primary);
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 20px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

/* --- Expert Blockquote --- */
.expert-block {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}
.expert-block .quote-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.expert-block .attribution {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.expert-context { margin-top: 20px; }

/* --- CTA Box (inline, dark bg with rounded corners on mobile) --- */
.cta-box {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  margin: 32px 0;
}
.cta-box .cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cta-box .cta-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: #D6CFC8;
  margin-bottom: 12px;
}
.cta-box .cta-btn { background: var(--accent); color: var(--text-light); }
.cta-box .cta-btn:hover { background: var(--accent-hover); }
.cta-box .cta-privacy {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: #D6CFC8;
  opacity: 0.7;
  margin-top: 12px;
}

/* --- Full-bleed CTA --- */
.cta-full {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 40px 24px;
}
.cta-full .cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cta-full .cta-sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: #D6CFC8;
  margin-bottom: 4px;
}
.cta-full .social-proof {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.cta-full .cta-btn { background: var(--accent); color: var(--text-light); }
.cta-full .cta-btn:hover { background: var(--accent-hover); }
.cta-full .ps-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: #D6CFC8; opacity: 0.8;
  max-width: 540px;
  margin: 24px auto 0;
}
.cta-full .scarcity {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: #D6CFC8; opacity: 0.7;
  margin-top: 12px;
}
/* --- Objection Handlers --- */
.objection { margin: 32px 0; }
.objection h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.objection p { font-size: 16px; line-height: 1.75; }

/* --- How It Works --- */
.how-section { margin: 40px 0; }
.how-section > h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  margin-bottom: 28px;
}
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
}
.step-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* --- Author Bio (mobile: stacked centered) --- */
.author-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 4px;
  margin: 32px 0;
}
.author-bio img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--border);
}
.author-bio .name { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 16px; }
.author-bio .title { font-family: 'Inter', system-ui, sans-serif; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.author-bio .desc { font-size: 14px; line-height: 1.5; }

/* --- Star Ratings --- */
.star-section { text-align: center; margin: 32px 0; padding: 16px 0; }
.star-section .stars { color: var(--star-gold); font-size: 22px; letter-spacing: 4px; }
.star-section .score { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; font-size: 18px; margin-top: 4px; }
.star-section .based { font-family: 'Inter', system-ui, sans-serif; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.star-section .review-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}
.star-section .review-attr { font-family: 'Inter', system-ui, sans-serif; font-style: normal; font-size: 13px; color: var(--text-muted); }
.star-section .disclaimer { font-family: 'Inter', system-ui, sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 16px; }

/* --- Comments --- */
.comments-section { margin: 32px 0; border-top: 1px solid var(--border); padding-top: 32px; }
.comments-header { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 8px; }

.comment {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.comment-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.comment-avatar img { width: 16px; height: 16px; opacity: 0.5; }
.comment .username { font-family: 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 14px; }
.comment .ts { font-family: 'Inter', system-ui, sans-serif; font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; }
.comment .body {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg-page);
  border-radius: 4px;
  padding: 12px 16px;
}

.show-more-btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: underline;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 0;
}
.hidden-comments { display: none; }
.hidden-comments.show { display: block; }

/* --- FAQ --- */
.faq-section { margin: 40px 0; }
.faq-section > h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  margin-bottom: 28px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  min-height: 48px;
}
.faq-q .chevron {
  flex-shrink: 0;
  width: 18px; height: 18px;
  transition: transform 200ms;
  color: var(--text-muted);
  margin-left: 16px;
}
.faq-q[aria-expanded="true"] .chevron { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-a-inner {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- More Articles (mobile: horizontal scroll) --- */
.more-articles { margin: 40px 0; }
.more-articles .section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}
.articles-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.articles-grid::-webkit-scrollbar { display: none; }
.article-card {
  min-width: 260px;
  max-width: 75vw;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.article-card .thumb {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: var(--bg-card);
  object-fit: cover;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.article-card .card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Footer (mobile base: stacked centered) --- */
.site-footer {
  background: var(--bg-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
}
.footer-logo { margin-bottom: 32px; text-align: center; }
.footer-logo img { height: 32px; width: auto; filter: invert(1); margin: 0 auto; }
.footer-logo .tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 10px;
}
.footer-cols {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
}
.footer-col h5 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-col a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .email-note {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid #2A2523;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}


/* --- Exit Popup --- */
#exit-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
}
#exit-overlay.visible { opacity: 1; visibility: visible; }

.exit-card {
  background: #fff;
  max-width: 440px;
  width: calc(100% - 32px);
  border-radius: 8px;
  padding: 24px 20px;
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 300ms;
}
#exit-overlay.visible .exit-card { transform: scale(1); }

.close-x {
  position: absolute;
  top: 8px; right: 8px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.exit-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.exit-card p { font-size: 15px; line-height: 1.5; margin-bottom: 8px; }
.exit-card .cta-btn { margin: 12px 0; }
.exit-card .testimonial { font-style: italic; font-size: 14px; color: var(--text-muted); margin-top: 12px; }
.exit-card .countdown { color: var(--live-red); font-family: 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 16px; margin-top: 8px; }

/* --- Slide-In (mobile base: full-width bottom sheet) --- */
#slide-in {
  position: fixed;
  bottom: 0; right: 0; left: 0;
  max-width: none;
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 20px 16px 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 400ms ease-out;
}
#slide-in.visible { transform: translateY(0); }
#slide-in p { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
#slide-in .cta-btn { display: flex; text-align: center; font-size: 13px; padding: 12px 20px; }

/* --- Toast (mobile base: full-width) --- */
.toast {
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  max-width: none;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  z-index: 998;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  transform: translateX(-120%);
  transition: transform 300ms ease-out;
}
.toast.visible { transform: translateX(0); }

/* Offset toast/slide-in above mobile CTA when it's visible */
body.has-mobile-cta .toast { bottom: 68px; }
body.has-mobile-cta #slide-in { bottom: 56px; padding-bottom: 16px; }

/* --- Mobile Bottom CTA --- */
#mobile-bottom-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  min-height: 56px;
  background: var(--bg-dark);
  z-index: 1100;
  padding: 6px 16px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: center;
}
#mobile-bottom-cta.active { display: flex; }
#mobile-bottom-cta .cta-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 4px;
  font-size: 14px;
}

/* --- Article column wrapper --- */
.article-col {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* ============================================================
   DESKTOP ENHANCEMENTS (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  body { font-size: 18px; }

  #progress-bar.below-sticky { top: 52px; }

  #sticky-bar { height: 52px; padding: 0 24px; }
  #sticky-bar .tagline { display: block; }

  .cta-btn { width: auto; font-size: 15px; padding: 14px 32px; }
  #sticky-bar .cta-btn { width: auto; }

  .site-header { padding: 40px 20px 0; }
  .site-header .inner { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .site-header img { height: 94px; }

  .passive-strip { margin-top: 40px; }

  .article-top { padding: 48px 20px 0; }
  .article-headline { font-size: 52px; line-height: 1.12; }
  .article-subhead { font-size: 22px; }
  .byline-meta { margin-top: 20px; }
  .meta-divider { margin: 20px 0 15px; }

  .article-body { padding: 0 20px; }
  .article-body p { margin-bottom: 15px; font-size: 18px; }
  .stage-gap { height: 20px; }
  .article-img { margin: 30px auto; }

  .pullquote { font-size: 24px; padding: 24px 32px; margin: 30px 0; }
  .expert-block { padding: 24px 32px; margin: 30px 0; }
  .expert-block .quote-text { font-size: 16px; }

  .cta-box { padding: 48px 32px; margin: 40px 0; border-radius: 12px; }
  .cta-box .cta-heading { font-size: 24px; }
  .cta-box .cta-sub { font-size: 17px; }

  .cta-full { padding: 56px 48px; }
  .cta-full .cta-heading { font-size: 36px; line-height: 1.22; }
  .cta-full .cta-sub { font-size: 20px; }
  .cta-full .social-proof { font-size: 18px; }
  .cta-full .ps-text { font-size: 17px; }

  .objection { margin: 40px 0; }
  .objection h4 { font-size: 22px; }
  .objection p { font-size: 18px; }

  .how-section > h3 { font-size: 32px; margin-bottom: 32px; }
  .how-section { margin: 48px 0; }

  .author-bio { flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; margin: 40px 0; }

  .star-section { margin: 40px 0; }
  .comments-section { margin: 40px 0; padding-top: 40px; }
  .comment .body { font-size: 16px; }
  .faq-section { margin: 48px 0; }
  .faq-section > h3 { font-size: 32px; margin-bottom: 32px; }
  .faq-q { font-size: 16px; }
  .faq-a-inner { font-size: 15px; }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
  }
  .article-card { min-width: 0; max-width: none; }

  .footer-inner { padding: 64px 48px 40px; }
  .footer-logo { text-align: left; }
  .footer-logo img { margin: 0; }
  .footer-cols { flex-direction: row; justify-content: space-between; text-align: left; gap: 40px; }
  .footer-col a { justify-content: flex-start; }
  .footer-bottom { margin-top: 48px; padding-top: 24px; text-align: left; }



  .exit-card { padding: 32px; }
  .exit-card h3 { font-size: 24px; }

  /* Desktop: slide-in is small card at bottom-right */
  #slide-in {
    bottom: 20px; right: 20px; left: auto;
    max-width: 280px;
    border-radius: 8px;
    padding-bottom: 16px;
  }

  .toast {
    left: 20px; right: auto;
    max-width: 320px;
    bottom: 20px;
  }

  /* Hide mobile-only CTA on desktop */
  #mobile-bottom-cta { display: none !important; }
  body.has-mobile-cta .toast { bottom: 20px; }
  body.has-mobile-cta #slide-in { bottom: 20px; padding-bottom: 16px; }

  .article-col { padding: 40px 24px; }
  .article-col.wide { max-width: 960px; }
}

/* --- Landscape safety: hide mobile CTA when viewport is very short --- */
@media (max-height: 500px) {
  #mobile-bottom-cta { display: none !important; }
}
