:root{
  --navy-900:#0B1B33;
  --navy-800:#122A4C;
  --navy-700:#1B3763;
  --blue-600:#2F5EFF;
  --blue-500:#4C7DFF;
  --blue-100:#EAF0FF;
  --blue-50:#F4F7FF;
  --orange-500:#FF7A45;
  --gray-900:#0B1B33;
  --gray-600:#5B6472;
  --gray-400:#8A93A3;
  --gray-200:#E7E9EE;
  --gray-100:#F5F6F8;
  --white:#FFFFFF;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:10px;
  --radius-pill:999px;
  --shadow-soft:0 20px 50px -20px rgba(11,27,51,0.25);
  --shadow-card:0 1px 0 rgba(11,27,51,0.04),0 12px 24px -16px rgba(11,27,51,0.18);
  --maxw:1160px;
}
*{
  box-sizing:border-box;
}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--gray-900);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img,
svg{
  display:block;
  max-width:100%;
}
a{
  color:inherit;
  text-decoration:none;
}
button{
  font-family:inherit;
  cursor:pointer;
}
input,
select,
button{
  font-family:inherit;
}
.mono{
  font-family:'JetBrains Mono',monospace;
}
.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  font-size:15px;
  letter-spacing:-0.01em;
  padding:15px 22px;
  border-radius:var(--radius-pill);
  border:none;
  white-space:nowrap;
  transition:transform .15s ease,box-shadow .15s ease;
}
.btn:active{
  transform:scale(.98);
}
.btn-primary{
  color:var(--white);
  background:linear-gradient(
    180deg,
    var(--blue-500) 0%,
    var(--blue-600) 100%
  );
  box-shadow:0 10px 24px -8px rgba(47,94,255,.55);
}
.btn-primary:hover{
  box-shadow:0 14px 30px -8px rgba(47,94,255,.65);
}
.btn-primary .icon-circle{
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.btn-block{
  width:100%;
}
header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--gray-200);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
}
.logo-lockup{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.logo-word{
  display:flex;
  align-items:flex-start;
  gap:2px;
  font-size:24px;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--navy-900);
}
.logo-word img{
  max-height:48px;
  width:auto;
}
.header-badge{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gray-600);
  background:var(--gray-100);
  border:1px solid var(--gray-200);
  padding:7px 14px;
  border-radius:var(--radius-pill);
  display:none;
}
@media(min-width:640px){
  .header-badge{
    display:inline-block;
  }
}
.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--blue-600);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:26px;
  height:2px;
  background:var(--orange-500);
  border-radius:2px;
}
.hero{
  padding:64px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
}
@media(min-width:960px){
  .hero-grid{
    grid-template-columns:.95fr 1.15fr;
    gap:40px;
  }
}
.hero-copy h1{
  font-size:40px;
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:800;
  margin:18px 0 20px;
  color:var(--navy-900);
}
.hero-copy h1 .accent{
  color:var(--blue-600);
  display:block;
}
@media(min-width:640px){
  .hero-copy h1{
    font-size:52px;
  }
}
.hero-sub{
  font-size:17px;
  color:var(--gray-600);
  max-width:520px;
  margin:0 0 30px;
}
.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
}
.hero-microtrust{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--gray-600);
}
.avatars{
  display:flex;
}
.avatars span{
  width:26px;
  height:26px;
  border-radius:50%;
  border:2px solid var(--white);
  margin-left:-8px;
  background:linear-gradient(
    135deg,
    var(--blue-500),
    var(--navy-700)
  );
}
.avatars span:first-child{
  margin-left:0;
}
.hero-availability{
  margin-top:26px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--gray-600);
  padding-top:20px;
  border-top:1px solid var(--gray-200);
}
.pulse-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#20C997;
  position:relative;
  flex-shrink:0;
}
.pulse-dot::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#20C997;
  opacity:.5;
  animation:pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:.5;
  }
  100%{
    transform:scale(2.6);
    opacity:0;
  }
}
.hero-visual{
  display:flex;
  justify-content:center;
  position:relative;
}
.hero-form-card{
  width:100%;
  max-width:520px;
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius-lg);
  padding:28px 30px;
  box-shadow:var(--shadow-soft);
}
.hero-form-head{
  margin-bottom:16px;
}
.live-chip{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:700;
  color:#20C997;
  background:#E9FBF3;
  padding:4px 9px;
  border-radius:var(--radius-pill);
  width:fit-content;
  margin-bottom:14px;
}
.live-chip .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#20C997;
}
.hero-form-head h3{
  font-size:21px;
  font-weight:800;
  letter-spacing:-.01em;
  color:var(--navy-900);
  margin:0 0 8px;
}
.hero-form-head p{
  font-size:13.5px;
  color:var(--gray-600);
  margin:0;
}
.field select{
  width:100%;
  border:1.5px solid var(--gray-200);
  border-radius:var(--radius-sm);
  padding:13px 15px;
  font-size:14.5px;
  font-family:inherit;
  color:var(--navy-900);
  outline:none;
  transition:border-color .15s ease;
  appearance:none;
  -webkit-appearance:none;
  background:
    var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235B6472' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 15px center;
}
.field select:invalid{
  color:var(--gray-400);
}
.field select:focus{
  border-color:var(--blue-600);
}
.hero-form-note{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--gray-200);
  font-size:12.5px;
  font-weight:600;
  color:var(--gray-600);
}
.hero-form-note svg:last-child{
  margin-left:auto;
}
section{
  padding:64px 0;
}
.section-head{
  max-width:640px;
  margin:0 auto 40px;
  text-align:center;
}
.section-head.left{
  margin:0 0 40px;
  text-align:left;
}
.section-head h2{
  font-size:30px;
  letter-spacing:-.02em;
  font-weight:800;
  color:var(--navy-900);
  margin:14px 0 12px;
}
@media(min-width:640px){
  .section-head h2{
    font-size:36px;
  }
}
.section-head p{
  color:var(--gray-600);
  font-size:16px;
  margin:0;
}
.proof{
  padding:0 0 56px;
}
.proof-card{
  background:var(--navy-900);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:28px;
  color:var(--white);
}
@media(min-width:760px){
  .proof-card{
    grid-template-columns:repeat(3,1fr);
  }
}
.stat{
  text-align:center;
}
.stat .num{
  font-size:30px;
  font-weight:800;
  letter-spacing:-.02em;
  background:linear-gradient(90deg,#fff,#C9D8FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat .label{
  font-size:13px;
  color:#B7C3DC;
  margin-top:6px;
}
.proof-disclaimer{
  text-align:center;
  font-size:12px;
  color:var(--gray-400);
  margin-top:18px;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}
#video{
  padding:64px 0;
}
.video-shell{
  position:relative;
  width:100%;
  max-width:900px;
  margin:0 auto 34px;
  border-radius:20px;
  overflow:hidden;
  background:#0B1B33;
  box-shadow:0 20px 50px -20px rgba(11,27,51,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
}
.video-shell .background-video{
  position:relative;
  width:100%;
  height:auto;
  max-width:100%;
  max-height:70vh;
  display:block;
  object-fit:contain;
  background:#0B1B33;
  z-index:1;
  cursor:pointer;
}
.video-shell::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(11,27,51,0.02) 0%,
    rgba(11,27,51,0.16) 100%
  );
  z-index:2;
  pointer-events:none;
}
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:76px;
  height:76px;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.45);
  background:rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  z-index:5;
  cursor:pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    opacity .25s ease;
}
.play-btn:hover{
  transform:translate(-50%,-50%) scale(1.08);
  background:rgba(255,255,255,0.25);
}
