/* ============================================================
   SJPR FX+  —  Design System
   Brand source: SJPR Manual de Identidade Visual
   Palette:  #1A1A1A (ink) · #C3A34D (gold) · #A68542 (bronze)
             #EDE9E3 (bone) · gradient #F9F295 → #E0AA3E
   Type:     Inter only — manual is explicit: "não utilizar outra
             fonte além da família Inter"
   ============================================================ */

:root{
  --ink:        #1a1a1a;
  --ink-soft:   #4a4740;
  --gold:       #c3a34d;
  --gold-deep:  #a68542;
  --gold-pale:  #f9f295;
  --bone:       #ede9e3;
  --white:      #ffffff;
  --line:       rgba(26,26,26,0.10);
  --line-gold:  rgba(195,163,77,0.35);

  --grad-gold: linear-gradient(90deg,#f9f295 0%,#e0aa3e 20%,#f9f295 40%,#e0aa3e 60%,#f9f295 80%,#e0aa3e 100%);
  --grad-gold-soft: linear-gradient(135deg,#f9f295 0%,#c3a34d 55%,#a68542 100%);

  --shadow-card: 0 1px 2px rgba(26,26,26,.04), 0 12px 32px -16px rgba(26,26,26,.14);
  --shadow-lift: 0 24px 48px -20px rgba(26,26,26,.28);

  --radius: 2px;
  --radius-lg: 3px;
  --container: 1200px;

  --ease: cubic-bezier(.16,.8,.24,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  font-size:16px;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-0.02em; color:var(--ink); }
p{ margin:0 0 1em; color:var(--ink-soft); }
p:last-child{ margin-bottom:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2px solid var(--gold-deep);
  outline-offset:3px;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

/* ----------------------------------------------------------
   Signature element — the brand's own gold gradient rule
   (pulled directly from the identity manual's colour strip)
   ---------------------------------------------------------- */
.gold-rule{
  height:2px;
  width:64px;
  background:var(--grad-gold);
  background-size:220% 100%;
  border:0;
  margin:18px 0 0;
}
.gold-rule.center{ margin-left:auto; margin-right:auto; }
.gold-rule.wide{ width:100%; height:1px; }
.gold-rule.animated{ animation:shimmer 6s linear infinite; }
@keyframes shimmer{
  0%{ background-position:0% 0; }
  100%{ background-position:220% 0; }
}

/* ----------------------------------------------------------
   Header — black testeira, gold mark, per manual variant
   ---------------------------------------------------------- */
.site-header{
  background:var(--ink);
}

/* Slim contact/social strip — layer 1 */
.header-topbar{
  background:#000;
  border-bottom:1px solid rgba(195,163,77,0.16);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:38px;
}
.topbar-tag, .topbar-partner{
  font-size:0.66rem;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.topbar-tag{ color:var(--gold-deep); }
.topbar-partner{ color:rgba(237,233,227,0.4); }
@media (max-width:700px){ .topbar-partner{ display:none; } }
@media (max-width:480px){ .topbar-tag{ font-size:0.58rem; letter-spacing:0.08em; } }

/* Statement bar — logo, front and center — layer 2 */
.header-main{
  background:var(--ink);
  border-bottom:1px solid rgba(195,163,77,0.22);
}
.header-main-inner{
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  padding:22px 32px 16px;
}
.logo{ display:block; line-height:0; }
.logo-img{ height:150px; width:auto; }

.nav-links{
  display:flex; align-items:center; gap:2px;
  margin-top:6px;
}
.nav-links li a{
  display:block;
  padding:10px 16px;
  font-size:0.82rem;
  font-weight:500;
  letter-spacing:0.02em;
  color:rgba(237,233,227,0.7);
  border-radius:var(--radius);
  transition:color .2s var(--ease), background .2s var(--ease);
}
.nav-links li a:hover{ color:var(--gold-pale); background:rgba(195,163,77,0.08); }
.nav-links li a.active{ color:var(--gold); }
.nav-links li a.nav-cta{
  margin-left:8px;
  color:var(--ink);
  background:var(--gold);
  font-weight:600;
  padding:10px 22px;
  border-radius:1px;
}
.nav-links li a.nav-cta:hover{ background:var(--gold-pale); color:var(--ink); }
.nav-links li a.nav-cta.active{ background:var(--gold-pale); color:var(--ink); }

.nav-toggle{
  display:none;
  position:absolute; right:0; top:6px;
  background:none; border:0; color:var(--gold); font-size:1.7rem;
  cursor:pointer;
}

@media (max-width:900px){
  .logo-img{ height:96px; }
  .nav-toggle{ display:block; }
  .nav-links{
    display:none;
    flex-direction:column; align-items:stretch;
    width:100%;
    margin-top:16px;
    padding-top:12px;
    border-top:1px solid rgba(195,163,77,0.16);
  }
  .nav-links.open{ display:flex; }
  .nav-links li a{ padding:14px 8px; text-align:center; border-bottom:1px solid rgba(255,255,255,0.06); }
  .nav-links li a.nav-cta{ margin-left:0; margin-top:10px; text-align:center; }
}
@media (max-width:480px){ .logo-img{ height:76px; } }

/* ----------------------------------------------------------
   Eyebrow / labels
   ---------------------------------------------------------- */
.eyebrow, .eyebrow-sm{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.eyebrow::before, .eyebrow-sm::before{
  content:'';
  width:22px; height:1px;
  background:var(--gold-deep);
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero{
  position:relative;
  background:var(--ink);
  color:var(--bone);
  padding:104px 0 96px;
  overflow:hidden;
}
/* Photo layer — colour-graded warm so the metal reads as gold, not grey */
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background:url('https://sjprfx.com/golden.jpg') center 32% / cover no-repeat;
  filter:saturate(1.5) contrast(1.18) brightness(0.92) sepia(0.12);
}
/* Amber-black scrim — dims for legibility without turning the photo grey */
.hero-overlay{
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(150deg, rgba(12,9,3,0.62) 0%, rgba(20,14,3,0.40) 45%, rgba(10,7,2,0.78) 100%);
}
.hero::after{
  content:'';
  position:absolute; inset:auto 0 0 0; height:1px; z-index:1;
  background:var(--grad-gold); background-size:220% 100%;
  animation:shimmer 8s linear infinite;
}
.hero > .container{ position:relative; z-index:1; }
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.85fr;
  gap:64px;
  align-items:center;
}
.hero .eyebrow{ color:var(--gold); }
.hero .eyebrow::before{ background:var(--gold); }
.hero h1{
  color:var(--white);
  font-size:clamp(2.1rem, 3.6vw, 3.1rem);
  line-height:1.14;
  margin:22px 0 22px;
  max-width:14ch;
  text-shadow:0 2px 24px rgba(0,0,0,0.45);
}
.hero .lead{
  color:rgba(237,233,227,0.78);
  font-size:1.06rem;
  max-width:46ch;
  margin-bottom:34px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-trust{
  display:flex; gap:28px; margin-top:44px;
  padding-top:28px; border-top:1px solid rgba(255,255,255,0.1);
}
.hero-trust div{ font-size:0.78rem; color:rgba(237,233,227,0.55); letter-spacing:0.02em; }
.hero-trust strong{ display:block; color:var(--gold-pale); font-size:1rem; font-weight:700; margin-bottom:2px; }

/* Hero visual — capital allocation gauge (real content, not decoration) */
.hero-visual{
  background:linear-gradient(165deg, rgba(28,20,6,0.60), rgba(20,14,4,0.80));
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(195,163,77,0.38);
  border-radius:var(--radius-lg);
  padding:32px;
}
.gauge-card{ text-align:center; }
.gauge-label{
  font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(237,233,227,0.55); margin-bottom:18px;
}
.gauge-wrap{ position:relative; width:220px; height:220px; margin:0 auto; }
.gauge-wrap svg{ width:100%; height:100%; transform:rotate(-90deg); }
.gauge-track{ fill:none; stroke:rgba(255,255,255,0.08); stroke-width:10; }
.gauge-fill{
  fill:none; stroke:url(#gaugeGrad); stroke-width:10; stroke-linecap:round;
  stroke-dasharray:534; stroke-dashoffset:534;
  animation:gaugeFill 1.6s var(--ease) 0.3s forwards;
}
@keyframes gaugeFill{ to{ stroke-dashoffset:347; } }
.gauge-center{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
}
.gauge-center .num{ font-size:2.1rem; font-weight:800; color:var(--gold-pale); letter-spacing:-0.02em; }
.gauge-center .sub{ font-size:0.72rem; color:rgba(237,233,227,0.55); letter-spacing:0.06em; text-transform:uppercase; margin-top:4px; }
.gauge-legend{
  display:flex; justify-content:center; gap:24px; margin-top:20px;
  font-size:0.78rem; color:rgba(237,233,227,0.7);
}
.gauge-legend span{ display:flex; align-items:center; gap:7px; }
.dot{ width:8px; height:8px; border-radius:50%; display:inline-block; }
.dot.deployed{ background:var(--gold); }
.dot.reserve{ background:rgba(255,255,255,0.18); }

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 30px;
  font-size:0.9rem; font-weight:600; letter-spacing:0.01em;
  border-radius:1px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-gold{
  background:var(--grad-gold-soft);
  color:var(--ink);
}
.btn-gold:hover{ transform:translateY(-1px); box-shadow:var(--shadow-lift); }
.btn-outline{
  border-color:rgba(237,233,227,0.35);
  color:var(--bone);
  background:transparent;
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-pale); }
.btn-navy{
  background:var(--ink);
  color:var(--gold-pale);
}
.btn-navy:hover{ background:#000; box-shadow:var(--shadow-lift); transform:translateY(-1px); }

/* ----------------------------------------------------------
   Stats bar
   ---------------------------------------------------------- */
.stats-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--bone);
  border-radius:var(--radius-lg);
  margin-top:-52px;
  position:relative; z-index:2;
  box-shadow:var(--shadow-card);
  overflow:hidden;
}
.stat{
  padding:30px 22px;
  border-right:1px solid rgba(26,26,26,0.08);
  text-align:left;
}
.stat:last-child{ border-right:0; }
.stat .num{
  display:block;
  font-size:2.1rem; font-weight:800; letter-spacing:-0.03em;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.stat .label{
  display:block; margin-top:6px;
  font-size:0.8rem; color:var(--ink-soft); line-height:1.4;
}
@media (max-width:900px){
  .stats-bar{ grid-template-columns:repeat(2,1fr); margin-top:32px; }
  .stat{ border-bottom:1px solid rgba(26,26,26,0.08); }
}

.small-muted{ font-size:0.82rem; color:#8a8578; }
.text-center{ text-align:center; }

/* ----------------------------------------------------------
   Sections
   ---------------------------------------------------------- */
section{ padding:96px 0; }
.section-alt{ background:var(--bone); }
.section-head{ max-width:640px; margin:0 auto 52px; text-align:center; }
.section-head.left{ margin:0 0 40px; text-align:left; }
.section-head h2{ font-size:clamp(1.6rem,2.6vw,2.15rem); margin-top:14px; }

.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:1fr 1fr; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; max-width:340px; margin:0 auto 12px; }
  .grid-2, .grid-3{ grid-template-columns:1fr; }
}

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:var(--line-gold); }
.card h3{ font-size:1.05rem; margin:16px 0 10px; }
.card p{ font-size:0.92rem; }

.icon-badge{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  background:var(--ink);
  color:var(--gold);
  font-weight:700; font-size:0.85rem;
  border-radius:50%;
}

.callout{
  border-left:2px solid var(--gold);
  background:var(--bone);
  padding:22px 26px;
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;
  margin-top:24px;
}
.callout p{ font-size:0.92rem; color:var(--ink-soft); margin:0; }
.callout strong{ color:var(--ink); }
.callout.warn{ border-left-color:var(--gold-deep); background:#faf4e7; }

/* ----------------------------------------------------------
   Process steps (How It Works) — a real sequence, numbered
   ---------------------------------------------------------- */
.steps{
  position:relative;
  max-width:760px;
  margin:0 auto;
}
.steps::before{
  content:'';
  position:absolute; left:27px; top:8px; bottom:8px; width:1px;
  background:linear-gradient(var(--gold), var(--bone));
}
.step{
  position:relative;
  display:flex; gap:28px;
  padding-bottom:44px;
}
.step:last-child{ padding-bottom:0; }
.step-num{
  flex:none;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--ink);
  color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:800;
  position:relative; z-index:1;
  border:3px solid var(--white);
  box-shadow:0 0 0 1px var(--line-gold);
}
.step-body{ padding-top:10px; }
.step-body h3{ font-size:1.08rem; margin-bottom:8px; }
.step-body p{ font-size:0.92rem; max-width:52ch; }

/* Reserve gauge strip echo (how-it-works) */
.reserve-strip{
  display:flex; align-items:center; gap:18px;
  background:var(--ink);
  border-radius:var(--radius-lg);
  padding:22px 28px;
  margin-top:32px;
}
.reserve-strip .bar{
  flex:1; height:8px; border-radius:4px; background:rgba(255,255,255,0.1); overflow:hidden;
  position:relative;
}
.reserve-strip .bar > span{
  position:absolute; left:0; top:0; bottom:0;
  width:35%;
  background:var(--grad-gold); background-size:220% 100%;
  animation:shimmer 6s linear infinite;
  border-radius:4px;
}
.reserve-strip .fig{ color:var(--gold-pale); font-weight:800; font-size:1.1rem; white-space:nowrap; }
.reserve-strip .cap{ color:rgba(237,233,227,0.6); font-size:0.78rem; white-space:nowrap; }

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

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer{
  background:var(--ink);
  color:var(--bone);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo-img{ height:58px; margin-bottom:14px; }
.site-footer h4{
  color:var(--gold);
  font-size:0.76rem; letter-spacing:0.14em; text-transform:uppercase;
  margin-bottom:16px;
}
.site-footer ul li{ margin-bottom:10px; }
.site-footer ul li a{ color:rgba(237,233,227,0.68); font-size:0.9rem; transition:color .2s; }
.site-footer ul li a:hover{ color:var(--gold-pale); }
.footer-fine{
  font-size:0.76rem; color:rgba(237,233,227,0.45);
  line-height:1.6; margin:28px 0 0;
}
.footer-bottom{
  display:flex; justify-content:space-between;
  margin-top:24px; padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.06);
  font-size:0.78rem; color:rgba(237,233,227,0.45);
}
@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .footer-bottom{ flex-direction:column; gap:6px; }
}

/* ----------------------------------------------------------
   Contact / form elements (used across other pages)
   ---------------------------------------------------------- */
.contact-block{ display:flex; gap:18px; margin-bottom:26px; align-items:flex-start; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:0.82rem; font-weight:600; margin-bottom:6px; color:var(--ink); }
.field input, .field textarea{
  width:100%; padding:12px 14px; font-family:inherit; font-size:0.92rem;
  border:1px solid var(--line); border-radius:1px; background:var(--white);
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--gold); }
.field textarea{ min-height:110px; resize:vertical; }
.checkbox-field{ display:flex; gap:10px; align-items:flex-start; }
.checkbox-field input{ width:auto; margin-top:3px; }

/* Page header (interior pages) */
.page-header{
  background:var(--ink); color:var(--bone);
  padding:64px 0 56px;
  position:relative;
}
.page-header::after{
  content:'';
  position:absolute; inset:auto 0 0 0; height:1px;
  background:var(--grad-gold); background-size:220% 100%;
  animation:shimmer 8s linear infinite;
}
.page-header h1{ color:var(--white); font-size:clamp(1.9rem,3vw,2.5rem); }
.page-header p{ color:rgba(237,233,227,0.7); margin-top:12px; max-width:52ch; }
.inline-logo{ display:inline-block; height:0.9em; vertical-align:-0.08em; margin:0 2px; }

/* Chart card (performance) kept for later pages */
.chart-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px; }
.bar-chart{ display:flex; align-items:flex-end; gap:16px; height:220px; }
.bar-col{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.bar{ width:100%; background:var(--grad-gold-soft); border-radius:3px 3px 0 0; position:relative; display:flex; align-items:flex-start; justify-content:center; }
.bar .val{ position:absolute; top:-24px; font-size:0.8rem; font-weight:700; color:var(--ink); }
.bar-label{ margin-top:10px; font-size:0.78rem; color:var(--ink-soft); }
.chart-caption{ margin-top:24px; font-size:0.82rem; color:var(--ink-soft); }

table{ width:100%; border-collapse:collapse; margin-top:8px; }
th,td{ text-align:left; padding:14px 16px; border-bottom:1px solid var(--line); font-size:0.92rem; }
th{ font-size:0.76rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-deep); }

/* ----------------------------------------------------------
   Extra components — about / performance / fees / contact / risk
   ---------------------------------------------------------- */
.stats-bar.cols-2{ grid-template-columns:repeat(2,1fr); }

/* Crest panel — dark card used opposite body copy on About.
   Uses the identity manual's own typographic lockup (S . J . P . R,
   Inter Black Italic) instead of a redrawn version of the crest artwork. */
.crest-panel{
  background:var(--ink);
  border-radius:var(--radius-lg);
  padding:56px 32px;
  text-align:center;
  color:var(--bone);
}
.crest-eyebrow{
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:rgba(237,233,227,0.5);
  margin-bottom:18px;
}
.crest-wordmark{
  font-family:'Inter',sans-serif;
  font-weight:900;
  font-style:italic;
  font-size:2.6rem;
  letter-spacing:0.06em;
  color:var(--gold);
  background:var(--grad-gold-soft);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.crest-wordmark span{
  -webkit-text-fill-color:var(--gold-deep);
  color:var(--gold-deep);
  margin:0 2px;
  font-style:normal;
}
.crest-panel .crest-caption{
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(237,233,227,0.6);
}

/* Profile card — AG7 */
.profile-card{
  display:flex; gap:24px; align-items:flex-start;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
}
.avatar-badge{
  flex:none;
  width:72px; height:72px;
  border-radius:50%;
  background:var(--grad-gold-soft);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1rem; letter-spacing:0.02em;
}
.credential-strip{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top:24px;
}
.credential-chip{
  display:flex; align-items:baseline; gap:8px;
  background:var(--bone);
  border:1px solid var(--line);
  border-radius:1px;
  padding:10px 16px;
}
.credential-chip .chip-num{ font-weight:800; color:var(--gold-deep); font-size:1rem; }
.credential-chip .chip-label{ font-size:0.8rem; color:var(--ink-soft); }

/* Contact icon blocks */
.icon-line{
  flex:none;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--bone);
  border:1px solid var(--line-gold);
  display:flex; align-items:center; justify-content:center;
}
.icon-line svg{ width:19px; height:19px; stroke:var(--gold-deep); fill:none; stroke-width:1.6; }

/* Pricing table badges */
.badge-pill{
  display:inline-block;
  font-size:0.66rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:4px 10px;
  border-radius:20px;
  margin-left:10px;
  vertical-align:middle;
}
.badge-pill.primary{ background:var(--grad-gold-soft); color:var(--ink); }
.badge-pill.free{ background:rgba(26,26,26,0.06); color:var(--ink-soft); }
tr.fee-primary td{ background:rgba(195,163,77,0.06); font-weight:600; }
tr.fee-primary td:first-child{ border-left:2px solid var(--gold); }

/* Legal / risk disclosure long-form */
.legal-toc{
  display:flex; flex-wrap:wrap; gap:10px 20px;
  padding:22px 26px;
  background:var(--bone);
  border-radius:var(--radius-lg);
  margin-bottom:8px;
}
.legal-toc a{ font-size:0.84rem; font-weight:600; color:var(--gold-deep); }
.legal-toc a:hover{ text-decoration:underline; }
.legal-section{ padding:40px 0; border-bottom:1px solid var(--line); }
.legal-section:last-child{ border-bottom:0; }
.legal-section h2{ font-size:1.2rem; margin-bottom:14px; }
.legal-section .legal-num{
  display:inline-block;
  font-size:0.76rem; font-weight:800; color:var(--gold-deep);
  letter-spacing:0.06em; margin-bottom:8px;
}
.legal-section p{ font-size:0.94rem; max-width:74ch; }
.legal-section ul{ margin:0 0 1em; padding-left:20px; }
.legal-section ul li{ list-style:disc; font-size:0.94rem; color:var(--ink-soft); margin-bottom:8px; max-width:70ch; }
