/* Skylake Medical Associates — Library Stylesheet.
   Sections: TOKENS, BASE, COMPONENTS (each component carries a per-block id marker).
   All selectors scoped under .pb-scope; block classes are bare (wrapper added by assemble).
   Extracted from approved Podiatrist + Exosomes v7. Spec in design.md; interactivity in components.js. */

/* ========================================================================== *
 *  TOKENS
 * ========================================================================== */
:root {
  /* Indigo — бренд */
  --indigo-900:#0d0b2e; --indigo-800:#191654; --indigo-700:#262477;
  --indigo-600:#3a3798; --indigo-400:#7c79c4; --indigo-100:#e5e4f2; --indigo-50:#f4f3fa;
  /* Cyan — акцент №1 */
  --cyan-700:#1f6b85; --cyan-600:#267f9e; --cyan-500:#2f9bc0;
  --cyan-400:#5ab2cf; --cyan-200:#bfdfeb; --cyan-100:#e0eff5; --cyan-50:#f0f7fa;
  /* Mint — акцент №2 (dark CTA) */
  --mint-600:#2a8f76; --mint-500:#3bb594; --mint-200:#c9ead9;
  /* Ink — текст */
  --ink-900:#0e0d1f; --ink-700:#2a2940; --ink-500:#5c5b72; --ink-400:#8988a0; --ink-300:#b9b8cb;
  /* Paper — фоны */
  --paper-0:#ffffff; --paper-50:#fafaf7; --paper-100:#f5f5ef;
  --paper-cool-50:#f7f8fb; --paper-cool-100:#eef0f6;
  /* Семантические границы */
  --line:rgba(25,22,84,.10); --line-soft:rgba(25,22,84,.06);
  /* Радиусы */
  --r-sm:6px; --r-md:12px; --r-lg:20px; --r-pill:999px;
  /* Тени */
  --shadow-sm:0 1px 2px #0e0d1f0f, 0 1px 1px #0e0d1f0a;
  --shadow-md:0 10px 30px -12px #0e0d1f2e, 0 2px 6px #0e0d1f0f;
  --shadow-lg:0 30px 60px -20px #19165440;
  /* Типографика */
  --font-serif:"Fraunces", Georgia, serif;
  --font-humanist:"Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-mono:"JetBrains Mono", ui-monospace, Menlo, monospace;
  /* Motion */
  --ease-out:cubic-bezier(.22,1,.36,1); --dur-hover:.15s; --dur-reveal:.8s;
  /* Layout */
  --landing-maxw:1280px; --gutter:40px; --section-y:96px;
}

/* ========================================================================== *
 *  BASE — reset, scope root, layout rhythm, section modifiers, typography,
 *         buttons, motion. Каждый класс объявлен на первом уровне под .pb-scope.
 * ========================================================================== */
.pb-scope, .pb-scope *, .pb-scope *::before, .pb-scope *::after { box-sizing: border-box; }
.pb-scope {
  font-family: var(--font-humanist); color: var(--ink-900); background: var(--paper-50);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; line-height: 1.5;
}
.pb-scope img, .pb-scope svg { display: block; max-width: 100%; }
.pb-scope a { color: inherit; }

/* Layout */
.pb-scope .container { max-width: var(--landing-maxw); margin: 0 auto; padding: 0 var(--gutter); }
.pb-scope section { padding: var(--section-y) 0; }
/* Section modifiers (first-level, чтобы валидатор видел объявление) */
.pb-scope .tight  { padding: 64px 0; }
.pb-scope .paper  { background: var(--paper-50); }
.pb-scope .cool   { background: var(--paper-cool-50); }
.pb-scope .mint   { background: var(--cyan-100); }
.pb-scope .cyan   { background: var(--mint-200); }
.pb-scope .indigo { background: var(--indigo-800); color: #fff; }

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

/* Typography utilities */
.pb-scope .eyebrow {
  font-family: var(--font-mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan-600); font-size: 11px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 18px;
}
.pb-scope .line { width: 32px; height: 1px; background: var(--cyan-500); display: inline-block; }
.pb-scope .on-dark { color: var(--mint-500); }
.pb-scope .eyebrow.on-dark .line { background: var(--mint-500); }
.pb-scope .h-display {
  font-family: var(--font-serif); font-weight: 400; font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02; letter-spacing: -.02em; color: var(--indigo-800); margin: 0; text-wrap: pretty;
}
.pb-scope .h-display em { font-style: italic; color: var(--cyan-600); }
.pb-scope .h-display.on-dark { color: #fff; }
.pb-scope .h-display.on-dark em { color: var(--cyan-400); }
.pb-scope .lede { font-size: 17px; line-height: 1.6; color: var(--ink-700); max-width: 48ch; margin: 0; }
.pb-scope .lede.on-dark { color: rgba(255,255,255,.78); }
.pb-scope .section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.pb-scope .center { grid-template-columns: 1fr; text-align: center; }
.pb-scope .section-head.center .eyebrow { justify-content: center; }
.pb-scope .section-head.center .lede { margin: 16px auto 0; }
.pb-scope .minimal { grid-template-columns: 1fr; gap: 14px; align-items: start; margin-bottom: 44px; }
.pb-scope .section-head.minimal .lede { max-width: 64ch; }

/* Buttons */
.pb-scope .btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: var(--r-pill);
  font-family: var(--font-humanist); font-size: 15px; font-weight: 600; line-height: 1; text-decoration: none;
  white-space: nowrap; border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur-hover), background var(--dur-hover), color var(--dur-hover), box-shadow var(--dur-hover);
}
.pb-scope .btn-primary { background: var(--indigo-800); color: #fff; }
.pb-scope .btn-primary:hover { background: var(--indigo-700); transform: translateY(-1px); }
.pb-scope .btn-mint { background: var(--cyan-500); color: #fff; }
.pb-scope .btn-mint:hover { background: var(--cyan-600); }
.pb-scope .btn-ghost { background: transparent; color: var(--indigo-800); border-color: var(--indigo-800); }
.pb-scope .btn-ghost:hover { background: var(--indigo-800); color: #fff; }

/* Shared inline-content classes (объявлены на первом уровне) */
.pb-scope .actions { display: flex; gap: 12px; flex-shrink: 0; }
.pb-scope .tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan-600); }
.pb-scope .sub { font-size: 12.5px; color: var(--ink-500); }

/* Motion */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ring-pulse { 0% { opacity: .85; transform: scale(1); } to { opacity: 0; transform: scale(1.75); } }
.pb-scope .js-reveal { opacity: 0; transform: translateY(20px); }
.pb-scope .js-reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .pb-scope .js-reveal { opacity: 1; transform: none; transition: none; }
  .pb-scope .vid-btn::before { animation: none; }
}

/* ========================================================================== *
 *  COMPONENTS — one block each; every component carries its own id marker (validator gate)
 * ========================================================================== */

/* [nav] */
.pb-scope .nav { position: sticky; top: 0; z-index: 50; background: rgba(250,250,247,.88); backdrop-filter: blur(14px); border-bottom: 1px solid #19165414; }
.pb-scope .nav-inner { max-width: var(--landing-maxw); margin: 0 auto; padding: 16px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pb-scope .brand { display: flex; align-items: center; gap: 12px; color: var(--indigo-800); font-weight: 700; font-size: 18px; letter-spacing: -.01em; text-decoration: none; }
.pb-scope .brand-mark { width: 32px; height: 32px; border-radius: 999px; background: var(--indigo-800); color: var(--cyan-400); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.pb-scope .brand-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); margin-left: 8px; }
.pb-scope .nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-700); }
.pb-scope .nav-links a { text-decoration: none; }
.pb-scope .nav-links a:hover { color: var(--indigo-800); }
.pb-scope .nav-links.is-open { display: flex; }
.pb-scope .nav-cta { display: flex; align-items: center; gap: 10px; }
.pb-scope .nav-phone { color: var(--indigo-800); font-size: 14px; font-weight: 600; text-decoration: none; }
.pb-scope .mobile-menu-btn { display: none; background: none; border: 0; color: var(--indigo-800); cursor: pointer; padding: 8px; font-size: 20px; }

/* [hero] */
.pb-scope .hero { padding: 72px 0 96px; }
.pb-scope .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.pb-scope .hero h1 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(48px, 6.5vw, 80px); line-height: 1.0; letter-spacing: -.03em; color: var(--indigo-800); margin: 0; }
.pb-scope .hero h1 em { font-style: italic; color: var(--cyan-600); }
.pb-scope .hero .lede { margin-top: 22px; }
.pb-scope .hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.pb-scope .hero-meta { margin-top: 44px; padding-top: 28px; border-top: 1px solid #1916541f; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pb-scope .k { font-family: var(--font-serif); color: var(--indigo-800); font-size: 28px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 4px; }
.pb-scope .v { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500); }
.pb-scope .hero-art { position: relative; height: 620px; }
.pb-scope .hero-art .ph-img { position: absolute; inset: 0; }
.pb-scope .float-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 18px 20px; min-width: 200px; }
.pb-scope .lbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 8px; }
.pb-scope .val { font-family: var(--font-serif); font-size: 30px; line-height: 1; color: var(--indigo-800); }
.pb-scope .bottom-left { bottom: 32px; left: -20px; min-width: 220px; }
.pb-scope .top-right { top: 24px; right: -16px; }

/* [features] */
.pb-scope .card { background: var(--paper-0); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.pb-scope .link { transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.pb-scope .card.link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pb-scope .card.dark { background: var(--indigo-800); border: none; color: #fff; }
.pb-scope .card h3 { font-family: var(--font-serif); font-weight: 400; font-size: 24px; letter-spacing: -.01em; color: var(--indigo-800); margin: 0 0 10px; line-height: 1.15; }
.pb-scope .card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-700); }
.pb-scope .icon-box { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--cyan-100); display: grid; place-items: center; font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--cyan-600); margin-bottom: 18px; }

/* [process] */
.pb-scope .process { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #19165426; }
.pb-scope .step { padding: 40px 32px 8px; border-right: 1px solid #19165426; }
.pb-scope .step:last-child { border-right: none; }
.pb-scope .step-num { font-family: var(--font-serif); font-style: italic; font-size: 80px; line-height: .9; letter-spacing: -.04em; color: var(--cyan-500); }
.pb-scope .step h3 { font-family: var(--font-serif); font-weight: 400; font-size: 26px; letter-spacing: -.01em; color: var(--indigo-800); margin: 14px 0 10px; line-height: 1.15; }
.pb-scope .step p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-700); }
.pb-scope .step .tag { margin-top: 12px; display: block; }

/* [statement] */
.pb-scope .statement-band { text-align: center; max-width: 980px; margin: 0 auto; }
.pb-scope .statement-band .eyebrow { justify-content: center; }
.pb-scope .q { font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 4.2vw, 46px); line-height: 1.18; letter-spacing: -.02em; color: #fff; margin: 18px 0 0; }
.pb-scope .q em { font-style: italic; color: var(--cyan-400); }
.pb-scope .src { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 28px; }

/* [reviews] */
.pb-scope .review-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.pb-scope .review-scorecard { background: var(--indigo-800); color: #fff; border-radius: var(--r-lg); padding: 36px 32px; display: flex; flex-direction: column; gap: 6px; }
.pb-scope .meta-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.pb-scope .big { font-family: var(--font-serif); font-size: 88px; line-height: 1; letter-spacing: -.03em; color: #fff; font-weight: 400; display: flex; align-items: baseline; gap: 8px; }
.pb-scope .star { color: var(--cyan-400); font-size: 44px; }
.pb-scope .stars { color: var(--cyan-400); letter-spacing: 4px; font-size: 18px; }
.pb-scope .desc { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.75); margin-top: 16px; }
.pb-scope .review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pb-scope .review-card { background: var(--paper-0); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 24px 22px; display: flex; flex-direction: column; }
.pb-scope .quote { font-size: 15px; line-height: 1.5; color: var(--ink-700); margin: 0; }
.pb-scope .who { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan-600); margin-top: 14px; }

/* [lead-form] */
.pb-scope .lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: center; }
.pb-scope .field { display: flex; flex-direction: column; gap: 6px; }
.pb-scope .field label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); }
.pb-scope .field input { border: 1px solid var(--line); border-radius: var(--r-pill); padding: 12px 18px; font-family: var(--font-humanist); font-size: 15px; color: var(--ink-900); background: var(--paper-50); outline: none; transition: border-color .15s; }
.pb-scope .field input:focus { border-color: var(--cyan-500); }
.pb-scope .field input.is-invalid { border-color: #b0464b; }
.pb-scope .note { grid-column: 1 / -1; font-size: 12.5px; color: var(--ink-500); margin: 0; }

/* [cta-bar] */
.pb-scope .cta-bar { background: var(--cyan-500); color: #fff; border-radius: 24px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pb-scope .cta-bar.indigo { background: var(--indigo-800); }
.pb-scope .cta-bar h3 { font-family: var(--font-serif); font-weight: 400; font-size: 30px; line-height: 1.15; letter-spacing: -.01em; margin: 0; max-width: 28ch; }
.pb-scope .cta-bar h3 em { font-style: italic; font-weight: 500; color: var(--indigo-900); }
.pb-scope .cta-bar.indigo h3 em { color: var(--mint-500); }
.pb-scope .cta-bar.indigo .btn-mint { background: var(--mint-500); color: #06241c; }
.pb-scope .cta-bar.indigo .btn-mint:hover { background: var(--mint-600); color: #fff; }
.pb-scope .cta-bar.indigo .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.pb-scope .cta-bar.indigo .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* [faq] */
.pb-scope .faq-list { border-top: 1px solid #1916541f; display: flex; flex-direction: column; gap: 2px; }
.pb-scope .faq { border-bottom: 1px solid #1916541f; padding: 22px 0; }
.pb-scope .faq summary { list-style: none; cursor: pointer; font-family: var(--font-serif); font-weight: 400; font-size: 22px; letter-spacing: -.01em; color: var(--indigo-800); display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.25; }
.pb-scope .faq summary::-webkit-details-marker { display: none; }
.pb-scope .faq summary::after { content: "+"; font-family: var(--font-humanist); color: var(--cyan-600); font-size: 28px; font-weight: 300; flex-shrink: 0; transition: transform .3s; }
.pb-scope .faq[open] summary::after { transform: rotate(45deg); }
.pb-scope .a { font-size: 15px; line-height: 1.65; color: var(--ink-700); margin-top: 14px; max-width: 62ch; }

/* [video] */
.pb-scope .vid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pb-scope .vid-card { background: #fff; border: 1px solid #19165412; border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s, box-shadow .22s; }
.pb-scope .vid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pb-scope .vid-wrap { position: relative; aspect-ratio: 9 / 16; background: var(--indigo-900); overflow: hidden; }
.pb-scope .vid-wrap video, .pb-scope .vid-wrap img { object-fit: cover; width: 100%; height: 100%; display: block; }
.pb-scope .vid-overlay { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; background: linear-gradient(#0d0b2e2e 0%, #0d0b2e14 45%, #0d0b2eb3 100%); transition: background .22s; }
.pb-scope .vid-card:hover .vid-overlay { background: linear-gradient(#0d0b2e4d 0%, #0d0b2e2e 45%, #0d0b2ecc 100%); }
.pb-scope .vid-num { position: absolute; top: 12px; left: 12px; padding: 3px 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #ffffffd1; background: #0d0b2e8c; backdrop-filter: blur(6px); border-radius: 4px; }
.pb-scope .vid-btn { position: relative; width: 64px; height: 64px; display: flex; justify-content: center; align-items: center; color: var(--cyan-400); background: #191654e6; border: 2px solid #5ab2cf80; border-radius: 50%; box-shadow: 0 10px 36px -8px #0d0b2ea6; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.pb-scope .vid-btn::before { content: ""; position: absolute; inset: -10px; border: 1px solid #2f9bc059; border-radius: 50%; animation: ring-pulse 2.6s ease-out infinite; }
.pb-scope .vid-card:hover .vid-btn { background: var(--cyan-500); border-color: var(--cyan-400); color: #fff; transform: scale(1.1); }
.pb-scope .vid-caption { position: absolute; bottom: 14px; left: 14px; right: 14px; color: #fff; pointer-events: none; }
.pb-scope .vid-caption h4 { margin: 0 0 4px; font-family: var(--font-serif); font-size: 19px; font-weight: 500; line-height: 1.15; letter-spacing: -.01em; text-shadow: 0 2px 12px #0006; }
.pb-scope .vid-caption .sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fffc; }

/* [final-cta] */
.pb-scope .final-cta { position: relative; overflow: hidden; background: var(--indigo-800); color: #fff; border-radius: 28px; padding: 88px 40px; text-align: center; }
.pb-scope .final-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -10%, rgba(47,155,192,.28), transparent 60%); pointer-events: none; }
.pb-scope .final-cta > * { position: relative; z-index: 1; }
.pb-scope .final-cta .eyebrow { color: var(--mint-500); justify-content: center; }
.pb-scope .final-cta .eyebrow .line { background: var(--mint-500); }
.pb-scope .final-cta h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -.02em; color: #fff; margin: 16px 0 28px; }
.pb-scope .final-cta h2 em { font-style: italic; color: var(--cyan-400); }
.pb-scope .final-cta .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pb-scope .final-cta .btn-mint { background: var(--mint-500); color: #06241c; }
.pb-scope .final-cta .btn-mint:hover { background: var(--mint-600); color: #fff; }
.pb-scope .final-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.pb-scope .final-cta .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* [footer] */
.pb-scope .site-footer { background: var(--indigo-900); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.pb-scope .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.pb-scope .foot-col h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: 0 0 16px; font-weight: 500; }
.pb-scope .foot-col a { display: block; color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; padding: 4px 0; }
.pb-scope .foot-col a:hover { color: #fff; }
.pb-scope .foot-brand { font-family: var(--font-serif); font-size: 22px; color: #fff; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 12px; }
.pb-scope .foot-mission { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.7); max-width: 36ch; }
.pb-scope .foot-bot { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* [prose] */
.pb-scope .prose { max-width: 74ch; }
.pb-scope .prose > .h-display { font-size: clamp(30px, 3.4vw, 42px); margin: 0 0 26px; }
.pb-scope .prose p { font-size: 16.5px; line-height: 1.72; color: var(--ink-700); margin: 0 0 18px; max-width: 68ch; }
.pb-scope .prose p:last-child { margin-bottom: 0; }
.pb-scope .prose strong { color: var(--ink-900); font-weight: 600; }
.pb-scope .prose em { font-style: italic; }
.pb-scope .prose small { font-size: 13px; color: var(--ink-500); }
.pb-scope .prose h3 { font-family: var(--font-serif); font-weight: 400; font-size: 25px; letter-spacing: -.01em; color: var(--indigo-800); margin: 38px 0 12px; line-height: 1.18; }
.pb-scope .prose ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 11px; }
.pb-scope .prose ul li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.6; color: var(--ink-700); }
.pb-scope .prose ul li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-500); }
.pb-scope .prose .actions { margin-top: 26px; }
.pb-scope .prose details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; margin: 6px 0 20px; }
.pb-scope .prose summary { list-style: none; cursor: pointer; font-family: var(--font-serif); font-size: 20px; color: var(--indigo-800); display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.25; }
.pb-scope .prose summary::-webkit-details-marker { display: none; }
.pb-scope .prose summary::after { content: "+"; font-family: var(--font-humanist); color: var(--cyan-600); font-size: 26px; font-weight: 300; flex-shrink: 0; transition: transform .3s; }
.pb-scope .prose details[open] summary::after { transform: rotate(45deg); }
.pb-scope .prose details p { margin-top: 14px; margin-bottom: 0; }

/* Image placeholder (shared, used by hero) */
.pb-scope .ph, .pb-scope .ph-img { border-radius: var(--r-md); border: 1px solid var(--line); position: relative; overflow: hidden; background: repeating-linear-gradient(135deg, #1916540f 0 10px, #19165405 10px 20px), var(--cyan-100); display: flex; align-items: flex-end; padding: 18px; min-height: 220px; }
.pb-scope .ph-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--indigo-800); background: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 999px; }
.pb-scope .has-photo { padding: 0; background: none; }
.pb-scope .has-photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ========================================================================== *
 *  RESPONSIVE
 * ========================================================================== */
@media (max-width: 1024px) {
  .pb-scope .container { padding: 0 24px; }
  .pb-scope .nav-inner { padding: 16px 24px; }
  .pb-scope .nav-links { display: none; }
  .pb-scope .nav-links.is-open { display: flex; position: absolute; top: 62px; right: 24px; flex-direction: column; background: #fff; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md); }
  .pb-scope .mobile-menu-btn { display: inline-flex; }
  .pb-scope .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pb-scope .hero-art { height: 420px; }
  .pb-scope .top-right { top: 16px; right: 0; }
  .pb-scope .bottom-left { bottom: 16px; left: 0; }
  .pb-scope .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .pb-scope .grid-3, .pb-scope .grid-4 { grid-template-columns: 1fr 1fr; }
  .pb-scope .review-wrap { grid-template-columns: 1fr; }
  .pb-scope .lead-form { grid-template-columns: 1fr; }
  .pb-scope .process { grid-template-columns: 1fr; }
  .pb-scope .step { border-right: none; border-bottom: 1px solid #19165426; padding: 28px 0 8px; }
  .pb-scope .step:last-child { border-bottom: none; }
  .pb-scope .vid-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-scope .cta-bar { flex-direction: column; align-items: stretch; text-align: center; padding: 28px; gap: 18px; }
  .pb-scope .cta-bar h3 { font-size: 24px; max-width: none; }
  .pb-scope .cta-bar .actions { flex-direction: column; }
  .pb-scope .cta-bar .btn { justify-content: center; }
  .pb-scope .final-cta { padding: 56px 28px; }
  .pb-scope .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pb-scope .foot-bot { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 640px) {
  .pb-scope section { padding: 64px 0; }
  .pb-scope .hero { padding: 40px 0 64px; }
  .pb-scope .hero h1 { font-size: 44px; }
  .pb-scope .hero-meta { grid-template-columns: 1fr 1fr; }
  .pb-scope .grid-2, .pb-scope .grid-3, .pb-scope .grid-4 { grid-template-columns: 1fr; }
  .pb-scope .review-grid { grid-template-columns: 1fr; }
  .pb-scope .vid-grid { grid-template-columns: 1fr 1fr; }
  .pb-scope .foot-grid { grid-template-columns: 1fr; }
}
