/* ═══════════════════════════════════════════
   DESIGN SYSTEM — refined dark SaaS
   Font: Plus Jakarta Sans
   ═══════════════════════════════════════════ */
:root {
  --bg:        #080c14;
  --surface:   #0d1320;
  --card:      #111827;
  --border:    rgba(255,255,255,.07);
  --border-h:  rgba(99,102,241,.4);
  --indigo:    #6366f1;
  --indigo-d:  #4f46e5;
  --violet:    #8b5cf6;
  --green:     #22c55e;
  --amber:     #f59e0b;
  --fb:        #1877F2;
  --t1:        #f1f5f9;
  --t2:        #94a3b8;
  --t3:        #475569;
  --r-sm:5px; --r-md:10px; --r-lg:14px; --r-xl:20px; --r-2xl:28px; --r-full:9999px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg); color: var(--t1); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
}
a { text-decoration: none; color: inherit; }
p { margin: 0; }

/* dot-grid texture */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── TYPE ─────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: var(--r-full);
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2);
  font-size: 11px; font-weight: 700; letter-spacing: .9px;
  text-transform: uppercase; color: var(--indigo);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); }
.display {
  font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800;
  letter-spacing: -1.2px; line-height: 1.1; color: var(--t1);
}
.display .hi {
  background: linear-gradient(130deg, #818cf8 20%, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lead { font-size: 1rem; color: var(--t2); line-height: 1.75; max-width: 500px; }

/* ── BUTTONS ──────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; border-radius: var(--r-lg);
  border: none; cursor: pointer; transition: all .18s;
  font-family: inherit; white-space: nowrap; text-decoration: none;
}
.btn-xl { font-size: 1rem; padding: 14px 28px; }
.btn-lg { font-size: .92rem; padding: 11px 22px; }
.btn-sm { font-size: .82rem; padding: 7px 14px; }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: 0 4px 24px rgba(99,102,241,.3); }
.btn-indigo:hover { background: var(--indigo-d); transform: translateY(-1px); color: #fff; box-shadow: 0 6px 32px rgba(99,102,241,.45); }
.btn-ghost { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--t2); }
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.13); color: var(--t1); }
.btn-fb { background: var(--fb); color: #fff; box-shadow: 0 4px 20px rgba(24,119,242,.25); }
.btn-fb:hover { background: #166fe5; transform: translateY(-1px); color: #fff; }

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,12,20,.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.1rem; font-weight: 800; color: var(--t1);
}
.nav-brand img { height: 27px; border-radius: 6px; mix-blend-mode: lighten; }
.nav-beta {
  padding: 2px 7px; border-radius: var(--r-full);
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.22);
  font-size: 9px; font-weight: 800; letter-spacing: .7px;
  text-transform: uppercase; color: var(--amber);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  padding: 6px 13px; border-radius: var(--r-md);
  font-size: .88rem; font-weight: 500; color: var(--t2);
  transition: color .14s, background .14s;
}
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,.05); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-hamburger span {
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--t2); transition: all .22s;
  display: block;
}
.nav-hamburger.open span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2){ opacity:0; }
.nav-hamburger.open span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }
.nav-drawer {
  display: none; flex-direction: column;
  position: fixed; top: 60px; left: 0; right: 0;
  background: rgba(8,12,20,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px 20px; gap: 4px; z-index: 199;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 11px 14px; border-radius: var(--r-lg);
  font-size: .95rem; font-weight: 600; color: var(--t2);
  transition: color .14s, background .14s;
}
.nav-drawer a:hover { color: var(--t1); background: rgba(255,255,255,.05); }
.nav-drawer .btn { width: 100%; margin-top: 6px; }
@media(max-width:640px){
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg); padding: 80px 24px 96px;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(72px);
}
.hero-glow-a {
  width: 700px; height: 420px; top: -100px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(99,102,241,.13), transparent 65%);
}
.hero-glow-b {
  width: 280px; height: 280px; top: 30%; right: 4%;
  background: radial-gradient(ellipse, rgba(139,92,246,.07), transparent 65%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px; border-radius: var(--r-full);
  background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.17);
  font-size: 12px; font-weight: 700; color: var(--green); width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 4px; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--t3); }

/* Hero chat — FIXED HEIGHT, no growth */
.hero-chat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: 0 0 60px rgba(99,102,241,.16), 0 24px 60px rgba(0,0,0,.5);
}
.hc-bar {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 15px; background: rgba(8,12,20,.6);
  border-bottom: 1px solid var(--border);
}
.hc-dots { display: flex; gap: 5px; }
.hc-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hc-dots span:nth-child(1){background:#ef4444}
.hc-dots span:nth-child(2){background:#f59e0b}
.hc-dots span:nth-child(3){background:#22c55e}
.hc-channel { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--t2); }
.hc-fb-ico { width: 18px; height: 18px; border-radius: 50%; background: var(--fb); display: flex; align-items: center; justify-content: center; }
.hc-online { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 3px; }
.hc-online::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--green); display:block; animation:blink 2s ease-in-out infinite; }
/* FIXED HEIGHT — this is the key fix */
.hc-msgs { height: 272px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 9px; scroll-behavior: smooth; }
.hc-msgs::-webkit-scrollbar { width: 3px; }
.hc-msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 2px; }
.hc-msg { display: flex; gap: 6px; align-items: flex-end; }
.hc-msg.cust { flex-direction: row-reverse; }
.hc-av { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.hc-av.bot { background: linear-gradient(135deg,var(--indigo),var(--violet)); }
.hc-av.cust { background: var(--fb); }
.hc-bub { max-width: 78%; padding: 8px 12px; font-size: 12.5px; line-height: 1.5; border-radius: 13px; }
.hc-msg.bot  .hc-bub { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.12); color: var(--t1); border-bottom-left-radius: 3px; }
.hc-msg.cust .hc-bub { background: var(--fb); color: #fff; border-bottom-right-radius: 3px; }
.hc-typing { display: flex; gap: 6px; align-items: flex-end; }
.hc-tbub { padding: 9px 13px; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.12); border-radius: 13px; border-bottom-left-radius: 3px; display: flex; gap: 4px; align-items: center; }
.hc-tbub span { width: 5px; height: 5px; border-radius: 50%; background: var(--indigo); opacity:.4; animation: tdot 1.2s ease-in-out infinite; }
.hc-tbub span:nth-child(2){animation-delay:.2s} .hc-tbub span:nth-child(3){animation-delay:.4s}
@keyframes tdot{0%,80%,100%{opacity:.3;transform:scale(.8)}40%{opacity:1;transform:scale(1)}}
.hc-inputbar { display: flex; align-items: center; gap: 7px; padding: 9px 13px; border-top: 1px solid var(--border); background: rgba(8,12,20,.4); }
.hc-input { flex:1; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 18px; padding: 7px 12px; font-size: 12px; color: var(--t2); outline: none; font-family: inherit; }
.hc-send { width: 28px; height: 28px; border-radius: 50%; background: var(--indigo); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }

@media(max-width:900px){ .hero-inner{grid-template-columns:1fr;gap:44px;} .hero-chat{max-width:440px;margin:0 auto;} }
@media(max-width:560px){ .hero{padding:60px 20px 72px;} .hero-trust{display:none;} }

/* ═══════════════════════════════════
   PROOF BAR
   ═══════════════════════════════════ */
.proof-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 24px; }
.proof-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
.proof-stat { display: flex; flex-direction: column; align-items: center; padding: 6px 36px; position: relative; }
.proof-stat:not(:last-child)::after { content:''; position:absolute; right:0; top:20%; height:60%; width:1px; background:var(--border); }
.proof-n { font-size: 1.55rem; font-weight: 900; color: var(--t1); letter-spacing: -.5px; line-height: 1; }
.proof-n em { color: var(--indigo); font-style: normal; }
.proof-l { font-size: 11px; color: var(--t3); margin-top: 3px; }
@media(max-width:560px){ .proof-stat{padding:6px 16px;} .proof-n{font-size:1.2rem;} }

/* ═══════════════════════════════════
   SECTION HEAD
   ═══════════════════════════════════ */
.s-head { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 52px; text-align: center; }
.s-head .lead { margin: 0 auto; text-align: center; }

/* ═══════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════ */
.how-sec { padding: 96px 24px; background: var(--bg); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.how-step { background: var(--card); padding: 34px 26px; display: flex; flex-direction: column; gap: 14px; transition: background .2s; }
.how-step:hover { background: #131d2e; }
.how-n { width: 34px; height: 34px; border-radius: 10px; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--indigo); }
.how-step h3 { font-size: .95rem; font-weight: 700; color: var(--t1); }
.how-step p  { font-size: .84rem; color: var(--t2); line-height: 1.7; }
@media(max-width:680px){ .how-steps{grid-template-columns:1fr;} }

/* ═══════════════════════════════════
   FEATURES
   ═══════════════════════════════════ */
.feat-sec { padding: 96px 24px; background: var(--surface); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; transition: border-color .18s, transform .18s; }
.feat-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.feat-ico { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 19px; }
.feat-card h3 { font-size: .92rem; font-weight: 700; color: var(--t1); }
.feat-card p  { font-size: .83rem; color: var(--t2); line-height: 1.7; }
@media(max-width:860px){ .feat-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:520px){ .feat-grid{grid-template-columns:1fr;} }

/* ═══════════════════════════════════
   CHANNELS
   ═══════════════════════════════════ */
.ch-sec { padding: 96px 24px; background: var(--bg); text-align: center; }
.ch-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 44px; }
.ch-pill { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--r-xl); background: var(--card); border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--t1); transition: border-color .16s, transform .14s; }
.ch-pill:hover { border-color: var(--border-h); transform: translateY(-2px); }
.ch-ico { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ch-soon { font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: var(--amber); background: rgba(245,158,11,.09); border: 1px solid rgba(245,158,11,.18); padding: 2px 6px; border-radius: var(--r-full); margin-left: 2px; }
.ch-live { font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: var(--green); background: rgba(34,197,94,.09); border: 1px solid rgba(34,197,94,.18); padding: 2px 6px; border-radius: var(--r-full); margin-left: 2px; }

/* ═══════════════════════════════════
   LIVE DEMO
   ═══════════════════════════════════ */
.demo-sec { padding: 96px 24px; background: var(--surface); }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.demo-copy { display: flex; flex-direction: column; gap: 18px; }
.demo-copy .lead { max-width: 420px; }
.demo-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.demo-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--t2); line-height: 1.5; }
.demo-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
/* live chat widget */
.lcw { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; box-shadow: 0 0 50px rgba(99,102,241,.12); }
.lcw-head { display: flex; align-items: center; gap: 9px; padding: 13px 16px; background: rgba(8,12,20,.5); border-bottom: 1px solid var(--border); }
.lcw-head-ico { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg,var(--indigo),var(--violet)); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.lcw-head-name { font-size: 13px; font-weight: 700; color: var(--t1); }
.lcw-head-sub  { font-size: 10px; color: var(--green); }
.lcw-msgs { height: 250px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 9px; scroll-behavior: smooth; }
.lcw-msgs::-webkit-scrollbar { width: 3px; }
.lcw-msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.07); }
.lcw-msg { display: flex; gap: 7px; }
.lcw-msg.user { flex-direction: row-reverse; }
.lcw-bub { max-width: 80%; padding: 9px 12px; border-radius: 13px; font-size: 13px; line-height: 1.5; }
.lcw-msg.bot  .lcw-bub { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.12); color: var(--t1); border-bottom-left-radius: 3px; }
.lcw-msg.user .lcw-bub { background: var(--indigo); color: #fff; border-bottom-right-radius: 3px; }
.lcw-typing { display: flex; gap: 7px; }
.lcw-tbub { padding: 10px 13px; background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.12); border-radius: 13px; border-bottom-left-radius: 3px; display: flex; gap: 4px; }
.lcw-tbub span { width: 5px; height: 5px; border-radius: 50%; background: var(--indigo); opacity: .4; animation: tdot 1.2s ease-in-out infinite; }
.lcw-tbub span:nth-child(2){animation-delay:.2s} .lcw-tbub span:nth-child(3){animation-delay:.4s}
.lcw-input-row { display: flex; gap: 8px; align-items: center; padding: 11px 14px; border-top: 1px solid var(--border); }
.lcw-input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 18px; padding: 8px 13px; font-size: 13px; color: var(--t1); outline: none; font-family: inherit; transition: border-color .14s; }
.lcw-input:focus { border-color: rgba(99,102,241,.4); }
.lcw-input::placeholder { color: var(--t3); }
.lcw-send { width: 34px; height: 34px; border-radius: 50%; background: var(--indigo); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; transition: background .14s, transform .1s; }
.lcw-send:hover { background: var(--indigo-d); }
.lcw-send:active { transform: scale(.9); }
@media(max-width:860px){ .demo-grid{grid-template-columns:1fr;gap:36px;} }

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq-sec { padding: 96px 24px; background: var(--bg); }
.faq-sec .wrap { max-width: 700px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 0; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .14s; }
.faq-item:hover { border-color: rgba(99,102,241,.2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 19px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: .93rem; font-weight: 600; color: var(--t1); text-align: left; gap: 10px; }
.faq-q svg { flex-shrink: 0; color: var(--t3); transition: transform .22s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--indigo); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s; font-size: .855rem; color: var(--t2); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 280px; padding: 0 19px 16px; }
.faq-a a { color: var(--indigo); }

/* ═══════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════ */
.cta-sec { position: relative; overflow: hidden; background: var(--surface); border-top: 1px solid var(--border); padding: 96px 24px; text-align: center; }
.cta-sec::before { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,.09), transparent 65%); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner .display { font-size: clamp(1.7rem, 3.8vw, 2.7rem); margin-bottom: 12px; }
.cta-inner .lead { margin: 0 auto 28px; }
.cta-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.cta-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: var(--t3); }
.cta-sep { width: 1px; height: 12px; background: var(--border); }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 52px 24px 28px; }
.footer-wrap { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 1.05rem; font-weight: 800; color: var(--t1); }
.footer-brand img { height: 24px; border-radius: 5px; mix-blend-mode: lighten; }
.footer-desc { font-size: .84rem; color: var(--t3); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--t3); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: .84rem; color: var(--t2); transition: color .14s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 22px; }
.footer-bottom p, .footer-bottom a { font-size: .78rem; color: var(--t3); }
.footer-bottom a:hover { color: var(--indigo); }
@media(max-width:680px){ .footer-top{grid-template-columns:1fr;gap:24px;} }

/* ── PRIVACY / DATA DELETION ────── */
.legal-page { max-width: 740px; margin: 0 auto; padding: 60px 24px 88px; }
.legal-page h1 { font-size: 1.9rem; font-weight: 800; color: var(--t1); letter-spacing: -.4px; margin-bottom: 6px; background: none; -webkit-text-fill-color: var(--t1); }
.legal-meta { font-size: .84rem; color: var(--t3); margin-bottom: 36px; display: block; }
.legal-page h2 { font-size: 1rem; font-weight: 700; color: var(--t1); margin: 32px 0 8px; }
.legal-page p, .legal-page li { font-size: .88rem; color: var(--t2); line-height: 1.8; margin-bottom: .5rem; }
.legal-page ul, .legal-page ol { margin-left: 18px; margin-bottom: 10px; }
.legal-page a { color: var(--indigo); transition: color .14s; }
.legal-page a:hover { color: #818cf8; }
.legal-callout { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--indigo); border-radius: 0 var(--r-lg) var(--r-lg) 0; padding: 14px 18px; margin: 18px 0; font-size: .86rem; color: var(--t2); line-height: 1.7; }
.legal-warning { background: rgba(245,158,11,.05); border: 1px solid rgba(245,158,11,.18); border-radius: var(--r-lg); padding: 12px 16px; margin: 16px 0; font-size: .86rem; color: var(--amber); line-height: 1.6; }

/* ── REVEAL ANIMATION ───────────── */
.reveal { opacity: 1; transform: none; }
.reveal.js { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.js.in { opacity: 1; transform: none; }
noscript .reveal { opacity: 1; transform: none; }
