:root{
  --ink:#102235;
  --text:#2f4357;
  --muted:#607286;
  --primary:#173b57;
  --primary-dark:#102f47;
  --accent:#287b7f;
  --accent-soft:#eaf5f4;
  --surface:#ffffff;
  --surface-soft:#f6f8fa;
  --surface-tint:#eef3f6;
  --line:#dce5eb;
  --shadow-sm:0 8px 24px rgba(16,34,53,.07);
  --shadow-md:0 18px 48px rgba(16,34,53,.16);
  --radius-sm:10px;
  --radius-md:16px;
  --container:1120px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%}
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  font-family:'DM Sans',sans-serif;
  color:var(--text);
  background:var(--surface);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%}
a{color:inherit}

/* NAV */
nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(220,229,235,.9);
}
.nav-inner{
  max-width:var(--container);
  height:68px;
  margin:0 auto;
  padding:0 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}
.nav-logo{
  color:var(--ink);
  font-weight:800;
  font-size:1.71rem;
  line-height:1;
  letter-spacing:-.035em;
  white-space:nowrap;
  text-decoration:none;
}
.nav-links{display:flex;align-items:center;gap:1.65rem}
.nav-links a{
  color:#4d6073;
  text-decoration:none;
  font-size:.9rem;
  font-weight:600;
  transition:color .2s ease,background .2s ease;
}
.nav-links a:hover{color:var(--primary)}
.nav-cta{
  background:var(--primary)!important;
  color:#fff!important;
  padding:.55rem 1.1rem;
  border-radius:8px;
  box-shadow:0 5px 14px rgba(23,59,87,.16);
}
.nav-cta:hover{background:var(--primary-dark)!important;color:#fff!important}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:clamp(3.5rem,6vw,5.5rem) 1.5rem;
  background:linear-gradient(135deg,#173b57 0%,#1d4965 100%);
  border-bottom:1px solid rgba(16,47,71,.55);
}
.hero::after{
  content:'';
  position:absolute;
  right:-12rem;
  bottom:-18rem;
  width:34rem;
  height:34rem;
  border-radius:50%;
  background:rgba(255,255,255,.045);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--container);
  min-height:410px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:clamp(2.5rem,5vw,4.5rem);
  align-items:center;
}
.hero-text{display:flex;flex-direction:column;align-items:flex-start;gap:1.15rem}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:.35rem .8rem;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.92);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.hero-h{
  color:#fff;
  font-size:clamp(2rem,4.2vw,3.25rem);
  font-weight:800;
  letter-spacing:-.035em;
  line-height:1.08;
}
.hero-sub{
  max-width:500px;
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.7;
}
.hero-btns{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:.25rem}
.hero-count{margin-top:.55rem;color:rgba(255,255,255,.68);font-size:.92rem}
.hero-count strong{color:#fff;font-size:1.08rem;font-weight:800}
.hero-photo{
  align-self:center;
  width:100%;
}
.hero-collage{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(0,.82fr);
  grid-template-rows:repeat(2,minmax(0,185px));
  gap:1rem;
  align-items:stretch;
}
.hero-collage::before{
  content:'';
  position:absolute;
  inset:auto 2.5rem -1.5rem 2.5rem;
  height:3.25rem;
  border-radius:999px;
  background:rgba(8,24,37,.22);
  filter:blur(18px);
  opacity:.55;
  pointer-events:none;
}
.hero-card{
  position:relative;
  overflow:hidden;
  margin:0;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  background:#dce5eb;
  box-shadow:var(--shadow-md);
}
.hero-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,0) 0%,rgba(16,34,53,.08) 100%);
  pointer-events:none;
}
.hero-card--main{
  grid-row:1 / span 2;
  min-height:390px;
}
.hero-card--top{
  transform:translateY(10px) rotate(2.2deg);
  transform-origin:center;
}
.hero-card--bottom{
  transform:translate(-14px,-6px) rotate(-2.8deg);
  transform-origin:center;
}

/* BUTTONS */
.btn-p,.btn-g,.btn-g-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:.72rem 1.45rem;
  border-radius:9px;
  text-decoration:none;
  font-size:.94rem;
  font-weight:700;
  line-height:1.2;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease;
}
.btn-p{background:var(--primary);color:#fff;box-shadow:0 7px 18px rgba(23,59,87,.16)}
.btn-p:hover{background:var(--primary-dark);transform:translateY(-1px)}
.hero .btn-p{background:#fff;color:var(--primary);box-shadow:0 8px 22px rgba(7,25,39,.18)}
.hero .btn-p:hover{background:#f4f8fa;color:var(--primary-dark)}
.btn-g{border:1px solid rgba(255,255,255,.45);color:#fff;background:rgba(255,255,255,.04)}
.btn-g:hover{border-color:#fff;background:rgba(255,255,255,.11);transform:translateY(-1px)}
.btn-g-dark{border:1px solid #c8d4dd;color:var(--primary);background:#fff}
.btn-g-dark:hover{border-color:#9fb2c0;background:var(--surface-soft);color:var(--primary-dark);transform:translateY(-1px)}

/* SECTIONS */
.sec,.vid-sec{width:100%;position:relative;padding:clamp(4rem,7vw,5.5rem) 1.5rem}
.sec{background:var(--surface)}
.sec-in{max-width:var(--container);margin:0 auto}
.lbl{
  margin-bottom:.55rem;
  color:var(--accent);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.ttl{
  margin-bottom:.85rem;
  color:var(--ink);
  font-size:clamp(1.7rem,3.2vw,2.45rem);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.16;
}
.sub{max-width:590px;margin-bottom:2.25rem;color:var(--muted);font-size:1rem}
.section-actions{text-align:center;margin-top:2.5rem}
.section-actions--compact{margin-top:2rem}

/* AUDIENCE */
.aud{background:var(--surface)}
.aud-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.35rem;margin-top:2.4rem}
.aud-col{
  padding:clamp(1.6rem,3vw,2.35rem);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
}
.aud-col.light{background:#fff;border-top:3px solid var(--primary)}
.aud-col.dark{background:var(--accent-soft);border-top:3px solid var(--accent)}
.aud-col h3{margin-bottom:1.35rem;font-size:.8rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.aud-tag{display:inline-flex;padding:.28rem .62rem;border-radius:6px;font-size:.7rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.aud-col.light .aud-tag{background:var(--surface-tint);color:var(--primary)}
.aud-col.dark .aud-tag{background:rgba(40,123,127,.12);color:#1d6265}
.cl{list-style:none;display:flex;flex-direction:column;gap:.75rem}
.cl li{display:flex;align-items:flex-start;gap:.65rem;color:#364b5f;font-size:.93rem;line-height:1.5}
.chk{flex-shrink:0;color:var(--accent);font-weight:800}
.aud-col.light .chk{color:var(--primary)}

/* SCREENSHOTS */
.screens-sec{background:var(--surface-soft)}
.sc-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem;margin-top:2.35rem}
.sc-card{
  overflow:hidden;
  aspect-ratio:16/10;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--surface-tint);
  box-shadow:var(--shadow-sm);
}
.sc-card img{display:block;width:100%;height:100%;object-fit:cover}

/* VIDEOS */
.vid-sec{background:#edf3f5;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.vid-sec .lbl{color:var(--accent)}
.vid-sec .ttl{color:var(--ink)}
.vid-sec .sub{color:var(--muted)}
.vid-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.4rem}
.vid-wrap{
  position:relative;
  overflow:hidden;
  padding-bottom:56.25%;
  border:1px solid #d2dde4;
  border-radius:12px;
  background:#dce5eb;
  box-shadow:var(--shadow-sm);
}
.vid-wrap iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* NEWS */
.news-sec{background:var(--surface)}
.news-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem;margin-top:2.35rem}
.nc{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:inherit;
  text-decoration:none;
  transition:box-shadow .2s ease,transform .2s ease,border-color .2s ease;
}
.nc:hover{transform:translateY(-3px);border-color:#c7d5de;box-shadow:0 14px 34px rgba(16,34,53,.1)}
.nc-img{overflow:hidden;aspect-ratio:16/9;background:var(--surface-tint)}
.nc-img img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.nc:hover .nc-img img{transform:scale(1.035)}
.nc-body{display:flex;flex:1;flex-direction:column;gap:.38rem;padding:1.05rem 1.15rem 1.25rem}
.nc-date{color:#8493a1;font-size:.76rem;font-weight:600}
.nc-title{color:var(--ink);font-size:.95rem;font-weight:750;line-height:1.42}
.nc-perex{color:var(--muted);font-size:.85rem;line-height:1.5}

/* BLOG */
.page-hero{padding:3.75rem 1.5rem 2.5rem;background:var(--surface-soft);border-bottom:1px solid var(--line)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.blog-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--line);border-radius:12px;background:#fff;color:inherit;text-decoration:none;transition:box-shadow .2s ease,transform .2s ease}
.blog-card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(16,34,53,.1)}
.bc-img{overflow:hidden;aspect-ratio:16/9;background:var(--surface-tint)}
.bc-img img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.bc-img--empty{background:linear-gradient(135deg,#e2e9ee,#f4f7f9)}
.blog-card:hover .bc-img img{transform:scale(1.035)}
.bc-body{display:flex;flex:1;flex-direction:column;gap:.4rem;padding:1.2rem 1.3rem 1.4rem}
.bc-date{color:#8493a1;font-size:.78rem;font-weight:600}
.bc-title{color:var(--ink);font-size:1.05rem;font-weight:750;line-height:1.35}
.bc-perex{color:var(--muted);font-size:.9rem;line-height:1.55}
.bc-more{margin-top:auto;padding-top:.6rem;color:var(--primary);font-size:.85rem;font-weight:700}

/* POST */
.post-wrap{max-width:100%}
.post-header{padding:3.25rem 1.5rem 2.25rem;background:var(--surface-soft);border-bottom:1px solid var(--line)}
.post-back{color:var(--primary);font-size:.88rem;font-weight:700;text-decoration:none}
.post-back:hover{text-decoration:underline}
.post-title{max-width:800px;margin-top:.6rem;color:var(--ink);font-size:clamp(1.8rem,4vw,2.9rem);font-weight:800;letter-spacing:-.03em;line-height:1.15}
.post-meta{margin-top:.6rem;color:#8493a1;font-size:.88rem}
.post-cover{padding:0 1.5rem}
.post-cover .sec-in{max-width:900px}
.post-cover img{display:block;width:100%;max-height:420px;object-fit:cover;border-radius:12px}
.post-body{max-width:760px;padding:2.75rem 1.5rem}
.post-body h2{margin:2rem 0 .65rem;color:var(--ink);font-size:1.4rem;font-weight:800;letter-spacing:-.015em}
.post-body h3{margin:1.5rem 0 .45rem;color:var(--ink);font-size:1.12rem;font-weight:750}
.post-body p{margin-bottom:1rem;color:#364b5f;line-height:1.78}
.post-body ul,.post-body ol{margin:.5rem 0 1rem 1.4rem;color:#364b5f}
.post-body li{margin-bottom:.35rem;line-height:1.65}
.post-body a{color:var(--primary);text-decoration:underline}
.post-body strong{font-weight:750}
.post-body hr{margin:2rem 0;border:0;border-top:1px solid var(--line)}
.post-body img{display:block;max-width:100%;height:auto;margin:1.2rem 0;border-radius:10px}
.post-nav{display:flex;max-width:760px;padding:2rem 1.5rem;border-top:1px solid var(--line);gap:1.5rem;flex-wrap:wrap}
.pnav-item{display:flex;min-width:180px;flex:1;flex-direction:column;gap:.2rem;text-decoration:none}
.pnav-label{color:#8493a1;font-size:.75rem;font-weight:700}
.pnav-title{color:var(--primary);font-size:.92rem;font-weight:700}
.pnav-next{align-items:flex-end;text-align:right}

/* STAT BAR + FOOTER */
.stat-bar{padding:2.35rem 1.5rem;text-align:center;background:var(--primary-dark)}
.stat-bar p{color:rgba(255,255,255,.86);font-size:1.02rem}
.stat-bar strong{color:#fff;font-size:1.35rem;font-weight:800}
footer{padding:3.5rem 1.5rem 2rem;border-top:1px solid var(--line);background:#f4f7f9;color:var(--muted);font-size:.86rem}
.foot-in{display:grid;max-width:var(--container);margin:0 auto;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem}
.foot-brand{display:block;margin-bottom:.55rem;color:var(--ink);font-size:.98rem;font-weight:800}
footer a{color:var(--muted);text-decoration:none;transition:color .2s ease}
footer a:hover{color:var(--primary)}
.fcol-ttl{display:block;margin-bottom:.65rem;color:#34495d;font-weight:750}
.foot-nav{display:flex;flex-direction:column;gap:.45rem}
.foot-bot{display:flex;max-width:var(--container);margin:2.25rem auto 0;padding-top:1.5rem;border-top:1px solid var(--line);justify-content:space-between;gap:.75rem;flex-wrap:wrap;font-size:.8rem}
.foot-legal{display:flex;gap:1.5rem;flex-wrap:wrap}

/* PRICING */
.pricing-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.2rem;align-items:stretch}
.pc{position:relative;display:flex;flex-direction:column;gap:.5rem;padding:1.8rem 1.4rem;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:0 1px 3px rgba(16,34,53,.05)}
.pc--pop{border:2px solid var(--primary);box-shadow:0 10px 30px rgba(23,59,87,.16)}
.pc-badge{position:absolute;top:-.75rem;left:50%;padding:.22rem .7rem;transform:translateX(-50%);border-radius:999px;background:var(--primary);color:#fff;font-size:.7rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;white-space:nowrap}
.pc-name{color:var(--ink);font-size:1.05rem;font-weight:750}
.pc-for{min-height:2.2em;color:var(--muted);font-size:.82rem;line-height:1.35}
.pc-price{display:flex;align-items:baseline;gap:.3rem;flex-wrap:wrap;margin:.3rem 0 0}
.pc-amount{color:var(--ink);font-size:2.1rem;font-weight:800;letter-spacing:-.02em}
.pc-per{color:var(--muted);font-size:.9rem;font-weight:650}
.pc-unit{min-height:1.2em;color:var(--muted);font-size:.8rem}
.pc-feats{display:flex;flex-direction:column;gap:.5rem;margin:.5rem 0 1.2rem;padding:0;list-style:none}
.pc-feats li{position:relative;padding-left:1.4rem;color:#364b5f;font-size:.9rem;line-height:1.4}
.pc-feats li::before{content:'✓';position:absolute;left:0;color:var(--accent);font-weight:800}
.pricing-note{max-width:720px;margin:2rem auto 0;text-align:center;color:#8493a1;font-size:.82rem;line-height:1.6}
.beta-banner{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem;padding:.9rem 1.2rem;border:1px solid #f0d76b;border-radius:10px;background:#fff9df;color:#684f13;font-size:.95rem}
.beta-tag{flex-shrink:0;padding:.2rem .55rem;border-radius:5px;background:#eabf38;color:#583f08;font-size:.7rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
.journalist-note{margin-bottom:2rem;padding:.85rem 1.2rem;border:1px solid #c9dce0;border-radius:10px;background:var(--accent-soft);color:#215d61;font-size:.92rem}
.pricing-grid--inactive{opacity:.55;pointer-events:none;filter:grayscale(30%)}
.btn--disabled{cursor:default!important;pointer-events:none}

/* ABOUT */
.about-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:3rem;align-items:start}
.about-body p{margin-bottom:1rem;color:#364b5f;font-size:.97rem;line-height:1.8}
.about-body a{color:var(--primary);text-decoration:underline}
.about-body strong{color:var(--ink)}
.founder-card{display:grid;grid-template-columns:140px minmax(0,1fr);gap:1.5rem;margin:1.5rem 0;padding:1.5rem;border:1px solid var(--line);border-radius:12px;background:var(--surface-soft)}
.founder-photo{display:block;width:140px;height:160px;object-fit:cover;border-radius:8px}
.founder-text p{margin-bottom:.7rem;color:var(--muted);font-size:.9rem;line-height:1.7}
.founder-text a{color:var(--primary);text-decoration:underline}
.about-sidebar{position:sticky;top:86px}
.about-card{padding:1.5rem;border:1px solid var(--line);border-top:3px solid var(--accent);border-radius:14px;background:var(--surface-soft)}
.about-card strong{display:block;margin-bottom:.6rem;color:var(--ink);font-size:.95rem}
.about-card p{margin-bottom:.8rem;color:var(--muted);font-size:.88rem;line-height:1.7}
.about-card a{color:var(--primary);text-decoration:none}
.about-card a:hover{text-decoration:underline}
.about-links{display:flex;flex-direction:column;gap:.3rem;margin-top:.5rem;padding-top:.8rem;border-top:1px solid var(--line)}
.about-links a{color:var(--muted);font-size:.82rem}
.about-links a:hover{color:var(--primary)}

:focus-visible{outline:3px solid rgba(40,123,127,.32);outline-offset:3px}

@media(max-width:900px){
  .pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-inner{grid-template-columns:minmax(0,1fr) minmax(0,.9fr);gap:2rem}
}

@media(max-width:768px){
  .nav-inner{height:64px;padding:0 1.15rem}
  .nav-links{gap:.75rem}
  .nav-links a:not(.nav-cta){display:none}
  .hero{padding:3.25rem 1.15rem 3.5rem}
  .hero-inner{min-height:auto;grid-template-columns:1fr;gap:0}
  .hero-text{align-items:center;text-align:center}
  .hero-photo{display:none}
  .hero-h br{display:none}
  .hero-sub{max-width:590px}
  .hero-btns{justify-content:center}
  .hero-photo{width:min(100%,620px);margin:0 auto}
  .hero-collage{
    grid-template-columns:minmax(0,1fr) minmax(0,.76fr);
    grid-template-rows:repeat(2,minmax(0,145px));
    gap:.85rem;
  }
  .hero-card{border-radius:18px}
  .hero-card--main{min-height:300px}
  .hero-card--top{transform:translateY(4px) rotate(1.4deg)}
  .hero-card--bottom{transform:translate(-8px,-4px) rotate(-1.8deg)}
  .sec,.vid-sec{padding:3.75rem 1.15rem}
  .aud-grid,.vid-grid{grid-template-columns:1fr}
  .sc-grid{grid-template-columns:1fr;gap:1rem}
  .sc-card{max-width:620px;margin:0 auto;width:100%}
  .foot-in{grid-template-columns:1fr;gap:1.75rem}
  .post-nav{flex-direction:column}
  .pnav-next{align-items:flex-start;text-align:left}
  .about-layout{grid-template-columns:1fr}
  .about-sidebar{position:static}
  .founder-card{grid-template-columns:100px minmax(0,1fr);gap:1rem}
  .founder-photo{width:100px;height:120px}
}

@media(max-width:560px){
  .pricing-grid{grid-template-columns:1fr}
  .aud-col{padding:1.4rem}
  .hero-collage{
    grid-template-columns:1fr;
    grid-template-rows:auto;
    gap:.8rem;
  }
  .hero-collage::before{inset:auto 1.2rem -1.1rem 1.2rem;height:2.5rem}
  .hero-card--main{grid-row:auto;min-height:230px}
  .hero-card--top,.hero-card--bottom{transform:none;min-height:150px}
  .hero-btns{width:100%}
  .hero-btns .btn-p,.hero-btns .btn-g{width:100%}
  .section-actions .btn-p,.section-actions .btn-g-dark{width:100%;max-width:330px}
  .foot-bot{flex-direction:column}
}

@media(max-width:480px){
  .founder-card{grid-template-columns:1fr}
  .founder-photo{width:100%;height:220px}
  .beta-banner{align-items:flex-start;flex-direction:column}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important;animation:none!important}
}

/* LEGAL PAGES */
.page-hero--legal{padding-top:3.4rem;padding-bottom:2.6rem}
.legal-hero-inner{position:relative}
.legal-hero-inner .sub{margin-bottom:.8rem}
.legal-effective{
  display:inline-flex;
  align-items:center;
  padding:.35rem .72rem;
  border:1px solid #cad8e1;
  border-radius:999px;
  background:#fff;
  color:var(--muted);
  font-size:.78rem;
  font-weight:700;
}
.legal-section{padding-top:3.5rem}
.legal-layout{
  display:grid;
  grid-template-columns:minmax(0,760px) minmax(240px,1fr);
  gap:clamp(2rem,5vw,4rem);
  align-items:start;
}
.legal-document{min-width:0}
.legal-lead{
  margin:0 0 2rem;
  color:#344a5e;
  font-size:1.02rem;
  line-height:1.8;
}
.legal-intro-card{
  margin-bottom:1.6rem;
  padding:1.25rem 1.35rem;
  border:1px solid #cbdde0;
  border-left:4px solid var(--accent);
  border-radius:12px;
  background:var(--accent-soft);
}
.legal-intro-card strong{display:block;margin-bottom:.4rem;color:var(--ink)}
.legal-intro-card p{margin:0!important;color:#355c60!important;font-size:.92rem!important;line-height:1.65!important}
.legal-block{padding:0 0 2rem;margin:0 0 2rem;border-bottom:1px solid var(--line)}
.legal-block:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0}
.legal-block h2{
  margin:0 0 1rem;
  color:var(--ink);
  font-size:clamp(1.18rem,2vw,1.42rem);
  font-weight:800;
  letter-spacing:-.018em;
  line-height:1.3;
}
.legal-block h3{
  margin:1.35rem 0 .65rem;
  color:#29455d;
  font-size:1rem;
  font-weight:800;
}
.legal-block p{margin:0 0 .85rem;color:#3b5063;font-size:.95rem;line-height:1.78}
.legal-block p:last-child{margin-bottom:0}
.legal-block ul,.legal-block ol{margin:.45rem 0 1rem;padding-left:1.35rem;color:#3b5063}
.legal-block li{margin-bottom:.55rem;padding-left:.18rem;font-size:.95rem;line-height:1.68}
.legal-block li::marker{color:var(--accent);font-weight:800}
.legal-alpha{list-style-type:lower-alpha}
.legal-block a,.legal-intro-card a{color:var(--primary);font-weight:700;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}
.legal-sidebar{position:sticky;top:92px;display:flex;flex-direction:column;gap:1rem}
.legal-card{
  padding:1.3rem 1.35rem;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface-soft);
  box-shadow:0 7px 20px rgba(16,34,53,.045);
}
.legal-card-label{
  display:block;
  margin-bottom:.55rem;
  color:var(--accent);
  font-size:.69rem;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.legal-card strong{display:block;margin-bottom:.45rem;color:var(--ink);font-size:.95rem}
.legal-card p{margin-bottom:.7rem;color:var(--muted);font-size:.85rem;line-height:1.65}
.legal-card a{color:var(--primary);font-size:.86rem;font-weight:750;text-decoration:none}
.legal-card a:hover{text-decoration:underline}
.legal-card--links{background:#fff}

@media(max-width:820px){
  .legal-layout{grid-template-columns:1fr}
  .legal-sidebar{position:static;display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:560px){
  .nav-logo{font-size:1.35rem}
  .page-hero--legal{padding-top:2.8rem;padding-bottom:2.2rem}
  .legal-section{padding-top:2.75rem}
  .legal-sidebar{grid-template-columns:1fr}
  .legal-block{padding-bottom:1.6rem;margin-bottom:1.6rem}
}

@media(max-width:400px){
  .nav-logo{font-size:1.15rem}
  .nav-inner{gap:.6rem}
  .nav-cta{padding:.5rem .72rem;font-size:.82rem}
}

