/* ============================================================
   PROFITHIVE — "How to Scale Amazon KDP Sales Before the Christmas Rush"
   Theme: successfulbusinessonline.org / LeadsLeap Hidden Profit System
   Fonts: Plus Jakarta Sans
   ============================================================ */

:root {
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Ink / darks */
  --ink: #0f172a;
  --ink-2: #1e293b;
  --ink-3: #334155;

  /* Text on dark */
  --tx-dark: #e2e8f0;
  --tx-dark-dim: #94a3b8;
  --tx-dark-softer: #cbd5e1;

  /* Text on light */
  --tx: #0f172a;
  --tx-dim: #475569;

  /* Blues (primary) */
  --blue: #0ea5e9;
  --blue-d: #2563eb;
  --blue-deep: #0284c7;

  /* Greens (success) */
  --green: #10b981;
  --green-d: #059669;
  --green-deep: #047857;

  /* Ambers / golds (bonus / value) */
  --amber: #fcd34d;
  --gold: #f59e0b;
  --orange: #ea580c;

  /* Light backgrounds */
  --light: #f8fafc;
  --light-emerald: #ecfdf5;
  --white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.22);
  --glow-blue: 0 16px 42px rgba(14, 165, 233, 0.42);
  --glow-green: 0 16px 42px rgba(16, 185, 129, 0.42);
  --glow-gold: 0 16px 42px rgba(245, 158, 11, 0.42);

  --grad-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --grad-blue-h: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-gold: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  --grad-orange: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --grad-dark: linear-gradient(145deg, #0f172a, #1e293b);

  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 50px;

  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--tx);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.15; letter-spacing: -0.015em; }
p { margin: 0; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section--dark { background: var(--grad-dark); color: var(--tx-dark); }
.section--light { background: var(--light); color: var(--tx); }
.section--white { background: var(--white); color: var(--tx); }
.section--emerald { background: var(--light-emerald); color: var(--tx); }

/* Animated gradient text */
.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 6s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.grad-text--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 6s ease infinite;
}
.grad-text--green {
  background: var(--grad-green);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Eyebrow / pre-head ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.section--dark .eyebrow { color: #7dd3fc; background: rgba(56, 189, 248, 0.12); border-color: rgba(56, 189, 248, 0.25); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(56,189,248,.15); }

/* ---- Headings ---- */
.h-xl { font-size: clamp(2.1rem, 5vw, 3.7rem); }
.h-lg { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.h-md { font-size: clamp(1.4rem, 3vw, 2rem); }
.h-sm { font-size: clamp(1.1rem, 2.4vw, 1.4rem); }
.muted { color: var(--tx-dim); }
.section--dark .muted, .section--dark .lede { color: var(--tx-dark-dim); }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.7; }
.center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font); font-weight: 800; font-size: 1.08rem;
  padding: 18px 34px; border: none; cursor: pointer; border-radius: var(--radius-pill);
  color: #fff; background: var(--grad-blue); text-align: center;
  box-shadow: var(--glow-blue);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-120%);
  animation: sheen 3.4s ease infinite;
}
@keyframes sheen { 60% { transform: translateX(120%); } 100% { transform: translateX(120%); } }
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(14,165,233,.5); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--green { background: var(--grad-green); box-shadow: var(--glow-green); }
.btn--green:hover { box-shadow: 0 22px 55px rgba(16,185,129,.5); }
.btn--gold { background: var(--grad-gold); color: #3b2503; box-shadow: var(--glow-gold); }
.btn--gold:hover { box-shadow: 0 22px 55px rgba(245,158,11,.55); }
.btn--orange { background: var(--grad-orange); box-shadow: 0 16px 42px rgba(234,88,12,.45); }
.btn--lg { font-size: 1.25rem; padding: 22px 44px; }
.btn--pulse { animation: pulse 2.2s ease infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 42px rgba(14,165,233,.4); }
  50% { box-shadow: 0 16px 60px rgba(14,165,233,.75); }
}
.btn-note { display: block; margin-top: 12px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; opacity: .8; }

/* ---- Trust strip ---- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: center; font-weight: 700; font-size: .92rem; color: var(--tx-dark-softer); }
.trust-strip .st { display: inline-flex; align-items: center; gap: 8px; }
.st svg { width: 18px; height: 18px; flex: none; }

/* ---- Stars ---- */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }
.rating-line { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 700; }

/* ---- Check bullets ---- */
.checks { display: grid; grid-template-columns: 1fr; gap: 14px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; font-weight: 600; }
.check-ic {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-green); color: #fff; display: grid; place-items: center;
  box-shadow: var(--glow-green); margin-top: 2px;
}
.check-ic svg { width: 14px; height: 14px; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid #eef2f7; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card--dark { background: linear-gradient(160deg, rgba(30,41,59,.85), rgba(15,23,42,.9)); border: 1px solid rgba(148,163,184,.14); color: var(--tx-dark); }
.card--tint { background: linear-gradient(180deg, #ffffff, #f6fbfe); border: 1px solid #e8f3fb; }

/* ---- Diagrams / figure boxes ---- */
.figure {
  background: linear-gradient(180deg, #ffffff, #f6fbfe);
  border: 1px solid #e8f0fa; border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.figure--dark { background: linear-gradient(180deg, rgba(30,41,59,.9), rgba(15,23,42,.92)); border: 1px solid rgba(148,163,184,.15); }
.figure .figure-cap { text-align: center; font-size: .9rem; color: var(--tx-dim); margin-top: 20px; font-style: italic; }
.figure--dark .figure-cap { color: var(--tx-dark-dim); }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }

/* ---- Comparison "old vs new" ---- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cmp-side { border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; }
.cmp-side--old { background: linear-gradient(180deg, #fff, #fdf0f0); border: 1px solid #fbe0e0; }
.cmp-side--new { background: linear-gradient(180deg, #fff, #ecfdf5); border: 1px solid #d3f3e5; }
.cmp-head { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; margin-bottom: 18px; }
.cmp-head .c-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.cmp-side--old .c-ic { background: var(--grad-orange); }
.cmp-side--new .c-ic { background: var(--grad-green); }
.cmp ul li { display: flex; gap: 10px; padding: 9px 0; border-top: 1px dashed rgba(0,0,0,.07); font-size: .98rem; font-weight: 600; color: var(--tx-dim); }
.cmp-side--new ul li { color: var(--ink); }
.cmp .x, .cmp .y { flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; color: #fff; margin-top: 2px; }
.cmp .x { background: var(--grad-orange); } .cmp .y { background: var(--grad-green); }

/* ---- Value stack ---- */
.value-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px dashed rgba(15,23,42,.12); }
.value-row:last-child { border-bottom: none; }
.value-name { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.value-name .v-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.value-name .v-ic.blue { background: var(--grad-blue); }
.value-name .v-ic.green { background: var(--grad-green); }
.value-name .v-ic.gold { background: var(--grad-gold); color: #3b2503; }
.value-name .v-ic.orange { background: var(--grad-orange); }
.value-price { font-weight: 800; color: var(--tx-dim); white-space: nowrap; }
.value-total { padding-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 1.3rem; font-weight: 800; }
.strike { text-decoration: line-through; opacity: .55; font-weight: 600; }

/* ---- Pricing card ---- */
.pricing { background: var(--grad-dark); border-radius: 30px; padding: 48px 40px; color: #fff; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.pricing::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% -10%, rgba(56,189,248,.25), transparent 40%); pointer-events:none; }
.price-big { font-size: clamp(3.4rem, 9vw, 5.4rem); font-weight: 900; line-height: 1; }
.price-was { font-size: 1.4rem; font-weight: 700; opacity: .75; }
.price-now { font-size: 1rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7dd3fc; }
.price-perks { display: grid; gap: 12px; max-width: 400px; margin: 28px auto; text-align: left; }
.price-perks span { display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: .96rem; color: var(--tx-dark-softer); }

/* ---- Bonus cards ---- */
.bonuses { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.bonus { background: linear-gradient(180deg, #fffdf6, #fff8e9); border: 1px solid #f7e9c4; border-radius: var(--radius); padding: 30px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.bonus:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bonus-badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; background: var(--grad-gold); color: #3b2503; padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.bonus-num { font-size: .85rem; font-weight: 800; color: #b45309; letter-spacing: .06em; text-transform: uppercase; }
.bonus h4 { font-size: 1.25rem; margin: 8px 0 12px; color: #78350f; }
.bonus p { color: var(--tx-dim); font-size: .96rem; }
.bonus-value { margin-top: 16px; font-size: .9rem; font-weight: 700; color: #b45309; }
.bonus.special { background: linear-gradient(180deg, #fff, #fdf1f7); border-color: #f8d7e8; }

/* ---- 3D book mockup ---- */
.book-wrap { perspective: 1400px; }
.book {
  position: relative; width: 260px; height: 360px; transform-style: preserve-3d;
  transform: rotateY(-26deg) rotateX(6deg);
  animation: bookFloat 6s ease-in-out infinite;
  transition: transform .6s ease;
}
.book:hover { transform: rotateY(-8deg) rotateX(2deg); }
@keyframes bookFloat { 0%,100% { transform: rotateY(-26deg) rotateX(6deg) translateY(0);} 50% { transform: rotateY(-26deg) rotateX(6deg) translateY(-10px);} }
.book-face {
  position: absolute; inset: 0; border-radius: 8px 14px 14px 8px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: space-between; padding: 26px 22px;
  color: #fff; overflow: hidden;
}
.book-face::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 78% 18%, rgba(56,189,248,.28), transparent 42%); }
.book-face::after { content:""; position:absolute; left:0; top:0; bottom:0; width:9px; background: linear-gradient(90deg, #0f172a, #1e293b 40%, #334155 60%, #0f172a); }
.book-spine { position: absolute; width: 40px; height: 100%; left: -34px; top: 0; transform: rotateY(90deg) translateZ(2px); border-radius: 4px; background: linear-gradient(180deg, #1e293b, #0f172a); }
.book-kicker { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: #7dd3fc; font-weight: 800; }
.book-title { font-weight: 900; font-size: 1.5rem; line-height: 1.08; }
.book-sub { font-size: .8rem; color: #cbd5e1; }
.book-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: .82rem; }
.brand-dot { width: 26px; height: 26px; border-radius: 9px; background: var(--grad-blue); display: grid; place-items: center; color:#fff; font-size: .8rem; font-weight:900; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 40px; }
.timeline:before { content:""; position:absolute; left:15px; top:8px; bottom:8px; width:3px; background: linear-gradient(180deg, #0ea5e9, #2563eb, #f59e0b); border-radius: 3px; }
.t-item { position: relative; padding: 0 0 34px; }
.t-item:last-child { padding-bottom: 0; }
.t-dot { position:absolute; left:-40px; top:4px; width: 20px; height:20px; border-radius:50%; background:#fff; border:4px solid var(--blue); display:grid; place-items:center; box-shadow: 0 0 0 5px rgba(14,165,233,.15); }
.t-dot.green { border-color: var(--green); box-shadow: 0 0 0 5px rgba(16,185,129,.15); }
.t-dot.gold { border-color: var(--gold); box-shadow: 0 0 0 5px rgba(245,158,11,.15); }
.t-item h4 { font-size: 1.12rem; margin-bottom: 5px; }
.t-item p { color: var(--tx-dim); font-size: .96rem; max-width: 620px; }
.section--dark .t-item p { color: var(--tx-dark-dim); }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid #eef2f7; border-radius: var(--radius); padding: 30px; position: relative; box-shadow: var(--shadow-sm); transition: transform .3s ease; }
.step:hover { transform: translateY(-6px); }
.step-num { font-size: 3rem; font-weight: 900; line-height: 1; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { margin: 8px 0 10px; font-size: 1.3rem; }
.step p { color: var(--tx-dim); font-size: .96rem; }

/* ---- FAQ accordion ---- */
.faq-item { border: 1px solid #eef2f7; border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--font); font-weight: 800; font-size: 1.05rem; color: var(--tx); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--tx-dim); font-size: .98rem; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(14,165,233,.1); display: grid; place-items: center; color: var(--blue); transition: transform .3s; }

/* ---- Avatar / person ---- */
.avatar { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 1.6rem; color: #fff; box-shadow: var(--shadow-md); }

/* ---- Figure visuals (pure CSS) ---- */
.bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bar-label { width: 120px; font-size: .9rem; font-weight: 700; text-align: right; color: var(--tx-dim); flex: none; }
.bar-track { flex: 1; height: 26px; background: #eef2f7; border-radius: 26px; overflow: hidden; position: relative; }
.bar-fill { height: 100%; border-radius: 26px; width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1); }
.bar-fill.blue { background: var(--grad-blue-h); }
.bar-fill.green { background: var(--grad-green); }
.bar-fill.gold { background: var(--grad-gold); }
.bar-fill.orange { background: var(--grad-orange); }
.bar-val { font-weight: 800; width: 44px; flex: none; color: var(--ink); }

.kpi { text-align: center; padding: 24px 12px; }
.kpi-num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1; }
.kpi-lbl { font-size: .85rem; color: var(--tx-dim); font-weight: 600; margin-top: 8px; }
.kpi-num.blue { color: var(--blue-d); } .kpi-num.green { color: var(--green-d); } .kpi-num.gold { color: var(--gold); } .kpi-num.orange { color: var(--orange); }

/* Marquee */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 60px; animation: scroll 26s linear infinite; font-weight: 800; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Glow orbs (decorative) */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; animation: drift 14s ease-in-out infinite; }
.orb--blue { background: rgba(56,189,248,.35); }
.orb--green { background: rgba(16,185,129,.3); }
.orb--gold { background: rgba(245,158,11,.3); }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }
.section--dark > .container, .section--dark .relative { position: relative; z-index: 1; }

/* Progress bar */
.progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; background: var(--grad-blue); z-index: 9999; box-shadow: 0 0 12px rgba(14,165,233,.6); }

/* ---- Top navigation ---- */
.topnav { background: #0f172a; border-bottom: 1px solid rgba(148,163,184,.12); position: sticky; top: 0; z-index: 100; }
.topnav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.topnav .navlinks { display: flex; gap: 22px; align-items: center; font-size: .9rem; font-weight: 600; }

/* Sticky nav CTA */
.sticky-cta { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 9998; transition: transform .4s ease; opacity: 0; }
.sticky-cta.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-34px); }
.reveal--right { transform: translateX(34px); }

/* Author block */
.author { display: flex; gap: 24px; align-items: flex-start; background: var(--grad-dark); border-radius: var(--radius); padding: 30px; color: #fff; box-shadow: var(--shadow-md); }
.author p { color: var(--tx-dark-dim); }

/* Footer */
.site-footer { background: var(--ink); color: #94a3b8; padding: 56px 0 28px; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer a { color: #cbd5e1; transition: color .2s; }
.site-footer a:hover { color: #7dd3fc; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(148,163,184,.14); text-align: center; font-size: .85rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .cmp { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .author { flex-direction: column; }
}
@media (max-width: 760px) {
  .topnav .navlinks { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pricing { padding: 40px 24px; }
  .bar-label { width: 84px; font-size: .78rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn--lg { font-size: 1.1rem; padding: 18px 32px; }
  .book { width: 210px; height: 300px; }
  .figure { padding: 24px 18px; }
}

/* Small utility */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(148,163,184,.25), transparent); }
.text-clean { line-height: 1.8; }
.gap-list > li { margin-bottom: 12px; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { margin: 34px 0 12px; font-size: 1.5rem; }
.legal-body h3 { margin: 24px 0 8px; font-size: 1.15rem; }
.legal-body p, .legal-body li { color: var(--tx-dim); margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 22px; }
.legal-updated { color: var(--tx-dim); font-size: .9rem; margin-top: 8px; }
