/* The AI Once-Over — /audit
   Long-form conversion layout in the Conversion Rate Experts pattern:
   one wide reading column, a sticky offer rail, and a "what's your goal"
   hub that lets people jump to the thing they came for. */

:root{
  --ink:      #1B1B1B;
  --ink-85:   rgba(27,27,27,.85);
  --ink-80:   rgba(27,27,27,.80);
  --ink-70:   rgba(27,27,27,.70);
  --ink-55:   rgba(27,27,27,.55);
  --ink-45:   rgba(27,27,27,.45);
  --ink-12:   rgba(27,27,27,.12);
  --ink-08:   rgba(27,27,27,.08);
  --accent:   #FAC302;   /* brand yellow, same as the front page */
  --accent-d: #E3AF00;
  --accent-l: #FFF7DA;
  --paper:    #F5F5F2;
  --white:    #FFFFFF;
  --yellow:   #FAC302;

  --slab: "Anton", Impact, sans-serif;
  --sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --wrap: 1180px;
  --gut: 24px;
  --rail: 330px;
  --bar: 60px;
}
@media (max-width:900px){ :root{ --gut:18px; --bar:66px; } }

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:80px; }
body{
  background:var(--white); color:var(--ink);
  font-family:var(--sans); font-size:17px; line-height:1.62;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
  padding-bottom:var(--bar);
}
img{ max-width:100%; display:block; }
a{ color:var(--ink); }
.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 var(--gut); }

h1,h2,h3{ margin:0; line-height:1.15; letter-spacing:-.02em; font-weight:800; }
h1{ font-size:clamp(31px,4.6vw,52px); line-height:1.1; }
h2{ font-size:clamp(25px,3.2vw,37px); }
h3{ font-size:clamp(19px,2.1vw,23px); letter-spacing:-.01em; }
p{ margin:0 0 16px; }
strong,b{ font-weight:800; }
.lede{ font-size:clamp(17px,1.9vw,20px); color:var(--ink-70); line-height:1.6; }
.small{ font-size:14px; color:var(--ink-55); line-height:1.6; }
.mono{ font-family:var(--mono); font-size:11.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-45); }

/* inline links are the spine of this layout — they should look clickable */
.ilink{ color:var(--ink); font-weight:800; text-decoration:underline; text-decoration-color:var(--accent); text-underline-offset:3px; text-decoration-thickness:3px; }
.ilink:hover{ background:var(--accent-l); }

/* ── buttons ─────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:800; font-size:16.5px; line-height:1;
  background:var(--accent); color:var(--ink);
  border:2px solid var(--ink); border-radius:999px;
  padding:16px 30px; text-decoration:none; cursor:pointer;
  transition:background .14s ease, border-color .14s ease, transform .14s ease;
}
.btn:hover{ background:var(--accent-d); transform:translateY(-1px); }
.btn--ghost{ background:var(--white); color:var(--ink); }
.btn--ghost:hover{ background:var(--accent-l); }
.btn--wide{ width:100%; }
.btn--sm{ font-size:15px; padding:13px 22px; }

/* ── top bar ─────────────────────────────── */
.top{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.94); backdrop-filter:saturate(1.6) blur(8px); border-bottom:1px solid var(--ink-08); }
.top__in{ max-width:var(--wrap); margin:0 auto; padding:14px var(--gut); display:flex; align-items:center; justify-content:space-between; gap:14px; }
.brand{ display:flex; align-items:center; gap:10px; padding:7px 0; text-decoration:none; color:var(--ink); font-weight:800; letter-spacing:-.01em; }
.brand span{ font-family:var(--slab); font-size:22px; text-transform:uppercase; letter-spacing:-.01em; font-weight:400; }
.brand span .ai{ color:var(--accent); -webkit-text-stroke:.6px var(--ink); }
.top__links{ display:flex; gap:22px; align-items:center; }
.top__links a{ color:var(--ink-70); text-decoration:none; font-size:14.5px; font-weight:700; }
.top__links a:hover{ color:var(--ink); text-decoration:underline; text-decoration-color:var(--accent); text-decoration-thickness:3px; }
@media (max-width:860px){ .top__links{ display:none; } }

/* ── hero ────────────────────────────────── */
.hero{ text-align:center; padding:clamp(40px,6vw,72px) 0 clamp(30px,4vw,44px); }
.hero h1{ max-width:20ch; margin:0 auto; }
.hero h1 em{ font-style:normal; display:block; }
.hero .lede{ max-width:62ch; margin:20px auto 0; }
.hero__ctas{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:28px; }
.hero__who{ margin:26px auto 0; max-width:70ch; }

/* ── client texts ────────────────────────── */
.texts-panel{ padding:clamp(6px,1.5vw,14px) 0; margin:0 0 clamp(38px,5vw,58px); }
.texts-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(18px,3vw,38px); align-items:start; }
.texts{ display:flex; flex-direction:column; gap:14px; }
.txt{ font-size:15.5px; line-height:1.45; padding:12px 16px; max-width:88%; border-radius:20px; align-self:flex-start; }
.txt--them{ background:#E9E9EB; color:var(--ink); border-radius:20px 20px 20px 6px; box-shadow:0 6px 18px rgba(27,27,27,.07); }
.txt--me{ align-self:flex-end; color:#fff; background:linear-gradient(180deg,#3D9CFF,#2D7FF0); border-radius:20px 20px 6px 20px; box-shadow:0 8px 22px rgba(45,127,240,.24); }
.txt--green{ color:#fff; background:linear-gradient(180deg,#43C465,#2FA84F); border-radius:20px 20px 20px 6px; box-shadow:0 8px 22px rgba(47,168,79,.24); }
.txt--narrow{ max-width:74%; }
.txt--r1{ transform:rotate(-.6deg) } .txt--r2{ transform:rotate(.5deg) }
.txt--r3{ transform:rotate(.4deg) }  .txt--r4{ transform:rotate(-.4deg) }
.txt--r5{ transform:rotate(.6deg) }
.txt__thread{ display:flex; flex-direction:column; gap:8px; }
.txt__gap{ align-self:center; font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-45); }
.sarah{ background:var(--white); border:1px solid var(--ink-12); border-radius:16px; padding:20px 22px; }
.sarah p:first-child{ font-weight:800; font-size:17px; margin-bottom:14px; }
.ba{ display:flex; gap:22px; flex-wrap:wrap; align-items:flex-end; }
.ba div{ font-family:var(--mono); font-size:10.5px; letter-spacing:.11em; text-transform:uppercase; color:var(--ink-45); }
.ba b{ display:block; font-family:var(--sans); font-size:22px; font-weight:800; letter-spacing:-.02em; color:var(--ink); margin-top:4px; }
.ba .after b{ color:var(--ink); }
.ba-bar{ display:block; height:8px; border-radius:4px; background:rgba(27,27,27,.1); margin-top:8px; overflow:hidden; min-width:96px; }
.ba-bar i{ display:block; height:100%; border-radius:4px; background:rgba(27,27,27,.28); }
.after .ba-bar i{ background:var(--ink); }
@media (max-width:820px){ .texts-grid{ grid-template-columns:1fr; } .txt{ max-width:92%; } }

/* ── two-column body ─────────────────────── */
.body-grid{ display:grid; grid-template-columns:var(--rail) 1fr; gap:clamp(30px,5vw,64px); align-items:start; padding-bottom:clamp(48px,7vw,86px); }
/* grid items default to min-width:auto, so the 520px map table was forcing the
   whole column wider than the phone — this is what lets it scroll on its own */
.body-grid > *{ min-width:0; }
.rail{ position:sticky; top:84px; display:flex; flex-direction:column; gap:26px; }
@media (max-width:980px){
  .body-grid{ grid-template-columns:1fr; }
  .rail{ position:static; order:2; }
  .main{ order:1; }
}

/* rail cards */
.rc{ border:1px solid var(--ink-12); border-radius:16px; padding:20px; background:var(--white); }
.rc h3{ font-size:19px; margin-bottom:10px; }
.rc .small{ margin:0; }
.rc__price{ font-size:14px; color:var(--ink-70); margin:0 0 16px; }
.rail__quote{ background:var(--paper); border-radius:14px; padding:16px 18px; font-style:italic; font-size:15px; margin:0 0 12px; }
.rail__attrib{ font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-45); margin:0 0 14px; }
.gets{ list-style:none; margin:0; padding:0; }
.gets li{ display:grid; grid-template-columns:1fr auto auto; gap:8px; align-items:baseline; padding:9px 0; border-bottom:1px solid var(--ink-08); font-size:14px; }
.gets li:last-of-type{ border-bottom:none; }
.gets s{ font-family:var(--mono); font-size:11px; color:var(--ink-45); }
.gets .tick{ color:var(--ink); font-weight:800; }
.gets__tot{ display:flex; justify-content:space-between; align-items:baseline; padding-top:12px; margin-top:6px; border-top:2px solid var(--ink); font-size:13.5px; }
.gets__tot b{ font-size:16px; }
.gets__pay{ display:flex; justify-content:space-between; align-items:baseline; padding-top:6px; }
.gets__pay span{ font-weight:800; }
.gets__pay b{ font-size:26px; font-weight:800; color:var(--ink); letter-spacing:-.02em; }

/* ── main column ─────────────────────────── */
.main h2{ margin:clamp(34px,4vw,54px) 0 16px; }
.main h2:first-child{ margin-top:0; }
.main h3{ margin:28px 0 10px; }
.main ul, .main ol{ margin:0 0 18px; padding-left:22px; }
.main li{ margin-bottom:11px; }
.main li::marker{ color:var(--ink-45); }
.rule{ border:none; border-top:1px solid var(--ink-12); margin:clamp(34px,4vw,52px) 0; }
.goal{ counter-reset:goal; }
.goal__item{ margin:0 0 30px; }
.goal__item h3{ margin-top:0; }
.callout{ background:var(--accent-l); border-left:4px solid var(--ink); border-radius:0 12px 12px 0; padding:18px 20px; margin:0 0 18px; }
.callout p:last-child{ margin-bottom:0; }
.strike{ color:var(--ink-45); text-decoration:line-through; }
.win{ background:var(--accent); padding:1px 5px; border-radius:3px; font-weight:800; }

/* what we audit */
.audit-list{ list-style:none; padding:0; margin:0 0 18px; }
.audit-list li{ padding:12px 0; border-top:1px solid var(--ink-08); font-size:16px; }
.audit-list li:first-child{ border-top:none; }
.audit-list b{ display:inline-block; min-width:112px; }

/* ── calculator ──────────────────────────── */
.calc-wrap{ background:var(--paper); border-radius:18px; padding:clamp(20px,3vw,30px); }
.calc{ padding:18px 0; border-bottom:1px solid var(--ink-12); }
.calc:last-of-type{ border-bottom:none; }
.calc__k{ font-family:var(--mono); font-size:11px; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-55); margin:0 0 14px; }
.calc__row{ display:grid; grid-template-columns:1fr 200px; gap:22px; align-items:center; }
.ctl{ margin-bottom:14px; }
.ctl:last-child{ margin-bottom:0; }
.ctl__top{ display:flex; justify-content:space-between; align-items:baseline; font-size:14.5px; margin-bottom:6px; }
.ctl__top b{ font-weight:800; }
input[type=range]{ -webkit-appearance:none; appearance:none; width:100%; height:34px; margin:0; background:transparent; cursor:pointer; }
input[type=range]::-webkit-slider-runnable-track{ height:4px; border-radius:2px; background:rgba(27,27,27,.16); }
input[type=range]::-webkit-slider-thumb{ -webkit-appearance:none; width:22px; height:22px; margin-top:-9px; border-radius:50%; background:var(--accent); border:2px solid var(--ink); box-shadow:0 2px 6px rgba(27,27,27,.22); }
input[type=range]::-moz-range-track{ height:4px; border-radius:2px; background:rgba(27,27,27,.16); }
input[type=range]::-moz-range-thumb{ width:22px; height:22px; border-radius:50%; background:var(--accent); border:2px solid var(--ink); }
.calc__out{ text-align:right; }
.calc__eq{ font-family:var(--mono); font-size:10.5px; color:var(--ink-45); margin:0 0 4px; line-height:1.5; }
.calc__big{ font-size:clamp(26px,3.4vw,36px); font-weight:800; color:var(--ink); letter-spacing:-.02em; line-height:1; margin:0; }
.calc__big em{ font-style:normal; font-size:.46em; color:var(--ink-45); }
.calc__lab{ font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-45); margin:6px 0 0; }
.calc__sum{ background:var(--white); border:1px solid var(--ink-12); border-radius:14px; padding:18px 20px; margin-top:18px; font-size:17px; }
.calc__sum b{ background:var(--accent); padding:1px 5px; border-radius:3px; }
@media (max-width:700px){ .calc__row{ grid-template-columns:1fr; gap:12px; } .calc__out{ text-align:left; } }

/* ── opportunity map ─────────────────────── */
.map{ background:var(--ink); color:#fff; border-radius:16px; padding:20px; overflow-x:auto; }
.map table{ width:100%; border-collapse:collapse; min-width:520px; }
.map th{ font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.45); text-align:left; padding:0 10px 12px 0; font-weight:400; }
.map th:not(:first-child), .map td:not(:first-child){ text-align:right; }
.map td{ padding:12px 10px 12px 0; border-top:1px solid rgba(255,255,255,.1); font-family:var(--mono); font-size:12px; }
.map .bar{ display:block; height:9px; border-radius:3px; background:rgba(255,255,255,.16); width:0; transition:width .7s cubic-bezier(.2,.7,.3,1); }
.map .redact{ background:rgba(255,255,255,.22); border-radius:2px; padding:0 2px; color:transparent; }
.map .pill{ background:var(--accent); color:var(--ink); border-radius:999px; padding:3px 9px; font-size:10px; }
.map__cap{ font-family:var(--mono); font-size:10.5px; color:rgba(255,255,255,.42); margin:14px 0 0; }

/* ── guarantee ───────────────────────────── */
.guar{ background:var(--accent); border-radius:18px; padding:clamp(22px,3.4vw,34px); }
.guar h2{ margin-top:0; }

/* ── faq ─────────────────────────────────── */
.faq h3{ font-size:17px; margin:22px 0 6px; }
.faq p{ color:var(--ink-70); font-size:15.5px; }

/* ── form ────────────────────────────────── */
.claim{ background:var(--paper); padding:clamp(40px,6vw,72px) 0; }
.claim__box{ max-width:660px; margin:0 auto; background:var(--white); border:1px solid var(--ink-12); border-radius:18px; padding:clamp(22px,3.4vw,34px); }
.fld{ margin-bottom:15px; }
.fld label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:6px; }
.fld input, .fld textarea{ width:100%; padding:12px 14px; border:1px solid var(--ink-12); border-radius:10px; background:var(--white); font:inherit; font-size:15.5px; color:var(--ink); resize:vertical; }
.fld input:focus, .fld textarea:focus{ outline:2px solid var(--accent); outline-offset:1px; border-color:var(--accent); }
.opts{ display:flex; flex-wrap:wrap; gap:8px; }
.opt input{ position:absolute; opacity:0; width:0; height:0; }
.opt span{ display:inline-block; border:1px solid var(--ink-12); border-radius:999px; padding:10px 15px; font-size:14.5px; cursor:pointer; user-select:none; }
.opt input:checked + span{ background:var(--accent); color:var(--ink); border-color:var(--ink); }
.opt input:focus-visible + span{ outline:2px solid var(--accent); outline-offset:2px; }
.row2{ display:grid; grid-template-columns:1fr 1fr; gap:15px; }
@media (max-width:620px){ .row2{ grid-template-columns:1fr; } }
.form__err{ color:#B4212B; font-size:14px; margin:0 0 10px; min-height:1em; }
.form__ok{ display:none; text-align:center; padding:12px 0; }
.form__ok.on{ display:block; }

/* ── sticky bottom nav ───────────────────── */
.jump{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  background:var(--white); border-top:1px solid var(--ink-12);
  box-shadow:0 -2px 14px rgba(27,27,27,.07);
}
.jump__in{ max-width:var(--wrap); margin:0 auto; padding:9px var(--gut); display:flex; align-items:center; justify-content:center; gap:20px; }
.jump__in a{ color:var(--ink-70); text-decoration:none; font-size:14px; font-weight:700; white-space:nowrap; padding:8px 0; }
.jump__in a:hover{ color:var(--ink); }
.jump__in .btn{ padding:11px 20px; font-size:14.5px; }
@media (max-width:760px){
  .jump__in{ gap:0; justify-content:space-between; }
  .jump__in a:not(.btn){ display:none; }
  .jump__in .btn{ width:100%; }
}

/* ── footer ──────────────────────────────── */
.foot{ background:var(--ink); color:rgba(255,255,255,.6); padding:34px 0 40px; text-align:center; }
.foot p{ margin:0 0 6px; font-size:13.5px; }
.foot a{ color:#fff; }

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

/* ── mobile ──────────────────────────────── */
@media (max-width:820px){
  body{ font-size:16.5px; }
  .mono{ font-size:11px; }
  .map th{ font-size:11px; }
  .map td{ font-size:12.5px; }
  .map .pill{ font-size:11px; }
  .map__cap{ font-size:11px; }
  .calc__eq{ font-size:11px; }
  .calc__lab{ font-size:11px; }
  .txt__gap{ font-size:11px; }
  .ba div{ font-family:var(--mono); font-size:11px; }
  .gets s{ font-size:11.5px; }
  .rail__attrib{ font-size:11px; }
  .audit-list b{ display:block; min-width:0; margin-bottom:2px; }
  .btn{ width:100%; }
  .hero__ctas .btn{ width:100%; }
  .foot a{ display:inline-block; padding:5px 2px; }
}
