:root{
  --bg1:#eff6ff;
  --bg2:#dbeafe;
  --bg3:#bfdbfe;
  --card:#ffffff;
  --border:#dbeafe;
  --text:#0a0a0a;
  --muted:rgba(0,0,0,.68);
  --blue:#3b82f6;
  --blue-dark:#1d4ed8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Chakra Petch',Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg1),var(--bg2),var(--bg3));
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--border);
  background:rgba(239,246,255,.94);
  backdrop-filter:blur(14px);
}
.header-row{
  display:grid;
  grid-template-columns:260px 1fr 180px;
  align-items:center;
  gap:20px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  min-width:0;
}
.brand-mark{
  width:44px;height:44px;border-radius:16px;display:grid;place-items:center;
  border:1px solid #bfdbfe;background:#fff;color:var(--blue-dark);
  box-shadow:0 0 24px rgba(59,130,246,.12);font-size:18px;flex:0 0 44px;
}
.brand small{
  display:block;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--blue-dark);
}
.brand-text{
  line-height:1.05;
}
.nav-center{
  display:flex;
  justify-content:center;
}
.nav-pills{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
}
.nav-pill{
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:rgba(0,0,0,.72);
  transition:.2s ease;
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.nav-pill:hover{background:#dbeafe}
.nav-pill.active{
  background:var(--blue);
  color:#fff;
  box-shadow:0 0 20px rgba(59,130,246,.18);
}
.header-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.download-btn,.primary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 22px;
  border-radius:18px;
  font-weight:700;
  font-size:14px;
  transition:transform .2s ease, background .2s ease;
  background:var(--blue);
  color:#fff;
}
.primary-btn:hover,.download-btn:hover{transform:translateY(-1px)}
.secondary-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  border-radius:18px;
  border:1px solid #bfdbfe;
  background:#fff;
  color:#000;
  font-weight:700;
  font-size:14px;
}
.secondary-btn:hover{background:#eff6ff}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.10), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(191,219,254,.75), transparent 24%),
    linear-gradient(180deg,#eff6ff,#dbeafe);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  padding:80px 0 112px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #bfdbfe;
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  color:var(--blue-dark);
  font-size:12px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
h1{
  margin:20px 0 0;
  font-size:68px;
  line-height:1.02;
  letter-spacing:-.04em;
}
h1 .gradient{
  display:block;
  background:linear-gradient(90deg,var(--blue-dark),var(--blue),#60a5fa);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:24px 0 0;
  max-width:760px;
  font-size:18px;
  line-height:1.8;
  color:rgba(0,0,0,.72);
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:30px;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:780px;
  margin-top:38px;
}
.stat{
  border:1px solid var(--border);
  background:rgba(255,255,255,.9);
  border-radius:22px;
  padding:18px;
}
.stat strong{display:block;font-size:15px}
.stat span{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.6;
  color:rgba(0,0,0,.6);
}
.mock-wrap{display:flex;align-items:center;justify-content:center}
.app-mock{
  width:min(100%,290px);
  border:1px solid #bfdbfe;
  background:#fff;
  border-radius:40px;
  padding:12px;
  box-shadow:0 0 60px rgba(59,130,246,.14);
}
.app-mock-inner{
  border:1px solid var(--border);
  background:linear-gradient(180deg,#eff6ff,#fff);
  border-radius:32px;
  padding:16px;
}
.mock-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.mock-top small{
  display:block;font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:var(--blue-dark)
}
.badge-rec{
  border:1px solid #bfdbfe;background:#dbeafe;padding:6px 10px;border-radius:999px;font-size:10px;color:var(--blue-dark)
}
.mock-screen{overflow:hidden;border:1px solid var(--border);background:#fff;border-radius:20px}
.mock-upper{
  height:112px;padding:16px;
  background:radial-gradient(circle at top right, rgba(59,130,246,.14), transparent 35%), linear-gradient(180deg,#eff6ff,#fff)
}
.dot{width:8px;height:8px;border-radius:999px;background:#ef4444;display:inline-block}
.row{display:flex;align-items:center;gap:8px}
.muted-xs{font-size:12px;color:rgba(0,0,0,.6)}
.mock-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:16px}
.mock-card,.mini-card{border:1px solid var(--border);background:#eff6ff;border-radius:14px;padding:12px}
.mock-card small{display:block;font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:rgba(0,0,0,.45)}
.mock-card strong{display:block;margin-top:4px;font-size:14px}
.mock-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:12px}
.mini-card{text-align:center;font-size:12px;color:rgba(0,0,0,.75)}

.section{padding:80px 0}
.section-title .tag,.tag{
  display:inline-flex;border:1px solid #bfdbfe;background:#dbeafe;color:var(--blue-dark);
  border-radius:999px;padding:8px 12px;font-size:12px;letter-spacing:.25em;text-transform:uppercase
}
.section-title h2{
  margin:14px 0 0;
  font-size:52px;
  line-height:1.06;
  letter-spacing:-.04em
}
.section-title p{
  margin:16px 0 0;
  max-width:760px;
  font-size:16px;
  line-height:1.8;
  color:var(--muted)
}
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:44px}
.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:44px}
.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.9);
  border-radius:28px;
  padding:24px;
  opacity:0;
  transform:translateY(34px) scale(.985);
  filter:blur(4px);
  transition:opacity .65s ease, transform .65s ease, filter .65s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  will-change:opacity, transform, filter;
}
.card:hover{border-color:#93c5fd;background:#fff}
.card.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
  border-color:#60a5fa;
  background:#ffffff;
  box-shadow:0 18px 40px rgba(59,130,246,.10);
}
.icon{
  width:48px;height:48px;border-radius:16px;border:1px solid #bfdbfe;background:#eff6ff;color:var(--blue-dark);
  display:grid;place-items:center;font-weight:800
}
.card h3{margin:18px 0 0;font-size:22px}
.card p{margin:12px 0 0;font-size:15px;line-height:1.8;color:rgba(0,0,0,.65)}

.band{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(239,246,255,.7)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start}
.check-list{display:grid;gap:16px}
.check-item{
  display:flex;gap:12px;align-items:flex-start;border:1px solid var(--border);background:rgba(255,255,255,.9);
  border-radius:22px;padding:16px;
  opacity:0;
  transform:translateY(28px);
  filter:blur(3px);
  transition:opacity .6s ease, transform .6s ease, filter .6s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  will-change:opacity, transform, filter;
}
.check-item.in-view{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
  border-color:#93c5fd;
  background:#ffffff;
  box-shadow:0 14px 30px rgba(59,130,246,.08);
}
.check{
  width:20px;height:20px;border-radius:999px;background:#dbeafe;color:var(--blue-dark);
  display:grid;place-items:center;font-size:12px;font-weight:800;flex:0 0 20px;margin-top:3px
}
.panel-2{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.soft-panel{border:1px solid var(--border);border-radius:28px;padding:32px}
.soft-panel.blue{background:linear-gradient(135deg,#dbeafe,#fff)}
.soft-panel.white{background:rgba(255,255,255,.9)}
.soft-panel h3{margin:16px 0 0;font-size:32px}
.soft-panel p{margin:16px 0 0;font-size:15px;line-height:1.8;color:var(--muted)}
.list-box{display:grid;gap:12px;margin-top:24px}
.list-item{
  border:1px solid var(--border);
  background:#fff;
  border-radius:18px;
  padding:14px 16px;
  font-size:14px;
  color:rgba(0,0,0,.75)
}
.callout{
  margin-top:24px;border:1px solid #bfdbfe;background:#eff6ff;border-radius:18px;padding:16px;color:var(--blue-dark);font-size:14px
}
.download-panel{
  overflow:hidden;border:1px solid #bfdbfe;border-radius:32px;padding:32px 40px;
  background:radial-gradient(circle at top right, rgba(59,130,246,.12), transparent 30%), linear-gradient(180deg,#fff,#eff6ff)
}
.download-row{display:flex;gap:24px;justify-content:space-between;align-items:center}
.legal-box,.faq-list{margin-top:40px}
.legal-box{
  border:1px solid var(--border);background:rgba(255,255,255,.9);border-radius:32px;padding:32px;display:grid;gap:28px
}
.legal-box h3,.faq-item h3{margin:0;font-size:22px}
.legal-box p,.faq-item p{margin:10px 0 0;font-size:15px;line-height:1.8;color:var(--muted)}
.faq-list{display:grid;gap:16px}
.faq-item{
  border:1px solid var(--border);background:rgba(255,255,255,.9);border-radius:28px;padding:24px
}
.link-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.92);
  border-radius:28px;
  padding:28px;
  margin-top:32px;
}
.link-card a{
  color:var(--blue-dark);
  font-weight:700;
}
.site-footer{border-top:1px solid var(--border);background:rgba(239,246,255,.8);margin-top:20px}
.footer-grid{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:32px;padding:40px 0;
  font-size:14px;color:rgba(0,0,0,.6)
}
.footer-grid h4{margin:0 0 12px;font-size:18px;color:#000}
.footer-links{display:grid;gap:8px}
.footer-links a:hover{color:var(--blue-dark)}
.page-hero{padding:76px 0 20px}

@media (max-width: 1180px){
  .header-row{grid-template-columns:220px 1fr 150px}
  .nav-pill{padding:10px 12px;font-size:13px}
}
@media (max-width: 1024px){
  .hero-inner,.split,.panel-2,.download-row,.footer-grid{grid-template-columns:1fr;display:grid}
  .cards-3{grid-template-columns:repeat(2,1fr)}
  .header-row{grid-template-columns:1fr}
  .nav-center,.header-right{justify-content:flex-start}
  .nav-pills{flex-wrap:wrap;border-radius:28px}
}
@media (max-width: 760px){
  .container{width:min(100% - 20px,1180px)}
  h1{font-size:46px}
  .section-title h2{font-size:38px}
  .cards-3,.cards-2,.stats{grid-template-columns:1fr}
  .header-row{gap:14px}
  .nav-pill{width:auto}
}


h1,h2,h3,h4,.nav-pill,.download-btn,.primary-btn,.secondary-btn,.brand,.tag,.section-title .tag{
  font-family:'Chakra Petch',Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:.01em;
}
h1{
  font-weight:600;
}
.section-title h2{
  font-weight:600;
}
.card h3,
.legal-box h3,
.faq-item h3,
.soft-panel h3,
.footer-grid h4{
  font-weight:600;
}
.nav-pill,
.download-btn,
.primary-btn,
.secondary-btn{
  font-weight:600;
}
.lead,
.card p,
.legal-box p,
.faq-item p,
.soft-panel p,
.stat span,
.list-item,
.footer-grid,
body{
  font-weight:500;
}


.stat,
.faq-item,
.legal-box > div,
.soft-panel,
.list-item,
.link-card{
  opacity:0;
  transform:translateY(30px) scale(.99);
  filter:blur(4px);
  transition:opacity .65s ease, transform .65s ease, filter .65s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  will-change:opacity, transform, filter;
}
.stat.in-view,
.faq-item.in-view,
.legal-box > div.in-view,
.soft-panel.in-view,
.list-item.in-view,
.link-card.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}
.legal-box > div{
  border:1px solid var(--border);
  background:rgba(255,255,255,.96);
  border-radius:22px;
  padding:22px;
}
.legal-box > div.in-view{
  border-color:#93c5fd;
  box-shadow:0 14px 30px rgba(59,130,246,.08);
}


.brand-text{
  font-family:'Chakra Petch',Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:20px;
  font-weight:600;
  line-height:1.05;
  letter-spacing:.01em;
  white-space:nowrap;
}
