:root{
  --ink:#08080b;
  --surface:#101016;
  --surface-2:#16161f;
  --surface-3:#1c1c27;
  --line:rgba(255,255,255,0.09);
  --line-2:rgba(255,255,255,0.14);
  --white:#f6f6f8;
  --muted:#93939f;
  --muted-2:#5f5f6c;
  --indigo:#5457f2;
  --indigo-light:#8a8dff;
  --indigo-dim:rgba(84,87,242,0.16);
  --purple:#9b4dff;
  --red:#ff4d4d;
  --blue:#2d63e8;
  --cyan:#29b6f6;
  --green:#3ddc84;
  --amber:#ffb020;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--white);
  font-family:'Inter',sans-serif;
  font-size:17px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
.wrap{max-width:1180px;margin:0 auto;padding:0 32px;}
.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--indigo-light);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--indigo-light);
  box-shadow:0 0 0 4px var(--indigo-dim);
}
h1,h2,h3{font-family:'Space Grotesk',sans-serif;font-weight:600;letter-spacing:-0.01em;}
.mono{font-family:'IBM Plex Mono',monospace;}
.muted{color:var(--muted);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- NAV ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:8px 0;
  transition:background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(8,8,11,0.82);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  padding:6px 0;
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;}
.nav-logo{display:flex;align-items:center;gap:10px;}
.nav-logo img{height:80px;width:auto;transition:height .3s ease;display:block;}
.nav.scrolled .nav-logo img{height:58px;}
.nav-links{display:flex;align-items:center;gap:36px;}
.nav-links a{font-size:14px;color:var(--muted);transition:color .2s;}
.nav-links a:hover{color:var(--white);}
.nav-cta{
  font-size:14px;font-weight:600;
  padding:10px 20px;
  border-radius:100px;
  background:var(--white);
  color:var(--ink);
  transition:transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(255,255,255,0.15);}
.nav-mobile-hide{display:flex;}
@media(max-width:860px){
  .nav-mobile-hide{display:none;}
}

/* ---------- BUTTONS / CHIPS ---------- */
.btn-row{display:flex;flex-wrap:wrap;gap:14px;}
.store-btn{
  display:flex;align-items:center;gap:12px;
  padding:12px 20px;
  border-radius:14px;
  border:1px solid var(--line-2);
  background:var(--surface-2);
  opacity:0.55;
  cursor:not-allowed;
  position:relative;
}
.store-btn svg{width:22px;height:22px;flex-shrink:0;}
.store-btn .store-label{display:flex;flex-direction:column;line-height:1.2;}
.store-btn .store-label span:first-child{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;}
.store-btn .store-label span:last-child{font-size:14.5px;font-weight:600;}
.store-btn .soon-tag{
  position:absolute;top:-9px;right:-9px;
  background:var(--indigo);
  color:#fff;font-size:9.5px;font-weight:700;
  padding:3px 7px;border-radius:100px;
  font-family:'IBM Plex Mono',monospace;
  letter-spacing:.03em;
  white-space:nowrap;
}
.chip-row{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  font-size:13px;font-family:'IBM Plex Mono',monospace;
  padding:8px 16px;border-radius:100px;
  border:1px solid var(--line-2);
  color:var(--muted);
  display:flex;align-items:center;gap:8px;
}
.chip::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--indigo-light);}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:170px 0 100px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-260px;right:-220px;
  width:760px;height:760px;
  background:radial-gradient(circle, rgba(84,87,242,0.35) 0%, rgba(84,87,242,0.08) 45%, transparent 70%);
  filter:blur(10px);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-300px;left:-260px;
  width:600px;height:600px;
  background:radial-gradient(circle, rgba(84,87,242,0.14) 0%, transparent 65%);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero h1{
  font-size:clamp(40px,5.4vw,68px);
  line-height:1.03;
  margin-bottom:22px;
}
.hero h1 .accent{color:var(--indigo-light);}
.hero-sub{
  font-size:19.5px;
  color:var(--muted);
  max-width:500px;
  margin-bottom:34px;
}
.hero-stats{
  display:flex;gap:36px;
  margin-top:44px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.hero-stat b{
  display:block;
  font-family:'Space Grotesk',sans-serif;
  font-size:28px;font-weight:700;
  color:var(--white);
}
.hero-stat span{
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
}

/* ---------- PHONE / SIGNATURE WIDGET ---------- */
.hero-visual{display:flex;flex-direction:column;align-items:center;gap:24px;}
.phone-caption{
  font-family:'Space Grotesk',sans-serif;
  font-size:16px;font-weight:500;
  line-height:1.5;text-align:center;
  color:var(--muted);
  max-width:360px;
  text-wrap:balance;
}
.phone-caption span{color:var(--indigo-light);font-weight:600;}
.phone-stage{position:relative;display:flex;justify-content:center;}
.phone{
  width:300px;height:610px;
  background:#000;
  border-radius:44px;
  padding:10px;
  position:relative;
  box-shadow:0 40px 100px -20px rgba(84,87,242,0.35), 0 10px 40px rgba(0,0,0,0.5);
  border:1px solid rgba(255,255,255,0.08);
}
.phone-screen{
  width:100%;height:100%;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(84,87,242,0.35), transparent 55%),
    linear-gradient(160deg, #14141d 0%, #0c0c12 100%);
}
.phone-notch{
  position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:110px;height:26px;background:#000;border-radius:20px;z-index:5;
}
.map-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size:34px 34px;
}
.map-road{
  position:absolute;
  background:rgba(138,141,255,0.16);
}
.map-road.r1{width:2px;height:70%;top:0;left:38%;transform:rotate(8deg);}
.map-road.r2{width:2px;height:55%;top:20%;left:68%;transform:rotate(-14deg);}
.map-road.r3{height:2px;width:80%;top:62%;left:5%;transform:rotate(-3deg);}

.pin{
  position:absolute;
  width:30px;height:30px;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.4);
}
.pin .pin-dot{width:9px;height:9px;border-radius:50%;background:#fff;transform:rotate(45deg);}
.pin.purple{background:var(--purple);top:26%;left:20%;}
.pin.red{background:var(--red);top:44%;left:62%;}
.pin.blue{background:var(--blue);top:66%;left:30%;}
.pin.cyan{background:var(--cyan);top:16%;left:58%;}
.pin::after{
  content:"";
  position:absolute;inset:-8px;
  border-radius:50%;
  border:2px solid currentColor;
  opacity:0;
  animation:pinpulse 2.6s ease-out infinite;
}
.pin.purple::after{color:var(--purple);animation-delay:0s;}
.pin.red::after{color:var(--red);animation-delay:.5s;}
.pin.blue::after{color:var(--blue);animation-delay:1s;}
.pin.cyan::after{color:var(--cyan);animation-delay:1.5s;}
@keyframes pinpulse{
  0%{transform:scale(0.5);opacity:.55;}
  100%{transform:scale(1.7);opacity:0;}
}

.you-dot{
  position:absolute;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--indigo-light);
  border:3px solid #fff;
  box-shadow:0 0 0 6px rgba(138,141,255,0.25);
  top:50%;left:44%;
  animation:drift 9s ease-in-out infinite;
}
@keyframes drift{
  0%,100%{top:50%;left:44%;}
  25%{top:44%;left:50%;}
  50%{top:56%;left:53%;}
  75%{top:60%;left:41%;}
}

.timer-badge{
  position:absolute;top:52px;left:16px;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  padding:6px 12px;
  border-radius:100px;
  z-index:4;
  display:flex;align-items:center;gap:7px;
}
.timer-badge::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--red);
  animation:blink 1.4s ease-in-out infinite;
}
@keyframes blink{50%{opacity:.2;}}

.phone-actions{
  position:absolute;bottom:14px;left:14px;right:14px;
  display:grid;grid-template-columns:1fr 1fr;gap:8px;
  z-index:4;
}
.pa-btn{
  border-radius:14px;
  padding:11px 10px;
  font-size:12.5px;font-weight:600;
  display:flex;align-items:center;gap:7px;
  color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,0.35);
}
.pa-btn svg{width:15px;height:15px;flex-shrink:0;}
.pa-btn.ev{background:linear-gradient(135deg,#a45bff,#8331ea);}
.pa-btn.af{background:linear-gradient(135deg,#ff6a5c,#e83a3a);}
.pa-btn.me{background:linear-gradient(135deg,#3f6ff0,#2247c4);}
.pa-btn.au{background:linear-gradient(135deg,#48c9f0,#1f9fd6);}

.phone-glow-ring{
  position:absolute;
  width:440px;height:440px;
  border:1px solid rgba(84,87,242,0.25);
  border-radius:50%;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  z-index:-1;
  animation:ringspin 40s linear infinite;
}
.phone-glow-ring::before{
  content:"";
  position:absolute;inset:34px;
  border:1px solid rgba(84,87,242,0.14);
  border-radius:50%;
}
@keyframes ringspin{to{transform:translate(-50%,-50%) rotate(360deg);}}

/* ---------- TICKER ---------- */
.ticker-band{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:16px 0;
  background:var(--surface);
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}
.ticker-track{
  display:inline-flex;
  gap:52px;
  animation:tickerscroll 32s linear infinite;
}
.ticker-track span{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  color:var(--muted);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.ticker-track span::before{content:"◍";color:var(--indigo-light);}
@keyframes tickerscroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ---------- SECTION GENERIC ---------- */
section{padding:120px 0;}
.section-head{
  max-width:680px;
  margin:0 auto 64px;
  text-align:center;
}
.section-head .eyebrow{justify-content:center;}
.section-head h2{
  font-size:clamp(32px,4vw,46px);
  line-height:1.12;
}
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1;transform:translateY(0);}

/* ---------- PROBLEM ---------- */
.problem-section{background:var(--surface);}
.problem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.problem-card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px 24px;
  transition:border-color .25s ease, transform .25s ease;
}
.problem-card:hover{border-color:var(--line-2);transform:translateY(-4px);}
.problem-card .pnum{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;color:var(--indigo-light);margin-bottom:20px;display:block;
}
.problem-card h3{font-size:18.5px;margin-bottom:11px;font-weight:600;}
.problem-card p{font-size:15px;color:var(--muted);line-height:1.6;}

/* ---------- AGITATION ---------- */
.agitation{
  text-align:center;
  padding:130px 0;
  position:relative;
}
.agitation-statement{
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(30px,4.6vw,52px);
  font-weight:600;
  line-height:1.15;
  margin-bottom:30px;
}
.agitation p.sub{
  color:var(--muted);
  font-size:17px;
  max-width:520px;
  margin:0 auto 56px;
}
.pull-quote{
  max-width:680px;
  margin:0 auto;
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(19px,2.2vw,25px);
  line-height:1.5;
  color:var(--white);
  border-top:1px solid var(--line);
  padding-top:36px;
}
.pull-quote .hl{color:var(--indigo-light);}

/* ---------- SOLUTION ---------- */
.solution-section{background:var(--surface);}
.solution-grid{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:70px;
  align-items:center;
}
.solution-copy p{color:var(--muted);font-size:16.5px;margin-bottom:18px;max-width:480px;}
.solution-visual{
  position:relative;
  display:flex;justify-content:center;
}
.solution-visual .ring-decor{
  position:absolute;width:420px;height:420px;
  border:1px solid rgba(84,87,242,0.22);
  border-radius:50%;
}
.solution-visual .ring-decor.small{width:320px;height:320px;}
.solution-phone{
  width:260px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid var(--line-2);
  transform:rotate(-4deg);
  box-shadow:0 40px 90px -20px rgba(0,0,0,0.6);
  position:relative;
}
.solution-phone img{width:100%;display:block;}

/* ---------- HOW IT WORKS ---------- */
.how-section{position:relative;background:var(--surface);}
.how-track{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}
.how-step{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:36px 28px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  transition:border-color .25s ease, transform .25s ease;
}
.how-step:hover{transform:translateY(-4px);border-color:var(--hc,var(--indigo));}
.how-icon{
  width:58px;height:58px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  background:color-mix(in srgb, var(--hc) 18%, transparent);
  border:1px solid color-mix(in srgb, var(--hc) 40%, transparent);
}
.how-icon svg{width:26px;height:26px;color:var(--hc);}
.how-marker{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--muted-2);
  letter-spacing:.08em;
  margin-bottom:12px;
}
.how-step h3{font-size:19px;margin-bottom:11px;font-weight:600;}
.how-step p{color:var(--muted);font-size:14.5px;line-height:1.6;max-width:270px;}

/* ---------- SHOWCASE (captures réelles, animation défilante) ---------- */
.showcase-section{
  background:var(--surface);
  padding:110px 0 120px;
  overflow:hidden;
}
.showcase-track-wrap{
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.showcase-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:showcasescroll 42s linear infinite;
}
.showcase-track-wrap:hover .showcase-track{animation-play-state:paused;}
@keyframes showcasescroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.showcase-item{
  width:260px;
  flex-shrink:0;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line-2);
  background:#000;
  box-shadow:0 30px 70px -20px rgba(0,0,0,0.6);
  transition:transform .3s ease;
}
.showcase-item:hover{transform:translateY(-8px);}
.showcase-item img{width:100%;display:block;}
.features-section{background:var(--surface);}
.points-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.point-card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:32px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:border-color .25s ease, transform .25s ease;
}
.point-card:hover{transform:translateY(-4px);border-color:var(--pc,var(--indigo));}
.point-icon{
  width:54px;height:54px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  background:color-mix(in srgb, var(--pc) 18%, transparent);
  border:1px solid color-mix(in srgb, var(--pc) 40%, transparent);
}
.point-icon svg{width:24px;height:24px;color:var(--pc);}
.point-card h3{font-size:16.5px;margin-bottom:9px;font-weight:600;}
.point-card p{font-size:13.5px;color:var(--muted);line-height:1.55;}

/* ---------- TRUST ---------- */
.trust-section{position:relative;overflow:hidden;}
.trust-section::before{
  content:"";
  position:absolute;
  top:50%;right:-180px;
  width:600px;height:600px;
  border:1px solid rgba(84,87,242,0.14);
  border-radius:50%;
  transform:translateY(-50%);
}
.trust-section::after{
  content:"";
  position:absolute;
  top:50%;right:-60px;
  width:400px;height:400px;
  border:1px solid rgba(84,87,242,0.14);
  border-radius:50%;
  transform:translateY(-50%);
}
.trust-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:70px;
  align-items:center;position:relative;z-index:2;
}
.trust-copy p{color:var(--muted);font-size:16.5px;max-width:460px;margin-bottom:0;}
.trust-card{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:34px;
}
.trust-card > p.lead{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;color:var(--muted);
  text-transform:uppercase;letter-spacing:.05em;
  margin-bottom:22px;
}
.trust-list{list-style:none;display:flex;flex-direction:column;gap:16px;margin-bottom:26px;}
.trust-list li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:15px;color:var(--white);
}
.trust-list li .tick{
  width:20px;height:20px;border-radius:50%;
  background:var(--indigo-dim);
  color:var(--indigo-light);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
  font-size:12px;
}
.trust-quote{
  border-top:1px solid var(--line);
  padding-top:22px;
  font-style:italic;
  color:var(--muted);
  font-size:14.5px;
}

/* ---------- FINAL CTA ---------- */
.final-cta{
  text-align:center;
  position:relative;
  padding:140px 0;
}
.final-cta::before{
  content:"";
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:900px;height:900px;
  background:radial-gradient(circle, rgba(84,87,242,0.22) 0%, transparent 60%);
  pointer-events:none;
}
.final-cta h2{
  font-size:clamp(30px,4.4vw,48px);
  margin-bottom:22px;
  position:relative;z-index:2;
}
.final-cta .chip-row{justify-content:center;margin-bottom:40px;position:relative;z-index:2;}
.final-cta .btn-row{justify-content:center;position:relative;z-index:2;}

/* ---------- FOOTER ---------- */
footer{
  border-top:1px solid var(--line);
  padding:70px 0 40px;
  background:var(--surface);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  margin-bottom:60px;
}
.footer-brand img{height:64px;margin-bottom:22px;}
.footer-brand p{color:var(--muted);font-size:14px;max-width:280px;line-height:1.6;}
.footer-col h4{
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;text-transform:uppercase;letter-spacing:.06em;
  color:var(--muted-2);margin-bottom:18px;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:12px;}
.footer-col a{font-size:14px;color:var(--muted);transition:color .2s;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:28px;border-top:1px solid var(--line);
  font-size:13px;color:var(--muted-2);
  flex-wrap:wrap;gap:14px;
}

/* ---------- SUPPORT FAB ---------- */
.support-fab{
  position:fixed;bottom:26px;right:26px;z-index:200;
}
.fab-btn{
  width:58px;height:58px;border-radius:50%;
  background:var(--indigo);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 12px 30px rgba(84,87,242,0.45);
  transition:transform .2s ease;
}
.fab-btn:hover{transform:scale(1.06);}
.fab-btn svg{width:26px;height:26px;color:#fff;}
.fab-popover{
  position:absolute;bottom:74px;right:0;
  width:270px;
  background:var(--surface-2);
  border:1px solid var(--line-2);
  border-radius:16px;
  padding:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
  opacity:0;transform:translateY(10px) scale(.97);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.fab-popover.open{opacity:1;transform:translateY(0) scale(1);pointer-events:auto;}
.fab-popover .fp-title{font-weight:600;font-size:14.5px;margin-bottom:8px;display:flex;align-items:center;gap:8px;}
.fab-popover .fp-title .live-dot{width:7px;height:7px;border-radius:50%;background:#3ddc84;}
.fab-popover p{font-size:13px;color:var(--muted);line-height:1.5;margin-bottom:14px;}
.fab-popover a.fp-mail{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:var(--indigo);color:#fff;font-size:13px;font-weight:600;
  padding:10px;border-radius:10px;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:980px){
  .hero-inner{grid-template-columns:1fr;gap:60px;}
  .hero-visual{order:-1;}
  .problem-grid{grid-template-columns:repeat(2,1fr);}
  .solution-grid{grid-template-columns:1fr;gap:50px;}
  .solution-visual{order:-1;}
  .how-track{grid-template-columns:1fr;gap:16px;}
  .points-grid{grid-template-columns:repeat(2,1fr);}
  .trust-grid{grid-template-columns:1fr;gap:40px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px;}
}
@media(max-width:600px){
  .wrap{padding:0 20px;}
  .hero{padding:150px 0 70px;}
  .hero-stats{gap:24px;flex-wrap:wrap;}
  section{padding:80px 0;}
  .problem-grid{grid-template-columns:1fr;}
  .points-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
  .footer-grid{grid-template-columns:1fr;gap:30px;}
  .phone{width:260px;height:530px;}
  .phone-caption{font-size:15px;max-width:290px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
  .nav-logo img{height:46px;}
  .nav.scrolled .nav-logo img{height:40px;}
  .footer-brand img{height:48px;}
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero{
  padding:160px 0 60px;
  position:relative;
  overflow:hidden;
}
.legal-hero::before{
  content:"";
  position:absolute;top:-260px;right:-220px;
  width:640px;height:640px;
  background:radial-gradient(circle, rgba(84,87,242,0.28) 0%, transparent 65%);
  pointer-events:none;
}
.legal-hero .back-link{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;color:var(--muted);
  margin-bottom:24px;
  transition:color .2s ease;
  position:relative;z-index:2;
}
.legal-hero .back-link:hover{color:var(--white);}
.legal-hero h1{
  font-size:clamp(32px,4.4vw,50px);
  line-height:1.1;
  position:relative;z-index:2;
  max-width:700px;
}
.legal-hero .updated{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  color:var(--muted-2);
  margin-top:18px;
  position:relative;z-index:2;
}
.legal-body{
  padding:20px 0 120px;
  background:var(--surface);
}
.legal-content{
  max-width:760px;
  margin:0 auto;
}
.legal-content h2{
  font-size:22px;
  font-weight:600;
  margin:48px 0 16px;
  color:var(--white);
}
.legal-content h2:first-child{margin-top:0;}
.legal-content h3{
  font-size:17px;
  font-weight:600;
  margin:32px 0 12px;
  color:var(--white);
}
.legal-content p{
  color:var(--muted);
  font-size:15.5px;
  line-height:1.75;
  margin-bottom:16px;
}
.legal-content ul{
  color:var(--muted);
  font-size:15.5px;
  line-height:1.75;
  margin:0 0 16px 22px;
}
.legal-content li{margin-bottom:8px;}
.legal-content strong{color:var(--white);font-weight:600;}
.legal-content a{color:var(--indigo-light);text-decoration:underline;text-underline-offset:2px;}
.legal-content .info-box{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:24px 26px;
  margin:24px 0;
}
.legal-content .info-box p{margin-bottom:6px;font-size:14.5px;}
.legal-content .info-box p:last-child{margin-bottom:0;}
.legal-content .info-box .label{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;color:var(--muted-2);
  text-transform:uppercase;letter-spacing:.06em;
  margin-bottom:10px;
}
.legal-content hr{
  border:none;border-top:1px solid var(--line);
  margin:40px 0;
}
.legal-nav-pills{
  display:flex;gap:10px;flex-wrap:wrap;
  margin-top:20px;
  position:relative;z-index:2;
}
.legal-nav-pills a{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  padding:8px 16px;border-radius:100px;
  border:1px solid var(--line-2);
  color:var(--muted);
  transition:color .2s ease, border-color .2s ease;
}
.legal-nav-pills a.active{
  color:var(--white);
  border-color:var(--indigo-light);
  background:var(--indigo-dim);
}
.legal-nav-pills a:hover{color:var(--white);}
