/* ALCRide landing — styles. Brand tokens mirror screens.jsx. */
:root{
  --blue:#1E40AF; --blue-d:#1F35A2; --blue-2:#3656DC;
  --grad:linear-gradient(135deg,#3656DC 0%,#1F35A2 100%);
  --green:#15A35B; --green-d:#0E7C43; --green-t:#E7F6EE;
  --ink:#0F172A; --sub:#64748B; --line:#E8ECF5;
  --bg:#F3F5FB; --tint:#F6F8FD; --blue-t:#EDF1FE; --card:#FFFFFF;
  --f:'Inter',system-ui,-apple-system,sans-serif;
  --fh:'Poppins',system-ui,-apple-system,sans-serif;
  --shadow:0 1px 2px rgba(16,24,64,.04),0 8px 24px rgba(16,24,64,.06);
  --shadow-lg:0 2px 6px rgba(16,24,64,.05),0 24px 60px rgba(16,24,64,.12);
  --maxw:1200px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--card); color:var(--ink);
  font-family:var(--f); -webkit-font-smoothing:antialiased;
  line-height:1.5; overflow-x:hidden;
}
h1,h2,h3,h4{font-family:var(--fh); margin:0; letter-spacing:-.02em; line-height:1.08;}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px; width:100%;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--fh); font-weight:600; font-size:16px; cursor:pointer;
  border:none; border-radius:14px; padding:15px 24px; white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--grad); color:#fff; box-shadow:0 10px 26px rgba(31,53,162,.32);}
.btn-primary:hover{box-shadow:0 14px 32px rgba(31,53,162,.42); transform:translateY(-2px);}
.btn-ghost{background:rgba(255,255,255,.12); color:#fff; border:1.5px solid rgba(255,255,255,.4);}
.btn-ghost:hover{background:rgba(255,255,255,.2);}
.btn-light{background:#fff; color:var(--blue-d);}
.btn-light:hover{box-shadow:0 10px 26px rgba(0,0,0,.12); transform:translateY(-2px);}
.btn-outline{background:transparent; color:var(--blue-d); border:1.5px solid var(--line);}
.btn-outline:hover{border-color:var(--blue); background:var(--blue-t);}

/* App Store badge (placeholder — swap for the real badge later) */
.appstore{
  display:inline-flex; align-items:center; gap:12px; cursor:pointer;
  background:#0B1020; color:#fff; border-radius:14px; padding:11px 20px 11px 17px;
  border:1px solid rgba(255,255,255,.14);
  transition:transform .18s ease, box-shadow .18s ease;
}
.appstore:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.25);}
.appstore .as-txt{display:flex; flex-direction:column; line-height:1.1; text-align:left;}
.appstore .as-top{font-family:var(--f); font-size:11px; letter-spacing:.02em; opacity:.82; white-space:nowrap;}
.appstore .as-big{font-family:var(--fh); font-weight:600; font-size:19px; letter-spacing:-.01em; white-space:nowrap;}
.appstore.on-dark{border-color:rgba(255,255,255,.22);}

/* ---------- nav ---------- */
header.nav{
  position:sticky; top:0; z-index:60; width:100%;
  background:rgba(255,255,255,.82); backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; gap:18px; height:70px;}
.brand{display:flex; align-items:center; gap:11px; flex-shrink:0;}
.brand img{width:38px; height:38px; border-radius:11px; box-shadow:0 4px 12px rgba(31,53,162,.32);}
.brand .name{font-family:var(--fh); font-weight:700; font-size:20px; color:var(--ink);}
.nav-links{display:flex; gap:30px; margin-left:14px;}
.nav-links a{font-size:15px; font-weight:500; color:var(--sub); transition:color .15s;}
.nav-links a:hover{color:var(--ink);}
.nav-right{margin-left:auto; display:flex; align-items:center; gap:14px;}

/* language switch */
.lang{display:inline-flex; background:var(--bg); border:1px solid var(--line); border-radius:999px; padding:3px; gap:2px;}
.lang button{
  border:none; background:transparent; cursor:pointer; font-family:var(--fh);
  font-weight:600; font-size:13px; color:var(--sub); padding:5px 12px; border-radius:999px;
  transition:all .15s;
}
.lang button.on{background:#fff; color:var(--blue-d); box-shadow:0 1px 3px rgba(16,24,64,.12);}
.lang.on-dark{background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.22);}
.lang.on-dark button{color:rgba(255,255,255,.7);}
.lang.on-dark button.on{background:rgba(255,255,255,.92); color:var(--blue-d);}

.menu-btn{display:none; border:none; background:var(--bg); border-radius:11px; width:42px; height:42px; cursor:pointer; align-items:center; justify-content:center;}

/* ---------- hero ---------- */
.hero{position:relative; background:var(--grad); color:#fff; overflow:hidden; padding:84px 0 0;}
.hero .blob{position:absolute; border-radius:50%; filter:blur(90px); opacity:.5; pointer-events:none;}
.hero .blob.a{width:720px; height:720px; left:-220px; top:-260px; background:#5B79FF;}
.hero .blob.b{width:620px; height:620px; right:-200px; bottom:-300px; background:#162A86;}
.hero .flight{position:absolute; inset:0; width:100%; height:100%; pointer-events:none; opacity:.5;}
.hero-grid{position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;}
.eyebrow{
  display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22); border-radius:999px; padding:7px 15px;
  font-family:var(--fh); font-weight:600; font-size:13px; letter-spacing:.02em;
}
.eyebrow .dot{width:7px; height:7px; border-radius:50%; background:#7FE7AE;}
.hero h1{font-size:clamp(40px,5.4vw,66px); font-weight:700; margin:22px 0 0; max-width:14ch;}
.hero h1 em{font-style:normal; color:#BFD0FF;}
.hero .sub{font-family:var(--f); font-size:clamp(16px,1.6vw,19px); color:rgba(255,255,255,.86); margin-top:20px; max-width:46ch; line-height:1.6;}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; align-items:center;}
.hero-trust{display:flex; align-items:center; gap:12px; margin-top:26px; flex-wrap:wrap;}
.hero-trust .stars{display:inline-flex; gap:2px;}
.hero-trust span{font-family:var(--f); font-size:14.5px; color:rgba(255,255,255,.88);}
.hero-trust strong{color:#fff; font-weight:600;}
.coming-note{font-family:var(--f); font-size:12.5px; color:rgba(255,255,255,.62); margin-top:14px;}

/* phone stage */
.phones{position:relative; min-height:600px;}
.phone-card{position:absolute; top:50%; left:50%; border-radius:48px; transform-origin:center center;}
.phone-card.back{transform:translate(-92%,-45%) scale(.55) rotate(-7deg); opacity:.97; z-index:1; filter:drop-shadow(0 30px 60px rgba(10,18,60,.45));}
.phone-card.front{transform:translate(-30%,-50%) scale(.66) rotate(4deg); z-index:2; filter:drop-shadow(0 40px 80px rgba(10,18,60,.5));}
.phone-single{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(.72) rotate(-3deg); filter:drop-shadow(0 36px 70px rgba(16,24,64,.22));}

/* ---------- section scaffolding ---------- */
section{position:relative;}
.band{padding:96px 0;}
.band.tint{background:var(--tint);}
.band.white{background:#fff;}
.sec-head{max-width:680px; margin:0 auto 56px; text-align:center;}
.tag{display:inline-flex; align-items:center; gap:8px; white-space:nowrap; font-family:var(--fh); font-weight:700; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--blue); background:var(--blue-t); padding:7px 14px; border-radius:999px;}
.sec-head h2{font-size:clamp(30px,3.6vw,46px); margin:18px 0 0;}
.sec-head p{font-family:var(--f); font-size:18px; color:var(--sub); margin-top:16px; line-height:1.6;}

/* ---------- how it works ---------- */
.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; position:relative;}
.step{background:#fff; border:1px solid var(--line); border-radius:24px; padding:34px 28px; box-shadow:var(--shadow); position:relative;}
.step .num{position:absolute; top:-18px; left:28px; width:40px; height:40px; border-radius:13px; background:var(--grad); color:#fff; font-family:var(--fh); font-weight:700; font-size:18px; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(31,53,162,.32);}
.step .ic{width:58px; height:58px; border-radius:17px; background:var(--blue-t); display:flex; align-items:center; justify-content:center; margin:14px 0 20px;}
.step h3{font-size:21px;}
.step p{font-family:var(--f); color:var(--sub); font-size:15.5px; margin-top:10px; line-height:1.6;}

/* ---------- features ---------- */
.feat-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.feat{background:#fff; border:1px solid var(--line); border-radius:22px; padding:26px 24px; box-shadow:var(--shadow); transition:transform .2s ease, box-shadow .2s ease;}
.feat:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg);}
.feat .ic{width:50px; height:50px; border-radius:14px; background:var(--blue-t); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.feat.green .ic{background:var(--green-t);}
.feat h3{font-size:18px;}
.feat p{font-family:var(--f); color:var(--sub); font-size:14.5px; margin-top:9px; line-height:1.55;}
.feat .langs{display:flex; flex-wrap:wrap; gap:6px; margin-top:13px;}
.feat .langs span{font-family:var(--fh); font-weight:600; font-size:11.5px; color:var(--blue); background:var(--blue-t); padding:4px 9px; border-radius:8px;}

/* ---------- spotlight (auto-translate) ---------- */
.spot{display:grid; grid-template-columns:.95fr 1.05fr; gap:48px; align-items:center;}
.spot .phones{min-height:600px;}
.spot-copy h2{font-size:clamp(28px,3.2vw,42px); margin-top:18px;}
.spot-copy p{font-family:var(--f); font-size:17px; color:var(--sub); margin-top:18px; line-height:1.65; max-width:46ch;}
.spot-list{display:flex; flex-direction:column; gap:14px; margin-top:26px;}
.spot-list li{display:flex; align-items:flex-start; gap:13px; list-style:none; font-family:var(--f); font-size:15.5px; color:var(--ink);}
.spot-list .chk{width:26px; height:26px; border-radius:50%; background:var(--green-t); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;}
ul.spot-list{margin:0; padding:0;}

/* ---------- trust ---------- */
.trust-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.trust-item{background:#fff; border:1px solid var(--line); border-radius:20px; padding:24px; display:flex; gap:16px; align-items:flex-start; box-shadow:var(--shadow);}
.trust-item .ic{width:46px; height:46px; border-radius:13px; background:var(--green-t); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.trust-item h3{font-size:17px;}
.trust-item p{font-family:var(--f); color:var(--sub); font-size:14px; margin-top:7px; line-height:1.55;}

/* ---------- why / benefits ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.why{border-radius:24px; padding:30px 28px; position:relative; overflow:hidden;}
.why.fill{background:var(--grad); color:#fff;}
.why.plain{background:#fff; border:1px solid var(--line); box-shadow:var(--shadow);}
.why .ic{width:54px; height:54px; border-radius:15px; display:flex; align-items:center; justify-content:center; margin-bottom:20px;}
.why.plain .ic{background:var(--blue-t);}
.why.fill .ic{background:rgba(255,255,255,.16);}
.why h3{font-size:22px;}
.why p{font-family:var(--f); font-size:15.5px; margin-top:11px; line-height:1.6;}
.why.plain p{color:var(--sub);}
.why.fill p{color:rgba(255,255,255,.86);}
.why .big{font-family:var(--fh); font-weight:700; font-size:34px; line-height:1; margin-bottom:6px;}

/* ---------- social proof ---------- */
.stats{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:760px; margin:0 auto 50px;}
.stat{text-align:center;}
.stat .n{font-family:var(--fh); font-weight:700; font-size:clamp(38px,5vw,56px); color:var(--blue-d); line-height:1;}
.stat .l{font-family:var(--f); color:var(--sub); font-size:15px; margin-top:8px;}
.placeholder-note{display:inline-block; font-family:'Courier New',monospace; font-size:11px; color:var(--sub); background:var(--bg); border:1px dashed #C7D0E4; border-radius:7px; padding:3px 9px; margin-top:10px;}
.reviews{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.review{background:#fff; border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:var(--shadow); position:relative;}
.review .stars{display:flex; gap:2px; margin-bottom:12px;}
.review p{font-family:var(--f); font-size:15px; color:var(--ink); line-height:1.55;}
.review .who{display:flex; align-items:center; gap:11px; margin-top:18px;}
.review .av{width:38px; height:38px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--fh); font-weight:600; font-size:13px;}
.review .who .nm{font-family:var(--fh); font-weight:600; font-size:14px;}
.review .who .mt{font-family:var(--f); font-size:12.5px; color:var(--sub);}

/* ---------- final CTA ---------- */
.final{position:relative; background:var(--grad); color:#fff; border-radius:36px; padding:72px 40px; text-align:center; overflow:hidden; clip-path:inset(0 round 36px);}
.final .blob{position:absolute; border-radius:50%; filter:blur(80px); opacity:.45; pointer-events:none;}
.final .blob.a{width:500px; height:500px; left:-160px; top:-200px; background:#5B79FF;}
.final .blob.b{width:460px; height:460px; right:-160px; bottom:-220px; background:#162A86;}
.final h2{position:relative; font-size:clamp(32px,4vw,52px); max-width:18ch; margin:0 auto;}
.final p{position:relative; font-family:var(--f); font-size:18px; color:rgba(255,255,255,.86); margin:20px auto 0; max-width:50ch;}
.final-cta{position:relative; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:34px;}

/* ---------- footer ---------- */
footer{background:#0B1020; color:#fff; padding:64px 0 34px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;}
.foot-brand .brand .name{color:#fff;}
.foot-brand p{font-family:var(--f); font-size:14.5px; color:rgba(255,255,255,.6); margin-top:16px; max-width:32ch; line-height:1.6;}
.foot-zones{display:inline-flex; gap:7px; margin-top:18px; flex-wrap:wrap;}
.foot-zones span{font-family:var(--fh); font-weight:600; font-size:12px; color:rgba(255,255,255,.82); background:rgba(255,255,255,.08); padding:5px 11px; border-radius:8px;}
.foot-col h4{font-family:var(--fh); font-weight:600; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:16px;}
.foot-col a, .foot-col span.li{display:block; font-family:var(--f); font-size:14.5px; color:rgba(255,255,255,.78); margin-bottom:12px; transition:color .15s;}
.foot-col a:hover{color:#fff;}
.foot-bottom{display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:48px; padding-top:26px; border-top:1px solid rgba(255,255,255,.1); flex-wrap:wrap;}
.foot-bottom p{font-family:var(--f); font-size:13.5px; color:rgba(255,255,255,.55);}

/* icon colors (svgs use stroke/fill currentColor) */
.ic{color:var(--blue);}
.feat.green .ic,.trust-item .ic{color:var(--green);}
.why.fill .ic{color:#fff;}
.spot-list .chk{color:var(--green);}
.step .ic svg,.feat .ic svg,.trust-item .ic svg,.why .ic svg{display:block;}

/* ---------- reveal animation ---------- */
.reveal{opacity:0; transform:translateY(20px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:none;}

/* ---------- responsive ---------- */
@media (max-width:980px){
  .nav-links{display:none;}
  .menu-btn{display:flex;}
  .hero-grid{grid-template-columns:1fr; gap:10px; text-align:center;}
  .hero h1{margin-left:auto; margin-right:auto;}
  .hero .sub{margin-left:auto; margin-right:auto;}
  .hero-cta, .hero-trust{justify-content:center;}
  .phones{min-height:520px; margin-top:24px;}
  .spot{grid-template-columns:1fr; gap:20px;}
  .spot .phones{min-height:540px; order:2;}
  .feat-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:1fr;}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
  .foot-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:620px){
  .wrap{padding:0 20px;}
  .band{padding:64px 0;}
  .steps{grid-template-columns:1fr; gap:34px;}
  .feat-grid{grid-template-columns:1fr;}
  .trust-grid{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr; gap:30px;}
  .reviews{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr; gap:30px;}
  .foot-bottom{flex-direction:column; align-items:flex-start;}
  .final{padding:52px 22px; border-radius:26px; clip-path:inset(0 round 26px);}
  .hero-cta .btn, .hero-cta .appstore{flex:1;}
  .nav-right .lang{display:none;}
}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  html{scroll-behavior:auto;}
}

/* Mobile hamburger menu (added — the export shipped the button with no panel/JS) */
.mobile-menu{display:none;}
@media (max-width:980px){
  .mobile-menu{flex-direction:column; gap:2px; padding:6px 20px 16px;
    background:rgba(255,255,255,.97); border-top:1px solid var(--line);}
  .mobile-menu.open{display:flex;}
  .mobile-menu a{font-family:var(--fh); font-size:16px; font-weight:600; color:var(--ink);
    padding:12px 4px; border-bottom:1px solid var(--line);}
  .mobile-menu a:last-of-type{border-bottom:none;}
  .mobile-menu .lang{display:inline-flex; align-self:flex-start; margin-top:12px;}
}
