/* Think in Formulas — secondshiftbd.com
   Palette sampled from the book cover: cream #FBF6F0 + deep green #01512E */

:root{
  --cream:#FBF6F0;
  --cream-2:#F4EDE3;
  --ink:#12261C;
  --ink-soft:#4A5A50;
  --green:#01512E;
  --green-lift:#016038;
  --amber:#B5761E;
  --rule:#E0D6C8;
  --grid:#E9E0D3;
  --white:#FFFFFF;

  --w:1080px;
  --gutter:56px;              /* the "row number" column */
  --r:2px;                    /* spreadsheets have square corners */
  --shadow:0 1px 0 var(--rule), 0 18px 40px -28px rgba(1,81,46,.5);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{animation:none!important;transition:none!important}
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Poppins',system-ui,sans-serif;
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
body.bn{font-family:'Noto Sans Bengali','Poppins',sans-serif;line-height:1.9}

img{max-width:100%;height:auto;display:block}
a{color:var(--green);text-decoration-thickness:1px;text-underline-offset:3px}

:focus-visible{outline:2px solid var(--amber);outline-offset:3px}

/* ---------- shell ---------- */
.wrap{max-width:var(--w);margin:0 auto;padding:0 24px}

/* The layout spine: a spreadsheet row-number gutter down the left of each block */
.band{position:relative;border-bottom:1px solid var(--rule)}
.band__inner{
  max-width:var(--w);margin:0 auto;padding:88px 24px 88px calc(24px + var(--gutter));
  position:relative;
}
.band__ref{
  position:absolute;left:24px;top:88px;width:var(--gutter);
  font-size:12px;letter-spacing:.08em;color:var(--ink-soft);opacity:.62;
  border-right:1px solid var(--rule);padding-right:14px;text-align:right;
  font-variant-numeric:tabular-nums;
}
@media(max-width:760px){
  .band__inner{padding:56px 20px}
  .band__ref{position:static;width:auto;border:0;text-align:left;padding:0 0 10px}
}

.eyebrow{
  font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green);margin:0 0 14px;
}
h1,h2,h3{font-weight:700;letter-spacing:-.02em;line-height:1.12;margin:0 0 18px}
h1{font-size:clamp(38px,6vw,62px)}
h2{font-size:clamp(28px,3.6vw,40px)}
h3{font-size:19px;letter-spacing:-.01em;margin:0 0 8px}
.lede{font-size:clamp(17px,2vw,20px);color:var(--ink-soft);max-width:56ch;margin:0 0 28px}
body.bn h1{font-size:clamp(30px,4.6vw,46px);line-height:1.4}
body.bn h2{font-size:clamp(24px,3vw,32px);line-height:1.45}

/* ---------- top bar ---------- */
.topbar{
  border-bottom:1px solid var(--rule);background:var(--cream);
  position:sticky;top:0;z-index:20;
}
.topbar__in{
  max-width:var(--w);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:-.01em;text-decoration:none;color:var(--ink)}
.brand__mark{
  width:30px;height:30px;flex:0 0 30px;
  border-radius:5px;object-fit:cover;
  /* the logo ships on its own dark navy field, so give it a quiet edge
     rather than letting it float as a raw square on the cream */
  box-shadow:0 0 0 1px rgba(1,81,46,.14), 0 2px 6px -2px rgba(0,0,0,.35);
}
.topbar__right{display:flex;align-items:center;gap:18px;font-size:14px}
.langlink{color:var(--ink-soft);text-decoration:none;border-bottom:1px solid var(--rule);padding-bottom:2px}
.langlink:hover{color:var(--green);border-color:var(--green)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--green);color:var(--cream);
  font:inherit;font-weight:600;font-size:16px;
  padding:14px 26px;border:1px solid var(--green);border-radius:var(--r);
  text-decoration:none;cursor:pointer;
  transition:transform .12s ease,background .12s ease;
}
.btn:hover{background:var(--green-lift);transform:translateY(-1px)}
.btn--ghost{background:transparent;color:var(--green)}
.btn--ghost:hover{background:rgba(1,81,46,.06)}
.btn--full{width:100%;justify-content:center}

/* ---------- hero ---------- */
.hero{
  border-bottom:1px solid var(--rule);
  background:
    linear-gradient(transparent 31px, var(--grid) 31px) 0 0/100% 32px,
    linear-gradient(90deg, transparent 63px, var(--grid) 63px) 0 0/64px 100%,
    var(--cream);
}
.hero__in{
  max-width:var(--w);margin:0 auto;padding:76px 24px 84px;
  display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:center;
}
.hero__in>*{min-width:0}
@media(max-width:900px){.hero__in{grid-template-columns:1fr;padding:52px 20px 60px;gap:40px}}
.hero__card{
  background:var(--cream);border:1px solid var(--rule);padding:32px;border-radius:var(--r);
  box-shadow:var(--shadow);
}
.hero__cover{position:relative}
.hero__cover img{border:1px solid var(--rule);box-shadow:0 30px 60px -34px rgba(1,81,46,.55);border-radius:var(--r)}
.hero__actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:6px}
.hero__note{font-size:13px;color:var(--ink-soft);margin:16px 0 0}

/* ---------- SIGNATURE: the formula bar ---------- */
.fx{margin:0 0 30px;border:1px solid var(--rule);background:var(--white);border-radius:var(--r);overflow:hidden}
.fx__bar{display:flex;align-items:stretch;border-bottom:1px solid var(--rule);background:var(--cream-2)}
.fx__cellref{
  min-width:74px;display:grid;place-items:center;font-size:13px;font-weight:600;
  color:var(--ink-soft);border-right:1px solid var(--rule);font-variant-numeric:tabular-nums;
}
.fx__fxmark{
  min-width:38px;display:grid;place-items:center;font-style:italic;font-weight:600;
  color:var(--green);border-right:1px solid var(--rule);font-size:15px;
}
.fx__formula{
  flex:1;padding:11px 14px;font-family:ui-monospace,'SF Mono',Menlo,Consolas,monospace;
  font-size:13.5px;color:var(--ink);white-space:nowrap;overflow-x:auto;background:var(--white);
  scrollbar-width:none;
}
.fx__formula::-webkit-scrollbar{display:none}
.fx__caret{display:inline-block;width:7px;height:1.05em;background:var(--green);vertical-align:-2px;margin-left:1px;animation:blink 1s steps(1) infinite}
@keyframes blink{50%{opacity:0}}

.fx__scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.fx__grid{width:100%;min-width:340px;border-collapse:collapse;font-size:13px;font-variant-numeric:tabular-nums}
@media(max-width:420px){
  .fx__grid{font-size:12px}
  .fx__grid th,.fx__grid td{padding:6px 8px}
}
.fx__grid th,.fx__grid td{border:1px solid var(--grid);padding:7px 10px;text-align:left;background:var(--white);transition:background .25s ease,color .25s ease}
.fx__grid th{background:var(--cream-2);color:var(--ink-soft);font-weight:600;font-size:11px;letter-spacing:.06em}
.fx__grid td.is-lit{background:rgba(1,81,46,.09)}
.fx__grid td.is-out{background:var(--green);color:var(--cream);font-weight:600}

.fx__tabs{display:flex;gap:0;border-top:1px solid var(--rule)}
.fx__tab{
  flex:1;background:var(--cream-2);border:0;border-right:1px solid var(--rule);
  font:inherit;font-size:12.5px;font-weight:600;color:var(--ink-soft);
  padding:11px 8px;cursor:pointer;transition:background .15s ease,color .15s ease;
}
.fx__tab:last-child{border-right:0}
.fx__tab:hover{background:var(--white);color:var(--green)}
.fx__tab[aria-selected="true"]{background:var(--white);color:var(--green);box-shadow:inset 0 -2px 0 var(--green)}
.fx__say{margin:0;padding:11px 14px;border-top:1px solid var(--rule);background:var(--cream-2);font-size:13px;color:var(--ink-soft);min-height:42px}

/* ---------- generic content ---------- */
.cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:28px 34px;margin-top:34px}
.cell{border-top:2px solid var(--green);padding-top:16px}
.cell p{margin:0;color:var(--ink-soft);font-size:15.5px}

/* ---------- B1: the six parts, as cards ---------- */
.parts{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(288px,1fr));
  gap:20px;margin:38px 0 0;
}
.part{
  background:var(--white);border:1px solid var(--rule);border-top:3px solid var(--green);
  border-radius:var(--r);padding:24px 24px 20px;
  display:flex;flex-direction:column;
}
.part--case{border-top-color:var(--amber)}
.part__no{
  margin:0 0 6px;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green);
}
.part--case .part__no{color:var(--amber)}
.part h3{font-size:19px;margin:0 0 16px;letter-spacing:-.01em}
.part__ch{list-style:none;margin:0;padding:0;font-size:15px}
.part__ch li{
  display:flex;gap:12px;align-items:baseline;
  padding:9px 0;border-top:1px solid var(--grid);color:var(--ink-soft);line-height:1.5;
}
.part__ch li span{
  flex:0 0 24px;text-align:center;
  font-size:11.5px;font-weight:700;font-variant-numeric:tabular-nums;
  color:var(--green);background:rgba(1,81,46,.08);border-radius:var(--r);
  padding:2px 0;
}
.part--case .part__ch li span{color:var(--amber);background:rgba(181,118,30,.1)}

/* ---------- B1: the back matter, as a ledger strip ---------- */
.bonus{
  margin-top:22px;
  display:grid;grid-template-columns:210px 1fr;   /* left panel + list */
  background:var(--white);
  border:1px solid var(--rule);border-top:3px solid var(--amber);
  border-radius:var(--r);box-shadow:var(--shadow);
  overflow:hidden;
}

/* Left panel: vertically centred, so no dead space under the number */
.bonus__num{
  display:flex;flex-direction:column;justify-content:center;
  padding:28px 26px;border-right:1px solid var(--rule);
}
.bonus__label{
  margin:0 0 14px;font-size:11px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--amber);line-height:1.5;
}
body.bn .bonus__label{text-transform:none;letter-spacing:.04em;font-size:12.5px}
.bonus__num b{
  display:block;font-size:56px;line-height:.95;font-weight:700;
  letter-spacing:-.04em;color:var(--green);
}
.bonus__num span{
  display:block;margin-top:6px;font-size:14px;font-weight:600;color:var(--ink);
}
.bonus__sub{
  margin:14px 0 0;font-size:13.5px;line-height:1.5;color:var(--ink-soft);
}

/* Right: the five sections. No fixed height, so nothing can ever clip. */
.bonus__list{list-style:none;margin:0;padding:8px 26px;}
.bonus__list li{
  padding:14px 0;border-bottom:1px solid var(--grid);
}
.bonus__list li:last-child{border-bottom:0}
.bonus__list b{
  display:block;font-size:16px;font-weight:600;color:var(--ink);margin-bottom:3px;
}
.bonus__list small{
  display:block;font-size:13.5px;line-height:1.5;color:var(--ink-soft);
}

@media(max-width:720px){
  .bonus{grid-template-columns:1fr}
  .bonus__num{
    border-right:0;border-bottom:1px solid var(--rule);
    padding:24px 22px;
    display:grid;grid-template-columns:auto 1fr;gap:0 20px;align-items:center;
  }
  .bonus__label{grid-column:1 / -1;margin-bottom:12px}
  .bonus__num b{font-size:46px}
  .bonus__num span{margin-top:2px}
  .bonus__sub{margin:0}
  .bonus__list{padding:4px 22px}
}


/* ---------- offer / pricing ---------- */
.offer{background:var(--white)}
.offer__box{
  border:1px solid var(--rule);border-top:4px solid var(--green);
  background:var(--cream);border-radius:var(--r);padding:34px;box-shadow:var(--shadow);
  max-width:640px;
}
.price{display:flex;align-items:baseline;gap:14px;margin:6px 0 22px;flex-wrap:wrap}
.price__now{font-size:44px;font-weight:700;letter-spacing:-.03em;line-height:1}
.price__was{font-size:19px;color:var(--ink-soft);text-decoration:line-through}
.price__tag{
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  background:var(--amber);color:#fff;padding:5px 9px;border-radius:var(--r);
}
body.bn .price__tag{text-transform:none;letter-spacing:.04em}
.includes{list-style:none;margin:0 0 26px;padding:0}
.includes li{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid var(--rule);font-size:15.5px}
.includes li:last-child{border-bottom:0}
.includes li::before{content:"\2713";color:var(--green);font-weight:700}
.includes small{display:block;color:var(--ink-soft);font-size:13px}

/* ---------- payment steps ---------- */
.steps{list-style:none;counter-reset:s;margin:30px 0 0;padding:0;display:grid;gap:0}
.steps li{
  counter-increment:s;display:flex;gap:18px;padding:20px 0;border-bottom:1px solid var(--rule);
}
.steps li::before{
  content:counter(s);flex:0 0 32px;height:32px;display:grid;place-items:center;
  background:var(--green);color:var(--cream);font-size:13px;font-weight:700;border-radius:var(--r);
}
.steps h3{margin:2px 0 4px}
.steps p{margin:0;color:var(--ink-soft);font-size:15px}
.wallets{display:flex;gap:10px;margin:8px 0 0;flex-wrap:wrap}
.wallet{
  border:1px solid var(--rule);background:var(--white);padding:7px 13px;border-radius:var(--r);
  font-size:14px;font-weight:600;
}
.wallet b{color:var(--green);font-variant-numeric:tabular-nums}

/* ---------- form ---------- */
.form{margin-top:34px;max-width:560px}
.field{margin-bottom:18px}
.field label{display:block;font-size:13px;font-weight:600;margin-bottom:6px}
.field input,.field select{
  width:100%;font:inherit;font-size:16px;padding:12px 14px;
  border:1px solid var(--rule);background:var(--white);color:var(--ink);border-radius:var(--r);
}
.field input:focus,.field select:focus{border-color:var(--green);outline:none;box-shadow:0 0 0 3px rgba(1,81,46,.12)}
.field small{display:block;color:var(--ink-soft);font-size:12.5px;margin-top:6px}
.form__foot{font-size:13px;color:var(--ink-soft);margin-top:14px}

/* ---------- D1: author ---------- */
.author{max-width:62ch}
.author h2{margin-bottom:22px}
.author p{color:var(--ink-soft);font-size:16.5px;margin:0 0 18px}
.author__punch{
  color:var(--ink)!important;font-size:19px!important;font-weight:500;line-height:1.55;
  border-left:3px solid var(--green);padding-left:22px;margin:26px 0 28px!important;
}
.byline{
  font-size:14px!important;color:var(--ink-soft)!important;
  border-top:1px solid var(--rule);padding-top:18px;margin:0!important;
}
.byline b{color:var(--ink);font-weight:600;font-size:16px}

/* ---------- faq ---------- */
.faq{margin-top:30px;max-width:68ch}
.faq details{border-bottom:1px solid var(--rule);padding:16px 0}
.faq summary{cursor:pointer;font-weight:600;list-style:none;display:flex;justify-content:space-between;gap:16px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--green);font-weight:700}
.faq details[open] summary::after{content:"\2212"}
.faq p{margin:12px 0 0;color:var(--ink-soft);font-size:15.5px}

/* ---------- footer ---------- */
.foot{background:var(--green);color:var(--cream);border:0}
.foot a{color:var(--cream)}
.foot__in{
  max-width:var(--w);margin:0 auto;padding:52px 24px;
  display:flex;justify-content:space-between;gap:28px;flex-wrap:wrap;font-size:14px;
}
.foot__in p{margin:0 0 6px;opacity:.8}
.foot__in strong{display:block;font-size:17px;opacity:1;margin-bottom:10px}

/* ---------- logo lockups ---------- */
.foot__logo{
  width:190px;height:auto;margin:0 0 14px;
  border-radius:6px;
  box-shadow:0 0 0 1px rgba(251,246,240,.14);
}
.gatelogo{
  width:190px;height:auto;margin:0 auto 26px;
  border-radius:8px;
  box-shadow:0 12px 30px -16px rgba(0,0,0,.6);
}

/* ---------- confirmation page ---------- */
.done{max-width:620px;margin:0 auto;padding:100px 24px;text-align:center}
.done .tick{
  width:56px;height:56px;margin:0 auto 26px;background:var(--green);color:var(--cream);
  display:grid;place-items:center;font-size:26px;border-radius:var(--r);
}

/* ---------- B2: practice portal ---------- */
.practice{background:var(--white)}

.pcount{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:1px;background:var(--rule);border:1px solid var(--rule);border-radius:var(--r);
  margin:34px 0 0;overflow:hidden;
}
.pcount div{background:var(--white);padding:22px 20px;text-align:center}
.pcount b{
  display:block;font-size:38px;line-height:1;font-weight:700;letter-spacing:-.03em;color:var(--green);
}
.pcount span{
  display:block;margin-top:10px;font-size:11px;letter-spacing:.09em;text-transform:uppercase;
  color:var(--ink-soft);line-height:1.7;
}
body.bn .pcount span{text-transform:none;letter-spacing:0;font-size:12.5px}

.try{
  margin-top:24px;border:1px solid var(--rule);border-top:3px solid var(--amber);
  border-radius:var(--r);background:var(--cream);box-shadow:var(--shadow);overflow:hidden;
}
.try__head{padding:26px 26px 20px}
.try__tag{
  display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--amber);border:1px solid rgba(181,118,30,.4);border-radius:var(--r);
  padding:4px 9px;margin-bottom:14px;
}
body.bn .try__tag{text-transform:none;letter-spacing:.04em}
.try__head h3{font-size:21px;margin:0 0 8px}
.try__head p{margin:0;color:var(--ink-soft);font-size:16px}
.try__grid{border-left:0;border-right:0;min-width:300px}

.try__input{padding:22px 26px 26px;border-top:1px solid var(--rule)}
.try__label{display:block;font-size:13px;font-weight:600;margin-bottom:8px}
.try__row{display:flex;gap:10px}
.try__row input{
  flex:1;min-width:0;font-family:ui-monospace,'SF Mono',Menlo,Consolas,monospace;font-size:15px;
  padding:13px 14px;border:1px solid var(--rule);background:var(--white);color:var(--ink);
  border-radius:var(--r);
}
.try__row input:focus{border-color:var(--green);outline:none;box-shadow:0 0 0 3px rgba(1,81,46,.12)}
.try__row .btn{flex:0 0 auto}
@media(max-width:520px){
  .try__row{flex-direction:column}
  .try__row .btn{width:100%;justify-content:center}
}
.try__hint{
  background:none;border:0;padding:10px 0 0;font:inherit;font-size:13px;
  color:var(--ink-soft);text-decoration:underline;text-underline-offset:3px;cursor:pointer;
}
.try__hint:hover{color:var(--green)}
.try__out{
  margin:16px 0 0;font-size:15px;line-height:1.6;min-height:1px;
  padding:0;border-left:0;
}
.try__out.is-on{padding:14px 16px;border-radius:var(--r)}
.try__out.is-right{background:rgba(1,81,46,.08);border-left:3px solid var(--green);color:var(--ink)}
.try__out.is-wrong{background:rgba(181,118,30,.09);border-left:3px solid var(--amber);color:var(--ink)}
.try__out.is-hint{background:var(--cream-2);border-left:3px solid var(--rule);color:var(--ink-soft)}
.try__out b{font-weight:600}
.try__out code{
  font-family:ui-monospace,Menlo,Consolas,monospace;font-size:13.5px;
  background:var(--white);border:1px solid var(--rule);border-radius:var(--r);padding:2px 6px;
}
.try__out a{font-weight:600}


/* ---------- logo lockups ---------- */
.foot__logo{
  width:190px;height:auto;margin:0 0 14px;
  border-radius:6px;
  box-shadow:0 0 0 1px rgba(251,246,240,.14);
}
.gatelogo{
  width:190px;height:auto;margin:0 auto 26px;
  border-radius:8px;
  box-shadow:0 12px 30px -16px rgba(0,0,0,.6);
}

/* ---------- product screenshots ---------- */
.showcase{background:var(--cream)}
.shot{margin:34px 0 0}
.shot img{
  width:100%;height:auto;border:1px solid var(--rule);border-radius:var(--r);
  box-shadow:0 26px 60px -34px rgba(1,81,46,.55);
}
.shot figcaption{
  margin-top:12px;font-size:13.5px;color:var(--ink-soft);
}
.shot__pts{
  list-style:none;margin:30px 0 0;padding:0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px 32px;
}
.shot__pts li{border-top:2px solid var(--green);padding-top:14px}
.shot__pts b{display:block;font-size:16px;font-weight:600;margin-bottom:3px}
.shot__pts span{color:var(--ink-soft);font-size:14.5px;line-height:1.5}

/* ---------- mobile hero: cover first ---------- */
@media(max-width:900px){
  .hero__in{grid-template-columns:1fr;gap:34px}
  .hero__cover{order:-1}
  .hero__cover img{width:100%;margin:0 auto}
}

/* ---------- mobile QC fixes ---------- */

/* iOS silently zooms the whole page when you focus an input smaller than 16px.
   Jarring, and it leaves the layout shifted. Every input must be >=16px. */
.try__row input{font-size:16px}
html{-webkit-text-size-adjust:100%}

/* Tap targets. Apple's floor is 44px; anything less and a thumb misses it. */
.langlink{
  display:inline-flex;align-items:center;min-height:44px;padding:0 4px;
}
.try__hint{min-height:44px;padding:12px 4px 0}
.brand{min-height:44px}
.topbar__right{gap:14px}

/* Give the inline WhatsApp/support links a bigger hit area without
   breaking the sentence flow. */
.form__foot a,.hero__note a{padding:4px 0;display:inline-block}

/* FAQ rows were 28px tall — a thumb misses that. Give the whole row a real hit area. */
.faq summary{min-height:44px;align-items:center;padding:4px 0}
/* Formula tabs were 43px. One pixel short is still short. */
.fx__tab{padding:13px 8px}

/* ---------- verified-sales counter ---------- */
.soldcount{
  display:flex;align-items:center;gap:9px;
  margin:16px 0 0;font-size:14px;color:var(--ink-soft);
}
.soldcount::before{
  content:"";width:8px;height:8px;border-radius:50%;background:var(--green);
  box-shadow:0 0 0 0 rgba(1,81,46,.4);animation:pulse 2.4s ease-out infinite;flex:0 0 8px;
}
.soldcount [data-soldnum]{font-weight:700;color:var(--ink);font-variant-numeric:tabular-nums}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(1,81,46,.4)}
  70%{box-shadow:0 0 0 7px rgba(1,81,46,0)}
  100%{box-shadow:0 0 0 0 rgba(1,81,46,0)}
}
@media(prefers-reduced-motion:reduce){.soldcount::before{animation:none}}

/* ---------- free preview page ---------- */
.preview{background:var(--cream-2);border-bottom:1px solid var(--rule)}
.preview__inner{
  max-width:760px;margin:0 auto;padding:40px 24px;
  display:flex;flex-direction:column;gap:20px;
}
.preview__inner img{
  width:100%;height:auto;border:1px solid var(--rule);border-radius:var(--r);
  box-shadow:0 18px 44px -30px rgba(1,81,46,.5);background:#fff;
}
.preview__cta{background:var(--white)}
/* ---------- free-chapter card (above the hero buttons) ---------- */
.freeread{
  display:flex;align-items:center;gap:14px;
  max-width:470px;margin:0 0 22px;padding:15px 18px;
  background:#96600F;border:1px solid #7E4D0C;border-radius:var(--r);
  text-decoration:none;color:inherit;
  box-shadow:0 10px 26px -14px rgba(150,96,15,.75);
  transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.freeread:hover{
  background:#A66A15;transform:translateY(-2px);
  box-shadow:0 16px 32px -14px rgba(150,96,15,.85);
}
.freeread:focus-visible{outline:3px solid rgba(1,81,46,.5);outline-offset:3px}

.freeread__badge{
  flex:0 0 40px;width:40px;height:40px;border-radius:50%;
  background:var(--cream);color:#96600F;
  display:grid;place-items:center;
}
.freeread__icon{width:20px;height:20px}

.freeread__text b{
  display:block;font-size:16px;font-weight:700;color:#FFFFFF;line-height:1.35;
}
.freeread__text small{
  display:block;margin-top:3px;font-size:12.5px;line-height:1.45;color:#FFF4E0;
}
.freeread__arrow{display:inline-block;transition:transform .15s ease}
.freeread:hover .freeread__arrow{transform:translateX(4px)}

@media(prefers-reduced-motion:reduce){
  .freeread,.freeread__arrow{transition:none}
  .freeread:hover{transform:none}
  .freeread:hover .freeread__arrow{transform:none}
}

@media(max-width:520px){
  .freeread{gap:12px;padding:14px 15px}
  .freeread__badge{flex:0 0 36px;width:36px;height:36px}
  .freeread__text b{font-size:15px}
  .freeread__text small{font-size:12px}
}

/* ---------- hero emphasis pass ---------- */

/* The brand line above the headline — bigger and bolder than a section label.
   Scoped to .hero so other section eyebrows keep their small size. */
.hero .eyebrow{
  font-size:16px;font-weight:700;letter-spacing:.14em;
  color:var(--green);margin:0 0 16px;
}
body.bn .hero .eyebrow{font-size:17px;letter-spacing:.04em;text-transform:none}

/* "Excel" picked out in the brand green */
.hl{color:var(--green)}

/* The primary hero button — the price has to be readable across a room */
.hero__actions .btn{font-size:18px;font-weight:700;padding:16px 30px}
.hero__actions .btn--ghost{font-size:16px;font-weight:600;padding:16px 26px}
body.bn .hero__actions .btn{font-size:17px}

/* What you actually get — this is the deliverables list, not fine print */
.hero__note{
  font-size:15px;line-height:1.75;color:var(--ink);margin:18px 0 0;
}
.hero__note b{font-weight:600}
.hero__note .sep{
  display:inline-block;margin:0 9px;color:#96600F;font-weight:700;
}

@media(max-width:520px){
  .hero .eyebrow{font-size:14px}
  .hero__actions .btn{font-size:17px;padding:15px 24px}
  .hero__actions .btn--ghost{font-size:15px;padding:15px 22px}
  .hero__note{font-size:14.5px}
  .hero__note .sep{margin:0 7px}
}
