/* ============================================================
   LUNA STUDIO LLP — Shared Stylesheet
   Design system preserved from original single-file build.
   Used across: index.html, privacy-policy.html,
   terms-and-conditions.html, community-guidelines.html
   ============================================================ */

:root{
  --navy-deep:#081226;
  --midnight:#0F172A;
  --midnight-soft:#111d36;
  --accent:#2563EB;
  --highlight:#3B82F6;
  --accent-soft:#60A5FA;
  --white:#F8FAFC;
  --gray:#94A3B8;
  --gray-dim:#64748B;
  --border:rgba(255,255,255,0.09);
  --border-strong:rgba(255,255,255,0.16);
  --card-bg:rgba(255,255,255,0.025);
  --card-bg-hover:rgba(37,99,235,0.07);
  --shadow-glow:0 0 60px rgba(37,99,235,0.25);
  --radius:18px;
  --radius-sm:12px;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --font-display:'Sora',sans-serif;
  --font-body:'Plus Jakarta Sans',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  background:
    radial-gradient(ellipse 900px 700px at 85% -5%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(ellipse 800px 600px at -5% 35%, rgba(59,130,246,0.10), transparent 55%),
    radial-gradient(ellipse 1000px 800px at 50% 110%, rgba(37,99,235,0.12), transparent 60%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--midnight) 55%, #0a1530 100%);
  background-attachment:fixed;
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:none;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;}
input,textarea{font-family:inherit;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  margin:0;
  line-height:1.12;
  letter-spacing:-0.01em;
  font-weight:700;
}
p{margin:0;color:var(--gray);line-height:1.7;}

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

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
.section{
  padding:120px 0;
  position:relative;
}
@media (max-width:768px){
  .section{padding:80px 0;}
  .wrap{padding:0 22px;}
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--accent-soft);
  margin-bottom:18px;
}
.eyebrow .dot-mark{width:14px;height:14px;flex-shrink:0;}

.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(32px,4vw,44px);
  margin-bottom:18px;
}
.section-head p{font-size:17px;}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,.cursor-ring{
  position:fixed;
  top:0;left:0;
  border-radius:50%;
  pointer-events:none;
  z-index:3000;
  transform:translate(-50%,-50%);
  will-change:transform;
}
.cursor-dot{
  width:6px;height:6px;
  background:var(--accent-soft);
  transition:opacity .2s var(--ease), transform .15s var(--ease);
}
.cursor-ring{
  width:34px;height:34px;
  border:1.5px solid rgba(96,165,250,0.55);
  transition:width .25s var(--ease), height .25s var(--ease),
             border-color .25s var(--ease), opacity .25s var(--ease),
             transform .12s linear;
}
.cursor-ring.is-active{
  width:52px;height:52px;
  border-color:rgba(96,165,250,0.9);
  background:rgba(37,99,235,0.08);
}
body.cursor-hidden .cursor-dot,body.cursor-hidden .cursor-ring{opacity:0;}
@media (max-width:880px),(pointer:coarse){
  .cursor-dot,.cursor-ring{display:none;}
  body{cursor:auto;}
}

/* ============================================================
   LOGO MARK
   ============================================================ */
.logo-defs{position:absolute;width:0;height:0;overflow:hidden;}

.logo-group{display:inline-flex;align-items:center;gap:11px;}
.logo-mark-img{width:32px;height:auto;flex-shrink:0;filter:drop-shadow(0 2px 10px rgba(37,99,235,0.45));}
.logo-wordmark{
  font-family:var(--font-display);
  font-size:19px;
  font-weight:700;
  color:var(--white);
  letter-spacing:-0.01em;
}
.logo-wordmark span{
  background:linear-gradient(120deg,var(--highlight),var(--accent-soft));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.orbit-ring{
  transform-origin:50px 50px;
  animation:spin-orbit 14s linear infinite;
}
@media (prefers-reduced-motion:reduce){
  .orbit-ring{animation:none;}
}
@keyframes spin-orbit{
  from{transform:rotate(-15deg);}
  to{transform:rotate(345deg);}
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  padding:22px 0;
  transition:background-color .4s var(--ease),
             border-color .4s var(--ease),
             padding .4s var(--ease),
             backdrop-filter .4s var(--ease);
  border-bottom:1px solid transparent;
}
.nav.is-scrolled{
  padding:14px 0;
  background:rgba(8,18,38,0.78);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--border);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:38px;
}
.nav-links a{
  font-size:14.5px;
  font-weight:500;
  color:var(--gray);
  transition:color .25s var(--ease);
  position:relative;
}
.nav-links a:hover,.nav-links a.is-active{color:var(--white);}
.nav-right{display:flex;align-items:center;gap:28px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14.5px;
  font-weight:600;
  padding:12px 24px;
  border-radius:10px;
  border:1px solid transparent;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#1d4ed8);
  color:var(--white);
  box-shadow:0 1px 0 rgba(255,255,255,0.12) inset, 0 8px 24px -8px rgba(37,99,235,0.55);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 1px 0 rgba(255,255,255,0.16) inset, 0 14px 30px -8px rgba(37,99,235,0.7);
}
.btn-secondary{
  background:rgba(255,255,255,0.03);
  border-color:var(--border-strong);
  color:var(--white);
}
.btn-secondary:hover{
  background:rgba(255,255,255,0.07);
  transform:translateY(-2px);
}
.btn-sm{padding:10px 20px;font-size:13.5px;}

.nav-toggle{
  display:none;
  width:38px;height:38px;
  border:1px solid var(--border-strong);
  border-radius:9px;
  background:rgba(255,255,255,0.03);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}
.nav-toggle span{
  width:16px;height:1.5px;background:var(--white);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1){transform:translateY(5.5px) rotate(45deg);}
.nav-toggle.is-open span:nth-child(2){opacity:0;}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-5.5px) rotate(-45deg);}

.mobile-panel{
  position:fixed;
  top:0;right:0;
  height:100vh;
  width:min(78vw,320px);
  background:rgba(10,20,42,0.97);
  backdrop-filter:blur(20px);
  border-left:1px solid var(--border);
  transform:translateX(100%);
  transition:transform .4s var(--ease);
  z-index:999;
  padding:100px 32px 40px;
  display:flex;
  flex-direction:column;
  gap:28px;
  overflow-y:auto;
}
.mobile-panel.is-open{transform:translateX(0);}
.mobile-panel a{font-size:18px;font-weight:500;color:var(--white);}
.mobile-panel .btn{margin-top:8px;}

@media (max-width:880px){
  .nav-links{display:none;}
  .nav-right .btn-sm{display:none;}
  .nav-toggle{display:flex;}
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:140px;
  padding-bottom:80px;
  position:relative;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  align-items:center;
  gap:60px;
}
.hero-copy h1{
  font-size:clamp(40px,5.4vw,64px);
  margin-bottom:24px;
}
.hero-copy h1 .grad{
  background:linear-gradient(120deg,var(--white) 30%,var(--accent-soft));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-copy p{
  font-size:18px;
  max-width:520px;
  margin-bottom:38px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
.hero-actions .btn{padding:14px 28px;font-size:15px;}

.hero-visual{
  position:relative;
  height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual svg{width:100%;height:100%;max-width:480px;position:absolute;inset:0;}
.hero-logo-badge{
  position:relative;
  z-index:2;
  width:128px;
  height:auto;
  filter:drop-shadow(0 12px 40px rgba(37,99,235,0.55));
  animation:float-badge 6s ease-in-out infinite;
}
@keyframes float-badge{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
@media (prefers-reduced-motion:reduce){
  .hero-logo-badge{animation:none;}
}
.orbit-track{
  transform-origin:250px 250px;
  animation:spin-orbit-slow 50s linear infinite;
}
.orbit-track-2{
  transform-origin:250px 250px;
  animation:spin-orbit-rev 70s linear infinite;
}
@keyframes spin-orbit-slow{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
@keyframes spin-orbit-rev{from{transform:rotate(360deg);}to{transform:rotate(0deg);}}
@media (prefers-reduced-motion:reduce){
  .orbit-track,.orbit-track-2{animation:none;}
}

@media (max-width:980px){
  .hero-inner{grid-template-columns:1fr;text-align:center;gap:36px;}
  .hero-copy p{margin-left:auto;margin-right:auto;}
  .hero-actions{justify-content:center;}
  .hero-visual{height:340px;order:-1;}
  .hero{padding-top:120px;}
}

/* ============================================================
   SHARED CARD / GRID PATTERNS
   ============================================================ */
.card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(59,130,246,0.35);
  background:var(--card-bg-hover);
}
.card-icon{
  width:46px;height:46px;
  border-radius:12px;
  background:linear-gradient(135deg,rgba(37,99,235,0.18),rgba(59,130,246,0.06));
  border:1px solid rgba(59,130,246,0.25);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  color:var(--accent-soft);
}
.card-icon svg{width:22px;height:22px;}
.card h3{font-size:18px;margin-bottom:10px;}
.card p{font-size:14.5px;}

/* reveal-on-scroll */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none;}
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:64px;
  align-items:start;
}
.about-copy p{font-size:16px;margin-bottom:18px;}
.about-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width:900px){
  .about-grid{grid-template-columns:1fr;gap:40px;}
}
@media (max-width:520px){
  .about-cards{grid-template-columns:1fr;}
}

/* ============================================================
   VISION
   ============================================================ */
.vision-grid{
  display:grid;
  grid-template-columns:1fr 0.8fr;
  gap:60px;
  align-items:center;
}
.vision-copy p{font-size:16.5px;margin-bottom:18px;}
.vision-pull{
  border-left:2px solid var(--accent);
  padding-left:22px;
  margin:28px 0;
  font-family:var(--font-display);
  font-size:19px;
  font-weight:500;
  color:var(--white);
  line-height:1.5;
}
.vision-visual{
  position:relative;
  height:320px;
  display:flex;align-items:center;justify-content:center;
}
.vision-visual svg{width:100%;max-width:320px;}
@media (max-width:900px){
  .vision-grid{grid-template-columns:1fr;}
  .vision-visual{order:-1;height:240px;}
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-card{
  background:linear-gradient(155deg, rgba(37,99,235,0.10), rgba(255,255,255,0.02));
  border:1px solid var(--border-strong);
  border-radius:20px;
  padding:48px;
  position:relative;
  overflow:hidden;
}
.product-card::before{
  content:'';
  position:absolute;
  top:-60%;right:-20%;
  width:340px;height:340px;
  background:radial-gradient(circle, rgba(59,130,246,0.22), transparent 70%);
  pointer-events:none;
}
.product-top{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:32px;
  align-items:center;
  position:relative;
  z-index:1;
}
.product-mark{
  width:72px;height:72px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  padding:10px;
}
.product-mark img{width:100%;height:100%;object-fit:contain;}
.product-mark svg{width:30px;height:30px;}
.product-info .product-eyebrow{
  font-size:12.5px;font-weight:700;letter-spacing:0.07em;text-transform:uppercase;
  color:var(--accent-soft);margin-bottom:6px;
}
.product-info h3{font-size:25px;margin-bottom:6px;}
.product-tagline{font-size:15.5px;color:var(--white);font-weight:500;margin-bottom:4px;}
.product-tagline-secondary{font-size:14px;color:var(--gray-dim);margin-bottom:14px;}
.product-tags{display:flex;gap:10px;flex-wrap:wrap;}
.tag{
  font-size:12.5px;
  font-weight:600;
  padding:6px 13px;
  border-radius:100px;
  background:rgba(59,130,246,0.12);
  border:1px solid rgba(59,130,246,0.3);
  color:var(--accent-soft);
}
.status-pill{
  display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:600;
  color:#86efac;
  white-space:nowrap;
}
.status-pill .blip{
  width:7px;height:7px;border-radius:50%;
  background:#34d399;
  box-shadow:0 0 0 0 rgba(52,211,153,0.6);
  animation:blip 2s ease-out infinite;
}
@keyframes blip{
  0%{box-shadow:0 0 0 0 rgba(52,211,153,0.55);}
  70%{box-shadow:0 0 0 8px rgba(52,211,153,0);}
  100%{box-shadow:0 0 0 0 rgba(52,211,153,0);}
}
.platforms{display:flex;gap:14px;align-items:center;color:var(--gray);}
.platforms svg{width:20px;height:20px;}

.product-desc{
  position:relative;z-index:1;
  margin-top:32px;
  padding-top:28px;
  border-top:1px solid var(--border);
}
.product-desc p{font-size:15.5px;margin-bottom:14px;max-width:760px;}
.product-desc p:last-child{margin-bottom:0;color:var(--white);font-weight:500;}

.highlights-grid{
  position:relative;z-index:1;
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.highlight-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:12px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  font-size:14px;
  font-weight:500;
  color:var(--white);
  transition:border-color .3s var(--ease), background .3s var(--ease);
}
.highlight-chip:hover{border-color:rgba(59,130,246,0.35);background:var(--card-bg-hover);}
.highlight-chip svg{width:17px;height:17px;flex-shrink:0;color:var(--accent-soft);}
@media (max-width:900px){
  .highlights-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .highlights-grid{grid-template-columns:1fr;}
}

.product-note{
  margin-top:26px;
  font-size:14.5px;
  color:var(--gray-dim);
  font-style:italic;
  text-align:center;
}

@media (max-width:760px){
  .product-card{padding:32px 24px;}
  .product-top{grid-template-columns:1fr;text-align:left;}
  .product-mark{margin-bottom:6px;}
}

/* ============================================================
   CORPORATE INFO
   ============================================================ */
.corp-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.corp-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.corp-card .card-icon{margin-bottom:0;flex-shrink:0;}
.corp-label{
  font-size:12px;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--gray-dim);
  margin-bottom:6px;
}
.corp-value{
  font-size:15px;
  color:var(--white);
  font-weight:500;
  line-height:1.5;
}
.corp-card.span-2{grid-column:span 2;}
@media (max-width:900px){
  .corp-grid{grid-template-columns:1fr 1fr;}
  .corp-card.span-2{grid-column:span 2;}
}
@media (max-width:560px){
  .corp-grid{grid-template-columns:1fr;}
  .corp-card.span-2{grid-column:span 1;}
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
}
.contact-form{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:40px;
}
.form-row{margin-bottom:22px;}
.form-row label{
  display:block;
  font-size:13.5px;
  font-weight:600;
  color:var(--gray);
  margin-bottom:9px;
}
.form-row input,.form-row textarea{
  width:100%;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border-strong);
  border-radius:10px;
  padding:13px 16px;
  color:var(--white);
  font-size:15px;
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.form-row input::placeholder,.form-row textarea::placeholder{color:var(--gray-dim);}
.form-row input:focus,.form-row textarea:focus{
  outline:none;
  border-color:var(--accent);
  background:rgba(37,99,235,0.06);
}
.form-row textarea{resize:vertical;min-height:120px;}
.form-error{
  font-size:12.5px;
  color:#fb7185;
  margin-top:7px;
  display:none;
}
.form-row.has-error input,.form-row.has-error textarea{border-color:#fb7185;}
.form-row.has-error .form-error{display:block;}
.form-submit{width:100%;padding:15px;font-size:15.5px;}

.form-success{
  display:none;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  border-radius:12px;
  background:rgba(52,211,153,0.1);
  border:1px solid rgba(52,211,153,0.3);
  color:#86efac;
  font-size:14.5px;
  margin-top:18px;
}
.form-success.is-visible{display:flex;}
.form-success svg{width:20px;height:20px;flex-shrink:0;}

.contact-side{display:flex;flex-direction:column;gap:18px;}
.contact-info-card{display:flex;gap:16px;align-items:flex-start;}
.contact-info-card .card-icon{margin-bottom:0;flex-shrink:0;}
.contact-info-card h4{font-size:14px;color:var(--gray-dim);font-weight:600;text-transform:uppercase;letter-spacing:0.05em;margin:0 0 6px;}
.contact-info-card p{font-size:15px;color:var(--white);}
.contact-info-card a:hover{color:var(--accent-soft);}

@media (max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-form{padding:30px 24px;}
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  border-top:1px solid var(--border);
  padding:56px 0 36px;
  position:relative;
  z-index:1;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:32px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.footer-tagline{font-size:14px;color:var(--gray-dim);margin-top:10px;}
.footer-about{font-size:13.5px;color:var(--gray-dim);margin-top:14px;max-width:380px;line-height:1.6;}
.footer-links{display:flex;gap:32px;flex-wrap:wrap;}
.footer-links a{font-size:14.5px;color:var(--gray);transition:color .25s var(--ease);}
.footer-links a:hover{color:var(--white);}
.footer-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:13.5px;
  color:var(--gray-dim);
  margin-bottom:32px;
  padding-bottom:32px;
  border-bottom:1px solid var(--border);
}
.footer-meta a{color:var(--gray);transition:color .25s var(--ease);}
.footer-meta a:hover{color:var(--accent-soft);}
.footer-bottom{
  padding-top:0;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:var(--gray-dim);
}

/* misc */
.skip-link{
  position:absolute;left:-999px;top:0;
  background:var(--accent);color:white;
  padding:10px 16px;border-radius:8px;z-index:2000;
}
.skip-link:focus{left:16px;top:16px;}

::selection{background:rgba(37,99,235,0.4);color:white;}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero{
  padding-top:160px;
  padding-bottom:48px;
}
.legal-hero .eyebrow{margin-bottom:14px;}
.legal-hero h1{
  font-size:clamp(32px,4.6vw,48px);
  margin-bottom:14px;
}
.legal-updated{
  font-size:14px;
  color:var(--gray-dim);
}
.legal-body{
  padding-top:0;
  padding-bottom:120px;
}
.legal-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:56px;
  align-items:start;
}
.legal-toc{
  position:sticky;
  top:120px;
  display:flex;
  flex-direction:column;
  gap:4px;
  border-left:1px solid var(--border);
  padding-left:18px;
}
.legal-toc a{
  font-size:13.5px;
  color:var(--gray-dim);
  padding:7px 0;
  transition:color .25s var(--ease);
}
.legal-toc a:hover,.legal-toc a.is-active{color:var(--accent-soft);}
.legal-content{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:48px;
}
.legal-content h2{
  font-size:22px;
  margin-top:42px;
  margin-bottom:16px;
  padding-top:18px;
  border-top:1px solid var(--border);
  scroll-margin-top:110px;
}
.legal-content > h2:first-child{margin-top:0;border-top:none;padding-top:0;}
.legal-content h3{
  font-size:16px;
  margin-top:22px;
  margin-bottom:10px;
  color:var(--white);
}
.legal-content p{
  font-size:15.5px;
  margin-bottom:14px;
}
.legal-content ul{
  margin:0 0 16px;
  padding-left:0;
  display:flex;
  flex-direction:column;
  gap:9px;
}
.legal-content ul li{
  font-size:15px;
  color:var(--gray);
  line-height:1.65;
  padding-left:22px;
  position:relative;
}
.legal-content ul li::before{
  content:'';
  position:absolute;
  left:0;top:9px;
  width:7px;height:7px;
  border-radius:2px;
  background:var(--accent-soft);
  opacity:0.8;
  transform:rotate(45deg);
}
.legal-content strong{color:var(--white);}
.legal-content a.inline-link{color:var(--accent-soft);text-decoration:underline;text-decoration-color:rgba(96,165,250,0.4);}
.legal-content a.inline-link:hover{color:var(--white);}
.legal-intro{
  font-size:16.5px;
  margin-bottom:30px;
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
  color:var(--gray);
}
.legal-cta{
  margin-top:40px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width:980px){
  .legal-layout{grid-template-columns:1fr;}
  .legal-toc{
    position:static;
    flex-direction:row;
    flex-wrap:wrap;
    border-left:none;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:16px 0;
    gap:6px 22px;
  }
  .legal-content{padding:32px 24px;}
}
@media (max-width:560px){
  .legal-hero{padding-top:130px;}
  .legal-content{padding:26px 18px;}
}
