/* ==========================================================================
   MYLO — Travel Concierge · Landing Page
   Brand-accurate dark theme (matches the live MYLO app):
   neutral near-black #111111 · soft peach accent #FFE0C2 · white wordmark.
   No build step, no framework.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* surfaces (neutral dark, matching the app) */
  --bg:        #101010;
  --bg-alt:    #151515;
  --surface:   #191919;
  --surface-2: #1F1F1F;
  --footer-bg: #0B0B0B;

  /* lines */
  --line:   rgba(245, 245, 243, 0.09);
  --line-2: rgba(245, 245, 243, 0.16);

  /* text */
  --text:      #F5F5F3;
  --text-soft: rgba(245, 245, 243, 0.78);
  --muted:     rgba(245, 245, 243, 0.52);

  /* accent (soft warm peach — the brand's button colour) */
  --accent:      #FFE0C2;
  --accent-2:    #F6CEA6;
  --accent-soft: rgba(255, 224, 194, 0.12);
  --accent-line: rgba(255, 224, 194, 0.38);
  --accent-ink:  #2A1C0E;   /* text on a peach surface */

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-xl: 30px; --pill: 999px;

  --shadow:    0 18px 50px -24px rgba(0,0,0,.7);
  --shadow-lg: 0 50px 110px -38px rgba(0,0,0,.9);
  --glow:      0 0 0 1px rgba(255,224,194,.16), 0 28px 80px -34px rgba(255,224,194,.30);

  --ff-display: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--ff-body); color: var(--text); background: var(--bg);
  line-height: 1.62; font-size: 17px; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.06; letter-spacing: -.022em; margin: 0; color: var(--text); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow { font-family: var(--ff-display); font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent-line); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow--ink { color: var(--muted); }
.eyebrow--ink::before { background: var(--line-2); }

.h-xl  { font-size: clamp(2.5rem, 5.2vw, 4.4rem); letter-spacing: -.035em; }
.h-lg  { font-size: clamp(2rem, 4.4vw, 3.3rem); letter-spacing: -.03em; }
.h-md  { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead  { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--text-soft); line-height: 1.6; }
.muted { color: var(--muted); }

.section-head { max-width: 760px; margin: 0 auto clamp(44px, 5vw, 68px); }
.section-head.center { text-align: center; }
.section-head .lead { margin-top: 1.1rem; }

.grad { background: linear-gradient(100deg, #ffe6cf 8%, #ffd2a8 55%, var(--accent-2) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Decorative -------------------------------------------------------- */
.grid-lines { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px; mask-image: radial-gradient(ellipse 75% 55% at 50% 0%, #000 28%, transparent 72%); opacity: .55; }

/* ---- Logo --------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 30px; width: auto; }
.menu .logo__img { height: 30px; }

/* ---- Buttons ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  padding: .92rem 1.55rem; border-radius: 14px; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s, border-color .2s;
  white-space: nowrap; line-height: 1; }
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(180deg, #ffe9d6, #f8d4b2); color: var(--accent-ink); box-shadow: var(--glow); }
.btn--primary:hover { background: linear-gradient(180deg, #fff0e3, #ffdcbd); box-shadow: 0 0 0 1px rgba(255,224,194,.28), 0 32px 80px -28px rgba(255,224,194,.5); }
.btn--gold { background: linear-gradient(180deg, #ffe9d6, #f8d4b2); color: var(--accent-ink); }
.btn--gold:hover { background: linear-gradient(180deg, #fff0e3, #ffdcbd); }
.btn--ghost { background: rgba(245,245,243,.02); color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent-line); background: rgba(245,245,243,.05); }
.btn--lg { padding: 1.08rem 1.95rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---- Nav ---------------------------------------------------------------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(16,16,16,.55);
  backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(16,16,16,.84); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .97rem; color: var(--text-soft); transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--text); }
.nav__toggle svg { width: 26px; height: 26px; }
@media (max-width: 900px) { .nav__links, .nav__cta .btn--ghost, .nav__cta .btn--primary { display: none; } .nav__toggle { display: inline-flex; } }

.menu { position: fixed; inset: 0; z-index: 80; background: var(--bg); display: flex; flex-direction: column; padding: 22px var(--gutter); transform: translateY(-100%); transition: transform .4s var(--ease); visibility: hidden; }
.menu.is-open { transform: none; visibility: visible; }
.menu__top { display: flex; align-items: center; justify-content: space-between; height: 50px; }
.menu__close { background: none; border: 0; color: var(--text); padding: 6px; }
.menu__close svg { width: 28px; height: 28px; }
.menu__links { display: flex; flex-direction: column; gap: .2rem; margin-top: 2.4rem; }
.menu__links a { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600; padding: .55rem 0; color: var(--text); border-bottom: 1px solid var(--line); }
.menu__foot { margin-top: auto; padding-top: 2rem; }

/* ---- Hero (centered, product-forward) ----------------------------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 38% at 50% -4%, rgba(255,224,194,.16), transparent 64%),
    radial-gradient(60% 50% at 50% -10%, rgba(255,224,194,.06), transparent 70%); }
.hero .container { z-index: 1; text-align: center; }
.hero .eyebrow { margin-inline: auto; }
.hero h1 { margin: .5rem auto 0; max-width: 18ch; }
.hero h1 .grad { display: inline; }
.hero__lead { margin: 1.5rem auto 0; max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2.1rem auto 0; justify-content: center; }
.hero__support { margin: 1.3rem auto 0; font-size: .94rem; color: var(--muted); display: inline-flex; align-items: center; gap: .5rem; }
.hero__support svg { width: 1.05em; height: 1.05em; flex: none; color: var(--accent); }
.hero .chips { justify-content: center; }

.hero__shot { position: relative; width: 100%; max-width: 1000px; margin: clamp(44px, 6vw, 76px) auto 0; }
.hero__halo { position: absolute; inset: -18% 6% auto; height: 70%; background: radial-gradient(circle, rgba(255,224,194,.22), transparent 64%); filter: blur(12px); z-index: 0; }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .84rem; font-weight: 500; color: var(--text-soft); background: rgba(245,245,243,.04); border: 1px solid var(--line); padding: .44rem .85rem; border-radius: var(--pill); }
.chip svg { width: 1em; height: 1em; color: var(--accent); flex: none; }

/* Browser frame */
.browser { position: relative; width: 100%; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line-2); overflow: hidden; box-shadow: var(--shadow-lg); z-index: 1; }
.browser::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,224,194,.22); z-index: 2; }
.browser__bar { display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.browser__dots { display: flex; gap: .4rem; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: block; }
.browser__url { flex: 1; text-align: center; font-size: .76rem; color: var(--muted); background: rgba(0,0,0,.3); border-radius: var(--pill); padding: .3rem .8rem; margin-left: .4rem; max-width: 360px; margin-inline: auto; }
.browser__url svg { width: .85em; height: .85em; vertical-align: -1px; margin-right: .3rem; color: var(--accent); display: inline-block; }
.browser img { width: 100%; display: block; }

.float-badge { position: absolute; z-index: 3; background: rgba(25,25,25,.9); border: 1px solid var(--line-2); border-radius: var(--r); padding: .7rem .95rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; font-size: .86rem; font-weight: 600; color: var(--text); backdrop-filter: blur(6px); }
.float-badge small { display: block; font-weight: 500; color: var(--muted); font-size: .76rem; }
.float-badge .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(245,245,243,.06); color: var(--accent); flex: none; }
.float-badge .ico svg { width: 18px; height: 18px; }
.float-badge .ico--gold { background: var(--accent-soft); color: var(--accent); }
.float-badge--a { top: 16%; left: -3%; }
.float-badge--b { bottom: 14%; right: -3%; }
@media (max-width: 720px) { .float-badge { display: none; } .hero h1 { max-width: 14ch; } }

/* ---- Stats band --------------------------------------------------------- */
.band-note { text-align: center; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-display); font-weight: 600; }
.kvs { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4.5rem); margin-top: 1.8rem; }
.kv { text-align: center; position: relative; }
.kv + .kv::before { content: ""; position: absolute; left: clamp(-.75rem,-2.5vw,-2.25rem); top: 10%; bottom: 10%; width: 1px; background: var(--line); }
.kv b { display: block; font-family: var(--ff-display); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -.02em; color: var(--accent); }
.kv span { font-size: .9rem; color: var(--muted); max-width: 22ch; display: inline-block; }

/* ---- Problem ------------------------------------------------------------ */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2.6rem; }
@media (max-width: 720px) { .pains { grid-template-columns: 1fr; } }
.pain { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.6rem; transition: border-color .3s; }
.pain:hover { border-color: var(--line-2); }
.pain h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.pain h3::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-right: .6rem; vertical-align: middle; }
.pain p { font-size: .97rem; color: var(--muted); }

/* ---- Cards / benefits --------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .cards { grid-template-columns: 1fr; } }
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; overflow: hidden; }
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-line), transparent); opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card:hover::after { opacity: 1; }
.card__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 1.2rem; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.card p { color: var(--text-soft); font-size: 1rem; }
.card--feature { background: linear-gradient(170deg, #232323, #181818); border-color: var(--accent-line); }
.card--feature .card__icon { background: linear-gradient(180deg, #ffe9d6, #f8d4b2); color: var(--accent-ink); }

/* ---- How it works ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.9rem 1.7rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.step__n { font-family: var(--ff-display); font-weight: 600; display: flex; align-items: baseline; gap: .55rem; margin-bottom: 1.1rem; }
.step__n::before { content: counter(step, decimal-leading-zero); counter-increment: step; font-size: 2rem; letter-spacing: -.02em; color: var(--accent); }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--text-soft); font-size: 1rem; }

/* ---- Split / providers -------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.checklist { display: grid; gap: .9rem; margin-top: 1.9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1.02rem; color: var(--text-soft); }
.checklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.checklist .tick svg { width: 15px; height: 15px; }
.panel-dark { background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 52px); position: relative; overflow: hidden; }
.panel-dark__streaks { position: absolute; inset: 0; opacity: .9; pointer-events: none; }

/* ---- App preview -------------------------------------------------------- */
.prompts { display: grid; gap: .8rem; }
.prompt { display: flex; align-items: flex-start; gap: .85rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.15rem; font-size: 1.02rem; color: var(--text); transition: border-color .3s, transform .3s; }
.prompt:hover { border-color: var(--accent-line); transform: translateX(4px); }
.prompt__avatar { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.prompt__avatar svg { width: 16px; height: 16px; }

/* ---- Pricing ------------------------------------------------------------ */
.price-wrap { display: flex; justify-content: center; }
.price-card { width: min(500px, 100%); background: linear-gradient(180deg, #1c1c1c, #141414); border: 1px solid var(--accent-line); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 46px); box-shadow: var(--glow); position: relative; overflow: hidden; }
.price-card__ribbon { position: absolute; top: 20px; right: -44px; transform: rotate(45deg); background: linear-gradient(180deg, #ffe9d6, #f8d4b2); color: var(--accent-ink); font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .08em; padding: .4rem 3.4rem; }
.price-amount { display: flex; align-items: baseline; gap: .35rem; margin: 1rem 0 .3rem; }
.price-amount .cur { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--text); }
.price-amount .num { font-family: var(--ff-display); font-size: clamp(3.4rem, 7vw, 4.4rem); font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--text); }
.price-amount .per { color: var(--muted); font-size: 1rem; }
.price-feats { display: grid; gap: .85rem; margin: 1.7rem 0; }
.price-feats li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--text-soft); }
.price-feats .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.price-feats .tick svg { width: 14px; height: 14px; }
.price-card .below { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 1rem; }
.price-trust { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.2rem; font-size: .85rem; color: var(--muted); }
.price-trust svg { width: 1em; height: 1em; color: var(--accent); flex: none; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: 1.4rem 2.5rem 1.4rem 0; font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; color: var(--text); position: relative; transition: color .2s; }
.faq__q:hover { color: var(--accent); }
.faq__q::after { content: ""; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: translateY(-65%) rotate(45deg); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q::after { transform: translateY(-35%) rotate(-135deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 0 1.4rem; color: var(--text-soft); font-size: 1.02rem; max-width: 68ch; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, #222, #141414); border: 1px solid var(--accent-line); border-radius: var(--r-xl); padding: clamp(44px, 6vw, 88px); text-align: center; box-shadow: var(--glow); }
.cta-band::before { content: ""; position: absolute; inset: -40% 20% auto; height: 70%; background: radial-gradient(circle, rgba(255,224,194,.20), transparent 65%); filter: blur(12px); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .lead { margin: 1.1rem auto 2rem; max-width: 54ch; }
.cta-band__streaks { position: absolute; inset: 0; opacity: .8; pointer-events: none; z-index: 0; }
.cta-band .microcopy { margin-top: 1.1rem; font-size: .88rem; color: var(--muted); }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--footer-bg); padding-block: clamp(48px, 6vw, 78px) 2rem; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--ff-display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer a { color: var(--text-soft); font-size: .96rem; display: inline-block; padding: .25rem 0; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer__brand p { color: var(--muted); font-size: .95rem; margin-top: 1rem; max-width: 34ch; }
.footer__bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__bottom p { color: var(--muted); font-size: .86rem; }
.footer__disclaimer { font-size: .82rem; color: var(--muted); margin-top: 1.4rem; line-height: 1.65; max-width: 96ch; }

/* ---- Legal pages -------------------------------------------------------- */
.legal { padding-block: clamp(40px, 6vw, 72px) clamp(48px, 7vw, 96px); }
.legal__head { border-bottom: 1px solid var(--line); padding-bottom: 1.7rem; margin-bottom: 2.4rem; }
.legal__head .back { font-size: .9rem; color: var(--muted); display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.1rem; }
.legal__head .back:hover { color: var(--accent); }
.legal__head .back svg { width: 1.05em; height: 1.05em; flex: none; }
.legal__updated { font-size: .88rem; color: var(--muted); margin-top: .6rem; }
.legal__body { max-width: 780px; }
.legal__body h2 { font-size: 1.34rem; margin: 2.5rem 0 .8rem; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.08rem; margin: 1.5rem 0 .5rem; }
.legal__body p { margin-bottom: 1rem; color: var(--text-soft); }
.legal__body ul { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.legal__body li { margin-bottom: .55rem; padding-left: 1.5rem; position: relative; color: var(--text-soft); }
.legal__body li::before { content: ""; position: absolute; left: .15rem; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-line); }
.legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__body strong { color: var(--text); }
.legal-toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.5rem; margin-bottom: 2.6rem; }
.legal-toc h4 { font-family: var(--ff-display); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 .8rem; }
.legal-toc a { display: block; padding: .22rem 0; font-size: .96rem; color: var(--text-soft); }
.legal-toc a:hover { color: var(--accent); }
.placeholder { background: var(--accent-soft); color: var(--accent); padding: .05em .35em; border-radius: 5px; font-style: normal; font-weight: 600; border: 1px solid var(--accent-line); }

/* ---- Reveal (gated on .js so content never hidden without JS) ----------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; } }

/* ---- Misc --------------------------------------------------------------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--accent-ink); padding: .7rem 1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.bg-warm, .bg-mint { background: var(--bg-alt); }
