﻿*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --black:#000000;
  --blue:#395CED;
  --blue-light:#EEF1FD;
  --lime:#D7EE78;
  --lime-light:#F3FAE3;
  --red:#C14953;
  --white:#FFFFFF;
  --g50:#F7F7F7;
  --g100:#F4F4F4;
  --g200:#EDECEC;
  --g300:#D1D1D1;
  --g500:#979797;
  --g800:#3B3B3B;
  --r-pill:100px;
  --r-card:24px;
  --r-md:16px;
  --shadow-card:0 2px 12px rgba(0,0,0,0.06),0 8px 32px rgba(0,0,0,0.04);
  --shadow-hover:0 8px 32px rgba(0,0,0,0.1),0 24px 64px rgba(0,0,0,0.07);
}

html{scroll-behavior:smooth}
body{font-family:'Satoshi',-apple-system,sans-serif;background:var(--white);color:var(--black);-webkit-font-smoothing:antialiased;overflow-x:hidden}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:0 48px;height:68px;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--g200);
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 4px 32px rgba(0,0,0,0.07)}

.nav-logo{display:flex;align-items:center;gap:9px;text-decoration:none;color:var(--black)}
.nav-logo-mark{width:56px;height:56px;background:transparent;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.nav-logo-mark img{width:48px;height:48px;object-fit:contain;border-radius:7px}
.nav-logo-text{font-size:16px;font-weight:800;letter-spacing:-.3px}

.nav-links{display:flex;gap:32px;list-style:none}
.nav-links a{text-decoration:none;color:var(--g800);font-size:14px;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--black)}

.nav-cta{
  background:var(--black);color:var(--white);
  padding:10px 20px;border-radius:var(--r-pill);
  text-decoration:none;font-size:14px;font-weight:600;
  display:flex;align-items:center;gap:8px;
  transition:opacity .2s,transform .2s;
}
.nav-cta:hover{opacity:.85;transform:translateY(-1px)}

.nav-actions{display:flex;align-items:center;gap:10px}
.nav-mobile-toggle{
  display:none;
  width:40px;height:40px;
  border:1px solid var(--g300);
  background:var(--white);
  border-radius:10px;
  align-items:center;justify-content:center;
  cursor:pointer;
}
.nav-mobile-toggle span{
  display:block;width:18px;height:2px;background:var(--black);border-radius:2px;
  position:relative;transition:transform .2s ease,opacity .2s ease;
}
.nav-mobile-toggle span::before,.nav-mobile-toggle span::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:var(--black);border-radius:2px;
  transition:transform .2s ease,top .2s ease,bottom .2s ease;
}
.nav-mobile-toggle span::before{top:-6px}
.nav-mobile-toggle span::after{bottom:-6px}
.nav-mobile-menu{
  position:fixed;
  top:68px;left:0;right:0;
  z-index:99;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--g200);
  padding:14px 20px 18px;
  display:none;
}
.nav-mobile-menu ul{list-style:none;display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.nav-mobile-menu a{
  text-decoration:none;color:var(--black);font-size:16px;font-weight:600;
  padding:10px 4px;display:block;
}
.nav-mobile-menu .nav-cta{
  display:inline-flex;
  color:var(--white);
  background:var(--black);
  padding:10px 20px;
}
body.menu-open{overflow:hidden}
nav.menu-open .nav-mobile-toggle span{background:transparent}
nav.menu-open .nav-mobile-toggle span::before{top:0;transform:rotate(45deg)}
nav.menu-open .nav-mobile-toggle span::after{bottom:0;transform:rotate(-45deg)}

/* ── HERO ── */
#hero{
  width:100%;
  max-width:none;
  margin:0;
  min-height:82vh;
  display:flex;
  align-items:stretch;
  background:var(--g50);
}
.hero-left{
  flex:0 0 54%;
  padding:92px 6px 72px 220px;
  text-align:left;
  align-items:flex-start;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-right{
  flex:0 0 46%;
  position:relative;
  min-height:560px;
  background:linear-gradient(140deg,#4a67ee 0%,#3658e8 100%);
  clip-path:polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  overflow:hidden;
  padding:48px 24px 40px 24px;
  display:grid;
  justify-items:center;
  align-items:center;
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:max-content;
  background:var(--lime);
  border-radius:var(--r-pill);
  padding:5px 12px;
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}

h1{
  font-size:clamp(52px,5.1vw,74px);
  font-weight:900;line-height:1.04;letter-spacing:-2.5px;
  margin-bottom:18px;
}
h1 .accent{color:var(--blue)}

.hero-sub{
  font-size:17px;line-height:1.6;color:var(--g800);
  margin-bottom:28px;max-width:430px;
}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.btn-black{
  background:var(--black);color:var(--white);
  padding:14px 24px;border-radius:var(--r-pill);
  text-decoration:none;font-size:15px;font-weight:700;
  display:inline-flex;align-items:center;gap:9px;
  transition:opacity .2s,transform .2s;flex-shrink:0;
}
.btn-black:hover{opacity:.82;transform:translateY(-1px)}

.btn-ghost{
  background:transparent;color:var(--black);
  padding:14px 24px;border-radius:var(--r-pill);
  border:1.5px solid var(--g300);
  text-decoration:none;font-size:15px;font-weight:500;
  display:inline-flex;align-items:center;gap:8px;
  transition:border-color .2s,transform .2s;
}
.btn-ghost:hover{border-color:var(--black);transform:translateY(-1px)}

.hero-trust{
  display:flex;gap:20px;flex-wrap:wrap;
  margin-top:24px;
}
.trust-badge{
  display:flex;align-items:center;gap:7px;
  font-size:12px;font-weight:500;color:var(--g500);
}
.trust-badge svg{flex-shrink:0}

.hero-phone-single{
  position:relative;
  z-index:2;
  width:min(78%, 460px);
  background:transparent;
  border-radius:0;
  padding:0;
  box-shadow:none;
  margin-right:8px;
}
.hero-phone-single img{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
  filter:none;
}
.hero-float-card{display:none}
.hfc-label{font-size:11px;font-weight:800;margin-bottom:7px}
.hfc-row{font-size:11px;display:flex;align-items:center;gap:7px;color:#2f2f2f}
.hfc-row+.hfc-row{margin-top:6px}
.hfc-dot{width:6px;height:6px;border-radius:50%;background:#395CED}
.hero-float-lime{display:none}
.hr-c1,.hr-c2,.hr-c3{
  position:absolute;border-radius:50%;
  background:rgba(255,255,255,.12);pointer-events:none;
}
.hr-c1{width:300px;height:300px;top:-100px;right:-80px}
.hr-c2{width:190px;height:190px;bottom:40px;left:-70px}
.hr-c3{width:100px;height:100px;top:52%;right:20%}

.phone-wrap{position:relative}
.phone-wrap:first-child{
  transform:rotate(-5deg) translateX(24px) translateY(16px);
  z-index:1;
}
.phone-wrap:last-child{
  transform:rotate(5deg) translateX(-24px) translateY(16px);
  z-index:3;
}

.phone{
  width:210px;
  background:#1C1C1E;
  border-radius:46px;
  padding:10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 48px 96px rgba(0,0,0,0.28),
    0 20px 48px rgba(0,0,0,0.16);
}

.phone-screen{
  background:var(--white);
  border-radius:38px;
  overflow:hidden;
  height:420px;
  display:flex;flex-direction:column;
}

/* Dynamic island */
.phone-island{
  width:80px;height:26px;
  background:#1C1C1E;border-radius:20px;
  margin:10px auto 0;flex-shrink:0;
}

.app-bar{
  padding:8px 14px 4px;
  display:flex;justify-content:space-between;
  align-items:center;font-size:10px;font-weight:700;flex-shrink:0;
}
.app-bar-signal{display:flex;gap:2px;align-items:flex-end}
.bar{width:2px;background:var(--black);border-radius:1px}

.app-title{
  padding:10px 14px 4px;
  font-size:17px;font-weight:900;color:var(--black);letter-spacing:-.4px;flex-shrink:0;
}
.app-caption{
  padding:0 14px 10px;
  font-size:10px;color:var(--g500);font-weight:500;flex-shrink:0;
}

/* Loan screen */
.loan-card-ui{
  margin:0 10px;
  background:var(--blue);
  border-radius:18px;padding:13px;
  position:relative;overflow:hidden;flex-shrink:0;
}
.loan-card-tag{font-size:8px;color:rgba(255,255,255,.65);font-weight:500;margin-bottom:3px}
.loan-card-num{font-size:20px;font-weight:900;color:white;letter-spacing:-.5px;margin-bottom:7px}
.loan-card-badges{display:flex;gap:8px}
.loan-badge{font-size:7.5px;color:rgba(255,255,255,.75);display:flex;align-items:center;gap:3px}
.loan-bank-svg{position:absolute;right:8px;bottom:-2px;opacity:.55}

.range-row{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:5px;padding:10px 10px 0;flex-shrink:0;
}
.range-col{display:flex;flex-direction:column;align-items:center;gap:3px}
.range-icon{
  width:26px;height:26px;
  border-radius:8px;
  background:var(--g100);
  display:flex;align-items:center;justify-content:center;
}
.range-icon.selected{background:var(--blue)}
.range-text{font-size:7.5px;color:var(--g500);font-weight:600;text-align:center}
.range-text.selected{color:var(--blue);font-weight:700}

.loan-btn{
  margin:10px 10px 0;
  background:var(--black);color:white;
  border-radius:var(--r-pill);padding:11px;
  text-align:center;font-size:11px;font-weight:700;flex-shrink:0;
}

.loan-disclaimer{
  padding:8px 14px;
  font-size:7px;color:var(--g500);
  line-height:1.5;flex-shrink:0;
}

/* Challenge screen */
.tab-row{
  display:flex;gap:5px;padding:6px 10px 8px;flex-shrink:0;
}
.tab{
  background:var(--g100);
  border-radius:var(--r-pill);
  padding:4px 9px;font-size:8px;font-weight:600;color:var(--g500);
}
.tab.on{background:var(--blue);color:white}

.ch-card{
  margin:0 10px 7px;
  border:1px solid var(--g200);border-radius:14px;
  padding:9px;flex-shrink:0;
}
.ch-top{display:flex;gap:8px;margin-bottom:7px}
.ch-icon{
  width:26px;height:26px;flex-shrink:0;
  background:var(--blue-light);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
}
.ch-name{font-size:9.5px;font-weight:700;color:var(--black);margin-bottom:2px}
.ch-desc{font-size:7.5px;color:var(--g500);line-height:1.4}
.ch-footer{display:flex;justify-content:space-between;align-items:center}
.ch-meta{display:flex;gap:7px}
.ch-tag{display:flex;align-items:center;gap:3px;font-size:7.5px;color:var(--g500);font-weight:500}
.ch-link{font-size:7.5px;color:var(--blue);font-weight:600}

.app-nav{
  margin-top:auto;
  padding:7px 0 4px;
  display:flex;justify-content:space-around;
  border-top:1px solid var(--g200);flex-shrink:0;
}
.app-nav-item{
  display:flex;flex-direction:column;align-items:center;
  gap:2px;font-size:7px;color:var(--g500);font-weight:500;
}
.app-nav-item.on{color:var(--black)}

/* ── TERMS STRIP ── */
#terms{
  background:var(--black);
  color:white;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.terms-marquee{
  display:flex;
  width:max-content;
  animation:termsScroll 28s linear infinite;
}
.terms-track{
  display:flex;
  align-items:center;
  gap:26px;
  white-space:nowrap;
  padding:18px 13px;
}
.terms-track span{
  font-size:18px;
  font-weight:800;
  letter-spacing:-.3px;
  color:var(--lime);
}
.terms-track span::after{
  content:'·';
  display:inline-block;
  margin-left:26px;
  color:rgba(255,255,255,.45);
}
@keyframes termsScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ── SHARED SECTION ── */
.wrap{max-width:1200px;margin:0 auto;padding:0 48px}
.tag{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;letter-spacing:1.8px;
  text-transform:uppercase;color:var(--g500);margin-bottom:14px;
}
.tag.blue-tag{color:var(--blue)}
.tag.lime-tag{color:#6b8c00}

h2{
  font-size:clamp(34px,3.5vw,52px);
  font-weight:800;letter-spacing:-1.8px;line-height:1.08;
  margin-bottom:14px;
}
.sub{
  font-size:16px;color:var(--g800);
  line-height:1.65;max-width:540px;
}

/* ── HOW IT WORKS ── */
#how{padding:96px 0;background:var(--g50)}

.how-sticky-layout{
  display:grid;
  grid-template-columns:minmax(280px, 420px) 1fr;
  gap:28px;
  align-items:start;
  margin-top:52px;
}
.how-phone-sticky{
  position:sticky;
  top:100px;
}
.how-phone{
  width:min(360px, 100%);
  margin:0 auto;
  border-radius:40px;
  background:#1C1C1E;
  padding:10px;
  box-shadow:0 0 0 1px rgba(255,255,255,0.08),0 48px 96px rgba(0,0,0,0.28),0 20px 48px rgba(0,0,0,0.16);
}
.how-phone-screen{
  border-radius:32px;
  overflow:hidden;
  aspect-ratio:390/844;
  background:var(--white);
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s ease,transform .35s ease;
  position:absolute;
  inset:10px;
  pointer-events:none;
}
.how-phone{
  position:relative;
  aspect-ratio:390/844;
}
.how-phone-screen img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.how-phone-screen.is-active{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.how-steps{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.how-card{
  background:white;border-radius:var(--r-card);
  padding:22px 22px;
  box-shadow:var(--shadow-card);
  transition:transform .3s,box-shadow .3s;
}
.how-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.how-step{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  cursor:pointer;
}
.how-step.is-active{
  border:1px solid rgba(57,92,237,.35);
  box-shadow:0 8px 24px rgba(57,92,237,.14),var(--shadow-card);
}

.step-num{
  width:36px;height:36px;background:var(--blue);color:white;
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:800;margin-bottom:16px;
}
.how-illus{margin-bottom:20px}
.illus-bg{
  width:90px;height:54px;
  border-radius:0 0 90px 90px;
  display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:4px;
}
.illus-bg img{
  max-width:58px;
  max-height:50px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.how-card h3{font-size:19px;font-weight:700;letter-spacing:-.4px;margin-bottom:9px}
.how-card p{font-size:15px;color:var(--g800);line-height:1.62}

/* ── CHALLENGES ── */
#challenges{
  background:var(--lime);padding:96px 0;
  position:relative;overflow:hidden;
}
#challenges::before{
  content:'CHALLENGES';
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-size:180px;font-weight:900;letter-spacing:-8px;
  color:rgba(0,0,0,.06);white-space:nowrap;
  pointer-events:none;line-height:1;font-family:'Satoshi',sans-serif;
  user-select:none;
}

.ch-header{
  display:flex;justify-content:space-between;align-items:flex-end;
  margin-bottom:52px;flex-wrap:wrap;gap:24px;
}
.ch-header h2{margin-bottom:6px}

.ch-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:18px;position:relative;z-index:1;
}

.ch-landing-card{
  background:white;border-radius:var(--r-card);
  padding:28px;
  box-shadow:var(--shadow-card);
  transition:transform .3s,box-shadow .3s;
}
.ch-landing-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}

.ch-landing-icon{
  width:48px;height:48px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  background:transparent;
}
.ch-landing-icon img{
  width:30px;
  height:30px;
  object-fit:contain;
}
.ch-landing-card h3{font-size:18px;font-weight:700;letter-spacing:-.3px;margin-bottom:8px}
.ch-landing-card p{font-size:15px;color:var(--g800);line-height:1.58;margin-bottom:18px}
.ch-pills{display:flex;gap:8px}
.ch-pill{
  display:flex;align-items:center;gap:5px;
  background:#F7F7F7;padding:5px 10px;
  border-radius:var(--r-pill);
  font-size:11px;font-weight:600;color:var(--g800);
}
.ch-pill svg{
  width:14px;
  height:14px;
  flex-shrink:0;
}

/* ── PRODUCT ── */
#product{padding:96px 0;background:white}
.product-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:20px;margin-top:48px;
}
.product-card{
  border-radius:var(--r-card);padding:40px;
  position:relative;overflow:hidden;
}
.product-card.blue-card{background:var(--blue);color:white}
.product-card.black-card{background:var(--black);color:white}

.product-card-tag{
  font-size:10px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;opacity:.55;margin-bottom:10px;
}
.product-card h3{
  font-size:26px;font-weight:800;letter-spacing:-.7px;margin-bottom:10px;
}
.product-card p{
  font-size:15px;opacity:.7;line-height:1.65;margin-bottom:28px;
}
.feature-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.feature-item{
  display:flex;align-items:center;gap:10px;
  font-size:14px;font-weight:500;opacity:.88;
}
.fdot{
  width:6px;height:6px;border-radius:50%;
  background:var(--lime);flex-shrink:0;
}
.fdot.blue{background:var(--blue)}

.product-bg-num{
  position:absolute;right:-20px;bottom:-30px;
  font-size:160px;font-weight:900;
  color:rgba(255,255,255,.05);
  letter-spacing:-8px;line-height:1;
  pointer-events:none;user-select:none;
  font-family:'Satoshi',sans-serif;
}

/* ── SECURITY ── */
#security{padding:80px 0;background:var(--g50)}
#security{
  position:relative;
  overflow:hidden;
}
#security::before{
  content:'SECURITY';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:180px;
  font-weight:900;
  letter-spacing:-8px;
  color:rgba(0,0,0,.05);
  white-space:nowrap;
  pointer-events:none;
  line-height:1;
  font-family:'Satoshi',sans-serif;
  user-select:none;
}
.sec-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:16px;margin-top:44px;
}
.sec-card{
  background:white;border-radius:var(--r-card);
  padding:26px 22px;
  box-shadow:var(--shadow-card);
  transition:transform .3s;
}
.sec-card:hover{transform:translateY(-4px)}
.sec-icon{
  width:42px;height:42px;
  background:var(--blue-light);border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.sec-card h3{font-size:15px;font-weight:700;margin-bottom:7px}
.sec-card p{font-size:15px;color:var(--g500);line-height:1.58}
.sec-grid,.tag,#security h2{
  position:relative;
  z-index:1;
}

/* ── FAQ ── */
#faq{padding:96px 0;background:white}
.faq-list{
  margin:48px auto 0;
  max-width:780px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  border:1px solid var(--g200);
  border-radius:16px;
  background:linear-gradient(180deg,#fff 0%, #fcfcfc 100%);
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover{
  border-color:#cfd7ff;
  box-shadow:0 10px 22px rgba(57,92,237,.08);
  transform:translateY(-2px);
}
.faq-q{
  width:100%;background:none;border:none;
  padding:18px 18px;
  display:flex;align-items:center;justify-content:space-between;
  cursor:pointer;text-align:left;gap:18px;
}
.faq-q-text{font-size:17px;font-weight:600;color:var(--black);line-height:1.4}
.faq-icon{
  width:32px;height:32px;
  background:#f2f5ff;border-radius:10px;
  color:#395ced;
  border:1px solid #dbe4ff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:transform .3s,background .3s,color .3s,border-color .3s;
}
.faq-item.open{
  border-color:#b7c8ff;
  box-shadow:0 12px 26px rgba(57,92,237,.14);
}
.faq-item.open .faq-icon{
  transform:rotate(45deg);
  background:#395ced;
  color:white;
  border-color:#395ced;
}
.faq-a{
  display:none;
  padding:0 18px 18px;
  font-size:15px;color:var(--g800);line-height:1.72;max-width:680px;
}
.faq-item.open .faq-a{display:block}

/* ── CTA ── */
#cta{
  background:var(--black);
  padding:96px 48px;text-align:center;color:white;
  position:relative;overflow:hidden;
}
#cta::before{
  content:'';
  position:absolute;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(57,92,237,.2) 0%,transparent 70%);
  top:50%;left:50%;transform:translate(-50%,-50%);
  pointer-events:none;
}
#cta h2{color:white;margin-bottom:14px;position:relative}
#cta p{
  font-size:16px;color:rgba(255,255,255,.8);
  margin-bottom:36px;max-width:460px;
  margin-left:auto;margin-right:auto;line-height:1.65;position:relative;
}
.app-store-btn{
  display:inline-flex;align-items:center;gap:11px;
  background:white;color:var(--black);
  padding:15px 26px;border-radius:var(--r-pill);
  text-decoration:none;font-size:15px;font-weight:700;
  transition:opacity .2s,transform .2s;position:relative;
}
.app-store-btn:hover{opacity:.9;transform:translateY(-2px)}

/* ── FOOTER ── */
footer{
  background:#0d0f14;
  border-top:1px solid #222737;
  padding:64px 48px 32px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr;
  gap:36px;
  margin-bottom:36px;
  align-items:start;
}
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#ffffff;
  margin-bottom:14px;
}
.footer-logo-mark{
  width:56px;
  height:56px;
  background:transparent;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-logo-mark img{width:48px;height:48px;object-fit:contain;border-radius:7px}
.footer-logo-text{
  font-size:18px;
  font-weight:800;
  letter-spacing:-.2px;
}
.footer-desc{
  font-size:15px;
  color:#a8b0c3;
  line-height:1.65;
  margin-bottom:18px;
  max-width:560px;
}
.footer-contact{
  font-size:13px;
  color:#b2bbce;
  line-height:1.9;
}
.footer-contact a{
  color:#d7ee78;
  text-decoration:none;
  font-weight:600;
}
.footer-col h4{
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#7f8aa3;
  margin-bottom:14px;
}
.footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  font-size:14px;
  color:#e4e9f5;
  text-decoration:none;
  transition:color .2s;
}
.footer-links a:hover{color:#d7ee78}
.footer-hr{
  border:none;
  border-top:1px solid #222737;
  margin-bottom:20px;
}
.footer-disclaimer{
  font-size:13px;
  color:#8f99ad;
  line-height:1.8;
  margin-bottom:18px;
  max-width:none;
  width:100%;
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.footer-copy{
  font-size:12px;
  color:#8f99ad;
}
.footer-legal-links{display:flex;gap:18px}
.footer-legal-links a{
  font-size:12px;
  color:#aab4c8;
  text-decoration:none;
  transition:color .2s;
}
.footer-legal-links a:hover{color:#d7ee78}

/* ── REVEAL ANIMATIONS ── */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.reveal.in{opacity:1;transform:none}
.d1{transition-delay:.1s}
.d2{transition-delay:.18s}
.d3{transition-delay:.26s}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav{padding:0 20px}
  .nav-links{display:none}
  .nav-actions > .nav-cta{display:none}
  .nav-mobile-toggle{display:inline-flex}
  .nav-mobile-menu.open{display:block}
  #hero{flex-direction:column;min-height:auto}
  .hero-left{padding:96px 20px 44px;text-align:center;align-items:center}
  .hero-actions{
    justify-content:center;
    width:100%;
  }
  .hero-right{
    width:100%;
    min-height:420px;
    clip-path:polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
    justify-items:center;
    padding:42px 16px 24px;
  }
  .hero-phone-single{width:min(42%,220px);margin:56px 0 0}
  .wrap{padding:0 20px}
  .how-sticky-layout,.ch-grid,.product-grid{grid-template-columns:1fr}
  .how-phone-sticky{position:static;top:auto}
  .how-phone{width:min(280px,82vw)}
  .sec-grid{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr;gap:28px}
  #cta{padding:80px 20px}
  footer{padding:48px 20px 32px}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media(max-width:600px){
  h1{letter-spacing:-1.8px}
  .hero-pill{font-size:12px}
  .hero-sub{font-size:16px}
  .btn-black,.btn-ghost{font-size:15px}
  .hero-phone-single{width:min(55%,220px);margin-top:44px;margin-right:0}
  .how-phone{width:min(240px,74vw)}
  .sec-grid{grid-template-columns:1fr}
  .terms-track span{
    font-size:16px;
  }
}