/* 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; }
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: var(--gold); color: var(--ink); box-shadow: 0 6px 18px rgba(255,190,23,.35); }
.btn-primary:hover { box-shadow: 0 10px 26px rgba(255,190,23,.45); }
.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: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.link { font-family: var(--font-head); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; text-decoration: none; color: #333; }
.nav-links a.link:hover { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.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;
}
.hero-inner { position: relative; padding: 96px 0 104px; text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .01em;
  font-size: clamp(46px, 8vw, 86px); line-height: .96; margin: 18px 0 0; text-transform: uppercase;
}
.hero h1 .gold { color: var(--gold); }
.hero .hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: #d8d8d8; margin: 22px auto 0; max-width: 640px; }
.hero .hero-not { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); font-size: 14px; }
.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; gap: 12px 26px; flex-wrap: wrap; 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; }
.strip .name { font-weight: 700; color: #fff; }
.strip .dot { color: #555; }

/* 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: 28px 26px; }
.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(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; background: #fff;
}
.price.feature { border-color: var(--gold); box-shadow: 0 12px 34px rgba(255,190,23,.16); position: relative; }
.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; }
.price .pname { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 15px; color: var(--gold-deep); }
.price .pprice { font-family: var(--font-display); font-size: 52px; line-height: 1; margin: 10px 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; }
.price ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.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 { margin-top: auto; width: 100%; }

/* 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; }

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