/* Wealora marketing site — shared design system.
   Palette/type matches the app itself (frontend/tailwind.config.js): Fraunces for display headings,
   Inter for everything else, brand navy + gold accent. Static, no build step — plain CSS, mobile-first. */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-soft-2: #f5f7fa;
  --bg-dark: #0b1120;
  --bg-dark-2: #1d2733;
  --bg-dark-3: #2c3a4a;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
  --ink-on-dark: #e2e8f0;
  --ink-on-dark-soft: #94a3b8;
  --border: #e2e8f0;
  --border-soft: #eef1f5;
  --gold: #d3a53f;
  --gold-light: #e0bd66;
  --gold-pale: #fbf6e9;
  --gold-dark: #ad7a1f;
  --brand-700: #425973;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .1);
  --shadow-pop: 0 10px 40px -12px rgba(16, 24, 40, .35);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; line-height: 1.65; }
a { color: inherit; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--bg-dark-2); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { background: #16202b; box-shadow: 0 8px 20px -6px rgba(29, 39, 51, .45); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: #241a06; }
.btn-gold:hover { box-shadow: 0 10px 24px -8px rgba(201, 147, 42, .55); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--bg-dark-3); }
.btn-ghost { background: transparent; color: var(--ink-on-dark); border-color: rgba(255, 255, 255, .18); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .4); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Cookie notice ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-dark);
  color: var(--ink-on-dark-soft);
  box-shadow: var(--shadow-pop);
  animation: cookie-banner-in .35s ease;
}
.cookie-banner p { flex: 1 1 260px; margin: 0; font-size: 13px; line-height: 1.6; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; padding: 9px 20px; font-size: 13px; }
.cookie-banner-hide { animation: cookie-banner-out .25s ease forwards; }
@keyframes cookie-banner-in { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes cookie-banner-out { to { transform: translateY(16px); opacity: 0; } }
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { text-decoration: none; transition: color .15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 9px 18px; font-size: 13px; }
.nav-toggle {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 8px 0 16px; border-top: 1px solid var(--border-soft); }
/* :not(.btn) so the Log in / Get started free buttons below keep their own btn-* text color and pill
   shape — the plain-link color+border-bottom here used to win on specificity and left "Get started
   free" rendering in muted grey on its dark background, unreadable. */
.mobile-menu a:not(.btn) {
  padding: 12px 4px; text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu .btn { margin-top: 10px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero / dark sections ---------- */
.dark-section {
  background:
    radial-gradient(1100px 520px at 100% -8%, rgba(201, 147, 42, .14), transparent 60%),
    radial-gradient(900px 480px at -6% 100%, rgba(66, 89, 115, .22), transparent 55%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 55%, var(--bg-dark) 100%);
  color: var(--ink-on-dark);
}
.hero { padding: 64px 0 84px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 75% 30%, black, transparent 70%);
  mask-image: radial-gradient(circle at 75% 30%, black, transparent 70%);
}
.hero-glow-a, .hero-glow-b, .hero-glow-c {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.hero-glow-a { width: 480px; height: 480px; top: -160px; right: -100px; background: radial-gradient(circle, rgba(211, 165, 63, .3), transparent 70%); animation: heroDrift1 24s ease-in-out infinite alternate; }
.hero-glow-b { width: 420px; height: 420px; bottom: -180px; left: -110px; background: radial-gradient(circle, rgba(66, 89, 115, .4), transparent 70%); animation: heroDrift2 28s ease-in-out infinite alternate; }
.hero-glow-c { width: 320px; height: 320px; top: 25%; left: 42%; background: radial-gradient(circle, rgba(224, 189, 102, .16), transparent 70%); animation: heroDrift1 20s ease-in-out infinite alternate-reverse; }
@keyframes heroDrift1 { from { transform: translate(0, 0); } to { transform: translate(34px, -22px); } }
@keyframes heroDrift2 { from { transform: translate(0, 0); } to { transform: translate(-28px, 26px); } }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; align-items: center; gap: 36px; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 1fr; } }
.hero-visual { display: none; }
@media (min-width: 960px) {
  .hero-visual { display: flex; align-items: center; justify-content: center; }
}
/* ---------- Hero app-window visual ---------- */
.app-window {
  width: 100%; max-width: 380px; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .5);
  opacity: 0; animation: cardIn .7s ease-out .1s forwards;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.app-window-bar {
  display: flex; align-items: center; gap: 6px; padding: 13px 16px;
  background: rgba(255, 255, 255, .04); border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.win-dot { width: 8px; height: 8px; border-radius: 50%; opacity: .8; }
.app-window-url {
  margin: 0 auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 999px; background: rgba(255, 255, 255, .06);
  font-size: 11.5px; color: var(--ink-on-dark-soft); font-weight: 500;
}
.app-window-url svg { color: #4ade80; flex-shrink: 0; }
.app-window-body { padding: 24px 24px 26px; }
.app-window-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.portfolio-card-label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-on-dark-soft); }
.app-window-number {
  font-family: 'Fraunces', serif; font-size: 40px; font-weight: 600; color: #fff; line-height: 1;
  margin-bottom: 18px; font-variant-numeric: tabular-nums;
}
.growth-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: 999px; background: rgba(34, 197, 94, .14); border: 1px solid rgba(34, 197, 94, .35);
  color: #4ade80; font-size: 11.5px; font-weight: 700;
  opacity: 0; animation: pillIn .5s ease-out .9s forwards;
}
@keyframes pillIn { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }
.sparkline { display: block; width: 100%; height: 64px; margin-bottom: 20px; }
.sparkline-fill { opacity: 0; animation: sparkFillIn .6s ease-out .8s forwards; }
@keyframes sparkFillIn { to { opacity: 1; } }
.sparkline-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: sparkDraw 1.1s ease-out .35s forwards; }
@keyframes sparkDraw { to { stroke-dashoffset: 0; } }
.asset-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px; color: var(--ink-on-dark-soft); font-weight: 500;
  opacity: 0; animation: legendIn .5s ease-out both;
}
.chip:nth-child(1) { animation-delay: 1.0s; }
.chip:nth-child(2) { animation-delay: 1.08s; }
.chip:nth-child(3) { animation-delay: 1.16s; }
.chip:nth-child(4) { animation-delay: 1.24s; }
.chip:nth-child(5) { animation-delay: 1.32s; }
.chip:nth-child(6) { animation-delay: 1.4s; }
@keyframes legendIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(201, 147, 42, .35); background: rgba(201, 147, 42, .1);
  font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-size: clamp(32px, 5.4vw, 56px); max-width: 780px; }
.hero .lede { max-width: 560px; margin-top: 18px; font-size: 17px; line-height: 1.7; color: var(--ink-on-dark-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; font-size: 13px; color: var(--ink-on-dark-soft); }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { flex-shrink: 0; color: var(--gold-light); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft-2); }

/* ---------- Product demo video ---------- */
.demo-frame {
  width: 100%; max-width: 940px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: #0f172a; box-shadow: var(--shadow-pop);
}
.demo-bar {
  display: flex; align-items: center; gap: 6px; padding: 11px 15px;
  background: rgba(255, 255, 255, .04); border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.demo-video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #0f172a; }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow-plain {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }
.section-head.left { text-align: left; margin: 0 0 40px; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-card);
}
.feature-card .icon-tile {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-pale); color: var(--gold-dark); margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

.step-card { text-align: left; }
.step-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-dark-2); color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 14px;
  margin-bottom: 16px;
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: 1fr; max-width: 880px; margin: 0 auto; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(201, 147, 42, .18), 0 16px 40px -14px rgba(201, 147, 42, .35); }
.price-card .badge {
  position: absolute; top: -13px; right: 28px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #241a06; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.price-card h3 { font-size: 19px; }
.price-card .price-tagline { color: var(--ink-soft); font-size: 13px; margin-top: 6px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin: 24px 0 4px; }
.price-amount .amt { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 600; }
.price-amount .per { color: var(--ink-faint); font-size: 14px; }
.price-note { font-size: 12px; color: var(--ink-faint); margin-bottom: 22px; }
.price-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.price-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.price-card .btn { margin-top: 26px; }

.compare-table-wrap { overflow-x: auto; margin-top: 56px; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 14px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.compare-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); font-weight: 700; }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table tbody tr:hover { background: var(--bg-soft-2); }
.compare-table .yes { color: var(--gold-dark); }
.compare-table .no { color: var(--ink-faint); }

/* ---------- Trust / security ---------- */
.trust-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card { display: flex; gap: 14px; }
.trust-card .icon-tile {
  flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(201, 147, 42, .12); color: var(--gold-light);
}
.dark-section .trust-card h3 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.dark-section .trust-card p { font-size: 13.5px; color: var(--ink-on-dark-soft); }

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 40px; }
.faq-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-dark); margin-bottom: 14px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; background: #fff;
}
.faq-item summary {
  padding: 16px 18px; cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .2s ease; flex-shrink: 0; color: var(--ink-faint); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 18px 18px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field-hint { font-size: 12px; color: var(--ink-faint); margin-top: 6px; }
input, select, textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border);
  font-family: inherit; font-size: 14px; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-700); box-shadow: 0 0 0 3px rgba(66, 89, 115, .15);
}
textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; padding: 12px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 500; margin-top: 18px; }
.form-status.show { display: block; }
.form-status.ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-status.err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Contact info cards ---------- */
.contact-info-card { display: flex; gap: 14px; padding: 20px; }
.contact-info-card .icon-tile {
  flex-shrink: 0; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--gold-pale); color: var(--gold-dark);
}
.contact-info-card h3 { font-size: 14px; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--ink-soft); text-decoration: none; }
.contact-info-card a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 64px 0; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); max-width: 560px; margin: 0 auto; }
.cta-band p { margin-top: 14px; color: var(--ink-on-dark-soft); max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Legal content ---------- */
.legal-page { padding: 56px 0 88px; }
.legal-shell { display: grid; gap: 40px; grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.legal-header { text-align: center; margin-bottom: 8px; }
.legal-header .updated { font-size: 13px; color: var(--ink-faint); margin-top: 10px; }
.legal-body h2 { font-size: 20px; margin-top: 40px; margin-bottom: 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 15px; margin-top: 22px; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 10px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-body a { color: var(--brand-700); font-weight: 600; text-decoration: underline; }
.legal-toc {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; background: var(--bg-soft-2);
  font-size: 13.5px;
}
.legal-toc h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); margin-bottom: 12px; }
.legal-toc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; counter-reset: toc; }
.legal-toc a { text-decoration: none; color: var(--ink-soft); }
.legal-toc a:hover { color: var(--ink); }
/* Sticky-while-scrolling only makes sense once the TOC is a sidebar next to the body (desktop
   two-column layout below). On mobile it stayed sticky in a single-column stack too, so it would
   pin itself near the top and visually overlay the body text as you scrolled past it. */
@media (min-width: 860px) {
  .legal-shell { grid-template-columns: 220px 1fr; }
  .legal-toc { align-self: start; position: sticky; top: 90px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: var(--ink-on-dark-soft); padding: 56px 0 28px; }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand img { height: 28px; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 260px; color: var(--ink-on-dark-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(255, 255, 255, .06); color: var(--ink-on-dark-soft);
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--gold-light, #e0bd66); color: #1a1a1a; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--ink-on-dark-soft); text-decoration: none; font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 24px; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px; font-size: 12.5px; color: #64748b;
}
.footer-bottom a { color: #64748b; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--bg-dark-2); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 0; z-index: 100; text-decoration: none; font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 0; }
