/* STUDIO — public marketing landing page.
   Brand tokens from STUDIO-BRAND-BOOK.md: ink #1E1E1E, gold #FFBE17, cream #FFF2D1.
   Oswald (display) + Bebas Neue (hero) + Open Sans (body). Self-contained; no app JS/secrets. */
:root {
  --ink: #1e1e1e;
  --ink-2: #262626;
  --gold: #ffbe17;
  --gold-deep: #d98411;
  --cream: #fff2d1;
  --grey: #787878;
  --grey-light: #d2d2d2;
  --line: #e8e8e8;
  --font-display: 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-head: 'Oswald', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; font-size: 13px; color: var(--gold-deep);
}
.section { padding: 76px 0; }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head .lead { margin-top: 18px; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; margin: 0; }
h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: .01em; }
h3 { font-size: 20px; font-weight: 600; }
p { margin: 0 0 16px; }
.lead { font-size: 18px; color: #3a3a3a; }
.muted { color: var(--grey); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 14px; text-decoration: none;
  padding: 13px 22px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, #ffcb3f 0%, var(--gold) 55%, #f2ad0e 100%); color: var(--ink); box-shadow: 0 6px 18px rgba(255,190,23,.32); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(255,190,23,.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--grey-light); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
/* Full-bleed nav: override .wrap's 1120px cap so the bar spans the whole strip. Symmetric side
   padding = equal gap from the logo to the left edge and from the CTA cluster to the right edge. */
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 74px; max-width: none; padding: 0 clamp(28px, 4vw, 72px); }
.nav-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; justify-self: center; }
.nav-links a.link { position: relative; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: .09em; text-decoration: none; color: #2a2a2a; padding: 6px 0; transition: color .15s; }
.nav-links a.link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right .22s ease; }
.nav-links a.link:hover { color: var(--ink); }
.nav-links a.link:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nav-textlink { font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; text-decoration: none; color: #3a3a3a; white-space: nowrap; transition: color .15s; }
.nav-textlink:hover { color: var(--gold-deep); }
.nav-cta .btn { padding: 10px 20px; font-size: 12.5px; letter-spacing: .07em; border-width: 0; white-space: nowrap; }
.nav-cta .btn-primary { background: var(--gold); box-shadow: none; }
.nav-cta .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(255,190,23,.35); }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 500px at 70% -10%, #303030 0%, var(--ink) 55%), var(--ink);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/pcb-bg.svg') center/cover no-repeat; opacity: .10; pointer-events: none;
}
/* Premium light-reflection sweep across the hero, ~every 7.5s. Subtle for a senior B2B audience. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(112deg, transparent 16%, rgba(255,255,255,.08) 37%, rgba(255,236,190,.44) 50%, rgba(255,255,255,.08) 63%, transparent 84%);
  background-size: 250% 100%; background-position: 150% 0;
  animation: heroSheen 8s cubic-bezier(.4,0,.3,1) infinite;
}
@keyframes heroSheen {
  0% { background-position: 150% 0; }
  48% { background-position: -55% 0; }
  100% { background-position: -55% 0; }
}
@media (prefers-reduced-motion: reduce) { .hero::after { animation: none; opacity: 0; } }
.hero-inner { position: relative; z-index: 2; padding: 104px 0 112px; text-align: center; max-width: 880px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .015em;
  font-size: clamp(48px, 8.2vw, 92px); line-height: .94; margin: 20px 0 0; text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .gold { color: var(--gold); }
.hero .hero-sub { font-size: clamp(17px, 2.05vw, 20px); color: #d6d6d6; line-height: 1.62; margin: 24px auto 0; max-width: 620px; }
.hero .hero-not { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); font-size: 13px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { margin-top: 22px; font-size: 13.5px; color: #a9a9a9; }
.hero-trust strong { color: #fff; }

/* Works-with strip */
.strip { background: var(--ink-2); color: #cfcfcf; padding: 18px 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; row-gap: 6px; font-size: 14px; }
.strip .label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-size: 12.5px; margin-right: 22px; }
.strip .name { font-weight: 700; color: #fff; }
.strip .dot { color: #666; margin: 0 15px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.06); }
.step .num { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.step h3 { margin: 6px 0 8px; }
.step p { font-size: 15px; color: #4a4a4a; margin: 0; }

/* Features */
.features { background: #faf9f6; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; transition: border-color .15s, box-shadow .15s; }
.feat:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.feat .ic { width: 38px; height: 38px; border-radius: 9px; background: var(--cream); display: grid; place-items: center; margin-bottom: 14px; }
.feat .ic svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.9; }
.feat h3 { font-size: 18px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: #555; margin: 0; }

/* Why (not a notetaker) */
.why-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.why-card { background: var(--ink); color: #fff; border-radius: 18px; padding: 36px 34px; }
.why-card h2 { color: #fff; }
.why-card .gold { color: var(--gold); }
.why-list { list-style: none; padding: 0; margin: 18px 0 0; }
.why-list li { position: relative; padding-left: 30px; margin: 12px 0; color: #ddd; font-size: 15.5px; }
.why-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.why-copy h2 { margin-bottom: 14px; }
.why-copy p { font-size: 16px; color: #444; }

/* Pricing */
.pricing { background: #fff; }
.price-note { text-align: center; color: var(--grey); font-size: 15px; margin: -24px auto 40px; max-width: 620px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price {
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; display: flex; flex-direction: column; background: #fff;
}
.price.feature { border-color: var(--gold); box-shadow: 0 18px 44px rgba(255,190,23,.26); position: relative; transform: scale(1.05); z-index: 2; }
.price .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 11.5px; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.price .pname { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 15px; color: var(--gold-deep); }
.price .pdesc { font-size: 13.5px; color: var(--grey); line-height: 1.4; margin: 7px 0 14px; min-height: 38px; }
.price .pprice { font-family: var(--font-display); font-size: 42px; line-height: 1; margin: 4px 0 2px; }
.price .pprice .unit { font-family: var(--font-body); font-size: 15px; color: var(--grey); font-weight: 400; letter-spacing: 0; }
.price .psub { font-size: 14px; color: var(--grey); min-height: 20px; margin-bottom: 16px; }
.price ul { list-style: none; padding: 0; margin: 18px 0 0; }
.price li { position: relative; padding-left: 26px; margin: 10px 0; font-size: 14.5px; color: #3a3a3a; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.price .packs { margin: 10px 0 20px; border-top: 1px dashed var(--grey-light); padding-top: 14px; }
.price .pack-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 6px 0; }
.price .pack-row .pc { color: var(--grey); }
.price .btn { width: 100%; margin: 2px 0 0; transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.price .btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); box-shadow: 0 4px 14px rgba(255,190,23,.45); }
.price .btn-primary:hover { background: #ffce50; box-shadow: 0 6px 18px rgba(255,190,23,.5); }
/* The 2nd (popular) card's CTA glows at rest; hovered CTAs pick up the same glow. */
.price.feature .btn-primary { box-shadow: 0 4px 14px rgba(255,190,23,.45); }
.price .psub .ppc { color: var(--ink); font-weight: 700; }

/* Trust strip */
.trustband { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-item h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.trust-item p { color: #bdbdbd; font-size: 14.5px; margin: 0; }
.trust-item .k { color: var(--gold); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 12.5px; }
.trust-link { text-align: center; margin-top: 34px; }

/* Final CTA */
.finalcta { background: var(--gold); color: var(--ink); text-align: center; }
.finalcta h2 { color: var(--ink); }
.finalcta p { font-size: 17px; color: #4a3d10; max-width: 560px; margin: 12px auto 26px; }
.finalcta .btn-dark { background: var(--ink); color: #fff; }
.finalcta .btn-dark:hover { background: #000; }

/* Footer */
.footer { background: #141414; color: #b7b7b7; padding: 56px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 34px; }
.footer-logo { height: 30px; margin-bottom: 14px; }
.footer p.tag { font-size: 14px; color: #8f8f8f; max-width: 260px; }
.footer h4 { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12.5px; color: #fff; margin: 0 0 12px; }
.footer a.fl { display: block; color: #b7b7b7; text-decoration: none; font-size: 14px; margin: 8px 0; }
.footer a.fl:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #7c7c7c; }

/* Start-free modal + lead form */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20,18,10,.55); }
.modal-card { position: relative; z-index: 1; background: #fff; border-radius: 16px; padding: 32px 30px 26px; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.modal-x { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--grey); cursor: pointer; padding: 4px 8px; }
.modal-x:hover { color: var(--ink); }
.modal-head { margin-bottom: 18px; }
.modal-head h3 { font-family: var(--font-display); font-size: 27px; line-height: 1.1; margin: 6px 0 8px; }
.modal-head p { font-size: 14px; color: var(--grey); margin: 0; line-height: 1.45; }
.lead-form { display: flex; flex-direction: column; gap: 13px; position: relative; }
.lead-form label { display: flex; flex-direction: column; gap: 5px; font-family: var(--font-head); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #555; }
.lead-form input, .lead-form select { font-family: var(--font-body); font-weight: 400; font-size: 15px; padding: 11px 12px; border: 1px solid var(--grey-light); border-radius: 9px; background: #fff; text-transform: none; letter-spacing: 0; color: var(--ink); }
.lead-form input:focus, .lead-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,190,23,.22); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-form .btn { width: 100%; margin-top: 4px; }
.lf-error { background: #fdecea; border: 1px solid #f2c0ba; color: #9a2b21; font-size: 13.5px; padding: 9px 12px; border-radius: 8px; }
.lf-fine { font-size: 12px; color: var(--grey); text-align: center; margin: 2px 0 0; }
.lf-thanks { text-align: center; padding: 26px 8px; font-size: 15px; color: var(--ink); line-height: 1.5; }
.lf-thanks strong { display: block; font-family: var(--font-display); font-size: 25px; margin-bottom: 8px; color: var(--gold-deep); }
@media (max-width: 480px) { .lf-row { grid-template-columns: 1fr; } .modal-card { padding: 26px 20px; } }

/* Comparison table — distinct light band vs the white pricing section */
.compare { background: #f4f2ec; }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.cmp th, .cmp td { padding: 13px 16px; text-align: center; border-bottom: 1px solid #edeae2; font-size: 14px; }
.cmp thead th { background: var(--ink); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 17px; vertical-align: top; line-height: 1.25; padding-top: 17px; padding-bottom: 15px; }
.cmp thead th .cmp-price { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: #ffd97a; margin-top: 6px; }
.cmp thead th .cmp-badge { display: block; width: max-content; margin: 6px auto 0; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink); background: var(--gold); border-radius: 20px; padding: 2px 9px; }
.cmp thead th.cmp-pop { box-shadow: inset 0 7px 0 var(--gold); }
.cmp td.cmp-feat { text-align: left; font-weight: 600; color: #2a2a2a; }
.cmp td.cmp-pop { background: #fff9ec; }
.cmp tr.cmp-grouprow td { background: #ebe7dc; text-align: left; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 12px; color: var(--gold-deep); }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .ck { display: inline-block; width: 22px; height: 22px; line-height: 22px; border-radius: 6px; background: #1f8a4c; color: #fff; font-size: 13px; }
.cmp-roadmap { text-align: center; margin-top: 20px; font-size: 14px; color: var(--grey); }
.cmp-roadmap strong { color: var(--ink); }

/* Responsive */
@media (max-width: 1080px) { .price-grid { grid-template-columns: repeat(2, 1fr); } .price.feature { transform: none; } }
@media (max-width: 620px) { .price-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .steps, .feat-grid, .trust-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Founder / credibility band */
.founder { background: var(--cream); }
.founder-inner { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center; max-width: 940px; margin: 0 auto; }
.founder-inner::before { content: ""; position: absolute; z-index: 0; width: 360px; height: 360px; border-radius: 50%; background: var(--gold); left: 150px; top: 50%; transform: translateY(-50%); box-shadow: 0 30px 70px rgba(217,132,17,.35); }
.founder-photo, .founder-copy { position: relative; z-index: 1; }
.founder-photo { position: relative; width: 300px; height: 380px; overflow: visible; display: flex; align-items: flex-end; justify-content: center; flex-shrink: 0; }
.founder-photo::before { display: none; }
.founder-photo img { position: relative; z-index: 2; width: 100%; height: auto; display: block; filter: drop-shadow(0 16px 26px rgba(0,0,0,.3)); }
.founder-photo .initials { display: none; }
.founder .eyebrow { margin-bottom: 8px; }
.founder h2 { margin-bottom: 14px; }
.founder p { font-size: 16px; color: #3a3a3a; max-width: 640px; margin: 0; }
.founder .fname { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); margin-top: 16px; }
.founder .frole { color: var(--grey); font-size: 14px; }
@media (max-width: 760px) {
  .founder-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .founder p { margin: 0 auto; }
}

/* Book-a-demo form */
.demo { background: var(--ink); color: #fff; }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.demo-copy h2 { margin-bottom: 12px; }
.demo-copy p { color: #c9c9c9; font-size: 16px; max-width: 420px; }
.demo-form { background: #fff; border-radius: 16px; padding: 30px 28px; display: grid; gap: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.demo-form label { display: grid; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.demo-form input, .demo-form select { font-family: var(--font-body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--grey-light); border-radius: 8px; color: var(--ink); background: #fff; width: 100%; }
.demo-form input:focus, .demo-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,190,23,.22); }
.demo-form button { margin-top: 4px; width: 100%; }
.demo-thanks { text-align: center; padding: 26px 10px; font-size: 15.5px; color: #444; }
.demo-thanks strong { display: block; font-family: var(--font-head); font-size: 22px; color: var(--gold-deep); margin-bottom: 6px; }
@media (max-width: 760px) { .demo-inner { grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 560px) { .nav-signin { display: none; } }

/* FAQ (native <details> accordion, no JS) */
.faq { background: #faf9f6; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; position: relative; padding: 22px 48px 22px 2px; font-family: var(--font-head); font-weight: 600; font-size: 17.5px; color: var(--ink); transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::after { content: "+"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 26px; font-weight: 300; color: var(--gold-deep); transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 48px 24px 2px; color: #4a4a4a; font-size: 15px; line-height: 1.66; }

/* ROI calculator */
.roi { background: #faf9f6; }
.roi-card { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px 34px 26px; box-shadow: 0 16px 40px rgba(0,0,0,.06); }
.roi-slider-head { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; color: var(--grey); }
.roi-slider-head .roi-calls { font-family: var(--font-display); font-size: 34px; color: var(--ink); letter-spacing: 0; }
.roi-slider input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 6px; background: var(--grey-light); margin: 14px 0 4px; cursor: pointer; }
.roi-slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.28); cursor: pointer; }
.roi-slider input[type=range]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.28); cursor: pointer; }
.roi-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey); }
.roi-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0 22px; }
.roi-metric { text-align: center; padding: 16px 10px; border-radius: 12px; background: #faf9f6; }
.roi-metric-save { background: var(--cream); }
.roi-m-label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 11.5px; color: var(--grey); }
.roi-m-value { font-family: var(--font-display); font-size: 30px; color: var(--ink); line-height: 1.1; margin-top: 4px; }
.roi-metric-save .roi-m-value { color: var(--gold-deep); }
.roi-m-sub { font-size: 12.5px; color: var(--grey); margin-top: 2px; }
.roi-bars { display: grid; gap: 10px; margin-bottom: 18px; }
.roi-bar-row { display: flex; align-items: center; gap: 12px; }
.roi-bar-name { width: 66px; font-size: 12px; color: var(--grey); text-align: right; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.roi-bar-track { flex: 1; height: 16px; background: #ececec; border-radius: 8px; overflow: hidden; }
.roi-bar-fill { display: block; height: 100%; width: 0; border-radius: 8px; transition: width .25s ease; }
.roi-bar-alt { background: #cfc9bf; }
.roi-bar-studio { background: var(--gold); }
.roi-foot { font-size: 12px; color: var(--grey); margin: 0; text-align: center; }
.roi-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.roi-total { text-align: center; font-size: 15px; color: var(--grey); margin: 18px 0 22px; }
.roi-total strong { color: var(--ink); font-weight: 700; }
.roi-metric-studio .roi-m-value { color: var(--gold-deep); }
.roi-aha { text-align: center; background: var(--ink); color: #fff; border-radius: 12px; padding: 16px 22px; font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
.roi-aha strong { color: var(--gold); }
.roi-controls { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.roi-seg { display: inline-flex; background: #f0efec; border-radius: 10px; padding: 4px; }
.roi-seg-btn { border: none; background: transparent; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; color: var(--grey); padding: 8px 14px; border-radius: 7px; cursor: pointer; transition: background .15s, color .15s; white-space: nowrap; }
.roi-seg-btn.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.14); }
.roi-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 18px; }
.roi-chip { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 11.5px; color: var(--gold-deep); background: var(--cream); border: 1px solid rgba(255,190,23,.4); border-radius: 20px; padding: 6px 13px; }
@media (max-width: 560px) { .roi-controls { flex-direction: column; align-items: stretch; } .roi-seg { display: flex; width: 100%; } .roi-seg-btn { flex: 1 1 0; min-width: 0; white-space: normal; } }
/* Founder gold disc is a wide decorative pseudo-element (left:150px + width:360px) that overflows
   narrow viewports. Hide it where it would push the page — desktop keeps the flourish. */
@media (max-width: 600px) { .founder-inner::before { display: none; } .founder-photo { width: 100%; max-width: 300px; } }
@media (max-width: 560px) { .roi-metrics { grid-template-columns: 1fr; } .roi-card { padding: 26px 20px 20px; } .roi-inputs { grid-template-columns: 1fr; gap: 18px; } }
