/* =========================================================
   Corponter — design tokens
   Ink navy base · amber "correction pen" accent · violet cursor mark
========================================================= */
:root{
  --bg:            #0A0D16;
  --bg-elevated:   #12141F;
  --bg-elevated-2: #171A26;
  --bg-elevated-3: #1D2130;

  --amber:       #E8A33D;
  --amber-light: #F0B44C;
  --amber-dark:  #C9852A;
  --violet:      #6E7BFF;
  --violet-dark: #4C56C4;

  --text:        #F4F1EA;
  --text-muted:  #9198AC;
  --text-faint:  #656C7E;

  --border:        rgba(244,241,234,0.08);
  --border-strong: rgba(244,241,234,0.16);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SFMono-Regular', monospace;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; }
h1,h2,h3,p,ul,ol,figure{ margin:0; }
ul,ol{ padding:0; list-style:none; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input{ font:inherit; color:inherit; }
svg{ display:block; }

@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}

/* =========================================================
   Base
========================================================= */
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection{ background: var(--amber); color: #17130A; }

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow{ max-width: 760px; }

.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--amber); color:#17130A; padding:10px 16px;
  border-radius: 8px; font-weight:600; z-index:999;
  transition: top .2s var(--ease-soft);
}
.skip-link:focus{ top:12px; }

/* subtle grain so flat dark panels don't look like a flat template fill */
.noise-overlay{
  position: fixed; inset:0; pointer-events:none; z-index: 2;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:focus-visible{
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Custom cursor
========================================================= */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0; z-index: 999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot{
  width:8px; height:8px; background: var(--amber);
}
.cursor-ring{
  width:36px; height:36px; border: 1.5px solid var(--border-strong);
  transition: width .25s var(--ease-soft), height .25s var(--ease-soft),
              border-color .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.cursor-ring.is-hover{
  width:64px; height:64px;
  border-color: var(--amber);
  background: rgba(232,163,61,0.08);
}
@media (hover:none), (pointer:coarse){
  .cursor-dot, .cursor-ring{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .cursor-dot, .cursor-ring{ display:none; }
}

/* =========================================================
   Typography
========================================================= */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--amber-light);
}
.eyebrow::before{
  content:""; width:6px; height:6px; border-radius:50%;
  background: var(--amber); flex-shrink:0;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 14px;
  max-width: 16ch;
}
.section-lead{
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 46ch;
}
.section-head{ margin-bottom: 56px; }

/* =========================================================
   Buttons
========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:15px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s var(--ease-soft);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--amber-light), var(--amber-dark));
  color: #1A1305;
  box-shadow: 0 10px 30px -12px rgba(232,163,61,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(232,163,61,0.7); }
.btn-primary:active{ transform: translateY(0px); }
.btn-lg{ padding: 17px 34px; font-size:16px; }
.btn-sm{ padding: 10px 20px; font-size:14px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:default; transform:none !important; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100;
  padding: 18px 0;
  transition: background-color .35s var(--ease-soft), border-color .35s var(--ease-soft), padding .35s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(10,13,22,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.header-inner{
  display:flex; align-items:center; gap: 32px;
}
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-mark{ border-radius: 8px; }
.brand-name{
  font-family: var(--font-display); font-weight:600; font-size:18px; letter-spacing: -0.01em;
}
.main-nav{ display:flex; gap:30px; font-size:15px; color: var(--text-muted); }
.main-nav a{ transition: color .2s; position:relative; }
.main-nav a:hover{ color: var(--text); }
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:1px;
  background: var(--amber); transition: width .25s var(--ease-soft);
}
.main-nav a:hover::after{ width:100%; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span{ width:22px; height:2px; background: var(--text); border-radius:2px; }

.mobile-nav{
  display:none; flex-direction:column; gap: 2px;
  padding: 8px 24px 20px;
}
.mobile-nav a{ padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mobile-nav .btn{ margin-top:14px; }

@media (max-width: 860px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .mobile-nav.is-open{ display:flex; }
}

/* =========================================================
   Hero
========================================================= */
.hero{ position:relative; padding: 84px 0 96px; overflow:hidden; }
.hero-glow{
  position:absolute; inset: -20% -10% auto -10%; height: 620px; z-index:-1;
  background:
    radial-gradient(420px 320px at 18% 20%, rgba(232,163,61,0.16), transparent 70%),
    radial-gradient(480px 380px at 82% 10%, rgba(110,123,255,0.16), transparent 70%);
  filter: blur(10px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-2%, 3%) scale(1.06); }
}

.hero-grid{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items:center;
}
.hero-title{
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.015em;
  margin-top: 20px; max-width: 15ch;
}
.hero-sub{
  margin-top: 22px; font-size: 18px; color: var(--text-muted); max-width: 48ch;
}
.hero-actions{ margin-top: 34px; }
.hero-microcopy{
  margin-top: 14px; font-size: 13.5px; color: var(--text-faint); font-family: var(--font-mono);
}

/* --- hero photo + floating lesson card --- */
.hero-visual{ position: relative; }
.hero-photo-wrap{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  aspect-ratio: 900 / 1100;
}
.hero-photo{
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.85) brightness(0.92);
}
.hero-photo-wrap::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,13,22,0) 38%, rgba(10,13,22,0.7) 100%),
    linear-gradient(120deg, rgba(110,123,255,0.16), rgba(232,163,61,0.08));
}

/* --- lesson preview card (signature element) --- */
.lesson-card{
  background: linear-gradient(180deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
  transform: rotate(1.2deg);
}
.hero-visual .lesson-card{
  position: absolute; left: 22px; right: 22px; bottom: -34px;
}
.lesson-card__head{ display:flex; align-items:center; justify-content:space-between; }
.lesson-card__label{ font-family: var(--font-mono); font-size:12.5px; color: var(--text-muted); }
.lesson-card__dots{ display:flex; gap:5px; }
.lesson-card__dots i{ width:6px; height:6px; border-radius:50%; background: var(--border-strong); }
.lesson-card__dots i:first-child{ background: var(--amber); }

.lesson-card__topic{
  margin-top:18px; font-size:14px; color: var(--text-faint);
  padding-bottom:16px; border-bottom:1px solid var(--border);
}

.correction-demo{ margin-top: 20px; min-height: 92px; }
.correction-demo__line{ font-family: var(--font-mono); font-size: 16.5px; }
.correction-demo__line--from{ color: var(--text-faint); }
.strike-text{ position:relative; display:inline-block; }
.strike-text::after{
  content:""; position:absolute; left:0; top:52%; width:0; height:2px;
  background: var(--amber); border-radius:2px;
  animation: strike-in 0.6s var(--ease) 0.5s forwards;
}
@keyframes strike-in{ to{ width:100%; } }

.correction-demo__line--to{ margin-top:12px; color: var(--text); font-size:18px; min-height:24px; }
.type-caret{
  display:inline-block; width:2px; height:19px; background: var(--violet);
  margin-left:2px; vertical-align:-3px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.lesson-card__typing{
  margin-top:22px; display:flex; align-items:center; gap:10px;
  font-family: var(--font-mono); font-size:12.5px; color: var(--text-faint);
}
.typing-dots{ display:inline-flex; gap:3px; }
.typing-dots i{
  width:4px; height:4px; border-radius:50%; background: var(--violet);
  animation: typing-pulse 1.2s ease-in-out infinite;
}
.typing-dots i:nth-child(2){ animation-delay:.15s; }
.typing-dots i:nth-child(3){ animation-delay:.3s; }
@keyframes typing-pulse{ 0%,60%,100%{ opacity:.25; } 30%{ opacity:1; } }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .lesson-card{ transform:none; }
  .hero-visual .lesson-card{ position: static; margin-top: 20px; }
  .hero-visual{ padding-bottom: 0; }
}

/* =========================================================
   Marquee
========================================================= */
.marquee{
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--bg-elevated); padding: 18px 0;
}
.marquee__track{
  display:flex; gap: 28px; width: max-content;
  font-family: var(--font-mono); font-size: 14px; color: var(--text-muted);
  animation: marquee 32s linear infinite;
}
.marquee__track span:nth-child(odd){ color: var(--amber-light); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; overflow-x:auto; }
  .hero-glow{ animation:none; }
}

/* =========================================================
   Steps
========================================================= */
.section{ padding: 108px 0; }
.section--muted{ background: var(--bg-elevated); }

.steps{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  counter-reset: step;
}
.step__num{
  font-family: var(--font-mono); font-size:14px; color: var(--amber-light);
  display:block; margin-bottom: 18px;
}
.step__title{
  font-family: var(--font-display); font-weight:600; font-size:20px; margin-bottom:12px;
}
.step__text{ color: var(--text-muted); font-size:15.5px; }
.step{ padding-top: 26px; border-top: 1px solid var(--border-strong); }

@media (max-width: 780px){
  .steps{ grid-template-columns: 1fr; gap:32px; }
}

/* =========================================================
   Bento grid
========================================================= */
.bento{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bento-card{
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .4s var(--ease), border-color .3s var(--ease-soft), background-color .3s var(--ease-soft);
}
.bento-card:hover{
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-elevated-3);
}
.bento-card--wide{ grid-column: span 2; }
.bento-card--photo{ display: flex; align-items: center; gap: 26px; }
.bento-card__photo{
  flex-shrink: 0; width: 92px; height: 92px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border-strong);
}
.bento-card__photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.92);
}
.bento-card__body{ min-width: 0; }
.bento-icon{ width:34px; height:34px; color: var(--amber); margin-bottom: 20px; }
.bento-card h3{
  font-family: var(--font-display); font-weight:600; font-size:17px; margin-bottom:10px;
}
.bento-card p{ color: var(--text-muted); font-size:15px; }

@media (max-width: 780px){
  .bento{ grid-template-columns: 1fr; }
  .bento-card--wide{ grid-column: span 1; }
  .bento-card--photo{ gap: 18px; }
  .bento-card__photo{ width: 68px; height: 68px; }
}

/* =========================================================
   Format section
========================================================= */
.format-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center;
}
.check-list{ margin-top: 30px; display:flex; flex-direction:column; gap:16px; }
.check-list li{
  display:flex; align-items:center; gap:12px; font-size:15.5px; color: var(--text);
}
.check-list svg{ width:20px; height:20px; color: var(--amber); flex-shrink:0; }

.glass-panel{
  background: rgba(23,26,38,0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.schedule-mock{ padding: 28px; }

.format-visual{ position: relative; }
.format-photo-wrap{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
  aspect-ratio: 1000 / 800;
}
.format-photo{
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.85) brightness(0.92);
}
.format-photo-wrap::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,13,22,0) 40%, rgba(10,13,22,0.72) 100%),
    linear-gradient(120deg, rgba(232,163,61,0.10), rgba(110,123,255,0.14));
}
.format-visual .schedule-mock{
  position: absolute; left: 20px; right: 20px; bottom: -28px;
}
.schedule-mock__row{
  display:grid; grid-template-columns: repeat(7, 1fr); gap:8px;
}
.schedule-mock__row--head{
  font-family: var(--font-mono); font-size:12px; color: var(--text-faint);
  text-align:center; margin-bottom:12px;
}
.schedule-mock__row--head span{ text-align:center; }
.slot{
  height: 44px; border-radius: 10px; background: var(--bg-elevated);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono); font-size:11px; color: transparent;
}
.slot--active{
  background: linear-gradient(135deg, rgba(232,163,61,0.22), rgba(110,123,255,0.18));
  color: var(--amber-light); border: 1px solid rgba(232,163,61,0.4);
}
.schedule-mock__caption{
  margin-top:18px; font-size:13px; color: var(--text-faint); text-align:center;
}

@media (max-width: 900px){
  .format-grid{ grid-template-columns: 1fr; }
  .format-visual .schedule-mock{ position: static; margin-top: 20px; }
}
@media (max-width: 480px){
  .schedule-mock__row{ grid-template-columns: repeat(7, minmax(0,1fr)); gap:4px; }
  .slot{ height:36px; font-size:9px; }
}

/* =========================================================
   Accordion / FAQ
========================================================= */
.accordion-item{ border-bottom: 1px solid var(--border-strong); }
.accordion-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 24px 0; text-align:left;
  font-family: var(--font-display); font-weight:500; font-size:16.5px;
}
.accordion-trigger svg{
  width:20px; height:20px; color: var(--text-muted); flex-shrink:0;
  transition: transform .3s var(--ease-soft);
}
.accordion-trigger[aria-expanded="true"] svg{ transform: rotate(180deg); color: var(--amber); }

.accordion-panel{
  display:grid; grid-template-rows: 0fr; overflow:hidden;
  transition: grid-template-rows .35s var(--ease-soft);
}
.accordion-panel > p{
  grid-row: 1; align-self: start; min-height:0; overflow:hidden;
  color: var(--text-muted); font-size:15.5px; padding-right: 40px;
}
.accordion-item.is-open .accordion-panel{ grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p{ padding-bottom: 22px; }

/* =========================================================
   Subscribe
========================================================= */
.subscribe .container--narrow{ max-width: 960px; }

.subscribe-card{
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 0.85fr 1fr;
  overflow: hidden;
}
.subscribe-photo-wrap{ position: relative; }
.subscribe-photo{
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.85) brightness(0.9);
}
.subscribe-photo-wrap::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,13,22,0.15) 0%, rgba(10,13,22,0) 40%),
    linear-gradient(120deg, rgba(232,163,61,0.10), rgba(110,123,255,0.14));
}
.subscribe-content{
  background: linear-gradient(160deg, var(--bg-elevated-2), var(--bg-elevated));
  padding: 52px 44px;
  position: relative;
}
.subscribe-content::before{
  content:""; position:absolute; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,163,61,0.14), transparent 70%);
  top:-140px; right:-120px; pointer-events:none;
}

.field{ margin-top: 20px; display:flex; flex-direction:column; gap:8px; }
.field label{ font-size: 13.5px; color: var(--text-muted); font-family: var(--font-mono); }
.optional{ color: var(--text-faint); }
.field input{
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 14px 16px; font-size:15.5px;
  transition: border-color .2s var(--ease-soft), box-shadow .2s var(--ease-soft);
}
.field input:focus{
  border-color: var(--amber); outline:none;
  box-shadow: 0 0 0 4px rgba(232,163,61,0.14);
}
.field input:invalid:not(:placeholder-shown):not(:focus){ border-color: #C05656; }
.field-error{ font-size:12.5px; color:#E08383; min-height:15px; }

.consent{
  margin-top: 22px; display:flex; align-items:flex-start; gap:12px;
  font-size: 13.5px; color: var(--text-muted); cursor:pointer;
}
.consent input{ margin-top:3px; width:16px; height:16px; accent-color: var(--amber); flex-shrink:0; }
.consent a{ color: var(--amber-light); text-decoration: underline; text-underline-offset:2px; }

#subscribe-form .btn{ margin-top: 26px; }
.form-note{ margin-top:14px; font-size:12.5px; color: var(--text-faint); text-align:center; }

.subscribe-success{ text-align:center; padding: 20px 0; animation: fade-up .5s var(--ease); }
.success-icon{ width:56px; height:56px; color: var(--amber); margin: 0 auto 20px; }
.subscribe-success h3{ font-family: var(--font-display); font-weight:600; font-size:22px; margin-bottom:12px; }
.subscribe-success p{ color: var(--text-muted); max-width: 42ch; margin-inline:auto; }
@keyframes fade-up{ from{ opacity:0; transform: translateY(10px); } to{ opacity:1; transform:none; } }

@media (max-width: 640px){
  .subscribe-card{ grid-template-columns: 1fr; }
  .subscribe-photo-wrap{ aspect-ratio: 16/9; }
  .subscribe-content{ padding: 36px 22px; }
}

/* =========================================================
   Footer
========================================================= */
.site-footer{ border-top: 1px solid var(--border); padding-top: 56px; }
.footer-inner{
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p{ margin-top:14px; color: var(--text-muted); font-size:14.5px; max-width:32ch; }
.footer-nav{ display:flex; flex-direction:column; gap:12px; font-size:14.5px; color: var(--text-muted); }
.footer-nav a:hover{ color: var(--text); }
.footer-label{ display:block; font-family: var(--font-mono); font-size:12px; color: var(--text-faint); margin-bottom:8px; }
.footer-contact a{ font-size:15.5px; color: var(--amber-light); }
.footer-copy{
  padding: 22px 0; border-top: 1px solid var(--border);
  font-size:13px; color: var(--text-faint);
}

@media (max-width: 700px){
  .footer-inner{ grid-template-columns: 1fr; gap:28px; }
}

/* =========================================================
   Scroll reveal
========================================================= */
[data-reveal]{
  opacity:0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

/* =========================================================
   Legal page
========================================================= */
.legal{ padding: 64px 0 100px; }
.legal-header{ margin-bottom: 48px; }
.legal-updated{
  font-family: var(--font-mono); font-size:13px; color: var(--text-faint); margin-top:10px;
}
.legal-body h2{
  font-family: var(--font-display); font-weight:600; font-size:20px;
  margin-top: 42px; margin-bottom: 14px;
}
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color: var(--text-muted); font-size:15.5px; margin-bottom:12px; }
.legal-body ul{ padding-left: 20px; list-style: disc; }
.legal-body a{ color: var(--amber-light); text-decoration:underline; text-underline-offset:2px; }
.legal-body strong{ color: var(--text); }
