/* ============================================
   Harshh & Co. — DR Design System
   Black + Electric Yellow + White
   ============================================ */
:root {
  --bg: #0A0A0A;
  --bg-2: #141414;
  --bg-3: #1C1C1C;
  --line: #2A2A2A;
  --text: #FFFFFF;
  --text-2: #B3B3B3;
  --text-3: #6E6E6E;
  --yellow: #FFD60A;
  --yellow-hover: #FFE94A;
  --gold: #B8924E;
  --red: #FF3B30;
  --green: #2DD06E;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); transition: padding 0.25s ease, background 0.25s ease; }
.nav.scrolled { background: rgba(10,10,10,0.96); border-bottom-color: rgba(255,214,10,0.18); }
.nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }
.nav.scrolled .nav-mark img { height: 38px; }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-mark { display: inline-flex; align-items: center; gap: 10px; }
.nav-mark img { height: 46px; width: auto; display: block; }
.nav-mark .fallback { font-family: var(--serif); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links .menu-trigger { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color 0.2s; cursor: pointer; background: transparent; border: none; font-family: inherit; padding: 0; display: inline-flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links .menu-trigger:hover, .nav-links li.has-active > a, .nav-links li.has-active > .menu-trigger { color: var(--yellow); }
.menu-trigger .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform 0.2s; }
.nav-links li:hover .menu-trigger .caret, .nav-links li.open .menu-trigger .caret { transform: rotate(-135deg); margin-top: 3px; }
.nav-dropdown { position: absolute; top: calc(100% + 14px); left: -14px; min-width: 240px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; box-shadow: 0 24px 60px rgba(0,0,0,0.4); list-style: none; }
.nav-links li:hover .nav-dropdown, .nav-links li.open .nav-dropdown, .nav-links li:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li { display: block; }
.nav-dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 8px; transition: background 0.15s, color 0.15s; }
.nav-dropdown a:hover { background: var(--bg-3); color: var(--yellow); }
.nav-dropdown a strong { font-size: 14px; font-weight: 600; color: var(--text); }
.nav-dropdown a:hover strong { color: var(--yellow); }
.nav-dropdown a span { font-size: 12px; color: var(--text-3); }
.nav-cta {
  background: #0A0A0A !important;
  color: #FFFFFF !important;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--yellow);
  box-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  position: relative;
  text-transform: none;
  white-space: nowrap;
  line-height: 1;
}
.nav-cta::after {
  content: '→';
  font-size: 13px;
  font-weight: 900;
  color: var(--yellow);
  transition: transform 0.18s ease, color 0.18s ease;
  display: inline-block;
  line-height: 1;
}
.nav-cta:hover {
  background: var(--yellow) !important;
  color: #0A0A0A !important;
  border-color: var(--yellow);
}
.nav-cta:hover::after { transform: translateX(3px); color: #0A0A0A; }
.nav-cta:active { background: var(--yellow-hover, #E6C209) !important; }
.nav-cta:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
@media (max-width: 1080px) {
  .nav-cta { padding: 8px 14px; font-size: 12px; gap: 6px; }
  .nav-cta::after { font-size: 12px; }
}
.nav-toggle { display: none; background: transparent; color: var(--text); font-size: 22px; border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 8px; align-items: center; justify-content: center; }
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a, .nav-links .menu-trigger { font-size: 13px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; position: absolute; top: 68px; right: 12px; left: 12px; flex-direction: column; align-items: stretch; background: var(--bg-2); padding: 14px; border-radius: 14px; border: 1px solid var(--line); gap: 4px; max-height: calc(100vh - 90px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { padding: 12px 18px; font-size: 14px; text-align: center; margin-top: 8px; }
  .nav-links > li { padding: 4px 0; border-bottom: 1px solid var(--line); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a, .nav-links > li > .menu-trigger { display: flex; padding: 12px 8px; font-size: 14px; font-weight: 600; color: var(--text); width: 100%; }
  .menu-trigger .caret { margin-left: auto; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 0 0 8px 16px; min-width: 0; max-height: 0; overflow: hidden; transition: max-height 0.25s; }
  .nav-links li.open .nav-dropdown { max-height: 500px; }
  .nav-dropdown a { padding: 8px 12px; }
  .nav-dropdown a strong { font-size: 13px; }
  .nav-mark img { height: 40px; }
}

/* PRODUCT-SPECIFIC HERO LOGO LOCKUP */
.product-mark { display: flex; justify-content: center; padding: 32px 0 8px; }
.product-mark img { max-width: 460px; width: 80%; height: auto; display: block; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.4)); }
@media (max-width: 720px) {
  .product-mark img { max-width: 300px; width: 88%; }
  .product-mark { padding: 20px 0 4px; }
}

/* SECTION SHELL */
section { padding: 100px 32px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-narrow { max-width: 880px; margin: 0 auto; }
.eyebrow { display: inline-block; color: var(--yellow); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.section-title { font-weight: 800; font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; max-width: 880px; }
.section-title .y { color: var(--yellow); }
.section-sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-2); max-width: 720px; line-height: 1.55; margin-bottom: 56px; }
.center { text-align: center; }
.center .section-title, .center .section-sub { margin-left: auto; margin-right: auto; }

/* HERO — tightened to keep CTA above fold */
.hero { padding: 110px 32px 60px; background: var(--bg); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 1200px; height: 1200px; background: radial-gradient(circle, rgba(255,214,10,0.10) 0%, rgba(255,214,10,0) 60%); pointer-events: none; }
.hero-inner { max-width: 1180px; margin: 0 auto; position: relative; text-align: center; }
.hero-eyebrow { display: inline-block; background: rgba(255,214,10,0.10); color: var(--yellow); font-weight: 600; font-size: 12.5px; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; letter-spacing: 0.04em; border: 1px solid rgba(255,214,10,0.25); }
.hero h1 { font-weight: 800; font-size: clamp(30px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -0.025em; margin-bottom: 18px; }
.hero h1 .y { color: var(--yellow); }
.hero h1 .strike { text-decoration: line-through; text-decoration-color: var(--red); }
.hero-sub { font-size: clamp(15px, 1.25vw, 18px); color: var(--text-2); max-width: 720px; margin: 0 auto 28px; line-height: 1.55; }
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }

/* BUTTONS */
.btn-primary { background: var(--yellow); color: var(--bg); padding: 18px 32px; border-radius: 999px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.15s, background 0.2s; }
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); padding: 18px 32px; border-radius: 999px; font-weight: 600; font-size: 16px; border: 1px solid var(--line); transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: var(--yellow); background: rgba(255,214,10,0.05); }
.btn-dark { background: var(--bg); color: var(--text); padding: 18px 32px; border-radius: 999px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.15s, background 0.2s; }
.btn-dark:hover { background: var(--bg-2); transform: translateY(-2px); }

.hero-trust { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--text-3); }
.hero-trust .dot { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; }

/* STATS BAR */
.stats-bar { background: var(--yellow); color: var(--bg); padding: 28px 32px; border-top: 1px solid var(--bg); border-bottom: 1px solid var(--bg); }
.stats-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-weight: 900; font-size: clamp(28px, 4vw, 48px); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; opacity: 0.75; }
@media (max-width: 720px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* PROBLEM CARDS */
.bg-2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.2s; }
.pain-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.pain-card .x { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,59,48,0.10); color: var(--red); border-radius: 8px; font-weight: 800; margin-bottom: 18px; font-size: 18px; }
.pain-card .check { background: rgba(45,208,110,0.10); color: var(--green); }
.pain-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.25; }
.pain-card p { color: var(--text-2); font-size: 15px; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; } }

/* OFFERS */
.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.offer-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 36px; position: relative; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.offer-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.offer-card.featured { background: linear-gradient(180deg, rgba(255,214,10,0.06), var(--bg-2)); border-color: var(--yellow); }
.offer-tag { position: absolute; top: -14px; left: 32px; background: var(--yellow); color: var(--bg); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.offer-name { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.offer-headline { font-size: 26px; font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 14px; }
.offer-desc { color: var(--text-2); font-size: 15px; margin-bottom: 24px; flex: 1; }
.offer-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.offer-price .amt { font-weight: 800; font-size: 32px; letter-spacing: -0.02em; }
.offer-price .per { color: var(--text-3); font-size: 14px; font-weight: 500; }
.offer-list { list-style: none; margin-bottom: 28px; }
.offer-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); padding: 8px 0; border-bottom: 1px solid var(--line); }
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before { content: '✓'; color: var(--yellow); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.offer-cta { display: block; text-align: center; background: var(--yellow); color: var(--bg); padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: background 0.2s, transform 0.15s; }
.offer-card:not(.featured) .offer-cta { background: transparent; color: var(--text); border: 1px solid var(--line); }
.offer-cta:hover { background: var(--yellow-hover); color: var(--bg); transform: translateY(-2px); }
.offer-card:not(.featured) .offer-cta:hover { background: var(--yellow); border-color: var(--yellow); }
@media (max-width: 860px) { .offers-grid { grid-template-columns: 1fr; } }

/* FEATURES (long form) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }
.feature-tag { display: inline-block; background: rgba(255,214,10,0.10); color: var(--yellow); font-weight: 700; font-size: 12px; padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; }
.feature-row h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
.feature-row h3 .y { color: var(--yellow); }
.feature-row p { color: var(--text-2); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.feature-bullets { list-style: none; margin-top: 18px; }
.feature-bullets li { display: flex; gap: 12px; padding: 8px 0; color: var(--text-2); font-size: 15px; }
.feature-bullets li::before { content: '→'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
.feature-visual { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual .placeholder { color: var(--text-3); font-size: 14px; }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; } .feature-row.flip { direction: ltr; } }

/* WHO IS / WHO IS NOT */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.who-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 36px; }
.who-card.yes { border-color: rgba(45,208,110,0.4); }
.who-card.no { border-color: rgba(255,59,48,0.4); }
.who-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.who-card .badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; font-weight: 800; font-size: 18px; }
.who-card.yes .badge { background: rgba(45,208,110,0.15); color: var(--green); }
.who-card.no .badge { background: rgba(255,59,48,0.15); color: var(--red); }
.who-card ul { list-style: none; }
.who-card li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-2); font-size: 15px; line-height: 1.5; display: flex; gap: 10px; }
.who-card li:last-child { border-bottom: none; }
.who-card.yes li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.who-card.no li::before { content: '✕'; color: var(--red); font-weight: 700; flex-shrink: 0; }
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.2s; }
.t-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.t-result { color: var(--yellow); font-weight: 800; font-size: 28px; letter-spacing: -0.01em; margin-bottom: 14px; line-height: 1.1; }
.t-quote { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 22px; }
.t-name { font-size: 14px; font-weight: 700; color: var(--text); }
.t-role { font-size: 13px; color: var(--text-3); }
@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 17px; font-weight: 600; color: var(--text); }
.faq-q::after { content: '+'; color: var(--yellow); font-size: 24px; font-weight: 400; transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { color: var(--text-2); font-size: 15px; line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; padding-top: 0; }
.faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }

/* FORM */
.form-shell { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 48px; max-width: 720px; margin: 0 auto; }
.form-shell h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.form-shell .sub { color: var(--text-2); margin-bottom: 32px; font-size: 15px; }
.form-grid { display: grid; gap: 18px; }
.form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-family: inherit; font-size: 15px; outline: none; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--yellow); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 18px 24px; background: var(--yellow); color: var(--bg); border-radius: 999px; font-weight: 800; font-size: 16px; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { background: rgba(45,208,110,0.10); border: 1px solid rgba(45,208,110,0.4); color: var(--green); padding: 16px 20px; border-radius: 10px; font-size: 15px; margin-top: 20px; display: none; }
.form-success.show { display: block; }
@media (max-width: 600px) { .form-grid.cols-2 { grid-template-columns: 1fr; } .form-shell { padding: 32px 24px; } }

/* FOUNDER SECTION */
.founder-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.founder-photo { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; background: var(--bg-3); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-text h2 { font-weight: 800; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08; margin-bottom: 22px; letter-spacing: -0.02em; }
.founder-text p { color: var(--text-2); font-size: 16px; margin-bottom: 18px; line-height: 1.65; }
.founder-text p strong { color: var(--text); font-weight: 600; }
.founder-sig { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--yellow); margin-top: 22px; }
@media (max-width: 860px) { .founder-inner { grid-template-columns: 1fr; gap: 36px; } }

/* BOOKS GRID */
.books-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.book-tile { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px; transition: transform 0.2s, border-color 0.2s; display: block; }
.book-tile:hover { transform: translateY(-4px); border-color: var(--yellow); }
.book-tile .cover { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--bg-3); margin-bottom: 12px; }
.book-tile .cover img { width: 100%; height: 100%; object-fit: cover; }
.book-tile .title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.book-tile .meta { font-size: 11px; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
@media (max-width: 1080px) { .books-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .books-grid { grid-template-columns: repeat(2, 1fr); } }

/* FINAL CTA */
.final-cta { background: var(--yellow); color: var(--bg); text-align: center; }
.final-cta h2 { font-weight: 800; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; max-width: 880px; margin-left: auto; margin-right: auto; }
.final-cta p { font-size: clamp(16px, 1.4vw, 19px); max-width: 640px; margin: 0 auto 32px; opacity: 0.85; }

/* TIMELINE */
.timeline { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.tl-step { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 32px; position: relative; }
.tl-step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: var(--yellow); color: var(--bg); font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.tl-step h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.tl-step p { color: var(--text-2); font-size: 14px; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr; } }

/* COMPARE TABLE */
.compare { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.compare th { background: var(--bg); color: var(--yellow); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare td:first-child { font-weight: 600; color: var(--text); }
.compare td:not(:first-child) { color: var(--text-2); text-align: center; }
.compare .y { color: var(--green); font-weight: 800; font-size: 18px; }
.compare .n { color: var(--text-3); }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 70px 32px 36px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer-brand img { height: 56px; width: auto; display: block; }
.footer-brand .fallback { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.footer-brand .fallback span { color: var(--yellow); }
.footer-tag { color: var(--text-3); font-size: 14px; max-width: 280px; line-height: 1.55; margin-bottom: 22px; }
.footer-news { display: flex; gap: 8px; max-width: 320px; }
.footer-news input { flex: 1; padding: 12px 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; color: var(--text); font-family: inherit; font-size: 14px; outline: none; }
.footer-news input:focus { border-color: var(--yellow); }
.footer-news button { padding: 12px 18px; background: var(--yellow); color: var(--bg); border-radius: 8px; font-weight: 700; font-size: 13px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--text-3); font-size: 13px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-2); font-size: 13px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { color: var(--yellow); border-color: var(--yellow); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* SERVICE BUSINESS PILL GRID — clickable, opens case study modal */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.biz-pill { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: border-color 0.2s, transform 0.2s, background 0.2s; cursor: pointer; text-align: left; font-family: inherit; width: 100%; color: inherit; position: relative; }
.biz-pill:hover { border-color: var(--yellow); transform: translateY(-2px); background: var(--bg-2); }
.biz-pill::after { content: '→'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%) translateX(0); color: var(--yellow); font-weight: 800; font-size: 14px; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.biz-pill:hover::after { opacity: 1; transform: translateY(-50%) translateX(4px); }
.biz-pill .ic { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,214,10,0.10); color: var(--yellow); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.biz-pill .label { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.25; }
.biz-pill .sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.biz-pill .case-hint { font-size: 10px; color: var(--yellow); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; opacity: 0.7; }
@media (max-width: 1080px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .biz-grid { grid-template-columns: 1fr; } }

/* CASE STUDY MODAL */
.case-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.25s ease; }
.case-modal-overlay.open { display: flex; opacity: 1; }
.case-modal { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); border: 1px solid var(--line); border-radius: 22px; max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 44px 40px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,214,10,0.08); transform: translateY(20px) scale(0.96); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.case-modal-overlay.open .case-modal { transform: translateY(0) scale(1); }
.case-modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; background: var(--bg); border: 1px solid var(--line); border-radius: 50%; color: var(--text-2); font-size: 22px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.case-modal-close:hover { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.case-modal .case-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,214,10,0.12); color: var(--yellow); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255,214,10,0.25); margin-bottom: 18px; }
.case-modal h3 { font-size: clamp(22px, 3.2vw, 28px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.case-modal .case-meta { color: var(--text-3); font-size: 14px; margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px 14px; }
.case-modal .case-meta span { display: inline-flex; align-items: center; gap: 6px; }
.case-modal .case-meta strong { color: var(--text); font-weight: 600; }
.case-modal .case-result { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--yellow); line-height: 1.18; margin: 18px 0 22px; padding: 18px 20px; background: rgba(255,214,10,0.06); border: 1px dashed rgba(255,214,10,0.3); border-radius: 14px; }
.case-modal .case-block { margin-top: 22px; }
.case-modal .case-block h4 { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.case-modal .case-block p { color: var(--text-2); font-size: 15px; line-height: 1.65; }
.case-modal .case-quote { margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--yellow); background: var(--bg); border-radius: 0 12px 12px 0; color: var(--text); font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.55; }
.case-modal .case-quote::before { content: '"'; font-size: 28px; color: var(--yellow); margin-right: 4px; vertical-align: -6px; }
.case-modal .case-quote::after { content: '"'; font-size: 28px; color: var(--yellow); margin-left: 4px; vertical-align: -6px; }
.case-modal .case-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .case-modal { padding: 36px 24px; border-radius: 18px; max-height: 92vh; }
  .case-modal-close { top: 10px; right: 10px; width: 34px; height: 34px; }
  .case-modal h3 { font-size: 22px; }
  .case-modal .case-result { font-size: 18px; padding: 14px 16px; }
}
body.modal-open { overflow: hidden; }

/* CURRICULUM (legacy flat grid, kept for compatibility) */
.curriculum { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.curr-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.curr-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.curr-card .week { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.curr-card h4 { font-size: 16px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; color: var(--text); }
.curr-card p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
@media (max-width: 860px) { .curriculum { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .curriculum { grid-template-columns: 1fr; } }

/* CURRICULUM — PHASE-GROUPED (clean 4-phase layout) */
.curr-phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.phase-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.phase-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.phase-card .phase-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.phase-card .phase-tag .ph-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(255,214,10,0.12); font-weight: 800; font-size: 12px; }
.phase-card h4 { font-size: 18px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; color: var(--text); margin-bottom: 6px; }
.phase-card .phase-range { font-size: 12px; color: var(--text-3); font-weight: 600; margin-bottom: 18px; }
.phase-card ul { list-style: none; margin: 0; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.phase-card li { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--line); }
.phase-card li:first-child { border-top: none; padding-top: 0; }
.phase-card li .wk { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.06em; text-transform: uppercase; }
.phase-card li .topic { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.phase-card li .desc { font-size: 12px; color: var(--text-3); line-height: 1.45; margin-top: 2px; grid-column: 2; }
@media (max-width: 1080px) { .curr-phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .curr-phases { grid-template-columns: 1fr; } }

/* CALENDAR EMBED SHELL */
.calendar-shell { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 32px; max-width: 920px; margin: 0 auto; }
.calendar-shell .cal-header { text-align: center; margin-bottom: 24px; }
.calendar-shell h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.calendar-shell .sub { color: var(--text-2); font-size: 15px; margin-bottom: 0; }
.calendar-frame { width: 100%; min-height: 720px; border: none; border-radius: 16px; background: var(--bg-3); display: block; }
.cal-fallback { padding: 22px; background: var(--bg-3); border-radius: 12px; text-align: center; color: var(--text-2); font-size: 14px; line-height: 1.6; }
.cal-fallback a { color: var(--yellow); text-decoration: underline; }
.cal-todo { background: rgba(255,214,10,0.08); border: 1px dashed rgba(255,214,10,0.5); color: var(--yellow); padding: 12px 18px; border-radius: 10px; font-size: 12px; font-weight: 600; margin-bottom: 16px; text-align: center; }

/* INCLUSION CARD ROWS (for program details) */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.inc-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color 0.2s, transform 0.2s; }
.inc-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.inc-card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,214,10,0.10); color: var(--yellow); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.inc-card .ic.warn { background: rgba(255,59,48,0.10); color: var(--red); }
.inc-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); line-height: 1.25; }
.inc-card p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
@media (max-width: 720px) { .includes-grid { grid-template-columns: 1fr; } }

/* PROSE */
.prose { max-width: 760px; margin: 0 auto; color: var(--text-2); font-size: 17px; line-height: 1.7; }
.prose h2 { color: var(--text); font-weight: 800; font-size: clamp(28px, 3.4vw, 40px); margin: 48px 0 18px; line-height: 1.1; letter-spacing: -0.02em; }
.prose h3 { color: var(--text); font-weight: 700; font-size: 22px; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul { margin: 18px 0; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--yellow); text-decoration: underline; text-decoration-color: rgba(255,214,10,0.4); }
.prose blockquote { border-left: 3px solid var(--yellow); padding: 12px 24px; margin: 24px 0; color: var(--text); font-family: var(--serif); font-style: italic; font-size: 20px; }

/* =====================================================
   POLISH PASS — alive micro-animations + accents
   ===================================================== */

/* Hairline divider between major sections (gold gradient) */
section + section { position: relative; }
section + section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,214,10,0.18), transparent);
  pointer-events: none;
}

/* Ambient yellow blob in hero (subtle parallax via animation) */
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,214,10,0.07) 0%, rgba(255,214,10,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

/* Primary button: shimmer / sheen sweep on hover */
.btn-primary { position: relative; overflow: hidden; box-shadow: 0 4px 24px rgba(255,214,10,0.18); }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(255,214,10,0.28); }

/* (Pulsing ring removed — replaced with cleaner shadow/arrow CTA above) */

/* Stats bar: number reveal + soft pop */
.stat-num { display: inline-block; }
.stats-bar.in .stat-num { animation: statPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes statPop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Card hovers — subtle scale + brighter border */
.pain-card, .offer-card, .t-card, .biz-pill, .inc-card, .curr-card, .phase-card, .book-tile {
  will-change: transform;
}
.offer-card:hover { box-shadow: 0 16px 60px rgba(255,214,10,0.10); }
.offer-card.featured { box-shadow: 0 12px 40px rgba(255,214,10,0.14); }

/* Marquee accent (optional usage) */
.marquee-strip { background: var(--yellow); color: var(--bg); padding: 14px 0; overflow: hidden; white-space: nowrap; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee 30s linear infinite; }
.marquee-track > span { padding: 0 20px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Make compare table mobile-friendly: horizontal scroll with subtle gradient hint */
.compare { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare table { min-width: 720px; }
@media (max-width: 760px) {
  .compare::after {
    content: '→ scroll';
    position: absolute;
    bottom: 8px; right: 12px;
    font-size: 11px;
    color: var(--text-3);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    pointer-events: none;
    opacity: 0.8;
  }
}

/* Ribbon shine on featured offer card tag */
.offer-card.featured .offer-tag {
  background: linear-gradient(120deg, var(--yellow) 0%, #FFE94A 50%, var(--yellow) 100%);
  background-size: 200% 100%;
  animation: ribbonShine 4s linear infinite;
}
@keyframes ribbonShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Smoother reveal stagger using nth-child delays inside common grid containers */
.problem-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.problem-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.problem-grid .reveal:nth-child(3) { transition-delay: 0.25s; }
.includes-grid .inc-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.includes-grid .inc-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.includes-grid .inc-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.includes-grid .inc-card.reveal:nth-child(4) { transition-delay: 0.20s; }
.includes-grid .inc-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.includes-grid .inc-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.t-grid .t-card.reveal:nth-child(1) { transition-delay: 0.08s; }
.t-grid .t-card.reveal:nth-child(2) { transition-delay: 0.16s; }
.t-grid .t-card.reveal:nth-child(3) { transition-delay: 0.24s; }
.curr-phases .phase-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.curr-phases .phase-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.curr-phases .phase-card.reveal:nth-child(3) { transition-delay: 0.19s; }
.curr-phases .phase-card.reveal:nth-child(4) { transition-delay: 0.26s; }

/* =====================================================
   RESPONSIVE — full mobile pass (≤960px and ≤640px)
   ===================================================== */
@media (max-width: 960px) {
  section { padding: 72px 22px; }
  .section-inner { padding: 0; }
  .hero { padding: 86px 22px 44px; }
  .hero-eyebrow { margin-bottom: 16px; font-size: 11.5px; padding: 6px 12px; }
  .hero h1 { font-size: clamp(26px, 6vw, 40px); margin-bottom: 14px; }
  .hero-sub { font-size: 14.5px; margin-bottom: 22px; }
  .hero-cta-row { margin-bottom: 18px; }
  .hero-cta-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-secondary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
  .hero-trust { font-size: 12px; gap: 10px; }
  .hero-trust .dot { display: none; }
  .stats-bar { padding: 22px 18px; }
  .stat-num { font-size: clamp(24px, 5.5vw, 36px); }
  .stat-label { font-size: 10px; letter-spacing: 0.06em; }
  .section-title { font-size: clamp(26px, 6.5vw, 40px); }
  .section-sub { font-size: 15px; margin-bottom: 36px; }
  .feature-row { gap: 24px; margin-bottom: 50px; }
  .feature-row h3 { font-size: clamp(22px, 5.4vw, 30px); }
  .feature-row p { font-size: 15px; }
  .feature-visual { aspect-ratio: 16/10; }
  .pain-card { padding: 24px; }
  .pain-card h3 { font-size: 17px; }
  .pain-card p { font-size: 14px; }
  .offer-card { padding: 28px 22px; }
  .offer-headline { font-size: 22px; }
  .offer-price .amt { font-size: 28px; }
  .inc-card { padding: 20px; gap: 12px; }
  .inc-card .ic { width: 38px; height: 38px; font-size: 16px; }
  .inc-card h4 { font-size: 16px; }
  .inc-card p { font-size: 13px; }
  .timeline { gap: 14px; }
  .tl-step { padding: 24px; }
  .who-card { padding: 28px 22px; }
  .who-card h3 { font-size: 21px; }
  .who-card li { font-size: 14px; }
  .biz-pill { padding: 12px 14px; gap: 10px; }
  .biz-pill .ic { width: 28px; height: 28px; font-size: 12px; }
  .biz-pill .label { font-size: 13px; }
  .biz-pill .sub { font-size: 11px; }
  .curr-card { padding: 18px; }
  .phase-card { padding: 22px 20px; }
  .phase-card h4 { font-size: 17px; }
  .form-shell { padding: 28px 20px; }
  .form-shell h3 { font-size: 22px; }
  .form-field input, .form-field textarea, .form-field select { padding: 12px 14px; font-size: 15px; }
  .form-submit { padding: 16px 22px; font-size: 15px; }
  .calendar-shell { padding: 22px 18px; }
  .calendar-shell h3 { font-size: 20px; }
  .final-cta h2 { font-size: clamp(28px, 7vw, 44px); }
  .final-cta p { font-size: 15px; }
  .btn-primary, .btn-secondary, .btn-dark { padding: 16px 24px; font-size: 15px; }
  footer { padding: 56px 22px 28px; }
  .footer-grid { gap: 28px; }
  .footer-news { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-social { flex-wrap: wrap; }
  .nav-mark img { height: 28px; }
  .nav-inner { padding: 14px 18px; }
}

@media (max-width: 640px) {
  section { padding: 56px 18px; }
  .hero { padding: 78px 18px 36px; }
  .hero h1 { font-size: clamp(22px, 6.4vw, 32px); line-height: 1.15; margin-bottom: 12px; }
  .hero-eyebrow { font-size: 10.5px; padding: 5px 11px; margin-bottom: 14px; }
  .hero-sub { font-size: 13.5px; margin-bottom: 18px; line-height: 1.5; }
  .hero-cta-row { margin-bottom: 14px; gap: 8px; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-secondary { padding: 14px 18px; font-size: 14px; }
  .stats-bar { padding: 20px 14px; }
  .stats-inner { gap: 14px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 9.5px; }
  .section-title { font-size: clamp(24px, 7vw, 34px); line-height: 1.12; }
  .section-sub { font-size: 14.5px; margin-bottom: 28px; }
  .nav-mark img { height: 26px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .offer-card { padding: 24px 20px; border-radius: 16px; }
  .offer-headline { font-size: 20px; }
  .offer-price .amt { font-size: 26px; }
  .offer-list li { font-size: 13.5px; }
  .pain-card { padding: 22px 18px; }
  .biz-pill { padding: 11px 12px; }
  .biz-pill .label { font-size: 12.5px; }
  .biz-pill .sub { font-size: 10.5px; }
  .biz-pill .ic { width: 24px; height: 24px; font-size: 11px; }
  .who-card { padding: 24px 18px; border-radius: 16px; }
  .who-card h3 { font-size: 19px; }
  .form-shell { padding: 24px 18px; border-radius: 18px; }
  .form-shell h3 { font-size: 20px; }
  .form-shell .sub { font-size: 14px; margin-bottom: 22px; }
  .calendar-shell { padding: 20px 16px; border-radius: 18px; }
  .calendar-shell h3 { font-size: 18px; }
  .calendar-shell .sub { font-size: 13px; }
  .cal-todo { font-size: 11px; padding: 10px 14px; }
  .final-cta h2 { font-size: clamp(26px, 8vw, 36px); }
  footer { padding: 44px 18px 24px; }
  .footer-brand img { height: 48px; }
  .compare th, .compare td { padding: 12px 14px; font-size: 13px; }
  .legal-shell { padding: 110px 20px 70px; }
  .legal-shell h1 { font-size: clamp(30px, 8vw, 44px); }
}

/* Ensure huge inline-styled elements never overflow */
img, iframe { max-width: 100%; }
.calendar-frame { min-height: 540px; }
@media (max-width: 640px) { .calendar-frame { min-height: 480px; } }

/* =====================================================
   VSL — Video Sales Letter component
   ===================================================== */
.vsl-section { padding: 30px 32px 60px; background: var(--bg); }
.vsl-section .section-inner { max-width: 980px; margin: 0 auto; }
.vsl-shell { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); border: 1px solid var(--line); border-radius: 22px; padding: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,214,10,0.05); position: relative; }
.vsl-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,214,10,0.4), rgba(255,214,10,0) 40%, rgba(255,214,10,0) 60%, rgba(255,214,10,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.vsl-frame { position: relative; aspect-ratio: 16/9; width: 100%; border-radius: 16px; overflow: hidden; background: #050505; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.vsl-frame iframe, .vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.vsl-frame .vsl-poster { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,214,10,0.08) 0%, rgba(255,214,10,0) 60%), linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; transition: opacity 0.3s; padding: 24px; text-align: center; }
.vsl-frame .vsl-play { width: 88px; height: 88px; border-radius: 50%; background: var(--yellow); color: var(--bg); display: inline-flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 16px 48px rgba(255,214,10,0.35), 0 0 0 8px rgba(255,214,10,0.12); transition: transform 0.2s, box-shadow 0.2s; }
.vsl-frame:hover .vsl-play { transform: scale(1.08); box-shadow: 0 20px 60px rgba(255,214,10,0.5), 0 0 0 14px rgba(255,214,10,0.10); }
.vsl-frame .vsl-play::after { content: '▶'; transform: translateX(3px); }
.vsl-frame .vsl-poster .vsl-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,214,10,0.12); color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255,214,10,0.25); }
.vsl-frame .vsl-poster h4 { color: var(--text); font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; line-height: 1.25; max-width: 540px; }
.vsl-frame .vsl-poster p { color: var(--text-3); font-size: 13px; max-width: 460px; line-height: 1.5; }
.vsl-caption { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; color: var(--text-3); font-size: 13px; }
.vsl-caption .y-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: vslPulse 1.6s ease-in-out infinite; }
@keyframes vslPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
@media (max-width: 640px) {
  .vsl-section { padding: 22px 18px 44px; }
  .vsl-shell { border-radius: 16px; }
  .vsl-frame { border-radius: 12px; }
  .vsl-frame .vsl-play { width: 64px; height: 64px; font-size: 24px; box-shadow: 0 10px 30px rgba(255,214,10,0.35), 0 0 0 6px rgba(255,214,10,0.10); }
  .vsl-frame .vsl-poster h4 { font-size: 15px; }
  .vsl-frame .vsl-poster p { font-size: 12px; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .nav-cta::after { animation: none; }
  .offer-card.featured .offer-tag { animation: none; }
  .marquee-track { animation: none; }
  .reveal { transition: none !important; opacity: 1; transform: none; }
}

/* Meaning subtext under hero h1 (used for Sanskrit meanings) */
.hero h1 .hero-meaning { display: block; font-size: 0.42em; font-weight: 500; color: var(--text-3); letter-spacing: 0.04em; margin-top: 10px; margin-bottom: 14px; font-family: var(--serif); font-style: italic; line-height: 1.4; }
@media (max-width: 640px) { .hero h1 .hero-meaning { font-size: 13px; margin-top: 8px; margin-bottom: 10px; } }

/* === ABOUT STORY (year-by-year chapter narrative) === */
.story-section { padding: 80px 0 120px; }
.story-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.story-chapter { margin-bottom: 80px; }
.story-chapter:last-child { margin-bottom: 0; }
.story-year { font-family: var(--mono, 'JetBrains Mono', 'Courier New', monospace); font-size: 12px; letter-spacing: 0.4em; color: var(--yellow); text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.story-headline { font-family: var(--serif, 'Fraunces', serif); font-weight: 700; font-size: clamp(28px, 4vw, 48px); line-height: 1.15; letter-spacing: -0.02em; color: var(--text-1, #fff); margin: 0 0 28px; }
.story-headline .italic { font-style: italic; color: var(--yellow); }
.story-body p { font-family: var(--serif, 'Fraunces', serif); font-size: 19px; line-height: 1.7; color: var(--text-2, #d8d8d8); margin: 0 0 18px; font-weight: 400; }
.story-body p:last-child { margin-bottom: 0; }
.story-body p.italic { font-style: italic; color: var(--yellow); border-left: 3px solid var(--yellow); padding: 10px 22px; background: rgba(255, 214, 10, 0.04); }
.story-rule { width: 80px; height: 1px; background: var(--yellow); margin: 60px auto; opacity: 0.6; }
@media (max-width: 720px) {
  .story-section { padding: 56px 0 80px; }
  .story-inner { padding: 0 22px; }
  .story-chapter { margin-bottom: 56px; }
  .story-headline { font-size: clamp(24px, 6vw, 34px); margin-bottom: 22px; }
  .story-body p { font-size: 17px; line-height: 1.65; }
  .story-rule { margin: 44px auto; }
}

/* === BLOG ARTICLE SHELL (DR theme long-form) === */
.article-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--yellow); z-index: 100; transition: width 0.1s; }

.article-back { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 32px; transition: color 0.18s ease; }
.article-back::before { content: '←'; font-family: var(--sans); }
.article-back:hover { color: var(--yellow); }

.article-head { padding: 96px 32px 48px; max-width: 820px; margin: 0 auto; }
.article-eyebrow { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.32em; color: var(--yellow); text-transform: uppercase; margin-bottom: 28px; display: inline-flex; align-items: center; gap: 14px; }
.article-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--yellow); }
.article-h1 { font-family: var(--sans); font-weight: 900; font-size: clamp(34px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.03em; color: var(--text-1, #fff); margin-bottom: 28px; }
.article-h1 .italic { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-weight: 700; color: var(--yellow); }
.article-deck { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; color: var(--text-2, #d8d8d8); margin-bottom: 40px; }
.article-meta { display: flex; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line, #222); border-bottom: 1px solid var(--line, #222); font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.18em; color: var(--text-3, #9a9a9a); text-transform: uppercase; flex-wrap: wrap; }
.article-meta strong { color: var(--text-1, #fff); font-weight: 600; margin-right: 6px; }

.article-body { padding: 56px 32px 96px; max-width: 720px; margin: 0 auto; font-family: var(--serif, 'Fraunces', serif); font-size: 18px; line-height: 1.75; color: var(--text-2, #d8d8d8); }
.article-body > p:first-of-type::first-letter { font-family: var(--serif, 'Fraunces', serif); font-weight: 900; font-size: 86px; line-height: 0.85; float: left; padding: 8px 14px 0 0; color: var(--yellow); }
.article-body p { margin-bottom: 26px; }
.article-body h2 { font-family: var(--sans); font-weight: 800; font-size: 30px; line-height: 1.15; letter-spacing: -0.015em; color: var(--text-1, #fff); margin: 56px 0 22px; }
.article-body h2 .italic { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-weight: 700; color: var(--yellow); }
.article-body h3 { font-family: var(--sans); font-weight: 800; font-size: 22px; line-height: 1.2; color: var(--text-1, #fff); margin: 36px 0 14px; }
.article-body strong { color: var(--text-1, #fff); font-weight: 700; }
.article-body em { font-style: italic; color: var(--yellow); }
.article-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article-body a:hover { color: #FFE45C; }
.article-body ul, .article-body ol { margin: 0 0 28px 22px; }
.article-body li { margin-bottom: 12px; padding-left: 4px; }
.article-body ul li::marker { color: var(--yellow); }
.article-body ol li::marker { color: var(--yellow); font-weight: 700; }
.article-body blockquote { padding: 26px 30px; margin: 36px -30px; border-left: 3px solid var(--yellow); background: rgba(255, 214, 10, 0.04); font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--text-1, #fff); }
.article-body blockquote.large { font-size: 28px; padding: 48px 36px; margin: 48px -36px; border-left: none; border-top: 1px solid var(--line, #222); border-bottom: 1px solid var(--line, #222); text-align: center; background: transparent; color: var(--yellow); }
.article-body hr { border: none; text-align: center; margin: 52px 0; color: var(--yellow); font-family: var(--serif, 'Fraunces', serif); font-size: 22px; opacity: 0.7; }
.article-body hr::after { content: '✦ ✦ ✦'; letter-spacing: 0.5em; }

.article-signature { padding: 48px 32px; max-width: 720px; margin: 0 auto; border-top: 1px solid var(--line, #222); }
.article-signature .sig-text { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: 26px; color: var(--yellow); margin-bottom: 12px; }
.article-signature .sig-role { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.28em; color: var(--text-3, #9a9a9a); text-transform: uppercase; }

.article-cta { background: var(--bg-2, #111); padding: 88px 32px; text-align: center; border-top: 1px solid var(--line, #222); border-bottom: 1px solid var(--line, #222); position: relative; overflow: hidden; }
.article-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(255, 214, 10, 0.10), transparent 60%); pointer-events: none; }
.article-cta-inner { max-width: 760px; margin: 0 auto; position: relative; }
.article-cta .eb { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.32em; color: var(--yellow); text-transform: uppercase; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 14px; }
.article-cta .eb::before, .article-cta .eb::after { content: ''; width: 30px; height: 1px; background: var(--yellow); }
.article-cta h2 { font-family: var(--sans); font-weight: 900; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; color: var(--text-1, #fff); margin-bottom: 16px; letter-spacing: -0.02em; }
.article-cta h2 .italic { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-weight: 700; color: var(--yellow); }
.article-cta p { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: 18px; color: var(--text-2, #d8d8d8); margin-bottom: 32px; }
.article-cta .btn-primary { padding: 16px 32px; font-size: 14px; }

@media (max-width: 720px) {
  .article-head { padding: 64px 22px 40px; }
  .article-body { padding: 40px 22px 72px; font-size: 17px; }
  .article-body blockquote, .article-body blockquote.large { margin-left: 0; margin-right: 0; padding: 22px 20px; font-size: 19px; }
  .article-body blockquote.large { font-size: 22px; }
  .article-meta { gap: 14px; font-size: 10px; }
  .article-cta { padding: 64px 22px; }
  .article-signature { padding: 40px 22px; }
}

/* Logo wrapper anchors (homepage links) */
.footer-brand-link, .product-mark-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.footer-brand-link:hover, .product-mark-link:hover { opacity: 0.85; }
.product-mark-link img { display: block; }

/* ================================================
   FUNNEL PAGES (lp/) — slim, focused, no main nav
   ================================================ */
.fn-bar { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.fn-bar-inner { max-width: 1180px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.fn-bar img { height: 42px; width: auto; display: block; }
.fn-bar-cta { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.2em; color: var(--text-3, #9a9a9a); text-transform: uppercase; }
.fn-bar-cta:hover { color: var(--yellow); }
@media (max-width: 720px) { .fn-bar-inner { padding: 12px 18px; } .fn-bar img { height: 36px; } .fn-bar-cta { font-size: 10px; letter-spacing: 0.16em; } }

/* Funnel hero */
.fn-hero { padding: 56px 24px 40px; max-width: 1080px; margin: 0 auto; text-align: center; }
.fn-eyebrow { display: inline-block; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.32em; color: var(--yellow); text-transform: uppercase; margin-bottom: 22px; padding: 6px 14px; border: 1px solid rgba(255,214,10,0.35); border-radius: 999px; background: rgba(255,214,10,0.06); }
.fn-h1 { font-family: var(--sans); font-weight: 900; font-size: clamp(30px, 4.4vw, 56px); line-height: 1.22; letter-spacing: -0.03em; color: var(--text-1, #fff); margin-bottom: 22px; max-width: 980px; margin-left: auto; margin-right: auto; }
.fn-h1 .y { color: var(--yellow); font-style: italic; font-family: var(--serif, 'Fraunces', serif); font-weight: 700; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.fn-h1 .strike { text-decoration: line-through; text-decoration-color: rgba(239, 68, 68, 0.85); }
.fn-sub { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; color: var(--text-2, #d8d8d8); max-width: 760px; margin: 0 auto 32px; }
.fn-trust { display: inline-flex; align-items: center; gap: 16px; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3, #9a9a9a); margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.fn-trust .dot { width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; }

/* Opt-in form card */
.fn-form { max-width: 540px; margin: 0 auto; padding: 28px; background: var(--bg-3, #1a1a1a); border: 1px solid var(--line, #222); border-radius: 14px; }
.fn-form .row { display: grid; gap: 12px; margin-bottom: 14px; }
.fn-form input { width: 100%; padding: 14px 16px; background: var(--bg, #0a0a0a); border: 1px solid var(--line-2, #333); border-radius: 8px; color: var(--text-1, #fff); font-family: inherit; font-size: 15px; }
.fn-form input:focus { border-color: var(--yellow); outline: none; }
.fn-form input::placeholder { color: var(--text-3, #9a9a9a); }
.fn-form button { width: 100%; padding: 16px 20px; background: var(--yellow); color: var(--bg, #0a0a0a); font-family: inherit; font-weight: 800; font-size: 15px; letter-spacing: 0.02em; border: none; border-radius: 8px; cursor: pointer; transition: background 0.18s ease; }
.fn-form button:hover { background: #FFE45C; }
.fn-form .small { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3, #9a9a9a); text-align: center; margin-top: 10px; }
.fn-form .small strong { color: var(--yellow); }

/* Big CTA button (used on VSL + OTO) */
.fn-cta-big { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 22px 40px; background: var(--yellow); color: var(--bg, #0a0a0a); font-family: var(--sans); font-weight: 900; font-size: clamp(15px, 1.6vw, 19px); letter-spacing: 0.02em; border-radius: 10px; cursor: pointer; text-decoration: none; transition: background 0.18s ease, transform 0.15s ease; box-shadow: 0 0 0 3px rgba(255,214,10,0.20); }
.fn-cta-big:hover { background: #FFE45C; transform: translateY(-1px); box-shadow: 0 0 0 5px rgba(255,214,10,0.28); }
.fn-cta-big::after { content: '→'; font-weight: 900; font-size: 1.1em; }
.fn-cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px 0; }
.fn-cta-secondary { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3, #9a9a9a); text-decoration: none; transition: color 0.18s ease; }
.fn-cta-secondary:hover { color: var(--yellow); }

/* Section block */
.fn-block { padding: 56px 24px; max-width: 1080px; margin: 0 auto; }
.fn-block.narrow { max-width: 760px; }
.fn-block.alt { background: var(--bg-2, #111); max-width: none; padding-left: 0; padding-right: 0; }
.fn-block.alt-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.fn-block h2 { font-family: var(--sans); font-weight: 900; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.24; letter-spacing: -0.025em; color: var(--text-1, #fff); margin-bottom: 22px; }
.fn-block h2 .y { color: var(--yellow); font-style: italic; font-family: var(--serif, 'Fraunces', serif); font-weight: 700; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.fn-block h3 { font-family: var(--sans); font-weight: 800; font-size: 22px; color: var(--text-1, #fff); margin-bottom: 12px; }
.fn-block p { font-family: var(--serif, 'Fraunces', serif); font-size: 18px; line-height: 1.65; color: var(--text-2, #d8d8d8); margin-bottom: 18px; }
.fn-block .center { text-align: center; }

/* Stack of value items */
.fn-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
@media (max-width: 900px) { .fn-stack { grid-template-columns: 1fr; } }
.fn-stack-card { background: var(--bg-3, #1a1a1a); border: 1px solid var(--line, #222); border-radius: 14px; padding: 28px; }
.fn-stack-card .badge { display: inline-block; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bg, #0a0a0a); background: var(--yellow); padding: 4px 10px; border-radius: 4px; margin-bottom: 18px; font-weight: 700; }
.fn-stack-card h3 { font-family: var(--sans); font-weight: 800; font-size: 20px; line-height: 1.2; color: var(--text-1, #fff); margin-bottom: 10px; letter-spacing: -0.01em; }
.fn-stack-card p { font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--text-2, #d8d8d8); margin-bottom: 0; }
.fn-stack-card .price { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-top: 14px; }
.fn-stack-card .price s { color: var(--text-3, #9a9a9a); margin-right: 8px; }

/* Testimonial wall */
.fn-testi-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
@media (max-width: 900px) { .fn-testi-wall { grid-template-columns: 1fr; } }
.fn-testi-card { background: var(--bg-3, #1a1a1a); border: 1px solid var(--line, #222); border-radius: 14px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.fn-testi-card .result { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); font-weight: 700; }
.fn-testi-card .quote { font-family: var(--serif, 'Fraunces', serif); font-style: italic; font-size: 17px; line-height: 1.5; color: var(--text-1, #fff); }
.fn-testi-card .who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line, #222); margin-top: auto; }
.fn-testi-card .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--bg, #0a0a0a); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 900; font-size: 14px; flex-shrink: 0; }
.fn-testi-card .who-text .name { font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--text-1, #fff); }
.fn-testi-card .who-text .role { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3, #9a9a9a); margin-top: 2px; }

/* Bullet list with yellow checks */
.fn-checks { list-style: none; padding: 0; margin: 22px 0; }
.fn-checks li { font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--text-2, #d8d8d8); padding: 10px 0 10px 32px; position: relative; }
.fn-checks li::before { content: '✓'; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; background: var(--yellow); color: var(--bg, #0a0a0a); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; }
.fn-checks li strong { color: var(--text-1, #fff); }

/* X list (qualifying) */
.fn-x { list-style: none; padding: 0; margin: 22px 0; }
.fn-x li { font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--text-2, #d8d8d8); padding: 10px 0 10px 32px; position: relative; }
.fn-x li::before { content: '✕'; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; background: rgba(239, 68, 68, 0.18); color: #EF4444; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 11px; }

/* Numbered steps (e.g., what happens on the call) */
.fn-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
@media (max-width: 800px) { .fn-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fn-steps { grid-template-columns: 1fr; } }
.fn-step { background: var(--bg-3, #1a1a1a); border: 1px solid var(--line, #222); border-radius: 12px; padding: 22px; }
.fn-step .num { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 12px; letter-spacing: 0.2em; color: var(--yellow); margin-bottom: 12px; font-weight: 700; }
.fn-step h4 { font-family: var(--sans); font-weight: 800; font-size: 16px; color: var(--text-1, #fff); margin-bottom: 8px; line-height: 1.2; }
.fn-step p { font-family: var(--sans); font-size: 13px; line-height: 1.5; color: var(--text-2, #d8d8d8); margin: 0; }

/* OTO offer card (large product card with discount math) */
.fn-oto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
@media (max-width: 900px) { .fn-oto-grid { grid-template-columns: 1fr; } }
.fn-oto { background: var(--bg-3, #1a1a1a); border: 2px solid var(--line, #222); border-radius: 16px; padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.fn-oto.hot { border-color: var(--yellow); background: linear-gradient(180deg, rgba(255,214,10,0.06), var(--bg-3, #1a1a1a) 60%); }
.fn-oto.hot::before { content: 'BEST VALUE'; position: absolute; top: 14px; right: 14px; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bg, #0a0a0a); background: var(--yellow); padding: 4px 8px; border-radius: 4px; font-weight: 700; }
.fn-oto .deva { font-family: var(--serif, 'Fraunces', serif); font-weight: 700; font-size: 36px; color: var(--yellow); line-height: 1; }
.fn-oto .name { font-family: var(--sans); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; color: var(--text-1, #fff); }
.fn-oto .meaning { font-family: var(--serif, 'Fraunces', serif); font-style: italic; color: var(--text-3, #9a9a9a); font-size: 14px; }
.fn-oto .pricing { background: rgba(0,0,0,0.4); border: 1px solid var(--line, #222); border-radius: 10px; padding: 16px; margin-top: 8px; }
.fn-oto .pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 13px; color: var(--text-2, #d8d8d8); border-bottom: 1px solid var(--line, #222); }
.fn-oto .pricing-row:last-child { border-bottom: none; padding-top: 12px; font-size: 16px; font-weight: 700; color: var(--yellow); }
.fn-oto .pricing-row s { color: var(--text-3, #9a9a9a); margin-right: 6px; }
.fn-oto .pricing-row .label { letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; color: var(--text-3, #9a9a9a); }
.fn-oto ul { list-style: none; padding: 0; margin: 8px 0; }
.fn-oto ul li { font-family: var(--sans); font-size: 13.5px; line-height: 1.5; color: var(--text-2, #d8d8d8); padding: 8px 0 8px 24px; position: relative; }
.fn-oto ul li::before { content: '✓'; position: absolute; left: 0; top: 10px; color: var(--yellow); font-weight: 900; font-size: 13px; }
.fn-oto .fn-cta-big { width: 100%; margin-top: 14px; }

/* Slim funnel footer */
.fn-foot { padding: 36px 24px; background: var(--bg, #0a0a0a); border-top: 1px solid var(--line, #222); text-align: center; }
.fn-foot img { height: 36px; width: auto; margin: 0 auto 14px; display: block; }
.fn-foot p { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3, #9a9a9a); margin: 4px 0; }
.fn-foot a { color: var(--text-3, #9a9a9a); text-decoration: none; }
.fn-foot a:hover { color: var(--yellow); }

/* === IMAGE BLOCKS (founder photo, library stack, product mockups) === */
.photo-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 80px 32px; }
.photo-band.reverse { direction: rtl; }
.photo-band.reverse > * { direction: ltr; }
.photo-band img { width: 100%; height: auto; border-radius: 14px; display: block; }
.photo-band .photo-text h3 { font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.02em; color: var(--text-1, #fff); margin-bottom: 16px; }
.photo-band .photo-text h3 .y { color: var(--yellow); }
.photo-band .photo-text p { font-family: var(--serif, 'Fraunces', serif); font-size: 17px; line-height: 1.6; color: var(--text-2, #d8d8d8); margin-bottom: 14px; }
.photo-band .photo-text .eyebrow { display: inline-block; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.32em; color: var(--yellow); text-transform: uppercase; margin-bottom: 18px; padding: 4px 10px; border: 1px solid rgba(255,214,10,0.3); border-radius: 4px; }
@media (max-width: 900px) {
  .photo-band { grid-template-columns: 1fr; gap: 28px; padding: 56px 22px; }
  .photo-band.reverse { direction: ltr; }
}

/* Founder portrait inset (used at top of about story) */
.founder-portrait-inset { max-width: 360px; margin: 0 auto 56px; }
.founder-portrait-inset img { width: 100%; height: auto; border-radius: 16px; display: block; }
.founder-portrait-inset .caption { font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3, #9a9a9a); text-align: center; margin-top: 14px; }

/* Library stack hero band */
.library-band { padding: 64px 32px; background: var(--bg-2, #111); }
.library-band-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.library-band img { max-width: 520px; width: 100%; height: auto; margin: 28px auto 0; border-radius: 10px; box-shadow: 0 18px 44px rgba(0,0,0,0.45); display: block; }
@media (max-width: 720px) { .library-band { padding: 48px 22px; } .library-band img { max-width: 360px; } }

/* Product mockup feature (used in product pages) */
.product-mockup { padding: 80px 32px; max-width: 1080px; margin: 0 auto; }
.product-mockup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.product-mockup img { width: 100%; height: auto; border-radius: 16px; display: block; box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.product-mockup .pm-text .eyebrow { display: inline-block; font-family: var(--mono, 'JetBrains Mono', monospace); font-size: 11px; letter-spacing: 0.28em; color: var(--yellow); text-transform: uppercase; margin-bottom: 18px; }
.product-mockup .pm-text h3 { font-family: var(--sans); font-weight: 800; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.02em; color: var(--text-1, #fff); margin-bottom: 14px; }
.product-mockup .pm-text h3 .y { color: var(--yellow); font-style: italic; font-family: var(--serif, 'Fraunces', serif); font-weight: 700; }
.product-mockup .pm-text p { font-family: var(--serif, 'Fraunces', serif); font-size: 17px; line-height: 1.6; color: var(--text-2, #d8d8d8); margin-bottom: 12px; }
@media (max-width: 900px) {
  .product-mockup { padding: 56px 22px; }
  .product-mockup-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Photo strip — multiple founder shots in a row */
.photo-strip { padding: 64px 32px; background: var(--bg-2, #111); }
.photo-strip-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-strip-inner img { width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.3s ease; }
.photo-strip-inner img:hover { transform: scale(1.02); }
@media (max-width: 900px) { .photo-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .photo-strip-inner { grid-template-columns: 1fr 1fr; } }

/* ================================================
   FUNNEL READABILITY OVERRIDES
   Applied via body.funnel-readable
   Sans throughout, larger sizes, scannable hierarchy
   ================================================ */
body.funnel-readable { font-family: 'Inter', system-ui, sans-serif; font-size: 17px; line-height: 1.6; }
body.funnel-readable .fn-h1 { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.025em; line-height: 1.28; }
body.funnel-readable .fn-h1 .y { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 900; background: var(--yellow); color: var(--bg); padding: 4px 12px; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; line-height: 1.55; }
body.funnel-readable .fn-sub { font-family: 'Inter', sans-serif; font-style: normal; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--text-2, #d8d8d8); }
body.funnel-readable .fn-block h2 { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.025em; line-height: 1.3; }
body.funnel-readable .fn-block h2 .y { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 900; background: var(--yellow); color: var(--bg); padding: 4px 12px; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; line-height: 1.55; }
body.funnel-readable .fn-block h3 { font-family: 'Inter', sans-serif; font-weight: 800; }
body.funnel-readable .fn-block p { font-family: 'Inter', sans-serif; font-style: normal; font-size: 17px; line-height: 1.6; color: var(--text-2, #d8d8d8); margin-bottom: 16px; }
body.funnel-readable .fn-block p strong { color: var(--text-1, #fff); font-weight: 700; }
body.funnel-readable .fn-block p .y, body.funnel-readable p .y { background: var(--yellow); color: var(--bg); padding: 2px 8px; border-radius: 4px; font-weight: 700; -webkit-box-decoration-break: clone; box-decoration-break: clone; line-height: 1.7; }
body.funnel-readable .fn-testi-card .quote { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 500; font-size: 16px; line-height: 1.55; }
body.funnel-readable .fn-stack-card p { font-family: 'Inter', sans-serif; font-style: normal; }
body.funnel-readable .fn-checks li { font-size: 17px; }
body.funnel-readable .fn-x li { font-size: 17px; }
body.funnel-readable .fn-cta-big { font-size: clamp(16px, 1.6vw, 20px); padding: 24px 44px; }

/* Highlight emphasis pill */
body.funnel-readable .pill { background: var(--yellow); color: var(--bg); padding: 2px 8px; border-radius: 4px; font-weight: 800; }
body.funnel-readable .underline { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 4px; }

/* Sticky CTA bar (bottom of viewport on long DR pages) */
.fn-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--yellow); padding: 14px 24px; z-index: 90; display: none; }
.fn-sticky-cta.visible { display: block; }
.fn-sticky-cta-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.fn-sticky-cta .label { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-1, #fff); }
.fn-sticky-cta .label small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--text-3, #9a9a9a); text-transform: uppercase; margin-top: 3px; font-weight: 400; }
.fn-sticky-cta .fn-cta-big { padding: 12px 22px; font-size: 14px; box-shadow: none; }
@media (max-width: 720px) { .fn-sticky-cta .label small { display: none; } .fn-sticky-cta-inner { gap: 12px; } .fn-sticky-cta .label { font-size: 12px; } }

/* Imagine block — hero-style bordered box */
.fn-imagine { background: linear-gradient(180deg, rgba(255,214,10,0.06), rgba(255,214,10,0)); border: 1px solid rgba(255,214,10,0.25); border-radius: 16px; padding: 36px; margin: 36px 0; }
.fn-imagine .label { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.32em; color: var(--yellow); text-transform: uppercase; margin-bottom: 16px; padding: 4px 10px; border: 1px solid var(--yellow); border-radius: 4px; }
.fn-imagine h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; color: var(--text-1, #fff); margin-bottom: 16px; letter-spacing: -0.02em; }
.fn-imagine p { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.65; color: var(--text-2, #d8d8d8); margin-bottom: 14px; }
.fn-imagine p strong { color: var(--text-1, #fff); }
@media (max-width: 720px) { .fn-imagine { padding: 24px; } }

/* Bonus stack item */
.fn-bonus { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 18px 22px; background: var(--bg-3, #1a1a1a); border: 1px solid var(--line, #222); border-radius: 12px; margin-bottom: 10px; }
.fn-bonus .num { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: var(--bg, #0a0a0a); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; font-family: 'Inter', sans-serif; flex-shrink: 0; }
.fn-bonus .body h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 16px; color: var(--text-1, #fff); margin-bottom: 4px; }
.fn-bonus .body p { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-2, #d8d8d8); margin: 0; line-height: 1.5; }
.fn-bonus .price { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em; color: var(--yellow); text-align: right; flex-shrink: 0; font-weight: 700; }
.fn-bonus .price s { color: var(--text-3, #9a9a9a); display: block; }
@media (max-width: 720px) { .fn-bonus { grid-template-columns: auto 1fr; } .fn-bonus .price { grid-column: span 2; text-align: left; padding-left: 56px; } }

/* Stack total bar */
.fn-stack-total { background: var(--bg, #0a0a0a); border: 2px dashed var(--yellow); border-radius: 12px; padding: 22px; margin-top: 18px; text-align: center; }
.fn-stack-total .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--text-3, #9a9a9a); text-transform: uppercase; margin-bottom: 6px; }
.fn-stack-total .total { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 28px; color: var(--yellow); }
.fn-stack-total .today { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-2, #d8d8d8); margin-top: 6px; }

/* FAQ */
.fn-faq { margin-top: 28px; }
.fn-faq-item { border-bottom: 1px solid var(--line, #222); padding: 22px 0; }
.fn-faq-item:first-child { border-top: 1px solid var(--line, #222); }
.fn-faq-item h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; color: var(--text-1, #fff); margin-bottom: 10px; }
.fn-faq-item p { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-2, #d8d8d8); margin: 0; }

/* Big inline CTA strip (used between sections) */
.fn-cta-strip { background: var(--yellow); color: var(--bg, #0a0a0a); padding: 28px 24px; text-align: center; margin: 36px 0; border-radius: 14px; }
.fn-cta-strip h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; color: var(--bg, #0a0a0a); margin-bottom: 14px; letter-spacing: -0.01em; }
.fn-cta-strip a { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--bg, #0a0a0a); color: var(--yellow); border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px; text-decoration: none; transition: transform 0.15s ease; }
.fn-cta-strip a:hover { transform: translateY(-1px); }
.fn-cta-strip a::after { content: '→'; }

/* Section divider line with text */
.fn-divider { display: flex; align-items: center; gap: 18px; margin: 56px 0 36px; }
.fn-divider::before, .fn-divider::after { content: ''; flex: 1; height: 1px; background: var(--line, #222); }
.fn-divider span { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.32em; color: var(--text-3, #9a9a9a); text-transform: uppercase; font-weight: 700; }

/* ================================================
   HIGH-INTENSITY EMOTIONAL BLOCKS (DR funnel)
   ================================================ */
.fn-burn {
  background: linear-gradient(180deg, rgba(239,68,68,0.08), rgba(239,68,68,0.02));
  border-left: 4px solid #EF4444;
  padding: 32px 36px;
  margin: 32px 0;
  border-radius: 8px;
}
.fn-burn .label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #EF4444;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid #EF4444;
  border-radius: 4px;
  font-weight: 700;
}
.fn-burn h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
  color: var(--text-1, #fff);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.fn-burn p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2, #d8d8d8);
  margin-bottom: 14px;
}
.fn-burn p strong { color: var(--text-1, #fff); }
.fn-burn p .y, .fn-burn .y {
  background: #EF4444;
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}
.fn-burn ul { list-style: none; padding: 0; margin: 18px 0; }
.fn-burn ul li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2, #d8d8d8);
  padding: 8px 0 8px 28px;
  position: relative;
}
.fn-burn ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 900;
}
.fn-burn ul li strong { color: var(--text-1, #fff); }
@media (max-width: 720px) { .fn-burn { padding: 24px; } }

.fn-confront {
  background: var(--bg-2, #111);
  border: 1px solid var(--line, #222);
  border-radius: 14px;
  padding: 36px;
  margin: 32px 0;
}
.fn-confront .label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid var(--yellow);
  border-radius: 4px;
}
.fn-confront h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--text-1, #fff);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.fn-confront p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2, #d8d8d8);
  margin-bottom: 14px;
}
.fn-confront p strong { color: var(--text-1, #fff); }
.fn-confront p .y, .fn-confront .y {
  background: var(--yellow);
  color: var(--bg, #0a0a0a);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}
@media (max-width: 720px) { .fn-confront { padding: 24px; } }

.fn-pullquote {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  color: var(--text-1, #fff);
  padding: 36px 24px;
  text-align: center;
  max-width: 880px;
  margin: 36px auto;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  letter-spacing: -0.02em;
}
.fn-pullquote .y {
  background: var(--yellow);
  color: var(--bg, #0a0a0a);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 900;
}

.fn-imagine.green {
  background: linear-gradient(180deg, rgba(34,197,94,0.07), transparent);
  border-color: rgba(34,197,94,0.4);
}
.fn-imagine.green .label {
  color: #22C55E;
  border-color: #22C55E;
}
