/* =================================================================
   Sam Rho — Ghost theme
   Light editorial style (inspired by nicksaraev.com): white/cream canvas,
   dark ink, big bold sans headlines, generous whitespace, blue accent.
   Tip: Sam Rho can change --accent from Ghost Admin → Settings → Branding.
   ================================================================= */

:root {
  /* Colors — LIGHT */
  --bg:        #ffffff;
  --bg-2:      #f5f6f8;   /* alternate section background */
  --surface:   #ffffff;
  --line:      rgba(18,22,27,.10);
  --line-2:    rgba(18,22,27,.16);

  --ink:       #14171a;   /* primary text */
  --muted:     #515a64;
  --muted-2:   #8a939d;

  --accent:    #141414;   /* black accent — clean & professional (client preference) */
  --accent-2:  #000000;
  --accent-ink:#ffffff;
  --accent-soft:rgba(20,20,20,.08);

  --danger:    #d92d20;
  --ok:        #067647;

  /* Type — honors custom fonts chosen in Ghost Admin → Branding, else falls back */
  --font-sans: var(--gh-font-body, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  --font-head: var(--gh-font-heading, 'Space Grotesk', 'Inter', system-ui, sans-serif);

  /* Shape */
  --radius:   14px;
  --radius-sm:10px;
  --radius-lg:22px;
  --shadow:   0 24px 60px -28px rgba(18,22,27,.22);
  --shadow-sm:0 8px 24px -14px rgba(18,22,27,.20);

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.container--narrow { max-width: 720px; }

.section { padding: 110px 0; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin: 0 0 60px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; max-width: none; }
.section__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; letter-spacing: -.035em; }
.section__lead { color: var(--muted); margin-top: 18px; font-size: 1.16rem; max-width: 600px; }
.section__head--center .section__lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.section__head--center .eyebrow { justify-content: center; }

.muted { color: var(--muted-2); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
/* No color change on hover (client preference) — just a subtle, stable shadow */
.btn--primary:hover { box-shadow: 0 8px 22px -10px rgba(20,20,20,.45); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--lg { padding: 17px 32px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.94); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.24rem; letter-spacing: -.02em; color: var(--ink); }
.brand__logo { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__link { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .15s ease; }
.nav__menu-item.is-current .nav__link, .nav__link:hover { color: var(--ink); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 70px; }
.hero__inner { position: relative; z-index: 1; }
.hero__copy { max-width: 760px; }
.hero__intro { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line-2); background: var(--surface); flex: none; }
.hero__intro-text { display: grid; gap: 2px; }
.hero__intro-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; }
.hero__intro-role { color: var(--muted); font-size: .9rem; }
.hero__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -.04em; }
.hero__sub { color: var(--muted); font-size: 1.22rem; margin-top: 24px; max-width: 620px; }
.hero__bullets { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__bullets li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 1rem; font-weight: 500; }
.ico { width: 20px; height: 20px; flex: none; stroke: var(--accent); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Signup (Ghost native members form) ---------- */
.signup-block { margin-top: 30px; max-width: 560px; }
.signup-block__title { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 8px; }
.signup-block__sub { color: var(--muted); margin-bottom: 16px; }
.signup { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.signup__input {
  flex: 1 1 180px; min-width: 0; background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--line-2); border-radius: 999px; padding: 14px 20px;
  font: inherit; font-size: 1rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.signup__input::placeholder { color: var(--muted-2); }
.signup__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.signup__btn { flex: 0 0 auto; }
.signup__sending { display: none; }
.signup.loading .signup__label { display: none; }
.signup.loading .signup__sending { display: inline; }
.signup__error { flex-basis: 100%; color: var(--danger); font-size: .9rem; margin: 0; }
.signup__success { flex-basis: 100%; display: none; color: var(--ok); font-weight: 600; font-size: 1rem; margin: 0; }
.signup.success .signup__input, .signup.success .signup__btn { display: none; }
.signup.success .signup__success { display: block; }
.signup__fine { color: var(--muted-2); font-size: .85rem; margin-top: 12px; }

/* ---------- Proof bar ---------- */
.proofbar { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proofbar__label { text-align: center; color: var(--muted-2); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.proofbar__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; margin-top: 18px; color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; opacity: .55; }

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

/* ---------- Offer cards ---------- */
.offer { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; }
.offer--feature { border-color: var(--accent); box-shadow: var(--shadow); }
.offer__tag { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 14px; margin-bottom: 20px; }
.offer__tag--hot { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.offer__title { font-family: var(--font-head); font-weight: 700; font-size: 1.65rem; margin-bottom: 12px; letter-spacing: -.02em; }
.offer p { color: var(--muted); }
.checklist { display: grid; gap: 12px; margin: 24px 0 30px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink); font-size: 1rem; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--accent-ink); background: var(--accent); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; }
.offer .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--accent-ink); background: var(--accent); width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; margin-bottom: 10px; letter-spacing: -.01em; }
.step p { color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
.stat { text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 16px; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--accent); letter-spacing: -.03em; }
.stat__label { color: var(--muted); font-size: .92rem; }

/* ---------- Quotes ---------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote blockquote { font-size: 1.04rem; line-height: 1.55; }
.quote figcaption { margin-top: 20px; display: grid; }
.quote figcaption strong { font-family: var(--font-head); }
.quote figcaption span { color: var(--muted-2); font-size: .88rem; }

/* ---------- Blog: post grid + cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.post-card__image-wrap { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.post-card__image { width: 100%; height: 100%; object-fit: cover; }
.post-card__image--placeholder { display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--muted-2); }
.post-card__body { padding: 24px; }
.post-card__tag { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.post-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 8px; }
.post-card__excerpt { color: var(--muted); font-size: .96rem; margin-bottom: 14px; }
.post-card__meta { color: var(--muted-2); font-size: .85rem; }

/* ---------- Archive ---------- */
.archive__head { margin-bottom: 54px; max-width: 720px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 56px; font-family: var(--font-head); font-weight: 600; }
.pagination a { color: var(--accent); }
.pagination .page-number { color: var(--muted-2); }

/* ---------- Single post / page ---------- */
.post { padding: 72px 0 30px; }
.post__head { text-align: center; max-width: 760px; margin: 0 auto; }
.post__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.08; letter-spacing: -.03em; margin-top: 10px; }
.post__meta { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted-2); font-size: .92rem; margin-top: 18px; }
.post__image { margin: 48px auto; max-width: 1000px; }
.post__image img { width: 100%; border-radius: var(--radius); }
.post__image figcaption { text-align: center; color: var(--muted-2); font-size: .88rem; margin-top: 10px; }
.post__content { font-size: 1.14rem; line-height: 1.75; }
.post__footer { margin-top: 40px; }
.post__tags a { color: var(--accent); font-weight: 500; }
.post__cta { margin-top: 64px; padding: 40px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.post__cta .signup-block { margin-top: 0; }

/* ---------- Ghost content (gh-content) ---------- */
.gh-content > * { margin-bottom: 1.5em; }
.gh-content h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; letter-spacing: -.02em; margin-top: 1.6em; }
.gh-content h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; margin-top: 1.4em; }
.gh-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.gh-content img { border-radius: var(--radius); }
.gh-content blockquote { border-left: 3px solid var(--accent); padding-left: 20px; color: var(--muted); font-style: italic; }
.gh-content ul, .gh-content ol { padding-left: 1.4em; }
.gh-content li { margin-bottom: .5em; }
.gh-content pre { background: #0e1117; color: #e6edf3; padding: 20px; border-radius: var(--radius); overflow-x: auto; font-size: .92rem; }
.gh-content code { background: var(--bg-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.gh-content pre code { background: none; padding: 0; }
.gh-content hr { border: 0; border-top: 1px solid var(--line); }
.gh-content .kg-card { margin: 1.5em 0; }

/* Koenig editor wide / full-bleed images (required by Ghost) */
.gh-content .kg-width-wide { position: relative; width: 100%; max-width: 1040px; margin-left: 50%; transform: translateX(-50%); }
.gh-content .kg-width-full { position: relative; width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.gh-content .kg-width-full img { width: 100%; border-radius: 0; }

/* Koenig gallery cards (required by Ghost) */
.gh-content .kg-gallery-container { display: flex; flex-direction: column; max-width: 1040px; margin-left: 50%; transform: translateX(-50%); }
.gh-content .kg-gallery-row { display: flex; flex-direction: row; justify-content: center; }
.gh-content .kg-gallery-image { margin: 0; }
.gh-content .kg-gallery-image img { display: block; margin: 0; width: 100%; height: 100%; border-radius: var(--radius); }
.gh-content .kg-gallery-row:not(:first-of-type) { margin: 6px 0 0; }
.gh-content .kg-gallery-image:not(:first-of-type) { margin: 0 0 0 6px; }
.gh-content .kg-gallery-card + .kg-image-card.kg-width-wide,
.gh-content .kg-image-card.kg-width-wide + .kg-gallery-card { margin-top: 1.5em; }

/* Koenig bookmark cards (required by Ghost) */
.gh-content .kg-bookmark-card { width: 100%; }
.gh-content .kg-bookmark-card a.kg-bookmark-container,
.gh-content .kg-bookmark-card a.kg-bookmark-container:hover {
  display: flex; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; color: var(--ink); background: var(--surface); min-height: 148px;
}
.gh-content .kg-bookmark-content { display: flex; flex-direction: column; flex-grow: 1; align-items: flex-start; justify-content: flex-start; padding: 20px; }
.gh-content .kg-bookmark-title { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.gh-content .kg-bookmark-description { display: -webkit-box; overflow-y: hidden; margin-top: 8px; max-height: 44px; color: var(--muted); font-size: .95rem; line-height: 1.5; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.gh-content .kg-bookmark-metadata { display: flex; align-items: center; margin-top: 14px; color: var(--muted-2); font-size: .88rem; }
.gh-content .kg-bookmark-icon { width: 20px; height: 20px; margin-right: 8px; border-radius: 4px; }
.gh-content .kg-bookmark-author { font-weight: 500; }
.gh-content .kg-bookmark-author:after { content: "•"; margin: 0 6px; }
.gh-content .kg-bookmark-publisher { overflow: hidden; max-width: 240px; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.gh-content .kg-bookmark-thumbnail { position: relative; flex-grow: 1; min-width: 33%; }
.gh-content .kg-bookmark-thumbnail img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0 var(--radius) var(--radius) 0; object-fit: cover; }
@media (max-width: 760px) {
  .gh-content .kg-bookmark-card a.kg-bookmark-container { flex-direction: column; }
  .gh-content .kg-bookmark-thumbnail { width: 100%; min-height: 160px; }
  .gh-content .kg-bookmark-thumbnail img { border-radius: var(--radius) var(--radius) 0 0; }
}

/* ---------- Contact form (book a call) ---------- */
.formcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.formcard__fine { color: var(--muted-2); font-size: .83rem; text-align: center; margin-top: 4px; }
.lead-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .86rem; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 13px 15px; font: inherit; font-size: .98rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input.invalid, .field select.invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(217,45,32,.12); }
.form-msg { font-size: .92rem; text-align: center; min-height: 1.2em; }
.form-msg.is-error { color: var(--danger); }
.form-msg.is-ok { color: var(--ok); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; }
.faq__item summary { list-style: none; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; padding: 20px 34px 20px 0; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.5rem; transition: transform .2s ease; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 22px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 64px; background: var(--bg-2); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); margin-top: 16px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--muted); font-size: .96rem; padding: 6px 0; transition: color .15s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .88rem; }

/* ---------- Error page ---------- */
.error__inner { text-align: center; padding: 60px 0; }
.error__inner .btn { margin-top: 24px; }

/* ---------- Conversion components ---------- */
/* Big credibility numbers */
.bignumbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.bignum { text-align: center; }
.bignum__n { display: block; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; letter-spacing: -.03em; color: var(--ink); }
.bignum__l { color: var(--muted); font-size: .92rem; }
.bignum__l em { color: var(--muted-2); font-style: normal; font-size: .8em; }

/* Pain cards */
.painc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.painc__x { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(217,45,32,.10); color: var(--danger); font-weight: 700; margin-bottom: 16px; }
.painc h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; letter-spacing: -.01em; }
.painc p { color: var(--muted); }

/* Value stack pricing inside offers */
.checklist li .vstack__v { margin-left: auto; flex: none; color: var(--muted-2); font-weight: 600; font-size: .9rem; }
.offer__bonus { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--accent-soft); border: 1px dashed var(--accent); border-radius: var(--radius-sm); padding: 14px 16px; font-size: .96rem; margin-bottom: 22px; }
.offer__bonus .vstack__v { flex: none; color: var(--accent); font-weight: 700; }
.offer__pricerow { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.offer__strike { color: var(--muted-2); text-decoration: line-through; font-size: .95rem; }
.offer__price { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.offer__price em { font-style: normal; color: var(--muted-2); font-size: .6em; }

/* Guarantee */
.guarantee { display: flex; gap: 26px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 34px; }
.guarantee__badge { flex: none; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.guarantee__title { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 8px; }
.guarantee p { color: var(--muted); }
.guarantee p strong { color: var(--ink); }
.guarantee em { color: var(--muted-2); font-size: .85em; }

/* Star ratings on quotes */
.quote__stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; margin-bottom: 12px; }

/* Scarcity banner */
.scarcity { text-align: center; background: rgba(245,166,35,.10); border: 1px solid rgba(245,166,35,.4); color: var(--ink); border-radius: 999px; padding: 12px 22px; font-size: .98rem; margin-bottom: 40px; }
.scarcity em { color: var(--muted-2); font-style: normal; font-size: .85em; }

/* [EDIT] placeholder markers */
em { } /* keep ems readable */

@media (max-width: 760px) {
  .bignumbers { grid-template-columns: repeat(2, 1fr); }
  .guarantee { flex-direction: column; gap: 18px; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .post-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 44px; }
  .grid-2, .grid-3, .steps, .stats, .post-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section__head--row { align-items: flex-start; }

  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 4px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line);
    padding: 16px 26px 26px; transform: translateY(-130%); transition: transform .28s ease; backdrop-filter: blur(14px);
  }
  .nav__links.is-open { transform: none; }
  .nav__menu { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 12px 4px; font-size: 1.06rem; }
  .nav__links .btn { margin-top: 8px; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =================================================================
   VSL PAGE  (custom-vsl.hbs) — distraction-free video sales letter
   Reuses the theme components above; everything below is VSL-only.
   ================================================================= */

/* ---------- Minimal top bar (no nav menu) ---------- */
.vsl-bar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.vsl-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; }
.vsl-bar__cue { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.vsl-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(6,118,71,.5); animation: vsl-pulse 2s infinite; }
@keyframes vsl-pulse { 0% { box-shadow: 0 0 0 0 rgba(6,118,71,.45); } 70% { box-shadow: 0 0 0 7px rgba(6,118,71,0); } 100% { box-shadow: 0 0 0 0 rgba(6,118,71,0); } }

/* ---------- Hero (centered, single column) ---------- */
.vsl-hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.vsl-hero::before { content: ""; position: absolute; inset: -20% 0 auto 0; height: 620px; z-index: 0;
  background: radial-gradient(60% 70% at 50% 0%, var(--accent-soft), transparent 70%); pointer-events: none; }
.vsl-hero__inner { position: relative; z-index: 1; max-width: 860px; margin-inline: auto; text-align: center; }
.vsl-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 24px;
}
.vsl-hero__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.06; letter-spacing: -.035em; }
.vsl-hero__title em { font-style: normal; background: var(--accent); color: var(--accent-ink); padding: 0 .18em; border-radius: 8px; white-space: nowrap; }
.vsl-hero__sub { color: var(--muted); font-size: 1.18rem; margin: 22px auto 0; max-width: 640px; }
.vsl-hero__sub em, .vsl-hero__title + .vsl-hero__sub em { color: var(--muted-2); font-style: normal; font-size: .82em; }

/* ---------- Video (lazy-loaded facade) ---------- */
.vsl-video { margin: 38px auto 0; max-width: 820px; }
.vsl-video__frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #0e1117; cursor: pointer;
}
.vsl-video__poster {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 18px; padding: 24px; text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(135deg, #14171a 0%, #23272e 100%);
  background-size: cover; background-position: center;
}
.vsl-video__play {
  width: 84px; height: 84px; border-radius: 50%; border: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.96); box-shadow: 0 18px 50px -16px rgba(0,0,0,.6); transition: transform .18s ease;
}
.vsl-video__play svg { width: 34px; height: 34px; fill: var(--ink); margin-left: 4px; }
.vsl-video__frame:hover .vsl-video__play, .vsl-video__frame:focus-visible .vsl-video__play { transform: scale(1.07); }
.vsl-video__frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); pointer-events: none; }
.vsl-video__hint { color: rgba(255,255,255,.86); font-size: .98rem; font-weight: 500; }
.vsl-video__hint strong { color: #fff; }
.vsl-video__hint em { color: rgba(255,255,255,.6); font-style: normal; font-size: .85em; }
.vsl-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-video__frame.is-playing { cursor: default; }
.vsl-video__frame.is-playing .vsl-video__poster { display: none; }

/* ---------- Primary CTA + trust under video ---------- */
.vsl-cta { margin-top: 32px; }
.vsl-cta__fine { color: var(--muted); font-size: .95rem; margin-top: 14px; }
.vsl-trust { margin-top: 26px; display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.vsl-trust__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; }
.vsl-trust__text { color: var(--muted); font-size: .96rem; }
.vsl-trust__text strong { color: var(--ink); }
.vsl-trust em { color: var(--muted-2); font-style: normal; font-size: .82em; }

/* ---------- "What you'll discover" list ---------- */
.discover { display: grid; gap: 16px; }
.discover__item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.discover__check { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.discover__check .ico { width: 18px; height: 18px; stroke: var(--accent-ink); }
.discover__item strong { font-family: var(--font-head); font-weight: 600; font-size: 1.14rem; letter-spacing: -.01em; display: block; }
.discover__item p { color: var(--muted); margin-top: 4px; font-size: .98rem; }
.discover__item em { color: var(--muted-2); font-style: normal; font-size: .85em; }

/* ---------- Who it's for / not for ---------- */
.qualify { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.qualify--yes { border-top: 4px solid var(--ok); }
.qualify--no { border-top: 4px solid var(--danger); }
.qualify h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; margin-bottom: 18px; }
.qualify ul { display: grid; gap: 12px; }
.qualify li { position: relative; padding-left: 4px; color: var(--ink); font-size: 1rem; line-height: 1.5; }
.qualify li em { color: var(--muted-2); font-style: normal; font-size: .82em; }

/* ---------- Minimal footer ---------- */
.vsl-foot { border-top: 1px solid var(--line); background: var(--bg-2); padding: 30px 0; }
.vsl-foot__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.vsl-foot__copy { color: var(--muted-2); font-size: .88rem; }
.vsl-foot__links { display: flex; gap: 22px; }
.vsl-foot__links a { color: var(--muted); font-size: .88rem; }
.vsl-foot__links a:hover { color: var(--accent); }
.vsl-foot__disclaimer { color: var(--muted-2); font-size: .78rem; line-height: 1.55; margin-top: 18px; max-width: 820px; }
.vsl-foot__disclaimer em { color: var(--muted-2); font-style: normal; }

/* ---------- Sticky CTA bar (reveals on scroll) ---------- */
.vsl-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(150%) blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(18,22,27,.4);
  transform: translateY(110%); transition: transform .28s ease; padding: 12px 0;
}
.vsl-sticky.is-shown { transform: none; }
.vsl-sticky__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.vsl-sticky__text { font-family: var(--font-head); font-weight: 600; font-size: 1rem; }

@media (max-width: 760px) {
  .vsl-bar__cue { display: none; }
  .vsl-hero { padding: 40px 0 60px; }
  .vsl-sticky__text { font-size: .92rem; }
  .vsl-foot__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- kourse/start-style building blocks ---------- */
.vsl-section { padding: 76px 0; }
.vsl-section--tight { padding: 46px 0; }
.vsl-center { text-align: center; }
.vsl-center .eyebrow { justify-content: center; }

/* header close (X → home) */
.vsl-bar__close { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); transition: color .15s ease, border-color .15s ease; }
.vsl-bar__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.vsl-bar__close:hover { color: var(--ink); border-color: var(--ink); }

/* audience call-out banner */
.vsl-callout {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .92rem; letter-spacing: .01em; color: var(--ink);
  background: var(--accent-soft); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 20px; margin-bottom: 26px;
}

/* featured testimonial (centered, prominent) */
.vsl-feature-quote { text-align: center; }
.vsl-feature-quote .quote__stars { margin-bottom: 14px; }
.vsl-feature-quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.35; letter-spacing: -.02em; color: var(--ink); }
.vsl-feature-quote figcaption { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; text-align: left; }
.vsl-feature-quote__avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.vsl-feature-quote__who { display: grid; line-height: 1.3; }
.vsl-feature-quote__who strong { font-family: var(--font-head); }
.vsl-feature-quote__who span { color: var(--muted-2); font-size: .88rem; }
.vsl-feature-quote + .scarcity { margin-top: 30px; }

/* community band */
.vsl-band { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.vsl-band__text { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2.6vw, 1.5rem); letter-spacing: -.02em; color: var(--ink); }
.vsl-band__text strong { color: var(--accent); }
.vsl-band__text em { color: var(--muted-2); font-style: normal; font-size: .7em; }

/* video module heading + play prompt */
.vsl-module__head { margin-bottom: 26px; }
.vsl-module__head .section__title { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
.vsl-module__prompt { color: var(--muted); font-weight: 500; margin-top: 12px; }
.vsl-section .vsl-cta { margin-top: 30px; }

/* results gallery (proof screenshots grid) */
.vsl-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vsl-gallery__card {
  position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, #eceef1 100%); box-shadow: var(--shadow-sm);
}
.vsl-gallery__card span { color: var(--muted-2); font-family: var(--font-head); font-weight: 600; font-size: .95rem; line-height: 1.4; padding: 12px; }
.vsl-gallery__card span em { color: var(--muted-2); font-style: normal; font-size: .8em; font-weight: 400; }
.vsl-gallery__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 760px) {
  .vsl-section { padding: 56px 0; }
  .vsl-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
