/* ===========================================
   Learn & Grow Rich — Premium Dark Theme
   =========================================== */

:root {
  --bg: #0b0c0f;
  --bg-elev: #111318;
  --bg-card: #14171d;
  --bg-card-2: #181b22;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --text-dim: #a8adb8;
  --text-muted: #7a808c;
  --gold: #d4af37;
  --gold-soft: #e9c66a;
  --gold-deep: #b8932a;
  --green: #4ade80;
  --green-soft: rgba(74, 222, 128, 0.12);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --max-w: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 16px;
}

h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.005em; }

/* Legibility halo for text that overlays animated backgrounds.
   Dark drop = readability backdrop; gold edge = subtle "border around text". */
.hero-title,
.hero-sub,
.hero .eyebrow,
.story h2,
.story p,
.final-cta h2,
.final-cta p,
.problem .section-head h2,
.problem .section-head .lede,
.problem .section-head .kicker,
.solution .section-head h2,
.solution .section-head .lede,
.solution .section-head .kicker,
.features .section-head h2,
.features .section-head .lede,
.features .section-head .kicker {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.55),
    0 0 1px rgba(212, 175, 55, 0.45);
}

/* Slightly stronger halo for the hero title — it overlaps the most chart density */
.hero-title {
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.7),
    0 0 22px rgba(11, 12, 15, 0.5),
    0 0 1px rgba(212, 175, 55, 0.55);
}

p { margin: 0 0 16px; color: var(--text-dim); }

.gold { color: var(--gold); }

/* ===========================================
   Brand Family Bar (above header on both pages)
   =========================================== */
.family-bar {
  position: relative;
  z-index: 51;
  background: #08090c;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.family-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.family-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.family-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.family-tab {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.family-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.family-tab.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  cursor: default;
}
.debt-free-page .family-tab.active {
  color: var(--gold);
  background: rgba(46, 184, 107, 0.12);
}

@media (max-width: 560px) {
  .family-label { display: none; }
  .family-inner { justify-content: center; }
}

/* ===========================================
   Header
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 12, 15, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(11, 12, 15, 0.92);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav a.nav-cta {
  background: var(--gold);
  color: #0b0c0f;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav a.nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0b0c0f;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}
.btn-lg {
  padding: 18px 32px;
  font-size: 16px;
}

/* ===========================================
   Hero
   =========================================== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-chart,
.final-chart {
  position: absolute;
  inset: 0;
  background-image: url('chart-bg.svg');
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: 100% auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 80%, transparent 100%),
                      linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 80%, transparent 100%),
              linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  animation: chartFloat 14s ease-in-out infinite;
}

.final-chart {
  opacity: 0.18;
  background-position: center 80%;
  animation: chartFloatMirror 16s ease-in-out infinite;
}

@keyframes chartFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes chartFloatMirror {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50%      { transform: scaleX(-1) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chart, .final-chart, .story-chart { animation: none !important; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  border-radius: 22px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(212, 175, 55, 0.15);
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-row.centered { justify-content: center; }

.trust-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Next live Q&A session strip — slim banner under hero CTAs */
.live-session-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 640px;
  margin: 28px auto 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
}
.live-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ff4d4d;
  text-transform: uppercase;
  flex-shrink: 0;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4d4d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.live-session-body {
  flex: 1 1 220px;
  min-width: 0;
}
.live-session-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.live-session-title .live-session-date {
  color: var(--gold);
}
.live-session-sub {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}
.btn.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}
@media (max-width: 560px) {
  .live-session-strip { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }
  .live-session-body { flex: 1 1 auto; }
  .live-session-strip .btn.btn-sm { width: 100%; }
  .community-strip-card .btn.btn-sm { width: 100%; }
}

/* Add-to-calendar disclosure inside the live session strip */
.cal-disclosure {
  margin-top: 6px;
  position: relative;
}
.cal-disclosure .cal-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cal-disclosure .cal-trigger::-webkit-details-marker { display: none; }
.cal-disclosure .cal-trigger:hover { text-decoration: underline; }
.cal-disclosure .cal-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  margin-top: 6px;
  min-width: 200px;
  background: var(--bg-card, #1a1410);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  padding: 6px;
  display: flex;
  flex-direction: column;
}
.cal-disclosure .cal-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text, #f5f5f5);
  text-decoration: none;
  border-radius: 6px;
}
.cal-disclosure .cal-menu a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}
@media (max-width: 560px) {
  .cal-disclosure { text-align: center; }
  .cal-disclosure .cal-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.meta-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.meta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}
.meta-link:hover { transform: translateY(-2px); }
.meta-link:hover .meta-num { color: var(--gold-soft); }

/* ===========================================
   Section common
   =========================================== */
.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.lede {
  font-size: 17px;
  color: var(--text-dim);
}

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

/* ===========================================
   Atmospheric background layers
   =========================================== */
.bg-symbols, .bg-pairs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sym {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.07;
  user-select: none;
  animation: ambientFloat 9s ease-in-out infinite;
  will-change: transform, opacity;
}
.pair {
  position: absolute;
  font-family: 'Inter', monospace;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0.14;
  user-select: none;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.03);
  animation: ambientFloat 10s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes ambientFloat {
  0%, 100% { transform: translateY(0); opacity: var(--amb-min, 0.07); }
  50%      { transform: translateY(-10px); opacity: var(--amb-max, 0.11); }
}
.pair { --amb-min: 0.12; --amb-max: 0.2; }

/* Ticker tape */
.ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  gap: 36px;
  padding-left: 36px;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
.ticker-item em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}
.ticker-item i {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ticker-item i.up   { color: var(--green); }
.ticker-item i.down { color: #f87171; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .sym, .pair, .ticker-track { animation: none !important; }
}

/* ===========================================
   Problem
   =========================================== */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  position: relative;
  overflow: hidden;
}
.problem .container { position: relative; z-index: 2; }
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 640px;
  display: grid;
  gap: 12px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
}
.problem-list .x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-copy {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-dim);
}

/* Solution + Features section positioning */
.solution, .features {
  position: relative;
  overflow: hidden;
}
.solution .container, .features .container {
  position: relative;
  z-index: 2;
}
.features { padding-top: 130px; }
.features .ticker { top: 0; }
@media (max-width: 720px) {
  .features { padding-top: 110px; }
}

/* ===========================================
   Solution / Features cards
   =========================================== */
.card, .feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover, .feature:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  background: var(--bg-card-2);
}
.card-icon, .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}
.card h3, .feature h3 {
  color: var(--text);
  margin-bottom: 10px;
}
.card p, .feature p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* Featured (Personal Mentorship) card */
.card-featured, .feature-featured {
  grid-column: 1 / -1;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 38px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.card-featured::before, .feature-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.card-featured .card-icon, .feature-featured .feature-icon {
  width: 64px;
  height: 64px;
  font-size: 30px;
  margin: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
.card-featured h3, .feature-featured h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card-featured p, .feature-featured p {
  font-size: 15.5px;
  max-width: 640px;
}
.card-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ===========================================
   Free Ebook (Lead Magnet)
   =========================================== */
.ebook {
  background:
    radial-gradient(ellipse at left center, rgba(212, 175, 55, 0.10), transparent 55%),
    var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ebook-inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ebook-cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  animation: ebookFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes ebookFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.ebook-cover-wrap::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.28), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.ebook-cover-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(18px 28px 40px rgba(0, 0, 0, 0.6));
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  z-index: 1;
}
.ebook-cover-wrap:hover .ebook-cover-img {
  transform: rotate(-2deg) scale(1.03);
}
.ebook-shine {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: 70px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-50%) skewX(-12deg);
  pointer-events: none;
  z-index: 2;
  animation: ebookShine 7s ease-in-out infinite;
}
@keyframes ebookShine {
  0%, 100% { opacity: 0; transform: translateX(-260%) skewX(-12deg); }
  50%      { opacity: 1; transform: translateX(160%) skewX(-12deg); }
}

.ebook-content .kicker { margin-bottom: 12px; }
.ebook-content h2 { margin-bottom: 14px; }
.ebook-content > p {
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 24px;
}
.ebook-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
  max-width: 580px;
}
.ebook-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.ebook-bullets .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ebook .cta-row { justify-content: flex-start; margin: 0 0 16px; }
.ebook-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin: 0 0 18px;
}

/* Ebook capture form (replaces CTA row when gated) */
.ebook-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 16px;
  max-width: 460px;
}
.ebook-form-row {
  display: flex;
  flex-direction: column;
}
.ebook-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ebook-field-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim, #c8c2bd);
  text-transform: uppercase;
}
.ebook-field-label small {
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  margin-left: 4px;
}
.ebook-form input[type="text"],
.ebook-form input[type="email"],
.ebook-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text, #f5f5f5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  box-sizing: border-box;
}
.ebook-form input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.ebook-form input:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.ebook-form input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.45);
}
.ebook-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim, #c8c2bd);
  cursor: pointer;
  user-select: none;
}
.ebook-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.ebook-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ebook-form-error {
  font-size: 13px;
  color: #ff8080;
  min-height: 18px;
  margin: -4px 0 0;
}
.ebook-form-error:empty { display: none; }
.ebook-submit-btn {
  align-self: flex-start;
  margin-top: 4px;
}
.ebook-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ebook-thanks {
  font-size: 14px;
  color: var(--gold);
  margin: 12px 0 16px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .ebook-form { max-width: 100%; }
  .ebook-submit-btn { align-self: stretch; }
  .ebook .cta-row { justify-content: stretch; }
}

/* Ebook section — WhatsApp community invite (third tier of engagement) */
.ebook-group-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  max-width: 560px;
  margin: 0 0 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.06), rgba(74, 222, 128, 0.02));
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ebook-group-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.55);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.04));
}
.ebook-group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
  flex-shrink: 0;
}
.ebook-group-text {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.45;
}
.ebook-group-text strong { color: var(--text); }
.ebook-group-arrow {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.ebook-group-cta:hover .ebook-group-arrow { transform: translateX(3px); }

@media (max-width: 560px) {
  .ebook-group-cta { grid-template-columns: auto 1fr; }
  .ebook-group-arrow { display: none; }
}

.ebook-content > p.ebook-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 480px;
  margin: 0;
  padding: 6px 10px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 6px;
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
.ebook-disclaimer-icon {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.5;
  flex-shrink: 0;
  opacity: 0.8;
}
.ebook-disclaimer a {
  color: #4ee07d;
  text-decoration: underline;
  text-decoration-color: rgba(78, 224, 125, 0.4);
  text-underline-offset: 2px;
}
.ebook-disclaimer a:hover {
  text-decoration-color: #4ee07d;
}

@media (prefers-reduced-motion: reduce) {
  .ebook-cover-wrap, .ebook-shine { animation: none !important; }
}

@media (max-width: 860px) {
  .ebook-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .ebook-cover-wrap { margin: 0 auto; }
  .ebook-bullets {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  .ebook .cta-row { justify-content: center; }
}

/* ===========================================
   Partners
   =========================================== */
.partners {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.partners-grid { gap: 24px; }
.partner-card {
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.08), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.32);
}
.partner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.partner-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text);
}
.partner-card > p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.partner-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.partner-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.partner-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.partner-link:hover { text-decoration: underline; }
.partner-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.partner-cta .btn {
  padding: 11px 20px;
  font-size: 14px;
}
.partner-secondary {
  font-size: 13.5px;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.partner-secondary:hover {
  color: var(--gold);
}

.partners-note {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: 15.5px;
  color: var(--text-dim);
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ===========================================
   How It Works
   =========================================== */
.how {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 { color: var(--text); margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; }

/* ===========================================
   Story
   =========================================== */
.story {
  background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08), transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.story-chart {
  position: absolute;
  inset: 0;
  background-image: url('chart-bg.svg');
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 110% auto;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  animation: chartFloat 18s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%),
                      linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%),
              linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.story-inner p {
  font-size: 18px;
  line-height: 1.7;
}
.story-highlight {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin-top: 28px;
  text-align: left;
  display: inline-block;
}

/* ===========================================
   Testimonials
   =========================================== */
.testimonials {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.t-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}
.t-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-inner { max-width: 760px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.28);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.25s ease, background 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .chev {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.14);
}
.faq-body {
  padding: 0 24px 22px;
}
.faq-body p {
  margin: 0 0 10px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.faq-body a:hover {
  text-decoration-color: var(--gold);
}
.faq-body a.wa-inline {
  color: #4ee07d;
  text-decoration-color: rgba(78, 224, 125, 0.4);
}
.faq-body a.wa-inline:hover {
  text-decoration-color: #4ee07d;
}
.faq-steps {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.faq-steps li { margin-bottom: 6px; }
.faq-steps li:last-child { margin-bottom: 0; }

/* ===========================================
   Final CTA
   =========================================== */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12), transparent 65%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 18px;
}
.final-cta p {
  font-size: 18px;
  margin-bottom: 36px;
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.footer-name {
  font-weight: 600;
  font-size: 15px;
}
.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 820px;
  margin: 0;
}
.ecosystem-link {
  background: linear-gradient(135deg, rgba(46, 184, 107, 0.06), rgba(46, 184, 107, 0.02));
  border: 1px solid rgba(46, 184, 107, 0.25);
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 820px;
}
.ecosystem-kicker {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4ee07d;
  margin-bottom: 8px;
}
.ecosystem-link p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}
.ecosystem-link a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(78, 224, 125, 0.4);
  text-underline-offset: 2px;
}
.ecosystem-link a:hover {
  text-decoration-color: #4ee07d;
}
.ecosystem-link .ecosystem-cta {
  display: inline-block;
  color: #4ee07d;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  white-space: nowrap;
}
.ecosystem-link .ecosystem-cta:hover {
  color: #6eea99;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-weight: 500;
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-wa:hover {
  color: #4ee07d;
  transform: translateY(-1px);
}
.footer-ig {
  color: var(--gold, #d4af37);
}
.footer-ig:hover {
  color: #f0d27a;
  transform: translateY(-1px);
}
.footer-tt {
  color: #e8e8ea;
}
.footer-tt:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ===========================================
   Floating WhatsApp Button
   =========================================== */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  background: #25d366;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  flex-shrink: 0;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0); }
}
.wa-float-label {
  line-height: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .wa-float {
    padding: 14px;
    bottom: 18px;
    right: 18px;
  }
  .wa-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 900px) {
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Mobile collapse only applies to the full primary nav (with hamburger toggle).
     Simple single-CTA navs (audit, presentation, signup, privacy, sponsor) stay inline. */
  .nav:not(#primaryNav) a.nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .nav#primaryNav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(11, 12, 15, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav#primaryNav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav#primaryNav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav#primaryNav a:last-child { border-bottom: none; }
  .nav#primaryNav a.nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 14px 16px;
    border-bottom: none;
  }
  .nav-toggle { display: flex; }
  .brand-name { display: none; }

  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }

  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }

  .hero-meta { gap: 18px; }
  .meta-divider { display: none; }

  .story-highlight { padding-left: 18px; }

  .hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .card-featured, .feature-featured {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 24px 28px;
    text-align: left;
  }
  .card-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 4px;
  }
}

/* ===========================================
   GDPR cookie consent banner
   =========================================== */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.22,.61,.36,1);
}
.consent-banner.consent-show { opacity: 1; transform: translateY(0); }
.consent-banner.consent-hide { opacity: 0; transform: translateY(20px); }
.consent-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.consent-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}
.consent-text strong { color: var(--text); }
.consent-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.consent-btn {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-dim);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.consent-reject:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}
.consent-accept {
  background: var(--gold);
  color: #0b0c0f;
  border-color: var(--gold);
}
.consent-accept:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
@media (max-width: 700px) {
  .consent-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .consent-actions { justify-content: stretch; }
  .consent-btn {
    flex: 1;
    padding: 13px 16px;
    font-size: 14px;
    min-height: 44px;
  }
}

/* Optional name input on access form */
.key-optional {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-transform: none;
  margin-left: 6px;
}
.key-name-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}
.key-name-input::placeholder { color: var(--text-muted); }
.key-name-input:focus { border-color: var(--gold); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===========================================
   Start Here (members onboarding) page
   =========================================== */

/* Progress card in hero */
.progress-card {
  max-width: 560px;
  margin: 36px auto 0;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.progress-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}
.progress-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.progress-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.progress-count #progressDone {
  color: var(--text);
  font-weight: 700;
}
.progress-percent {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, color 0.25s ease;
}
.progress-percent:hover { transform: scale(1.02); }
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  border-radius: 999px;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.progress-reset {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11.5px;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.progress-reset:hover { color: var(--text); }

.progress-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.progress-actions .progress-reset { margin-top: 10px; }
.progress-print {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.progress-print:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

/* Pathway list */
.pathway-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pathway-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pathway-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0b0c0f;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.pathway-list h3 { font-size: 17px; margin: 0 0 4px; }
.pathway-list p { font-size: 14px; margin: 0; color: var(--text-dim); }

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
  z-index: 0;
}
.timeline-phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  z-index: 1;
}
.timeline-phase::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-days {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.timeline-phase h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-phase p { font-size: 13.5px; line-height: 1.55; margin: 0; }

/* Step cards (accordion) */
.steps-section { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  /* overflow: visible so glossary tooltips can escape the card bounds */
  overflow: visible;
  transition: border-color 0.25s ease;
}
.step-card[open] { border-color: rgba(212, 175, 55, 0.32); }
.step-card.step-complete {
  border-color: rgba(74, 222, 128, 0.32);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.03), var(--bg-card));
}
.step-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
}
.step-card summary::-webkit-details-marker { display: none; }
.step-card summary:hover .step-badge { background: rgba(212, 175, 55, 0.2); }
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.step-card.step-complete .step-badge {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.32);
  color: var(--green);
}
.step-card.step-complete .step-badge::before {
  content: '✓ ';
}
.step-card summary h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.step-day {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.step-body {
  padding: 4px 26px 26px;
  border-top: 1px solid var(--border);
}
.step-body p { font-size: 15px; line-height: 1.65; }
.step-body p.muted { color: var(--text-muted); font-size: 13px; }
.step-body h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 22px 0 12px;
}

.task-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.task-list.compact { gap: 4px; }
.task-list li {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14.5px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.task-list li:has(input:checked) {
  background: rgba(74, 222, 128, 0.05);
  border-color: rgba(74, 222, 128, 0.22);
}
.task-list label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.55;
}
.task-list input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  background: var(--bg);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.task-list input[type="checkbox"]:hover { border-color: var(--gold); }
.task-list input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.task-list input[type="checkbox"]:checked::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid #0b0c0f;
  border-bottom: 2px solid #0b0c0f;
  transform: rotate(45deg) translate(-1px, -1px);
}
.task-list a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* Action bar (buttons row) */
.action-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
}
.action-bar .btn { padding: 11px 18px; font-size: 14px; }

/* WA check-in button */
.wa-checkin {
  margin-top: 8px;
  background: rgba(74, 222, 128, 0.06);
  border-color: rgba(74, 222, 128, 0.32);
  color: var(--green);
}
.wa-checkin:hover {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.55);
  color: #6eea99;
}

/* Video embeds */
.video-grid {
  display: grid;
  gap: 22px;
  margin: 16px 0 22px;
}
.video-card h4 {
  margin: 0 0 10px;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text) !important;
  font-weight: 600 !important;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Click-to-open thumbnail card (used when YouTube embedding is disabled) */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.video-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.video-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.video-thumb::before {
  /* Subtle dark gradient overlay so the play button reads on any thumbnail */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 0 3px rgba(255, 255, 255, 0.08);
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 0, 0, 1);
}
.video-play svg { margin-left: 4px; }  /* nudge play triangle for optical centering */
.video-watch {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 560px) {
  .video-play { width: 60px; height: 60px; }
  .video-play svg { width: 28px; height: 28px; }
}

/* Strategy grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 22px;
}
.strategy-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 16px;
}
.strategy-card h4 {
  margin: 0 0 8px !important;
  font-size: 15px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text) !important;
}
.strategy-card p { font-size: 13.5px; margin: 0 0 12px; }
.strategy-link {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-top: 6px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.strategy-link:hover { color: var(--gold-soft); }

/* Callout (quote) */
.callout {
  margin: 18px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.04);
  border-radius: 4px;
  font-style: italic;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* Resources grid */
.resource-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.32);
  background: var(--bg-card-2);
}
.resource-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}
.resource-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}

/* Placeholder link visual hint (subtle dashed underline) */
.placeholder-link {
  position: relative;
}
.placeholder-link::after {
  content: ' ⚠';
  font-size: 0.85em;
  opacity: 0.7;
}

/* Access key entry form (welcome page, members gate) */
.access-key-form {
  max-width: 520px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.access-banner {
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.32);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.access-banner strong { color: #fca5a5; }
.key-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: left;
}
.key-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.key-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.key-row input {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', monospace;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}
.key-row input::placeholder { color: var(--text-muted); }
.key-row input:focus { border-color: var(--gold); }
.key-row input.key-bad {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.05);
  animation: keyShake 0.4s ease;
}
@keyframes keyShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
.key-row .btn {
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}
.key-help {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}
.key-help a {
  color: #4ee07d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.key-help strong {
  color: var(--text);
}

/* Sponsor intro card (welcome.html) */
.sponsor-intro-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.sponsor-intro-card.no-photo {
  grid-template-columns: 1fr;
}

/* Sponsor portrait above "Book Your Residual Income Call" CTA */
.sponsor-call-portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
}
.sponsor-call-portrait-wrap.no-photo {
  display: none;
}
.sponsor-call-portrait {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.sponsor-call-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 600px) {
  .sponsor-call-portrait {
    width: 160px;
    height: 192px;
  }
}

/* ===========================================
   Signup walkthrough pages (signup-*.html)
   =========================================== */
.signup-tier-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 7px 14px;
  border-radius: 999px;
}
.signup-tier-badge-featured {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.signup-overview { padding: 40px 0 24px; }
.signup-overview-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.signup-overview-card-featured {
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.12), transparent 60%),
    var(--bg-card);
  border-color: rgba(212, 175, 55, 0.3);
}
.signup-overview-card h2 {
  font-size: 22px;
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.signup-overview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.signup-overview-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
}
.signup-overview-list li strong { color: var(--text); }
.signup-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.signup-overview-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

.signup-part {
  border-top: 1px solid var(--border);
}
.signup-step-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.signup-step-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  margin-bottom: 14px;
}
.signup-step-head h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 10px;
}
.signup-step-head .lede {
  font-size: 15px;
  color: var(--text-dim);
}

.signup-walkthrough {
  list-style: none;
  padding: 0;
  margin: 24px auto;
  max-width: 760px;
  display: grid;
  gap: 18px;
}
.signup-walkthrough > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.walkthrough-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0b0c0f;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.walkthrough-body h3 {
  margin: 4px 0 8px;
  font-size: 16px;
}
.walkthrough-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 10px;
}
.walkthrough-body p strong, .walkthrough-list strong { color: var(--text); }
.walkthrough-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 6px;
}
.walkthrough-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.walkthrough-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--gold);
}

.pitfall-callout.pitfall-inline {
  margin: 12px 0 4px;
  padding: 10px 12px 10px 12px;
}
.pitfall-callout.pitfall-inline p {
  font-size: 13px;
  line-height: 1.55;
}

.signup-part > .container > .wa-checkin,
.signup-part > .container > .btn.btn-whatsapp {
  display: inline-flex;
  margin: 8px auto 0;
}
.signup-part .btn.btn-whatsapp { margin-top: 12px; }
.signup-part > .container > a.btn { display: inline-flex; }
.signup-part > .container { text-align: center; }
.signup-part .signup-walkthrough { text-align: left; }
.signup-part .pitfall-callout { text-align: left; max-width: 820px; margin-left: auto; margin-right: auto; }
.signup-part .action-bar { justify-content: center; }

.signup-done {
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14), transparent 65%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.signup-done .kicker { color: var(--green); }

@media (max-width: 600px) {
  .signup-walkthrough > li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.sponsor-intro-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.sponsor-intro-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 12px;
  color: var(--text);
}
.sponsor-intro-body p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: var(--text-dim);
}
.sponsor-intro-sign {
  font-style: italic;
  color: var(--gold) !important;
  font-size: 13px !important;
  margin-top: 12px !important;
}
@media (max-width: 600px) {
  .sponsor-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .sponsor-intro-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }
}

/* Welcome / path picker */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.path-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
}
.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  background: var(--bg-card-2);
}
.path-card.path-featured {
  border-color: rgba(212, 175, 55, 0.4);
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.1), transparent 60%),
    var(--bg-card);
}
.path-card.path-featured:hover {
  border-color: rgba(212, 175, 55, 0.6);
}
.path-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 5px 11px;
  border-radius: 999px;
  align-self: flex-start;
}
.path-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 4px 0 2px;
  color: var(--text);
}
.path-broker {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.path-broker strong {
  color: var(--gold);
}
.path-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 8px;
}
.path-perks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.path-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.path-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.path-cta {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}
.path-card:hover .path-cta { color: var(--gold-soft); }

.path-help {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin: 24px auto 0;
  max-width: 720px;
}
.path-help a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

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

/* ===========================================
   Resume banner — "Welcome back" on returning visits
   =========================================== */
.resume-banner {
  position: fixed;
  top: 88px; /* clear of header */
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 55;
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px 14px 18px;
  width: min(580px, calc(100vw - 32px));
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 175, 55, 0.14);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), opacity 0.3s ease;
}
.resume-banner.resume-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.resume-banner.resume-hide { opacity: 0; transform: translateX(-50%) translateY(-16px); }
.resume-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212, 175, 55, 0.14);
  border-radius: 50%;
  font-size: 18px;
}
.resume-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.resume-message {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.4;
}
.resume-cta {
  background: var(--gold);
  color: #0b0c0f;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.resume-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.resume-close {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}
.resume-close:hover { color: var(--text); background: rgba(255,255,255,0.04); }
@media (max-width: 560px) {
  .resume-banner {
    top: auto; bottom: 100px;
    grid-template-columns: 36px 1fr auto;
  }
  .resume-banner .resume-close { grid-column: 3; grid-row: 1; }
  .resume-banner .resume-cta { grid-column: 2 / 4; grid-row: 2; justify-self: stretch; text-align: center; }
}

/* ===========================================
   Quick Start pills at the top of each step body
   =========================================== */
.step-quickstart {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.qs-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 11px;
}
.qs-pill strong {
  color: var(--gold);
  font-weight: 700;
}
.qs-pill.qs-save {
  color: var(--green);
  background: rgba(74, 222, 128, 0.04);
  border-color: rgba(74, 222, 128, 0.22);
}
.qs-pill.qs-save strong { color: var(--green); }

/* ===========================================
   Pitfall callout (common mistakes per step)
   =========================================== */
.pitfall-callout {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 16px 14px 16px;
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 10px;
  margin: 16px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
}
.pitfall-callout::before {
  content: '⚠';
  display: inline-flex; align-items: flex-start; justify-content: center;
  color: #fca5a5;
  font-size: 18px;
  line-height: 1.4;
}
.pitfall-callout strong { color: #fca5a5; }
.pitfall-callout p { margin: 0; color: var(--text-dim); }
.pitfall-callout p + p { margin-top: 6px; }

/* ===========================================
   Glossary term tooltips
   =========================================== */
.gloss {
  border-bottom: 1px dotted rgba(212, 175, 55, 0.5);
  cursor: help;
  position: relative;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.gloss:focus { outline: none; }
.gloss-pop {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  z-index: 100;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.gloss-pop::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--border-strong);
}
.gloss:hover .gloss-pop,
.gloss:focus .gloss-pop,
.gloss[data-open="1"] .gloss-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.gloss-pop strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ===========================================
   Toast notifications (step / milestone / finale)
   =========================================== */
.toast-container {
  position: fixed;
  bottom: 100px;   /* clear of the floating WhatsApp button */
  right: 22px;
  z-index: 70;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 44px);
}
.toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: flex-start;
  width: 340px;
  max-width: 100%;
  padding: 14px 14px 14px 16px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.06);
  opacity: 0;
  transform: translateX(380px);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), opacity 0.3s ease;
}
.toast.toast-show { opacity: 1; transform: translateX(0); }
.toast.toast-hide { opacity: 0; transform: translateX(380px); }

.toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.14);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.toast-body { min-width: 0; }
.toast-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.toast-message {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.45;
}
.toast-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.toast-cta:hover {
  background: rgba(74, 222, 128, 0.14);
  border-color: rgba(74, 222, 128, 0.5);
}
.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  align-self: flex-start;
  transition: color 0.15s ease, background 0.15s ease;
}
.toast-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Milestone variant — gold accent */
.toast-milestone .toast-icon {
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-size: 18px;
}
.toast-milestone .toast-title { color: var(--gold-soft); }
.toast-milestone {
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 175, 55, 0.12);
}

/* Finale variant — most prominent, pulses */
.toast-finale {
  width: 380px;
  border-color: rgba(212, 175, 55, 0.5);
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.14), transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.22);
  animation: toastFinalePulse 2.4s ease-in-out infinite;
}
.toast-finale .toast-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 20px;
}
.toast-finale .toast-title {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}
.toast-finale .toast-cta {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}
.toast-finale .toast-cta:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.5);
}
@keyframes toastFinalePulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.22); }
  50%      { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 56px rgba(212, 175, 55, 0.4); }
}

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.2s ease; transform: none; }
  .toast.toast-show { transform: none; }
  .toast.toast-hide { transform: none; }
  .toast-finale { animation: none; }
}

@media (max-width: 560px) {
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 84px;
  }
  .toast, .toast-finale { width: auto; }
}

/* Step-residual special accent */
.step-residual[open] { border-color: rgba(212, 175, 55, 0.5); background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), var(--bg-card)); }

@media (max-width: 900px) {
  .pathway-list { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }
  .strategy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .step-card summary {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .step-card summary h3 { grid-column: 1 / -1; }
  .step-day { grid-column: 1 / -1; }
  .timeline-grid { grid-template-columns: 1fr; }
}

/* ===========================================
   Learn & Grow Debt Free — green-accent variant
   Reuses the entire design system; just swaps gold → green.
   =========================================== */
.debt-free-page {
  --gold:       #2eb86b;
  --gold-soft:  #4ade80;
  --gold-deep:  #1d9450;
}

/* Brand shield (text mark used on the debt-free page) */
.brand-shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0b0c0f;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 14px rgba(46, 184, 107, 0.3);
}
.debt-free-page .footer-brand .brand-shield {
  width: 56px;
  height: 56px;
  font-size: 16px;
}

/* Override gold-rgba accents (originally hard-coded for LAGR's gold) so the
   debt-free page reads green throughout. */
.debt-free-page .nav a.nav-cta            { background: var(--gold); color: #0b0c0f; }
.debt-free-page .nav a.nav-cta:hover      { background: var(--gold-soft); }

.debt-free-page .btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 30px rgba(46, 184, 107, 0.25);
}
.debt-free-page .btn-primary:hover {
  box-shadow: 0 14px 40px rgba(46, 184, 107, 0.35);
}

.debt-free-page .eyebrow,
.debt-free-page .kicker,
.debt-free-page .gold,
.debt-free-page .meta-num,
.debt-free-page .card-icon,
.debt-free-page .ebook-cover-kicker,
.debt-free-page .card-badge,
.debt-free-page .partner-tag {
  color: var(--gold);
}
.debt-free-page .eyebrow {
  background: rgba(46, 184, 107, 0.08);
  border-color: rgba(46, 184, 107, 0.28);
}
.debt-free-page .hero-glow {
  background: radial-gradient(ellipse at center, rgba(46, 184, 107, 0.18), transparent 60%);
}
.debt-free-page .card-icon {
  background: rgba(46, 184, 107, 0.12);
}
.debt-free-page .card:hover, .debt-free-page .feature:hover {
  border-color: rgba(46, 184, 107, 0.3);
}
.debt-free-page .card-featured, .debt-free-page .feature-featured {
  background:
    radial-gradient(ellipse at top right, rgba(46, 184, 107, 0.14), transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border-color: rgba(46, 184, 107, 0.36);
}
.debt-free-page .card-featured::before, .debt-free-page .feature-featured::before {
  background: linear-gradient(135deg, rgba(46, 184, 107, 0.55), transparent 60%);
}
.debt-free-page .card-featured .card-icon, .debt-free-page .feature-featured .feature-icon {
  background: linear-gradient(135deg, rgba(46, 184, 107, 0.26), rgba(46, 184, 107, 0.08));
  border-color: rgba(46, 184, 107, 0.3);
  box-shadow: 0 8px 24px rgba(46, 184, 107, 0.18);
}
.debt-free-page .card-badge {
  background: rgba(46, 184, 107, 0.14);
  border-color: rgba(46, 184, 107, 0.32);
}
.debt-free-page .step-num {
  -webkit-text-stroke-color: var(--gold);
}
.debt-free-page .story-highlight {
  border-left-color: var(--gold);
}
.debt-free-page .faq-item[open] {
  border-color: rgba(46, 184, 107, 0.32);
}
.debt-free-page .chev { color: var(--gold); }
.debt-free-page .faq-item[open] .chev { background: rgba(46, 184, 107, 0.16); }
.debt-free-page .faq-body a {
  color: var(--gold);
  text-decoration-color: rgba(46, 184, 107, 0.5);
}
.debt-free-page .final-cta {
  background:
    radial-gradient(ellipse at center, rgba(46, 184, 107, 0.14), transparent 65%),
    var(--bg);
}
.debt-free-page .pair {
  color: var(--gold);
  border-color: rgba(46, 184, 107, 0.3);
  background: rgba(46, 184, 107, 0.04);
}
.debt-free-page .sym { color: var(--gold); }
.debt-free-page .testimonial::before { color: var(--gold); }

/* ===========================================
   Debt-Free-specific sections: services list,
   advisory council, evidence cards, pricing callout
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 56px;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.service-list li {
  position: relative;
  padding: 10px 14px 10px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(-45deg);
}

.pricing-callout {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  background:
    radial-gradient(ellipse at top right, rgba(46, 184, 107, 0.08), transparent 60%),
    var(--bg-card);
  border: 1px solid rgba(46, 184, 107, 0.28);
  border-radius: 14px;
  text-align: center;
}
.pricing-callout .kicker { margin-bottom: 10px; }
.pricing-callout p {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--text);
}
.pricing-callout .pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.council-grid { gap: 16px; }
.council-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.council-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 184, 107, 0.32);
}
.council-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.council-role {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.council-note {
  text-align: center;
  max-width: 760px;
  margin: 36px auto 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.evidence-grid { gap: 22px; }
.evidence-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.evidence-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 184, 107, 0.32);
}
.evidence-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.1;
}
.evidence-card h3 { margin-bottom: 10px; }
.evidence-card p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* Section background colours for the debt-free-only sections */
.debt-free-page .services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.debt-free-page .council { background: var(--bg); }
.debt-free-page .evidence {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


/* ===========================================
   VTG Community Section (#vtg-community on index.html)
   =========================================== */
.vtg-community {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vtg-community-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(46, 184, 107, 0.08) 0%, transparent 50%);
  z-index: 0;
}
.vtg-community .container { position: relative; z-index: 1; }

.vtg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 40px auto 56px;
  max-width: 920px;
}
.vtg-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.vtg-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.vtg-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.vtg-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 48px;
}
.vtg-feature {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.vtg-feature:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.vtg-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
  margin-bottom: 16px;
}
.vtg-feature h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.vtg-feature p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

.vtg-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 40px;
  align-items: start;
}
/* Maxine — featured at top, spans both columns, centred at narrower width */
.vtg-testimonial-grid > .vtg-testimonial:first-child {
  grid-column: 1 / -1;
  max-width: 640px;
  justify-self: center;
}
.vtg-testimonial {
  max-width: 800px;
  margin: 0 auto 18px;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(46, 184, 107, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  font-style: italic;
}
.vtg-testimonial-grid .vtg-testimonial {
  max-width: 100%;
  margin: 0;
}
.vtg-testimonial-grid > .vtg-testimonial:first-child {
  max-width: 640px;
}
.vtg-testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 12px;
}
.vtg-testimonial cite {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.04em;
}
.vtg-testimonial-asterisk {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 1px;
  cursor: help;
}
.vtg-testimonial-asterisk:hover { opacity: 0.7; }
.vtg-testimonial-asterisk sup { font-size: 0.85em; }

/* Tiny footnote line in the footer for testimonial disclaimer */
.footer-footnote {
  margin: 0 0 4px;
  font-size: 9.5px;
  line-height: 1.4;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.footer-footnote sup {
  color: var(--gold);
  margin-right: 1px;
  font-size: 0.85em;
}
.footer-footnote:target {
  opacity: 1;
  color: var(--text-dim);
}

@media (max-width: 760px) {
  .vtg-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 640px;
  }
  .vtg-testimonial-grid > .vtg-testimonial:first-child { max-width: 100%; }
  .vtg-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vtg-stat-num { font-size: 26px; }
  .vtg-feature-grid { grid-template-columns: 1fr; }
  .vtg-feature { padding: 22px; }
  .vtg-testimonial { padding: 22px 20px; }
}

/* Feature card linking to VTG community section */
.feature.feature-linked {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
  position: relative;
}
.feature.feature-linked .feature-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.feature.feature-linked:hover .feature-arrow { text-decoration: underline; }

/* ===========================================
   Welcome.html — "What you've just joined" community callout
   =========================================== */
.community-callout {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.community-callout-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.community-callout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.community-callout-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.2;
}
.community-callout-card > p {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 22px;
}
.community-callout-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.community-callout-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.community-callout-list li strong { color: var(--text); }
.community-callout-tip {
  font-size: 14px;
  color: var(--text-dim);
  background: rgba(46, 184, 107, 0.06);
  border: 1px solid rgba(46, 184, 107, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 22px;
  line-height: 1.6;
}
.community-callout-tip strong { color: var(--green); }
@media (max-width: 600px) {
  .community-callout-card { padding: 26px 22px; }
  .community-callout-card h2 { font-size: 24px; }
}

/* ===========================================
   Start-here pages — Day-1 community plug-in strip
   =========================================== */
.community-strip-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
}
.community-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
}
.community-strip-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.community-strip-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}
.community-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.community-strip-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.community-strip-link:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .community-strip-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .community-strip-icon { margin: 0 auto; }
  .community-strip-actions { align-items: stretch; }
  .community-strip-actions .btn { width: 100%; }
}


/* ===========================================
   Telegram download buttons (signup pages)
   =========================================== */
.tg-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.tg-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.tg-download-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.tg-download-btn svg { color: var(--gold); }
.tg-download-link {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 4px;
}
.tg-download-link:hover { color: var(--gold); text-decoration: underline; }


/* ===========================================
   Print stylesheet for signup pages (body.signup-page)
   Generates a clean, printable / save-as-PDF version of the walkthrough.
   =========================================== */
@media print {
  body.signup-page {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
  }
  /* Hide everything that doesn't belong on paper */
  body.signup-page .site-header,
  body.signup-page .site-footer,
  body.signup-page .wa-float,
  body.signup-page .signup-print-btn,
  body.signup-page .hero .cta-row,
  body.signup-page .btn-whatsapp,
  body.signup-page .hero-glow,
  body.signup-page .hero-chart,
  body.signup-page .bg-symbols,
  body.signup-page nav.nav,
  body.signup-page .signup-tier-badge {
    display: none !important;
  }

  /* Hero: keep the title + subtext, drop visual chrome — centered */
  body.signup-page .hero {
    padding: 0 0 3pt !important;
    background: #fff !important;
    border-bottom: 1pt solid #ccc;
    margin-bottom: 3pt !important;
    text-align: center;
  }
  body.signup-page .hero .hero-inner,
  body.signup-page .hero .container { text-align: center; }
  body.signup-page .hero .eyebrow {
    display: inline-block;
    color: #555 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 9pt;
    letter-spacing: 0.12em;
    margin: 0 auto;
  }
  body.signup-page .hero-title {
    font-size: 18pt !important;
    color: #000 !important;
    margin: 3pt auto;
    text-align: center;
  }
  body.signup-page .hero-title .gold { color: #b8860b !important; }
  body.signup-page .hero-sub {
    color: #222 !important;
    font-size: 10pt !important;
    margin: 0 auto;
    max-width: 520pt;
    text-align: center;
    line-height: 1.4;
  }
  body.signup-page .hero-logo { display: none !important; }

  /* Section + container reset */
  body.signup-page main,
  body.signup-page .container,
  body.signup-page section {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
  }
  body.signup-page section { margin-bottom: 2pt !important; }

  /* Keep each step together but DON'T force a new page — just avoid splitting */
  body.signup-page .signup-part {
    page-break-inside: avoid;
    padding: 0 !important;
    margin: 0 0 2pt 0 !important;
  }
  body.signup-page .signup-overview { margin-bottom: 2pt !important; }

  /* Step heading */
  body.signup-page .signup-step-head { margin: 0 0 2pt !important; }
  body.signup-page .signup-step-num {
    color: #b8860b !important;
    background: transparent !important;
    border: 1pt solid #b8860b !important;
    padding: 2pt 8pt !important;
    font-size: 10pt;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 4pt;
  }
  body.signup-page .signup-step-head h2 {
    font-size: 14pt !important;
    color: #000 !important;
    margin: 2pt 0 1pt !important;
  }
  body.signup-page .signup-step-head .lede {
    color: #444 !important;
    font-size: 9.5pt !important;
    margin: 0 !important;
    line-height: 1.35;
  }

  /* Overview card */
  body.signup-page .signup-overview-card {
    background: #fff !important;
    border: 1pt solid #aaa !important;
    padding: 4pt 6pt !important;
    margin: 0 !important;
  }
  body.signup-page .signup-overview-card h2 {
    color: #000 !important;
    font-size: 12pt !important;
    margin: 0 0 3pt;
  }
  body.signup-page .signup-overview-list {
    margin: 0;
    padding-left: 14pt;
  }
  body.signup-page .signup-overview-list li {
    color: #000 !important;
    font-size: 9.5pt !important;
    padding: 0 !important;
    margin: 1pt 0;
    line-height: 1.35;
  }
  body.signup-page .signup-overview-note {
    font-size: 9pt !important;
    color: #444 !important;
    margin: 3pt 0 0 !important;
    line-height: 1.35;
  }

  /* Pitfall callouts */
  body.signup-page .pitfall-callout {
    background: #fff8ec !important;
    border: 1pt solid #d2a23a !important;
    color: #000 !important;
    padding: 4pt 6pt !important;
    margin: 3pt 0;
    page-break-inside: avoid;
  }
  body.signup-page .pitfall-callout p { margin: 0; font-size: 9.5pt; line-height: 1.35; }
  body.signup-page .pitfall-callout strong { color: #8a5b00 !important; }
  body.signup-page .pitfall-callout-inline,
  body.signup-page .pitfall-inline {
    background: #fff8ec !important;
    border: 1pt solid #d2a23a !important;
  }

  /* Walkthrough numbered list — tight */
  body.signup-page .signup-walkthrough {
    list-style: none;
    padding: 0 !important;
    margin: 2pt 0 0 !important;
  }
  body.signup-page .signup-walkthrough > li {
    page-break-inside: avoid;
    margin: 0 0 3pt 0;
    padding: 4pt 6pt;
    border: 1pt solid #ccc;
    border-radius: 3pt;
    background: #fff !important;
    display: grid;
    grid-template-columns: 22pt 1fr;
    gap: 6pt;
    align-items: start;
  }
  body.signup-page .walkthrough-num {
    background: #b8860b !important;
    color: #fff !important;
    border-radius: 50%;
    width: 18pt;
    height: 18pt;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10pt;
  }
  body.signup-page .walkthrough-body h3 {
    color: #000 !important;
    font-size: 10.5pt !important;
    margin: 0 0 2pt;
    line-height: 1.3;
  }
  body.signup-page .walkthrough-body p,
  body.signup-page .walkthrough-body li {
    color: #111 !important;
    font-size: 9.5pt !important;
    line-height: 1.35;
    margin: 1pt 0;
  }
  body.signup-page .walkthrough-list { margin: 2pt 0 0; padding-left: 14pt; }
  body.signup-page code {
    background: #f4f0e6 !important;
    border: 1pt solid #d4c79a;
    padding: 1pt 4pt;
    border-radius: 2pt;
    font-size: 9.5pt;
    color: #6b4f00 !important;
  }

  /* Convert action-bar buttons into URL labels (since print can't be clicked) */
  body.signup-page .action-bar {
    margin: 3pt 0;
  }
  body.signup-page .action-bar .btn {
    display: inline-block;
    background: transparent !important;
    color: #000 !important;
    border: 1pt solid #000 !important;
    padding: 2pt 6pt !important;
    font-size: 9.5pt !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }
  body.signup-page .action-bar .btn::after {
    content: ' → ' attr(href);
    color: #555;
    font-size: 8.5pt;
    font-weight: normal;
    margin-left: 3pt;
    word-break: break-all;
  }
  body.signup-page .action-bar .btn[href^="#"]::after { content: ''; }

  /* Telegram download row — compact pill list */
  body.signup-page .tg-download-row { margin: 3pt 0; gap: 4pt; }
  body.signup-page .tg-download-btn {
    background: transparent !important;
    color: #000 !important;
    border: 1pt solid #444 !important;
    padding: 1pt 5pt !important;
    font-size: 9pt !important;
    border-radius: 3pt !important;
  }
  body.signup-page .tg-download-btn svg { display: none !important; }
  body.signup-page .tg-download-btn::after {
    content: ': ' attr(href);
    color: #555;
    font-size: 7.5pt;
    margin-left: 3pt;
    word-break: break-all;
  }
  body.signup-page .tg-download-link { display: none !important; }

  /* Drop all WhatsApp "Tell sponsor" buttons */
  body.signup-page .signup-part > .btn-whatsapp,
  body.signup-page .signup-part .walkthrough-body .btn-whatsapp { display: none !important; }

  /* DONE section — no forced page break, just a separator */
  body.signup-page .signup-done {
    border-top: 1pt solid #ccc;
    padding-top: 6pt !important;
    margin-top: 6pt !important;
    page-break-inside: avoid;
  }
  body.signup-page .signup-done h2 {
    color: #000 !important;
    font-size: 13pt !important;
    margin: 2pt 0 3pt;
  }
  body.signup-page .signup-done p {
    font-size: 9.5pt !important;
    line-height: 1.35;
    margin: 0;
  }
  body.signup-page .signup-done .kicker {
    color: #b8860b !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 9pt;
  }
  body.signup-page .signup-done .cta-row,
  body.signup-page .signup-done .trust-note { display: none !important; }

  /* Tiny print footer */
  body.signup-page::after {
    content: 'Always-current version: learnandgrowrich.co.uk';
    display: block;
    text-align: center;
    font-size: 7.5pt;
    color: #777;
    margin-top: 6pt;
    padding-top: 3pt;
    border-top: 1pt dashed #ccc;
  }

  /* Page size */
  @page {
    size: A4;
    margin: 14mm 12mm;
  }

  /* Avoid splitting key blocks across pages */
  body.signup-page h2, body.signup-page h3 { page-break-after: avoid; }
  body.signup-page .signup-step-head { page-break-after: avoid; }
}


/* ===========================================
   Print stylesheet for start-here pages (body.start-here-page)
   Onboarding walkthrough as a printable / save-as-PDF document.
   =========================================== */
@media print {
  body.start-here-page {
    background: #fff !important;
    color: #000 !important;
    font-size: 10pt;
  }

  /* Hide everything that doesn't belong on paper */
  body.start-here-page .site-header,
  body.start-here-page .site-footer,
  body.start-here-page .wa-float,
  body.start-here-page .hero-glow,
  body.start-here-page .hero-chart,
  body.start-here-page .bg-symbols,
  body.start-here-page .nav-toggle,
  body.start-here-page nav.nav,
  body.start-here-page .progress-card,
  body.start-here-page .live-session-strip,
  body.start-here-page .community-strip-actions,
  body.start-here-page .resume-banner,
  body.start-here-page .quickstart,
  body.start-here-page .toast,
  body.start-here-page .step-complete-toast,
  body.start-here-page .glossary-tooltip,
  body.start-here-page .btn-whatsapp,
  body.start-here-page .wa-inline,
  body.start-here-page .final-cta .cta-row {
    display: none !important;
  }

  /* Page reset */
  body.start-here-page main,
  body.start-here-page .container,
  body.start-here-page section {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-shadow: none !important;
  }
  body.start-here-page section { margin-bottom: 4pt !important; }

  /* Hero — centered, compact */
  body.start-here-page .hero {
    padding: 0 0 3pt !important;
    border-bottom: 1pt solid #ccc;
    margin-bottom: 4pt !important;
    text-align: center;
  }
  body.start-here-page .hero .hero-inner,
  body.start-here-page .hero .container { text-align: center; }
  body.start-here-page .hero .eyebrow {
    display: inline-block;
    color: #555 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 9pt;
    letter-spacing: 0.12em;
  }
  body.start-here-page .hero-title {
    font-size: 18pt !important;
    color: #000 !important;
    margin: 3pt auto !important;
    text-align: center;
  }
  body.start-here-page .hero-title .gold { color: #b8860b !important; }
  body.start-here-page .hero-sub {
    color: #222 !important;
    font-size: 10pt !important;
    margin: 0 auto !important;
    max-width: 520pt;
    text-align: center;
    line-height: 1.4;
  }
  body.start-here-page .hero-logo { display: none !important; }

  /* Community strip — keep the message, drop the buttons (already hidden) */
  body.start-here-page .community-strip-card {
    grid-template-columns: 32pt 1fr !important;
    padding: 4pt 6pt !important;
    border: 1pt solid #ccc !important;
    border-left: 2pt solid #b8860b !important;
    background: #fff !important;
    page-break-inside: avoid;
  }
  body.start-here-page .community-strip-icon {
    background: transparent !important;
    border: 1pt solid #b8860b !important;
    color: #b8860b !important;
    width: 26pt !important;
    height: 26pt !important;
  }
  body.start-here-page .community-strip-body h3 {
    color: #000 !important;
    font-size: 10.5pt !important;
    margin: 0 0 2pt !important;
  }
  body.start-here-page .community-strip-body p {
    color: #222 !important;
    font-size: 9.5pt !important;
    margin: 0 !important;
    line-height: 1.35;
  }

  /* Section heads */
  body.start-here-page .section-head { margin-bottom: 3pt !important; }
  body.start-here-page .section-head .kicker {
    color: #b8860b !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 9pt;
  }
  body.start-here-page .section-head h2 {
    color: #000 !important;
    font-size: 14pt !important;
    margin: 1pt 0 2pt !important;
  }
  body.start-here-page .section-head .lede {
    color: #444 !important;
    font-size: 9.5pt !important;
    margin: 0 !important;
    line-height: 1.35;
  }

  /* Pathway list */
  body.start-here-page .pathway-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3pt;
  }
  body.start-here-page .pathway-list li {
    page-break-inside: avoid;
    padding: 4pt 6pt;
    border: 1pt solid #ccc;
    border-radius: 3pt;
    background: #fff !important;
    display: grid;
    grid-template-columns: 18pt 1fr;
    gap: 6pt;
    align-items: start;
  }
  body.start-here-page .pathway-num {
    background: #b8860b !important;
    color: #fff !important;
    border-radius: 50%;
    width: 16pt;
    height: 16pt;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 9.5pt;
  }
  body.start-here-page .pathway-list h3 {
    color: #000 !important;
    font-size: 10pt !important;
    margin: 0 0 1pt !important;
  }
  body.start-here-page .pathway-list p {
    color: #222 !important;
    font-size: 9pt !important;
    margin: 0 !important;
    line-height: 1.3;
  }

  /* Timeline */
  body.start-here-page .timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3pt;
  }
  body.start-here-page .timeline-phase {
    page-break-inside: avoid;
    padding: 4pt 6pt;
    border: 1pt solid #ccc;
    border-radius: 3pt;
    background: #fff !important;
  }
  body.start-here-page .timeline-days {
    color: #b8860b !important;
    font-size: 9pt !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  body.start-here-page .timeline-phase h3 {
    color: #000 !important;
    font-size: 10.5pt !important;
    margin: 1pt 0 !important;
  }
  body.start-here-page .timeline-phase p {
    color: #222 !important;
    font-size: 9pt !important;
    margin: 0 !important;
    line-height: 1.35;
  }

  /* Step cards — force <details> open in print so all content shows */
  body.start-here-page .step-card[open],
  body.start-here-page .step-card {
    page-break-inside: avoid;
    margin: 0 0 3pt !important;
    padding: 4pt 6pt !important;
    border: 1pt solid #ccc !important;
    border-radius: 3pt !important;
    background: #fff !important;
    display: block !important;
  }
  body.start-here-page .step-card > summary,
  body.start-here-page .step-card summary {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 6pt !important;
    padding: 0 !important;
    margin: 0 0 3pt !important;
    cursor: default !important;
  }
  body.start-here-page .step-card summary::-webkit-details-marker,
  body.start-here-page .step-card summary::marker { display: none !important; }
  body.start-here-page .step-card .step-body {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.start-here-page .step-badge {
    background: #b8860b !important;
    color: #fff !important;
    padding: 1pt 6pt !important;
    border-radius: 3pt !important;
    font-size: 8.5pt !important;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  body.start-here-page .step-card summary h3 {
    color: #000 !important;
    font-size: 11pt !important;
    margin: 0 !important;
    flex: 1;
  }
  body.start-here-page .step-day {
    color: #555 !important;
    font-size: 8.5pt !important;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  body.start-here-page .step-body p {
    color: #222 !important;
    font-size: 9.5pt !important;
    line-height: 1.35;
    margin: 2pt 0 !important;
  }
  body.start-here-page .step-body h4 {
    color: #000 !important;
    font-size: 10pt !important;
    margin: 4pt 0 1pt !important;
  }

  /* Task list — checkboxes show as empty squares */
  body.start-here-page .task-list {
    list-style: none;
    padding: 0;
    margin: 2pt 0 !important;
  }
  body.start-here-page .task-list li {
    margin: 0 !important;
    padding: 1pt 0 !important;
  }
  body.start-here-page .task-list label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 5pt !important;
    color: #111 !important;
    font-size: 9.5pt !important;
    line-height: 1.3;
  }
  body.start-here-page .task-list input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 10pt !important;
    height: 10pt !important;
    border: 1pt solid #555 !important;
    border-radius: 2pt !important;
    background: #fff !important;
    margin: 1pt 0 0 !important;
    flex-shrink: 0;
  }

  /* Pitfall callouts */
  body.start-here-page .pitfall-callout {
    background: #fff8ec !important;
    border: 1pt solid #d2a23a !important;
    color: #000 !important;
    padding: 3pt 5pt !important;
    margin: 2pt 0 !important;
    page-break-inside: avoid;
  }
  body.start-here-page .pitfall-callout p,
  body.start-here-page .pitfall-callout div {
    margin: 0 !important;
    font-size: 9pt !important;
    line-height: 1.35;
    color: #000 !important;
  }
  body.start-here-page .pitfall-callout strong { color: #8a5b00 !important; }

  /* Action buttons -> URL labels */
  body.start-here-page .action-bar {
    margin: 2pt 0 !important;
  }
  body.start-here-page .action-bar .btn {
    display: inline-block !important;
    background: transparent !important;
    color: #000 !important;
    border: 1pt solid #000 !important;
    padding: 1pt 6pt !important;
    font-size: 9pt !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }
  body.start-here-page .action-bar .btn::after {
    content: ' → ' attr(href);
    color: #555;
    font-size: 8pt;
    font-weight: normal;
    margin-left: 3pt;
    word-break: break-all;
  }
  body.start-here-page .action-bar .btn[href^="#"]::after { content: ''; }

  /* Resources hub */
  body.start-here-page .resources-grid,
  body.start-here-page .resource-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3pt !important;
  }
  body.start-here-page .resource-card,
  body.start-here-page .resource-item {
    page-break-inside: avoid;
    padding: 3pt 5pt !important;
    border: 1pt solid #ccc !important;
    border-radius: 3pt !important;
    background: #fff !important;
  }
  body.start-here-page .resource-card h3,
  body.start-here-page .resource-item h3 {
    color: #000 !important;
    font-size: 10pt !important;
    margin: 0 0 1pt !important;
  }
  body.start-here-page .resource-card p,
  body.start-here-page .resource-item p {
    color: #222 !important;
    font-size: 9pt !important;
    margin: 0 !important;
    line-height: 1.3;
  }
  body.start-here-page .resource-card a,
  body.start-here-page .resource-item a {
    color: #6b4f00 !important;
    text-decoration: none;
  }

  /* Final CTA — just the message, no buttons */
  body.start-here-page .final-cta {
    border-top: 1pt solid #ccc;
    padding-top: 4pt !important;
    margin-top: 4pt !important;
    page-break-inside: avoid;
  }
  body.start-here-page .final-cta h2 {
    color: #000 !important;
    font-size: 13pt !important;
    margin: 2pt 0 2pt !important;
  }
  body.start-here-page .final-cta p {
    color: #222 !important;
    font-size: 9.5pt !important;
    margin: 0 !important;
    line-height: 1.35;
  }
  body.start-here-page .final-cta .kicker {
    color: #b8860b !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 9pt;
  }

  body.start-here-page code {
    background: #f4f0e6 !important;
    border: 1pt solid #d4c79a;
    padding: 1pt 3pt;
    border-radius: 2pt;
    font-size: 9pt;
    color: #6b4f00 !important;
  }

  /* Footer note */
  body.start-here-page::after {
    content: 'Always-current version: learnandgrowrich.co.uk';
    display: block;
    text-align: center;
    font-size: 7.5pt;
    color: #777;
    margin-top: 4pt;
    padding-top: 3pt;
    border-top: 1pt dashed #ccc;
  }

  @page {
    size: A4;
    margin: 14mm 12mm;
  }

  body.start-here-page h2,
  body.start-here-page h3,
  body.start-here-page h4 { page-break-after: avoid; }
  body.start-here-page .step-card { page-break-inside: avoid; }
}


/* ===========================================
   Example screenshot thumbnails on start-here task lists
   - Shows a small thumbnail with caption inside a relevant task <li>
   - If the image file is missing, onerror removes the whole figure
   - Click image to open full-size in new tab
   =========================================== */
.example-screenshot {
  display: block;
  margin: 8px 0 6px 26px;
  max-width: 320px;
}
.example-screenshot a {
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card, #1a1410);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.example-screenshot a:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.example-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}
.example-screenshot figcaption {
  margin-top: 5px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.example-screenshot figcaption .ex-tag {
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 600px) {
  .example-screenshot { margin: 8px 0 6px; max-width: 100%; }
}

/* Print — keep examples visible but compact, don't split across pages */
@media print {
  body.start-here-page .example-screenshot {
    page-break-inside: avoid;
    max-width: 200pt;
    margin: 2pt 0 2pt 14pt;
  }
  body.start-here-page .example-screenshot a {
    border: 1pt solid #aaa !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  body.start-here-page .example-screenshot figcaption {
    color: #555 !important;
    font-size: 8pt;
  }
}


/* ===========================================
   Strategy guidelines disclosure (Triple / Golden Era / Sniper Pro)
   Opens when the matching strategy card link is clicked
   =========================================== */
.strategy-guidelines {
  margin: 16px 0 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(46, 184, 107, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  overflow: hidden;
}
.strategy-guidelines > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}
.strategy-guidelines > summary::-webkit-details-marker,
.strategy-guidelines > summary::marker { display: none; }
.sg-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.32);
  padding: 4px 10px;
  border-radius: 999px;
}
.sg-title {
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.sg-toggle {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.strategy-guidelines[open] > summary .sg-toggle { transform: rotate(180deg); }
.strategy-guidelines > summary:hover { background: rgba(212, 175, 55, 0.04); }

.sg-body {
  padding: 4px 22px 22px;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
  margin-top: 4px;
}
.sg-tagline {
  font-size: 15px;
  color: var(--text-dim);
  margin: 16px 0 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sg-tagline strong { color: var(--gold); }
.sg-emoji { font-size: 16px; }

.sg-section {
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 0 8px 8px 0;
}
.sg-section h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.sg-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sg-section ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 4px 0;
}
.sg-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}
.sg-section ul li strong { color: var(--text); }
.sg-section ul li em { color: var(--green, #4ade80); font-style: normal; font-weight: 600; }
.sg-section ul li a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sg-section ul li a:hover { color: var(--gold-soft, #e6c460); }
.sg-section p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.sg-section p strong { color: var(--text); }

@media (max-width: 600px) {
  .strategy-guidelines > summary { padding: 16px 18px; gap: 10px; flex-wrap: wrap; }
  .sg-title { font-size: 16px; flex-basis: 100%; }
  .sg-body { padding: 4px 18px 18px; }
  .sg-section { padding: 10px 12px; }
}

/* Print — guidelines force open + clean black-on-white */
@media print {
  body.start-here-page .strategy-guidelines {
    background: #fff !important;
    border: 1pt solid #b8860b !important;
    border-left: 2pt solid #b8860b !important;
    margin: 4pt 0 !important;
    page-break-inside: avoid;
  }
  body.start-here-page .strategy-guidelines[open],
  body.start-here-page .strategy-guidelines {
    display: block !important;
  }
  body.start-here-page .strategy-guidelines > summary {
    padding: 4pt 8pt !important;
    cursor: default !important;
    list-style: none !important;
    display: flex !important;
    gap: 6pt !important;
  }
  body.start-here-page .strategy-guidelines > summary .sg-toggle { display: none !important; }
  body.start-here-page .sg-badge {
    color: #b8860b !important;
    background: transparent !important;
    border: 1pt solid #b8860b !important;
    padding: 1pt 5pt !important;
    font-size: 8.5pt;
  }
  body.start-here-page .sg-title {
    color: #000 !important;
    font-size: 12pt !important;
  }
  body.start-here-page .sg-body {
    display: block !important;
    padding: 2pt 8pt 6pt !important;
    border-top: 1pt dashed #b8860b !important;
    margin-top: 2pt;
  }
  body.start-here-page .sg-tagline {
    font-size: 10pt !important;
    color: #222 !important;
    margin: 3pt 0 4pt !important;
  }
  body.start-here-page .sg-tagline strong { color: #b8860b !important; }
  body.start-here-page .sg-section {
    background: transparent !important;
    border-left: 1pt solid #b8860b !important;
    padding: 3pt 6pt !important;
    margin: 3pt 0 !important;
  }
  body.start-here-page .sg-section h5 {
    color: #b8860b !important;
    font-size: 8.5pt !important;
    margin: 0 0 2pt !important;
  }
  body.start-here-page .sg-section ul li,
  body.start-here-page .sg-section p {
    font-size: 9pt !important;
    color: #111 !important;
    line-height: 1.35 !important;
    margin: 1pt 0 !important;
  }
  body.start-here-page .sg-section ul li::before {
    background: #b8860b !important;
    width: 4pt;
    height: 4pt;
  }
  body.start-here-page .sg-section ul li strong { color: #000 !important; }
  body.start-here-page .sg-section ul li em { color: #1a8a4a !important; }
  body.start-here-page .sg-section ul li a {
    color: #6b4f00 !important;
    text-decoration: none;
  }
  body.start-here-page .sg-section ul li a::after {
    content: ' (' attr(href) ')';
    color: #555;
    font-size: 8pt;
    word-break: break-all;
  }
}


/* ===========================================
   Pin / bookmark CTA banner on start-here pages
   Slim gold-bordered strip at the top of <main>.
   Auto-hidden by JS if dismissed, installed, or unsupported.
   =========================================== */
.bookmark-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0.04) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  padding: 12px 0;
}
.bookmark-cta-inner {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
}
.bookmark-cta-icon {
  font-size: 22px;
  line-height: 1;
  justify-self: center;
}
.bookmark-cta-body {
  min-width: 0;
}
.bookmark-cta-title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.bookmark-cta-sub {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.4;
}
.bookmark-cta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.bookmark-cta-install {
  padding: 6px 14px;
  font-size: 12.5px;
}
.bookmark-cta-how {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.bookmark-cta-how:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}
.bookmark-cta-dismiss {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 2px;
  transition: color 0.15s ease;
}
.bookmark-cta-dismiss:hover { color: var(--text); }

.bookmark-cta-instructions {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
}
.bookmark-cta-platform {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.bookmark-cta-platform + .bookmark-cta-platform { margin-top: 4px; }
.bookmark-cta-platform strong { color: var(--text); }
.bookmark-cta-platform kbd {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  color: var(--gold);
}

@media (max-width: 640px) {
  .bookmark-cta-inner {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }
  .bookmark-cta-icon { font-size: 18px; }
  .bookmark-cta-title { font-size: 13.5px; }
  .bookmark-cta-sub { font-size: 11.5px; }
  .bookmark-cta-actions {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    margin-top: 4px;
  }
}

/* Hide entirely when printing */
@media print {
  body.start-here-page .bookmark-cta { display: none !important; }
}


/* ===========================================
   Strategy-guidelines Watch & Join section
   - Video card spans single column inside the disclosure (no 2-col grid)
   - "Join the group" prompt + Telegram-style CTA card
   =========================================== */
.sg-video-grid {
  grid-template-columns: 1fr !important;
  max-width: 480px;
  margin: 0 auto 12px !important;
}
.sg-video-grid .video-card { margin: 0; }

.sg-join-prompt {
  margin: 16px 0 8px;
  font-size: 14px;
  color: var(--text);
  text-align: center;
}

.sg-telegram-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(40, 165, 233, 0.10) 0%, rgba(40, 165, 233, 0.04) 100%);
  border: 1px solid rgba(40, 165, 233, 0.35);
  border-left: 3px solid #28a5e9;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.sg-telegram-cta:hover {
  border-color: #28a5e9;
  background: linear-gradient(135deg, rgba(40, 165, 233, 0.16) 0%, rgba(40, 165, 233, 0.06) 100%);
  transform: translateY(-1px);
}
.sg-tg-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #28a5e9;
  color: #fff;
  border-radius: 50%;
}
.sg-tg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}
.sg-tg-body strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.sg-tg-body span {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}
.sg-tg-arrow {
  flex-shrink: 0;
  color: #28a5e9;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .sg-telegram-cta { padding: 12px 14px; gap: 10px; }
  .sg-tg-icon { width: 32px; height: 32px; }
  .sg-tg-body strong { font-size: 13.5px; }
}

/* Print — render Telegram CTA as a clean link with the URL inline */
@media print {
  body.start-here-page .sg-telegram-cta {
    background: #fff !important;
    border: 1pt solid #28a5e9 !important;
    border-left: 2pt solid #28a5e9 !important;
    padding: 4pt 6pt !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  body.start-here-page .sg-tg-icon {
    background: #28a5e9 !important;
    color: #fff !important;
    width: 18pt !important;
    height: 18pt !important;
  }
  body.start-here-page .sg-tg-body strong {
    color: #000 !important;
    font-size: 10pt !important;
  }
  body.start-here-page .sg-tg-body span {
    color: #444 !important;
    font-size: 8.5pt !important;
  }
  body.start-here-page .sg-telegram-cta::after {
    content: ' ' attr(href);
    color: #555;
    font-size: 8pt;
    word-break: break-all;
    display: block;
    margin-top: 2pt;
  }
  body.start-here-page .sg-join-prompt {
    font-size: 9.5pt !important;
    margin: 4pt 0 2pt !important;
    text-align: left !important;
  }
}


/* ===========================================
   Presentation landing page (body.presentation-page)
   =========================================== */
.presentation-page .hero { padding-bottom: 28px; }
.presentation-page .presentation-hero .hero-sub {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Click-to-play YouTube thumbnail — embedding disabled on the video, opens on YouTube */
.presentation-video-section { padding-top: 0; padding-bottom: 28px; }
.presentation-video.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: var(--bg-card);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.presentation-video.video-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.3);
}
.presentation-video.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.25s ease;
}
.presentation-video.video-thumb:hover img {
  transform: scale(1.02);
  filter: brightness(0.85);
}
/* Dark vignette so the play button always reads against any thumbnail */
.presentation-video.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.presentation-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.95);
  color: #0b0c0f;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}
.presentation-video.video-thumb:hover .presentation-play-overlay {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}
.presentation-play-overlay svg { margin-left: 6px; }
.presentation-watch-tag {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  background: rgba(11, 12, 15, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.presentation-meta {
  text-align: center;
  margin: 18px auto 0;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .presentation-play-overlay { width: 72px; height: 72px; }
  .presentation-play-overlay svg { width: 44px; height: 44px; }
  .presentation-watch-tag { bottom: 12px; font-size: 11.5px; padding: 5px 12px; }
}

/* Tier overview after the video */
.presentation-next { padding-top: 32px; }
.presentation-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 16px;
  align-items: stretch;
}
.presentation-tier-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.presentation-tier-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.presentation-tier-card-featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-card) 100%);
  border-color: rgba(212, 175, 55, 0.45);
  border-width: 1px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}
.presentation-tier-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.presentation-tier-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.presentation-tier-card > p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 14px;
}
.presentation-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.presentation-tier-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 5px 0;
}
.presentation-tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}
.presentation-tier-price {
  display: block;
  font-size: 14px;
  color: var(--text);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.presentation-tier-price strong { color: var(--gold); font-weight: 700; }
.presentation-tier-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.presentation-tier-note.presentation-tier-best { color: var(--gold); font-weight: 600; }
.presentation-tier-help {
  margin: 22px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  font-style: italic;
}

/* Testimonials section header spacing */
.presentation-testimonials .section-head { margin-bottom: 28px; }

/* Final CTA polish */
.presentation-final-cta { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%); }

@media (max-width: 900px) {
  .presentation-tier-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .presentation-tier-card { padding: 20px 18px; }
  .presentation-tier-card h3 { font-size: 19px; }
  .presentation-video { border-radius: 10px; }
}

/* Print — tidy the presentation page if anyone tries to save it */
@media print {
  body.presentation-page .site-header,
  body.presentation-page .site-footer,
  body.presentation-page .presentation-video-section,
  body.presentation-page .hero-glow { display: none !important; }
  body.presentation-page { background: #fff !important; color: #000 !important; }
  body.presentation-page .presentation-tier-card { background: #fff !important; border: 1pt solid #aaa !important; box-shadow: none !important; }
}


/* ===========================================
   JIFU offer card on presentation.html
   Single focused block replacing the 3-tier grid.
   =========================================== */
.jifu-offer-card {
  max-width: 760px;
  margin: 28px auto 18px;
  padding: 32px 36px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.jifu-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.jifu-offer-list > li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}
.jifu-offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  border-radius: 10px;
  flex-shrink: 0;
}
.jifu-offer-list h4 {
  margin: 2px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.jifu-offer-list p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.presentation-pricing-note {
  max-width: 600px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .jifu-offer-card { padding: 24px 22px; margin-left: 16px; margin-right: 16px; }
  .jifu-offer-list { grid-template-columns: 1fr; gap: 16px; }
}


/* ===========================================
   Slim post-video CTA on presentation.html
   Sits right under the video meta line; catches
   high-intent prospects before they scroll.
   =========================================== */
.post-video-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 22px auto 0;
  max-width: 720px;
}
.post-video-cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.post-video-cta-btn {
  /* btn / btn-primary / btn-lg already handle the look — slight tighten */
  padding: 14px 28px;
}
.post-video-cta-link {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  margin-top: 2px;
  transition: color 0.15s ease;
}
.post-video-cta-link:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 600px) {
  .post-video-cta-btn { width: 100%; max-width: 360px; padding: 12px 22px; }
}


/* ===========================================
   Sponsor humanising elements on presentation.html
   - .hero-host: small circular avatar + "Hosted by Rowan" tag at bottom of hero
   - .sponsor-intro-pres: larger photo + intro card above final CTA
   =========================================== */

/* Hero: small avatar + tagline */
.hero-host {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 6px 14px 6px 6px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
}
.hero-host.no-photo { padding-left: 14px; }
.hero-host-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  flex-shrink: 0;
}
.hero-host-text {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.hero-host-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* Final CTA: sponsor intro card */
.sponsor-intro-pres {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  text-align: left;
}
.sponsor-intro-pres.no-photo { grid-template-columns: 1fr; }
.sponsor-intro-pres-photo {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.sponsor-intro-pres-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.sponsor-intro-pres-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.2;
}
.sponsor-intro-pres-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
.sponsor-intro-pres-body p strong { color: var(--text); }

@media (max-width: 640px) {
  .sponsor-intro-pres {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 20px;
  }
  .sponsor-intro-pres-photo {
    margin: 0 auto;
    width: 96px;
    height: 96px;
  }
}


/* ===========================================
   Financial Health Audit page (body.audit-page)
   - Multi-step form, progress bar, result screens
   =========================================== */
.audit-hero { padding-bottom: 30px; }
.audit-trust-line {
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.audit-container {
  max-width: 720px;
}

/* Progress */
.audit-progress {
  margin: 0 auto 28px;
  max-width: 640px;
}
.audit-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.audit-progress-percent { color: var(--gold); font-weight: 700; }
.audit-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-elev);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.audit-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #f0c850 100%);
  transition: width 0.35s ease;
}

/* Steps container */
.audit-steps {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  min-height: 260px;
}

.audit-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.audit-step-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 22px;
  line-height: 1.5;
}

/* Options */
.audit-options {
  display: grid;
  gap: 10px;
}
.audit-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  font-family: inherit;
}
.audit-option:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.04);
  transform: translateY(-1px);
}
.audit-option.selected {
  border-color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
}
.audit-option-label {
  font-size: 15px;
  font-weight: 600;
}
.audit-option-detail {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Nav */
.audit-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.audit-nav .btn-ghost {
  font-size: 13px;
}
.audit-nav .btn-primary {
  margin-left: auto;
}

/* Capture step */
.audit-capture-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.audit-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.audit-field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.audit-field-label small {
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}
.audit-capture-form input[type="text"],
.audit-capture-form input[type="email"],
.audit-capture-form input[type="tel"] {
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.audit-capture-form input:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.audit-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1.5;
}
.audit-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.audit-consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.audit-form-error {
  font-size: 13px;
  color: #ff8080;
  min-height: 18px;
}

/* Result screen */
.audit-result {
  padding: 0;
}
.audit-result-head {
  padding: 36px 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  margin: -36px -32px 0;
}
.audit-result[data-band="orange"] .audit-result-head {
  background: linear-gradient(180deg, rgba(255, 150, 80, 0.10) 0%, transparent 100%);
}
.audit-result[data-band="yellow"] .audit-result-head {
  background: linear-gradient(180deg, rgba(245, 200, 80, 0.10) 0%, transparent 100%);
}
.audit-result[data-band="blue"] .audit-result-head {
  background: linear-gradient(180deg, rgba(100, 160, 220, 0.10) 0%, transparent 100%);
}
.audit-result-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.audit-result-score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  padding: 12px 20px;
  background: rgba(11, 12, 15, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.audit-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.audit-score-out {
  font-size: 16px;
  color: var(--text-muted);
  margin-right: 8px;
}
.audit-score-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.audit-result-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--text);
}
.audit-result-verdict {
  font-size: 15px;
  color: var(--text-dim);
  margin: 0;
  font-style: italic;
}
.audit-result-body {
  padding: 28px 0 0;
}
.audit-result-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 22px;
}
.audit-result-next-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.audit-result-next-list {
  margin: 0 0 26px;
  padding-left: 22px;
}
.audit-result-next-list li {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 6px 0;
}
.audit-result-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.audit-result-cta .btn {
  min-width: min(280px, 100%);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.audit-result-secondary {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
}
.audit-result-secondary:hover {
  color: var(--gold);
  text-decoration: underline;
}
.audit-result-footer {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px dashed rgba(212, 175, 55, 0.18);
  padding-top: 14px;
  margin: 12px 0 0;
  line-height: 1.6;
}
.audit-result-footer strong { color: var(--gold); }

@media (max-width: 640px) {
  .audit-steps { padding: 26px 22px; }
  .audit-step-title { font-size: 20px; }
  .audit-result-head { padding: 28px 22px 24px; margin: -26px -22px 0; }
  .audit-result-title { font-size: 24px; }
  .audit-score-num { font-size: 36px; }
}


/* ===========================================
   Audit triage strip — homepage discovery banner
   =========================================== */
.audit-triage-strip {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.audit-triage-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
}
.audit-triage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  border-radius: 12px;
  flex-shrink: 0;
}
.audit-triage-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
  line-height: 1.3;
}
.audit-triage-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}
.audit-triage-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Debt-free theme override — green accents instead of gold */
.debt-free-page .audit-triage-card {
  border-color: rgba(46, 184, 107, 0.3);
  border-left-color: var(--green, #2eb86b);
}
.debt-free-page .audit-triage-icon {
  background: rgba(46, 184, 107, 0.10);
  border-color: rgba(46, 184, 107, 0.3);
  color: var(--green, #2eb86b);
}

@media (max-width: 760px) {
  .audit-triage-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .audit-triage-icon { margin: 0 auto; }
  .audit-triage-cta { width: 100%; }
}


/* ===========================================
   Floating Watch Presentation pill (bottom-left, opposite WhatsApp float)
   Primary CTA persistent across the entire page. Dismissible via × button.
   =========================================== */
.pres-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: calc(100vw - 48px);
}
.pres-float-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #c69820 100%);
  border: 1px solid var(--gold);
  border-radius: 999px 0 0 999px;
  color: #0b0c0f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.pres-float-pill:hover {
  background: linear-gradient(135deg, #f0c850 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.45), 0 10px 28px rgba(0, 0, 0, 0.55);
}
.pres-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(11, 12, 15, 0.18);
  border-radius: 50%;
  color: #0b0c0f;
  flex-shrink: 0;
}
.pres-float-dismiss {
  padding: 10px 12px;
  background: linear-gradient(135deg, #1a1410 0%, #0b0c0f 100%);
  border: 1px solid var(--gold);
  border-left: none;
  border-radius: 0 999px 999px 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  transition: color 0.15s ease, background 0.15s ease;
}
.pres-float-dismiss:hover {
  color: var(--text);
  background: linear-gradient(135deg, #221b15 0%, #14151b 100%);
}

@media (max-width: 600px) {
  .pres-float { left: 18px; bottom: 18px; }
  .pres-float-pill { padding: 10px 12px 10px 10px; font-size: 12.5px; }
  .pres-float-icon { width: 22px; height: 22px; }
}
/* Very small screens: icon-only pill so it doesn't crowd the WhatsApp float */
@media (max-width: 380px) {
  .pres-float-text { display: none; }
  .pres-float-pill { padding: 10px 10px; }
}

@media print {
  .pres-float { display: none !important; }
}


/* ===========================================
   Floating Book a Call pill (presentation.html)
   Same pattern as .pres-float on index.html — primary CTA, persistent, dismissible.
   =========================================== */
.call-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: calc(100vw - 48px);
}
.call-float-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #c69820 100%);
  border: 1px solid var(--gold);
  border-radius: 999px 0 0 999px;
  color: #0b0c0f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.call-float-pill:hover {
  background: linear-gradient(135deg, #f0c850 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.45), 0 10px 28px rgba(0, 0, 0, 0.55);
}
.call-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(11, 12, 15, 0.18);
  border-radius: 50%;
  color: #0b0c0f;
  flex-shrink: 0;
}
.call-float-dismiss {
  padding: 10px 12px;
  background: linear-gradient(135deg, #1a1410 0%, #0b0c0f 100%);
  border: 1px solid var(--gold);
  border-left: none;
  border-radius: 0 999px 999px 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  transition: color 0.15s ease, background 0.15s ease;
}
.call-float-dismiss:hover {
  color: var(--text);
  background: linear-gradient(135deg, #221b15 0%, #14151b 100%);
}

@media (max-width: 600px) {
  .call-float { left: 18px; bottom: 18px; }
  .call-float-pill { padding: 10px 12px 10px 10px; font-size: 12.5px; }
  .call-float-icon { width: 22px; height: 22px; }
}
@media (max-width: 380px) {
  .call-float-text { display: none; }
  .call-float-pill { padding: 10px 10px; }
}

@media print {
  .call-float { display: none !important; }
}
