/* ============================================================
   Reddketing landing page
   ============================================================ */

:root {
  --bg:        #08010f;
  --bg-alt:    #0d0518;
  --surface:   rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line:      rgba(255, 255, 255, 0.09);
  --line-2:    rgba(255, 255, 255, 0.16);

  --text:      #EDEAF5;
  --muted:     #9A93AC;
  --dim:       #6F6883;

  --accent:    #FF4500;
  --accent-2:  #FF8A1F;
  --accent-dim: rgba(255, 69, 0, 0.14);

  --radius:    14px;
  --radius-lg: 20px;
  --wrap:      1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 6px 26px rgba(255, 69, 0, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(255, 69, 0, 0.42); }
.btn-ghost {
  background: var(--surface-2);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); }
.btn-sm  { padding: 9px 18px;  font-size: 14px; }
.btn-lg  { padding: 15px 30px; font-size: 16px; }
.btn-xl  { padding: 18px 42px; font-size: 18px; border-radius: 12px; }

.link-arrow { color: var(--accent-2); font-weight: 600; white-space: nowrap; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 1, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,1,15,.9); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #fff; font-size: 17px; font-weight: 900;
  box-shadow: 0 3px 14px rgba(255,69,0,.4);
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .16s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 96px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -340px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(255,69,0,.20) 0%, rgba(255,69,0,.06) 38%, transparent 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  border-radius: 100px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  margin-bottom: 28px;
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(255,138,31,.18);
}

h1 {
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.grad {
  background: linear-gradient(120deg, var(--accent) 10%, var(--accent-2) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 680px; margin: 0 auto 36px;
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--muted);
  line-height: 1.68;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--dim); }

.engines { margin-top: 68px; }
.engines-label {
  display: block; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dim); font-weight: 600; margin-bottom: 18px;
}
.engines-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.engine {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  font-size: 14px; font-weight: 600; color: var(--muted);
}

/* ---------- Stat band ---------- */
.statband {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 44px 0;
}
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 0 8px; }
.stat-num {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.15;
}
.stat-num span { font-size: .48em; font-weight: 700; }
.stat-lbl { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 8px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--accent-2); margin-bottom: 16px;
}
.h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14; font-weight: 800; letter-spacing: -.032em;
  margin-bottom: 20px;
}
.lede { font-size: 17px; color: var(--muted); max-width: 660px; line-height: 1.7; margin-bottom: 52px; }
.center { text-align: center; }
.lede.center { margin-left: auto; margin-right: auto; }
.eyebrow.center { text-align: center; }

/* ---------- Problem / wall ---------- */
.wall-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.wall-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, background .2s, transform .2s;
}
.wall-card:hover { border-color: rgba(255,69,0,.32); background: var(--surface-2); transform: translateY(-3px); }
.wall-tag {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; color: #FF6B3D;
  background: var(--accent-dim);
  border: 1px solid rgba(255,69,0,.24);
  padding: 4px 11px; border-radius: 7px;
  margin-bottom: 14px;
}
.wall-card p { font-size: 14.5px; color: var(--muted); line-height: 1.62; }

.quote-block {
  margin-top: 44px;
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 26px;
  max-width: 780px;
}
.quote-block p { font-size: 19px; line-height: 1.62; color: #D6D0E2; }
.quote-block strong { color: var(--text); }

/* ---------- Proof: posts ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.post-card.featured {
  border-color: rgba(255,69,0,.4);
  background: linear-gradient(160deg, rgba(255,69,0,.10), rgba(255,255,255,.02));
  box-shadow: 0 0 44px rgba(255,69,0,.10) inset;
}
.post-card.total {
  border-color: rgba(255,138,31,.45);
  background: linear-gradient(160deg, rgba(255,138,31,.14), rgba(255,255,255,.02));
}
.post-meta { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 12px; }
.post-views {
  font-size: 40px; font-weight: 800; letter-spacing: -.035em; line-height: 1;
  display: flex; align-items: baseline; gap: 9px;
}
.post-views span { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.post-stats { display: flex; gap: 10px; margin-top: 18px; }
.ps {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 8px;
}
.ps.up { color: #FF6B3D; background: var(--accent-dim); border-color: rgba(255,69,0,.24); }

.fineprint { margin-top: 28px; font-size: 14.5px; color: var(--dim); max-width: 700px; line-height: 1.65; }

/* ---------- Analytics ---------- */
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.an-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.an-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.an-label { font-size: 12.5px; color: var(--dim); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.an-value { font-size: 42px; font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.an-sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.an-badge {
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--muted);
  white-space: nowrap;
}
.an-badge.up { color: #4ADE80; background: rgba(74,222,128,.10); border-color: rgba(74,222,128,.26); }

.an-figure {
  min-height: 190px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.015);
  display: grid; place-items: center;
  padding: 20px;
  overflow: hidden;
}
.an-figure.has-chart {
  min-height: 0;
  border: 1px solid var(--line);
  border-style: solid;
  background: linear-gradient(180deg, rgba(255,69,0,.05), rgba(255,255,255,.012));
  padding: 16px 14px 10px;
  display: block;
}
.an-figure.has-shot {
  min-height: 0;
  border: 1px solid var(--line);
  border-style: solid;
  background: rgba(255,255,255,.02);
  padding: 10px;
  display: block;
}
.an-figure img { width: 100%; height: auto; border-radius: 10px; display: block; }
.shot-link { display: block; border-radius: 10px; overflow: hidden; transition: opacity .18s ease; }
.shot-link:hover { opacity: .88; }
.an-placeholder { font-size: 13.5px; color: var(--dim); text-align: center; line-height: 1.8; }
.an-placeholder code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px; color: var(--accent-2);
  background: var(--accent-dim); padding: 3px 8px; border-radius: 6px;
}
.an-src {
  font-size: 12px; color: var(--dim); margin-top: 12px;
  letter-spacing: .01em;
}
.an-note { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-top: 16px; }

/* ---------- AEO ---------- */
.aeo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aeo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.aeo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.aeo-num {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 700; margin-bottom: 14px;
}
.aeo-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.aeo-card p { font-size: 15px; color: var(--muted); line-height: 1.68; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--surface);
  transition: border-color .2s, transform .2s;
}
.svc-card:hover { border-color: rgba(255,69,0,.3); transform: translateY(-4px); }
.svc-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(255,69,0,.26);
  display: grid; place-items: center;
  color: var(--accent-2); font-weight: 800; font-size: 15px;
  margin-bottom: 20px;
}
.svc-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.3; }
.svc-card > p { font-size: 15px; color: var(--muted); line-height: 1.66; margin-bottom: 20px; }
.svc-list { list-style: none; display: grid; gap: 10px; }
.svc-list li {
  font-size: 14.5px; color: var(--muted);
  padding-left: 24px; position: relative; line-height: 1.5;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent);
}

.pricing-note {
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 15.5px; color: var(--muted); line-height: 1.66;
}
.pricing-note strong { color: var(--text); }

/* ---------- Process ---------- */
.proc { list-style: none; display: grid; gap: 0; max-width: 860px; }
.proc-step {
  display: grid; grid-template-columns: 62px 1fr; gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.proc-step:last-child { border-bottom: 1px solid var(--line); }
.proc-n {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 18px rgba(255,69,0,.3);
}
.proc-body h3 { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.proc-body p { font-size: 15.5px; color: var(--muted); line-height: 1.7; }

/* ---------- DIY ---------- */
.diy {
  max-width: 800px; margin: 0 auto; text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255,69,0,.07), rgba(255,255,255,.015));
  padding: 60px 48px;
}
.diy .h2 { margin-bottom: 18px; }
.diy-lede { font-size: 18px; color: #CFC8DD; margin-bottom: 24px; }
.diy-body { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; text-align: left; }
.diy-body strong { color: var(--accent-2); }
.diy .btn { margin-top: 18px; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tst {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 30px 28px;
  position: relative;
}
.tst::before {
  content: '\201C';
  position: absolute; top: 6px; right: 22px;
  font-size: 74px; line-height: 1; color: rgba(255,69,0,.16);
  font-family: Georgia, serif;
}
.tst p { font-size: 16px; line-height: 1.7; color: #D8D2E4; margin-bottom: 18px; position: relative; }
.tst cite {
  font-style: normal; font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--accent-2);
}

.anon-note {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px; color: var(--muted); line-height: 1.68;
}
.anon-note strong { color: var(--text); display: block; margin-bottom: 5px; }

.niches { margin-top: 40px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.niches-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.niche {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--surface-2);
  font-size: 14.5px; font-weight: 600;
}

/* ---------- CTA ---------- */
.cta { position: relative; padding: 116px 0; text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 620px;
  background: radial-gradient(ellipse at center, rgba(255,69,0,.24) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta .btn { margin-top: 12px; }
.cta-alt { margin-top: 22px; font-size: 15px; color: var(--muted); }
.cta-alt a { color: var(--accent-2); font-weight: 600; }
.cta-alt a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 52px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 360px; }
.footer-brand p { font-size: 14.5px; color: var(--muted); margin-top: 14px; line-height: 1.62; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.footer-links a { font-size: 14.5px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bot {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--dim);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .wall-grid   { grid-template-columns: 1fr 1fr; }
  .posts-grid  { grid-template-columns: 1fr 1fr; }
  .aeo-grid,
  .svc-grid    { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: 1fr; }
  .statband-grid  { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .nav-links   { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 132px 0 72px; }
  h1 br, .h2 br { display: none; }
  .section { padding: 72px 0; }
  .wall-grid, .posts-grid, .tst-grid { grid-template-columns: 1fr; }
  .statband-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
  .diy { padding: 40px 24px; }
  .proc-step { grid-template-columns: 1fr; gap: 16px; }
  .quote-block p { font-size: 17px; }
  .an-head { flex-direction: column; }
  .footer-bot { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .post-card:hover, .svc-card:hover, .wall-card:hover { transform: none; }
}

/* ============================================================
   Playbook page
   ============================================================ */

.nav-links a.active { color: var(--accent-2); }

.pb-hero { position: relative; padding: 150px 0 64px; overflow: hidden; }
.pb-hero .wrap { position: relative; }
.pb-back {
  display: inline-block; font-size: 14px; color: var(--muted);
  margin-bottom: 28px; transition: color .16s;
}
.pb-back:hover { color: var(--accent-2); }
.pb-title {
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.06;
  font-weight: 800; letter-spacing: -.035em; margin-bottom: 20px;
}
.pb-sub { font-size: clamp(16px, 1.7vw, 20px); color: var(--muted); max-width: 620px; line-height: 1.6; }
.pb-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; font-size: 13.5px; color: var(--dim);
}
.pb-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--dim); }

.pb-layout {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: 64px; align-items: start;
  padding-top: 32px; padding-bottom: 100px;
}

/* table of contents */
.pb-toc { position: sticky; top: 92px; }
.pb-toc-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); font-weight: 700; margin-bottom: 16px;
}
.pb-toc nav { display: grid; gap: 2px; border-left: 1px solid var(--line); }
.pb-toc a {
  display: flex; gap: 9px; align-items: baseline;
  font-size: 13.5px; color: var(--muted); line-height: 1.4;
  padding: 7px 0 7px 16px; margin-left: -1px;
  border-left: 2px solid transparent;
  transition: color .16s, border-color .16s;
}
.pb-toc a span { color: var(--dim); font-size: 11.5px; font-weight: 700; min-width: 15px; }
.pb-toc a:hover { color: var(--text); }
.pb-toc a.current { color: var(--accent-2); border-left-color: var(--accent); }
.pb-toc a.current span { color: var(--accent-2); }

/* article */
.pb-body { max-width: 720px; }
.pb-sec { padding: 44px 0; border-top: 1px solid var(--line); }
.pb-sec:first-child { border-top: 0; padding-top: 8px; }
.pb-num {
  font-size: 12px; letter-spacing: .16em; font-weight: 800;
  color: var(--accent-2); margin-bottom: 12px;
}
.pb-body h2 {
  font-size: clamp(24px, 3vw, 33px); line-height: 1.18;
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px;
}
.pb-h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  margin: 34px 0 12px; color: var(--text);
}
.pb-body p { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.pb-body p strong, .pb-body li strong { color: var(--text); font-weight: 700; }
.pb-body em { color: #D8D2E4; font-style: italic; }
.pb-lead {
  font-size: 19px !important; line-height: 1.6 !important;
  color: #DAD4E6 !important; font-weight: 500;
  border-left: 3px solid var(--accent); padding-left: 20px; margin: 26px 0 !important;
}
.pb-body ul, .pb-body ol { margin: 0 0 20px; padding: 0; list-style: none; }
.pb-body ul li {
  font-size: 16px; line-height: 1.7; color: var(--muted);
  padding-left: 24px; position: relative; margin-bottom: 11px;
}
.pb-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 2px; background: var(--accent);
}
.pb-steps { counter-reset: st; }
.pb-steps li {
  counter-increment: st; font-size: 16px; line-height: 1.7; color: var(--muted);
  padding-left: 40px; position: relative; margin-bottom: 14px;
}
.pb-steps li::before {
  content: counter(st); position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--accent-dim); border: 1px solid rgba(255,69,0,.26);
  color: var(--accent-2); font-size: 12.5px; font-weight: 800;
  display: grid; place-items: center;
}

/* definition blocks */
.pb-defs { margin: 0 0 22px; }
.pb-defs dt {
  font-size: 16.5px; font-weight: 700; color: var(--text);
  margin-top: 20px; margin-bottom: 5px;
}
.pb-defs dt::before { content: '\2192'; color: var(--accent); margin-right: 9px; }
.pb-defs dd { margin: 0 0 0 26px; font-size: 16px; line-height: 1.7; color: var(--muted); }

/* callouts */
.pb-note, .pb-warn {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px; margin: 26px 0;
  font-size: 15.5px; line-height: 1.7; color: var(--muted);
}
.pb-warn { border-left-color: #FF8A1F; background: linear-gradient(120deg, rgba(255,138,31,.07), rgba(255,255,255,.015)); }
.pb-note strong, .pb-warn strong { color: var(--text); display: block; margin-bottom: 5px; }

/* card rows */
.pb-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.pb-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 24px 22px;
}
.pb-card h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.pb-card p { font-size: 15px !important; line-height: 1.65 !important; margin: 0 !important; }

.pb-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.pb-wall-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 22px 20px;
}
.pb-wall-card p { font-size: 14.5px !important; line-height: 1.62 !important; margin: 0 !important; }

/* timeline */
.pb-timeline { margin: 26px 0 !important; }
.pb-timeline li {
  position: relative; padding-left: 26px; padding-bottom: 24px;
  border-left: 2px solid var(--line); margin-bottom: 0;
}
.pb-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.pb-timeline li::before {
  content: ''; position: absolute; left: -7px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
}
.pb-tl-when {
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 7px;
}
.pb-timeline p { margin: 0 !important; font-size: 15.5px !important; }

.pb-nots li { padding-left: 26px; }
.pb-nots li::before { background: #FF6B3D; }

@media (max-width: 1000px) {
  .pb-layout { grid-template-columns: 1fr; gap: 0; }
  .pb-toc { display: none; }
  .pb-cards, .pb-wall { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pb-hero { padding: 124px 0 48px; }
  .pb-sec { padding: 34px 0; }
  .pb-lead { font-size: 17.5px !important; padding-left: 16px; }
  .pb-body p, .pb-body ul li { font-size: 16px; }
}
