/* ============================================================
   VILEADS — site styles
   Tipografía Manrope. Sistema fluido con clamp().
   Paleta: azul corporativo #155DFC + degradado a #51A2FF.
   ============================================================ */

:root{
  --blue:        #155DFC;
  --blue-deep:   #014DFE;
  --blue-soft:   #2B7FFF;
  --blue-grad:   linear-gradient(180deg, #155DFC 0%, #2B7FFF 100%);
  --blue-grad-2: linear-gradient(180deg, #155DFC 0%, #51A2FF 100%);

  --bg:          #111111;
  --bg-2:        #1E1E1E;
  --bg-3:        #242424;
  --ink:         #FFFFFF;
  --ink-mute:    #B1B1B1;
  --ink-soft:    rgba(255,255,255,.72);

  --radius-lg:   clamp(28px, 3.2vw, 60px);
  --radius-md:   clamp(20px, 1.8vw, 30px);
  --radius-sm:   16px;

  --shadow-blue: 0 10px 30px -8px rgba(43,127,255,.55), 0 4px 8px -4px rgba(0,0,0,.4);
  --shadow-card: 0 24px 60px -30px rgba(0,0,0,.6);

  /* Spacing scale */
  --gutter:      clamp(20px, 4.6vw, 88px);
  --section-y:   clamp(80px, 9vw, 160px);

  /* Type scale — fluido */
  --t-display:   clamp(42px, 7.4vw, 120px);
  --t-h2:        clamp(36px, 5.6vw, 96px);
  --t-h3:        clamp(22px, 2.4vw, 40px);
  --t-lead:      clamp(16px, 1.5vw, 24px);
  --t-body:      clamp(15px, 1.15vw, 20px);
  --t-small:     14px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Manrope', system-ui, -apple-system, sans-serif;
  font-size:var(--t-body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }
h1,h2,h3,h4{ margin:0; font-weight:500; letter-spacing:-.01em; text-wrap:balance; }
p{ margin:0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:clamp(48px, 4.2vw, 64px);
  padding:0 clamp(22px, 2.2vw, 36px);
  border-radius:999px;
  font-weight:700;
  font-size:clamp(15px, 1.1vw, 18px);
  white-space:nowrap;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }

.btn--primary{
  background:var(--blue-grad);
  color:#fff;
  box-shadow:var(--shadow-blue);
}
.btn--white{
  background:#fff; color:#000;
  box-shadow:0 14px 30px -10px rgba(255,255,255,.45);
}
.btn--ghost{
  background:transparent; color:#fff;
  border-color:rgba(255,255,255,.85);
}
.btn--ghost:hover{ background:rgba(255,255,255,.08); }
.btn--ghost-light{
  background:transparent; color:#fff; border-color:rgba(255,255,255,.7);
}
.btn--store svg{ width:22px; height:22px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:rgba(17,17,17,.85);
  backdrop-filter:saturate(1.4) blur(14px);
  -webkit-backdrop-filter:saturate(1.4) blur(14px);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.nav__inner{
  max-width:1760px; margin:0 auto;
  padding:14px var(--gutter);
  display:flex; align-items:center; gap:32px;
}
.nav__logo img{
  height:clamp(40px, 4vw, 56px);
  width:auto;
}
.nav__links{
  display:flex; gap:clamp(18px, 2.4vw, 40px);
  margin-left:auto;
  font-size:clamp(14px,1.05vw,17px);
}
.nav__links a{
  color:rgba(255,255,255,.78);
  transition:color .2s ease;
  position:relative; padding:6px 0;
}
.nav__links a:hover{ color:#fff; }
.nav__links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; background:var(--blue-soft); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav__links a:hover::after{ transform:scaleX(1); }

.nav__cta{ flex-shrink:0; }

/* Language switch */
.lang-switch{
  display:inline-flex;
  align-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:3px;
  gap:2px;
  flex-shrink:0;
}
.lang-switch__btn{
  appearance:none;
  border:0;
  background:transparent;
  color: rgba(255,255,255,.62);
  font: inherit;
  font-weight:700;
  font-size: 13px;
  letter-spacing:.06em;
  padding: 6px 12px;
  border-radius:999px;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-switch__btn:hover{ color:#fff; }
.lang-switch__btn.is-active{
  background:#fff;
  color:#111;
}

.nav__toggle{
  display:none;
  width:44px; height:44px;
  background:transparent; border:0; padding:10px; cursor:pointer;
  margin-left:auto;
}
.nav__toggle span{
  display:block; height:2px; background:#fff; border-radius:2px;
  margin:5px 0; transition:transform .25s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:1100px){
  .nav__toggle{ display:block; }
  .nav__cta{ display:none; }
  .nav__links{
    position:fixed; top:72px; left:0; right:0;
    flex-direction:column; gap:0;
    background:rgba(17,17,17,.98);
    backdrop-filter:blur(20px);
    padding:8px var(--gutter) 24px;
    transform:translateY(-110%); transition:transform .35s ease;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .nav__links a{ padding:18px 0; border-bottom:1px solid rgba(255,255,255,.05); font-size:18px; }
  .nav.open .nav__links{ transform:translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding:calc(72px + 22px) var(--gutter) 0;
  background:var(--bg);
}
.hero__panel{
  position:relative;
  background:var(--blue-deep);
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  padding: clamp(48px, 7vw, 130px) clamp(24px, 5vw, 110px) 0;
  overflow:hidden;
  isolation:isolate;
}
.hero__bg-shape{
  position:absolute;
  inset:clamp(60px,9vw,180px) clamp(40px,6vw,140px) auto;
  height:60%;
  border:clamp(28px, 4vw, 60px) solid rgba(255,255,255,.10);
  border-radius:clamp(20px, 2vw, 36px);
  pointer-events:none;
  z-index:0;
}
.hero__copy{
  position:relative; z-index:1;
  text-align:center;
  max-width:1180px; margin:0 auto;
}
.hero__title{
  font-size:var(--t-display);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.02em;
}
.hero__brand{ display:inline-block; }
.hero__subtitle{
  margin: clamp(20px,2vw,32px) auto 0;
  max-width: 720px;
  color:rgba(255,255,255,.86);
  font-size:var(--t-lead);
  line-height:1.45;
}
.hero__ctas{
  margin-top: clamp(28px, 3vw, 44px);
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
}
.hero__screens{
  position:relative;
  margin: clamp(48px, 6vw, 100px) auto -2px;
  max-width:1500px;
  z-index:1;
}
.hero__laptop{
  width:100%;
  border-radius:clamp(8px, .8vw, 18px) clamp(8px, .8vw, 18px) 0 0;
  box-shadow:0 -30px 80px -20px rgba(0,0,0,.55);
}
.hero__phone{
  position:absolute;
  bottom:-2%;
  left:-2%;
  width:clamp(120px, 14vw, 240px);
  border-radius:clamp(16px,1.4vw,28px);
  box-shadow:0 30px 70px -20px rgba(0,0,0,.7);
}
@media (max-width:520px){
  .hero__phone{ display:none; }
}

/* ============================================================
   TRUSTED
   ============================================================ */
.trusted{
  padding: clamp(60px,7vw,120px) var(--gutter) clamp(40px,5vw,80px);
  text-align:center;
}
.trusted__label{
  color:rgba(255,255,255,.85);
  font-size:clamp(18px, 1.4vw, 26px);
  margin-bottom: clamp(28px, 3vw, 50px);
}
.trusted__row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap: clamp(28px, 4vw, 72px);
  color:rgba(255,255,255,.55);
  font-weight:800;
  letter-spacing:.16em;
  font-size:clamp(13px, 1.05vw, 18px);
}
.trusted__row span{
  transition:color .25s ease, transform .25s ease;
}
.trusted__row span:hover{ color:#fff; transform:translateY(-2px); }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head{
  text-align:center;
  max-width:980px;
  margin:0 auto clamp(40px, 5vw, 90px);
  padding:0 var(--gutter);
}
.section-title{
  font-size:var(--t-h2);
  line-height:1.05;
  font-weight:500;
  letter-spacing:-.02em;
}
.section-sub{
  margin-top: clamp(16px, 1.6vw, 28px);
  color:rgba(255,255,255,.72);
  font-size:var(--t-lead);
  line-height:1.45;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features{
  padding: var(--section-y) 0;
}
.features__grid{
  max-width:1640px; margin:0 auto;
  padding: 0 var(--gutter);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.4vw, 24px);
}
@media (max-width:1100px){ .features__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .features__grid{ grid-template-columns:1fr; } }

.feature{
  background:var(--bg-2);
  border-radius:30px;
  padding: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 28px);
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:24px;
  min-height: clamp(280px, 22vw, 360px);
  transition:transform .35s ease, background .35s ease;
}
.feature:hover{ transform:translateY(-6px); }
.feature__icon{
  width:clamp(76px, 6vw, 100px);
  height:clamp(76px, 6vw, 100px);
  border-radius:50%;
  background:var(--bg-3);
  display:grid; place-items:center;
  color:var(--blue);
  box-shadow:var(--shadow-card);
}
.feature__icon svg{ width:46%; height:46%; }
.feature__title{
  font-size:var(--t-h3);
  font-weight:600;
  line-height:1.15;
}
.feature__desc{
  color:#878787;
  font-size:clamp(15px, 1.15vw, 20px);
  line-height:1.55;
  max-width:300px;
}
.feature--accent{
  background:var(--blue);
  color:#fff;
}
.feature--accent .feature__icon{
  background:rgba(255,255,255,.18);
  color:#fff;
}
.feature--accent .feature__desc{ color:rgba(255,255,255,.88); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how{
  padding: var(--section-y) 0;
}
.how__row{
  max-width:1680px; margin:0 auto;
  padding: 0 var(--gutter);
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2vw, 40px);
  align-items:stretch;
  margin-bottom: clamp(24px, 3vw, 48px);
}
.how__row--rev .how__visual{ order:2; }
@media (max-width:980px){
  .how__row, .how__row--rev{ grid-template-columns:1fr; }
  .how__row--rev .how__visual{ order:0; }
}

.how__visual{
  position:relative;
  background:#222;
  border-radius:40px;
  aspect-ratio: 16 / 14;
  overflow:hidden;
}
.how__visual--blue{ background:var(--blue); }

.how__laptop{
  position:absolute;
  top:6%; left:14%;
  width:88%;
  border-radius:clamp(10px,1vw,22px);
  box-shadow:0 30px 80px -20px rgba(0,0,0,.5);
}
.how__phone{
  position:absolute;
  bottom:6%; left:2%;
  width:28%;
  border-radius:clamp(14px,1.4vw,28px);
  box-shadow:0 30px 60px -10px rgba(0,0,0,.65);
  z-index:2;
}

.how__steps{
  display:flex; flex-direction:column;
  justify-content:center;
  gap: clamp(36px, 4vw, 64px);
  padding: clamp(16px, 3vw, 60px);
}
.step{
  display:flex; gap:clamp(20px, 1.8vw, 32px);
  align-items:flex-start;
}
.step__num{
  flex-shrink:0;
  width:clamp(60px, 4.6vw, 72px);
  height:clamp(60px, 4.6vw, 72px);
  border-radius:16px;
  background:var(--blue-grad-2);
  display:grid; place-items:center;
  font-weight:700;
  font-size:clamp(28px, 2.6vw, 40px);
  color:#fff;
  box-shadow:0 14px 30px -10px rgba(43,127,255,.5);
}
.step__title{
  font-size:clamp(22px, 2.2vw, 36px);
  font-weight:700;
  margin-bottom: 12px;
}
.step__desc{
  color:rgba(255,255,255,.78);
  font-size:clamp(15px, 1.25vw, 22px);
  line-height:1.45;
  margin-bottom: 18px;
}
.step__tag{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--blue);
  font-weight:700;
  font-size:clamp(14px, 1vw, 18px);
}
.step__tag svg{ width:20px; height:20px; }

/* ============================================================
   STATS
   ============================================================ */
.stats{
  padding: 0 var(--gutter) var(--section-y);
}
.stats__grid{
  max-width:1640px; margin:0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.4vw, 24px);
  background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
  border-radius:30px;
  padding: clamp(36px, 4vw, 64px) clamp(20px, 3vw, 48px);
  border:1px solid rgba(255,255,255,.05);
}
@media (max-width:780px){
  .stats__grid{ grid-template-columns:repeat(2,1fr); }
}
.stat{ text-align:center; }
.stat__num{
  font-weight:700;
  font-size:clamp(36px, 4.4vw, 72px);
  letter-spacing:-.02em;
  background: linear-gradient(180deg, #fff 0%, #9DBCFF 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  line-height:1;
}
.stat__label{
  margin-top:12px;
  color:rgba(255,255,255,.65);
  font-size:clamp(14px, 1.05vw, 18px);
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download{
  position:relative;
  margin: 0 var(--gutter);
  background:var(--blue-deep);
  border-radius:var(--radius-lg);
  padding: clamp(60px, 8vw, 140px) clamp(28px, 6vw, 110px);
  overflow:hidden;
  isolation:isolate;
}
.download__shape{
  position:absolute; inset:14% 6% auto;
  height:70%;
  border:clamp(20px, 3vw, 50px) solid rgba(255,255,255,.07);
  border-radius:clamp(20px,2vw,36px);
  pointer-events:none; z-index:0;
}
.download__inner{
  position:relative; z-index:1;
  display:flex; flex-wrap:wrap; gap:32px;
  align-items:center; justify-content:space-between;
}
.download__title{
  font-size: clamp(40px, 6.4vw, 120px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.02em;
}
.download__ctas{
  display:flex; flex-wrap:wrap; gap:14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  padding: clamp(40px,4vw,80px) var(--gutter) clamp(28px,3vw,60px);
}
.footer__card{
  background:#fff; color:#101828;
  border-radius:24px;
  padding: clamp(28px, 3vw, 48px);
}
.footer__top{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 3vw, 60px);
  padding-bottom: clamp(28px, 3vw, 44px);
}
@media (max-width:780px){
  .footer__top{ grid-template-columns:1fr; }
}
.footer__brand{
  display:flex; flex-direction:column; gap:16px;
  max-width:280px;
}
.footer__mark{
  height:clamp(56px, 5vw, 72px);
  width:clamp(56px, 5vw, 72px);
  object-fit:contain;
  align-self:flex-start;
}
.footer__brand p{
  color:#475569;
  font-size:16px;
  line-height:1.5;
}
.footer__cols{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap: clamp(20px, 2vw, 48px);
}
@media (max-width:560px){
  .footer__cols{ grid-template-columns:repeat(2,1fr); }
}
.fcol{ display:flex; flex-direction:column; gap:10px; }
.fcol h4{
  font-size:18px; font-weight:700;
  margin-bottom: 6px;
  color:#101828;
}
.fcol a{
  color:#4A5565;
  font-size:16px;
  transition:color .2s ease;
}
.fcol a:hover{ color:var(--blue); }

.footer__bottom{
  border-top:1px solid #E5E7EB;
  padding-top: 20px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:16px;
  color:#99A1AF;
  font-size:14px;
}
.footer__socials{ display:flex; gap:12px; }
.footer__socials a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid #E5E7EB;
  display:grid; place-items:center;
  color:#475569;
  transition:all .2s ease;
}
.footer__socials a:hover{
  background:var(--blue); border-color:var(--blue); color:#fff;
}
.footer__socials svg{ width:18px; height:18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{
  opacity:0; transform:translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in{ opacity:1; transform:none; }
.reveal:nth-child(2){ transition-delay:.08s; }
.reveal:nth-child(3){ transition-delay:.16s; }
.reveal:nth-child(4){ transition-delay:.24s; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ============================================================
   LEGAL PAGES (Terms / Privacy)
   ============================================================ */
.legal-hero{
  padding: calc(72px + 60px) var(--gutter) clamp(40px,5vw,80px);
  background: radial-gradient(120% 80% at 50% 0%, #173072 0%, #111 60%);
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.legal-hero__eyebrow{
  display:inline-block;
  padding: 8px 16px;
  border-radius:999px;
  background:rgba(43,127,255,.15);
  border:1px solid rgba(43,127,255,.35);
  color:#9DBCFF;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.legal-hero__title{
  font-size: clamp(40px, 6vw, 96px);
  line-height:1.05;
  letter-spacing:-.02em;
  margin-bottom:20px;
}
.legal-hero__meta{
  color:rgba(255,255,255,.6);
  font-size: clamp(14px, 1.05vw, 17px);
  display:flex; flex-wrap:wrap; gap:8px 24px; justify-content:center;
}
.legal-hero__meta b{ color:#fff; font-weight:600; }

.legal{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width:1440px;
  margin: 0 auto;
  padding: clamp(48px,6vw,96px) var(--gutter);
}
@media (max-width:980px){
  .legal{ grid-template-columns: 1fr; }
}

.legal__toc{
  position: sticky; top: 96px;
  align-self:start;
  max-height: calc(100vh - 120px);
  overflow-y:auto;
  padding-right:8px;
}
.legal__toc h4{
  font-size: 13px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.legal__toc ol{
  list-style:none; padding:0; margin:0;
  counter-reset: tocnum;
  display:flex; flex-direction:column; gap:2px;
}
.legal__toc li{ counter-increment: tocnum; }
.legal__toc a{
  display:block;
  padding: 8px 12px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  border-radius: 8px;
  line-height:1.4;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.legal__toc a::before{
  content: counter(tocnum, decimal-leading-zero) ".";
  display:inline-block;
  width: 30px;
  color: rgba(255,255,255,.35);
  font-variant-numeric: tabular-nums;
  font-weight:700;
}
.legal__toc a:hover,
.legal__toc a.active{
  background: rgba(43,127,255,.10);
  color:#fff;
}
.legal__toc a.active{ color:#fff; }
.legal__toc a.active::before{ color: var(--blue-soft); }

@media (max-width:980px){
  .legal__toc{ position:static; max-height:none; padding-right:0; }
}

.legal__body{
  font-size: clamp(15px, 1.05vw, 17px);
  line-height:1.7;
  color: rgba(255,255,255,.78);
  max-width: 820px;
}
.legal__lead{
  font-size: clamp(17px, 1.3vw, 21px);
  line-height:1.55;
  color:#fff;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px,4vw,56px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal__body section{
  margin-bottom: clamp(40px, 4vw, 64px);
  scroll-margin-top: 96px;
}
.legal__body h2{
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight:700;
  color:#fff;
  margin-bottom:20px;
  display:flex; align-items:baseline; gap:14px;
  letter-spacing:-.01em;
}
.legal__body h2 .num{
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight:800;
  color: var(--blue-soft);
  letter-spacing:.18em;
  font-variant-numeric: tabular-nums;
}
.legal__body h3{
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight:700;
  color:#fff;
  margin: 28px 0 12px;
}
.legal__body p{ margin: 0 0 16px; }
.legal__body p:last-child{ margin-bottom:0; }
.legal__body strong{ color:#fff; font-weight:700; }
.legal__body a{
  color: var(--blue-soft);
  text-decoration:underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43,127,255,.4);
  transition: text-decoration-color .2s ease;
}
.legal__body a:hover{ text-decoration-color: var(--blue-soft); }

.legal__body ul{
  list-style:none;
  padding:0; margin: 0 0 16px;
  display:flex; flex-direction:column; gap: 8px;
}
.legal__body ul li{
  position:relative;
  padding-left: 22px;
}
.legal__body ul li::before{
  content:"";
  position:absolute;
  left:0; top: .65em;
  width:8px; height:8px;
  border-radius:50%;
  background: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(43,127,255,.12);
}

.legal__body .callout{
  background: linear-gradient(180deg, rgba(43,127,255,.10) 0%, rgba(43,127,255,.04) 100%);
  border: 1px solid rgba(43,127,255,.25);
  border-radius: 16px;
  padding: clamp(20px,2vw,28px);
  margin: 24px 0;
}
.legal__body .callout p{ color:#fff; }

.legal__body .legalese{
  font-variant-caps: all-small-caps;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.03);
  border-left: 3px solid var(--blue-soft);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
}

.legal__contact{
  background: var(--bg-2);
  border-radius: 20px;
  padding: clamp(24px,3vw,36px);
  margin-top: clamp(32px,4vw,48px);
  text-align:center;
}
.legal__contact strong{ display:block; margin-bottom:6px; font-size:18px; }
.legal__contact a{
  display:inline-block;
  margin-top:8px;
  color:var(--blue-soft);
  font-weight:700;
  font-size: 17px;
}

/* Back-to-top sub-nav on legal page */
.legal-pagenav{
  max-width:1440px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px,6vw,96px);
  display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between;
}
.legal-pagenav a{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 24px;
  border-radius: 12px;
  background: var(--bg-2);
  color: #fff;
  font-weight:600;
  transition: background .2s ease, transform .2s ease;
}
.legal-pagenav a:hover{ background: var(--bg-3); transform: translateY(-2px); }
.legal-pagenav .label{
  display:block;
  font-size:12px;
  color: rgba(255,255,255,.5);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:2px;
}
