/* assets/css/app.css */
:root{
  --bg:#0b1020;
  --bg2:#0e1630;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.58);
  --brand:#7aa7ff;
  --brand2:#62f0d0;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:16px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 18% 18%, rgba(122,167,255,.25), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(98,240,208,.18), transparent 60%),
    radial-gradient(900px 700px at 70% 90%, rgba(122,167,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background:rgba(8,12,24,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header[data-elevate="true"]{
  background:rgba(8,12,24,.78);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header__inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  min-width:220px;
}
.brand__mark{
  width:36px;height:36px;border-radius:12px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.9), transparent 55%),
    linear-gradient(135deg, rgba(122,167,255,.9), rgba(98,240,208,.75));
  box-shadow:0 10px 30px rgba(122,167,255,.20);
}
.brand__text{display:flex;flex-direction:column;line-height:1.05}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__tag{font-size:12px;color:var(--muted);margin-top:4px}

.nav{display:flex;align-items:center;gap:10px}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:all .18s ease;
  white-space:nowrap;
}
.nav__link:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.nav__cta{
  color:#081020;
  background:linear-gradient(135deg, rgba(122,167,255,1), rgba(98,240,208,1));
  border-color:transparent;
  font-weight:800;
}
.nav__cta:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(98,240,208,.18);
}
.nav__alt{opacity:.9}

.menu-btn{
  display:none;
  width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  cursor:pointer;
}
.menu-btn span{
  display:block;
  width:18px;height:2px;margin:4px auto;
  background:rgba(234,240,255,.85);
  border-radius:2px;
}

.nav-mobile{
  display:none;
  padding:10px 0 14px 0;
}
.nav-mobile__link{
  display:block;
  text-decoration:none;
  color:var(--muted);
  padding:12px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav-mobile__link:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.nav-mobile__cta{
  color:#081020;
  background:linear-gradient(135deg, rgba(122,167,255,1), rgba(98,240,208,1));
  font-weight:900;
}

.hero{
  padding:64px 0 26px 0;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:stretch;
}
.hero__left{padding-top:4px}
.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:13px;
}
.hero__h1{
  margin:14px 0 0 0;
  font-size:40px;
  line-height:1.06;
  letter-spacing:-.6px;
}
.hero__p{
  margin:14px 0 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width:62ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:14px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:all .18s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.07)}
.btn--primary{
  color:#081020;
  border-color:transparent;
  background:linear-gradient(135deg, rgba(122,167,255,1), rgba(98,240,208,1));
}
.btn--primary:hover{box-shadow:0 18px 40px rgba(122,167,255,.16)}
.btn--ghost{background:rgba(255,255,255,.04)}
.btn--full{width:100%}

.hero__trust{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.trust__item{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.trust__k{font-size:12px;color:var(--muted2);font-weight:800}
.trust__v{margin-top:6px;font-size:13px;color:var(--text);font-weight:700}

.card{
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  padding:18px;
}
.card--glass{
  background:
    radial-gradient(900px 450px at 10% 20%, rgba(122,167,255,.12), transparent 60%),
    radial-gradient(900px 450px at 95% 10%, rgba(98,240,208,.09), transparent 55%),
    rgba(255,255,255,.05);
}
.card__title{font-weight:900;margin-bottom:12px}
.kpi-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.kpi{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.10);
}
.kpi__n{font-weight:900}
.kpi__d{margin-top:6px;color:var(--muted);font-size:13px}

.divider{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:14px 0;
}

.status-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.status-dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(98,240,208,1);
  box-shadow:0 0 0 6px rgba(98,240,208,.10);
  margin-top:6px;
}
.status-text{font-size:14px}
.status-text .muted{display:block;color:var(--muted);margin-top:4px;font-size:12px}

.mini-actions{display:flex;gap:10px;align-items:center;margin-top:12px;flex-wrap:wrap}
.mini-btn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  transition:all .18s ease;
}
.mini-btn:hover{background:rgba(255,255,255,.06);transform:translateY(-1px)}
.mini-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:13px;
  color:var(--muted);
}

.section{padding:48px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{max-width:78ch}
.section__h2{margin:0;font-size:26px;letter-spacing:-.2px}
.section__p{margin:10px 0 0 0;color:var(--muted);line-height:1.6}

.grid-3{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.grid-2{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.feature,.benefit,.module,.about__card{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.feature__icon{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(122,167,255,.14);
  border:1px solid rgba(122,167,255,.22);
  font-weight:900;
  margin-bottom:10px;
}
.feature__title{font-weight:900}
.feature__text{margin-top:8px;color:var(--muted);line-height:1.55}

.steps{margin-top:18px;display:grid;gap:12px}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.step__n{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(98,240,208,.14);
  border:1px solid rgba(98,240,208,.22);
  font-weight:1000;
  color:var(--text);
}
.step__t{font-weight:900}
.step__d{margin-top:6px;color:var(--muted);line-height:1.55}

.module__title{font-weight:900}
.module__text{margin-top:8px;color:var(--muted);line-height:1.55}
.chips{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}
.chip{
  font-size:12px;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.10);
  color:var(--muted);
  font-weight:800;
}

.benefit__t{font-weight:900}
.benefit__d{margin-top:8px;color:var(--muted);line-height:1.55}

.about{margin-top:18px;display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:14px}
.about__t{font-weight:900}
.about__d{margin-top:8px;color:var(--muted);line-height:1.55}

.section--cta{
  padding:56px 0;
  background:
    radial-gradient(1000px 500px at 15% 30%, rgba(122,167,255,.18), transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, rgba(98,240,208,.14), transparent 55%),
    rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
}
.cta{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.cta__h2{margin:0;font-size:28px;letter-spacing:-.2px}
.cta__p{margin-top:10px;color:var(--muted);line-height:1.6}
.cta__meta{margin-top:14px;display:grid;gap:8px}
.cta__metaitem{
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.form{
  padding:16px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.12);
}
.form__row{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.form__label{font-size:12px;color:var(--muted2);font-weight:900}
.form__input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
.form__input:focus{border-color:rgba(98,240,208,.45);box-shadow:0 0 0 6px rgba(98,240,208,.08)}
.form__textarea{min-height:92px;resize:vertical}
.form__hint{margin-top:10px;color:var(--muted);font-size:12px;line-height:1.5}

.footer{
  margin-top:10px;
  padding:34px 0 18px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.12);
}
.footer__inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.footer__logo{display:flex;gap:12px;align-items:center}
.footer__brandname{font-weight:1000}
.footer__brandtag{font-size:12px;color:var(--muted);margin-top:3px}
.footer__p{margin:10px 0 0 0;color:var(--muted);line-height:1.6;max-width:66ch}

.footer__cols{display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:14px}
.footer__title{font-weight:1000;margin-bottom:8px}
.footer__link{
  display:block;
  text-decoration:none;
  color:var(--muted);
  padding:8px 0;
}
.footer__link:hover{color:var(--text)}
.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer__copy{color:var(--muted);font-size:12px}
.footer__top{
  color:var(--muted);
  text-decoration:none;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.footer__top:hover{color:var(--text)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .cta{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .nav{display:none}
  .menu-btn{display:inline-flex;flex-direction:column;justify-content:center}
  .nav-mobile{display:none}
  .nav-mobile.is-open{display:block}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .hero__trust{grid-template-columns:1fr}
  .hero__h1{font-size:34px}
}