/* Modern landing - multi-step */
/* Fonts */
:root{
  --bg: #060814;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.64);
  --muted2: rgba(255,255,255,.52);
  --danger: #ff5c7a;
  --ok: #22c55e;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --radius: 22px;

  --a: #67e8f9;
  --b: #a78bfa;
  --c: #34d399;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

/* Background */
.bg{ position:fixed; inset:0; pointer-events:none; }
.grain{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  opacity:.28;
  mix-blend-mode: overlay;
}
.orb{
  position:absolute;
  width: 560px; height: 560px;
  border-radius: 999px;
  filter: blur(55px);
  opacity:.22;
  transform: translate3d(0,0,0);
}
.orb-1{ left:-180px; top:-180px; background: radial-gradient(circle at 30% 30%, var(--a), transparent 60%); }
.orb-2{ right:-220px; top:40px; background: radial-gradient(circle at 40% 40%, var(--b), transparent 60%); }
.orb-3{ left:18%; bottom:-260px; background: radial-gradient(circle at 45% 45%, var(--c), transparent 62%); }

/* Layout */
.container{
  width:min(1120px, 100%);
  margin:0 auto;
  padding: 0 18px;
}

.top{ padding: 18px 0; position:relative; z-index:2; }
.top__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:44px; height:44px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(103,232,249,.95), rgba(167,139,250,.9));
  box-shadow: 0 14px 40px rgba(103,232,249,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.brand__name{ font-weight:700; letter-spacing:.01em; }
.brand__tag{ font-size:12px; color: var(--muted); margin-top:1px; }

.trust{
  display:flex; gap:14px; flex-wrap:wrap;
  color: var(--muted);
  font-size:13px;
}
.trust__item{ display:flex; align-items:center; gap:8px; }
.trust__dot{
  width:8px; height:8px; border-radius:99px;
  background: linear-gradient(90deg, var(--a), var(--b));
  box-shadow: 0 0 0 4px rgba(103,232,249,.10);
}

.layout{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  padding: 14px 0 22px;
  position:relative;
  z-index:2;
}
@media (max-width: 980px){
  .layout{ grid-template-columns: 1fr; }
}

.panel{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* Hero */
.hero{ padding: 26px; position:relative; }
.hero:before{
  content:"";
  position:absolute; inset:-1px;
  background: linear-gradient(135deg, rgba(103,232,249,.14), rgba(167,139,250,.10), rgba(52,211,153,.10));
  opacity:.85;
  filter: blur(32px);
}
.hero > *{ position:relative; z-index:1; }

.hero__badge{
  display:inline-flex;
  align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,.88);
  font-size:13px;
}
.badge__icon{
  width:22px; height:22px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(103,232,249,.10);
  border: 1px solid rgba(103,232,249,.20);
}

.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.gradient{
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero__subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  max-width: 52ch;
}

.hero__cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 560px){
  .hero__cards{ grid-template-columns: 1fr 1fr; }
  .hero__cards .miniCard:last-child{ grid-column: 1 / -1; }
}
.miniCard{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.miniCard__icon{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.miniCard__title{ font-weight: 650; }
.miniCard__text{ color: var(--muted); font-size: 13px; margin-top:2px; }

.hero__footer{
  display:flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap:wrap;
}
.kpi{
  flex: 1 1 120px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.kpi__num{ font-weight: 750; font-size: 18px; letter-spacing:-.01em; }
.kpi__label{ color: var(--muted); font-size: 12px; margin-top: 2px; }

/* Form */
.form{ padding: 18px; display:flex; flex-direction:column; }
.form__top{ display:flex; flex-direction:column; gap:12px; }
.form__meta{ display:flex; align-items:flex-end; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.stepLabel{ font-weight: 650; }
.stepHelp{ color: var(--muted); font-size: 13px; }

.progress{
  width:100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.progress__bar{
  display:block;
  height: 100%;
  width: 33.3333%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--a), var(--b));
  box-shadow: 0 10px 40px rgba(103,232,249,.10);
  transition: width .25s ease;
}

.step{ display:none; padding-top: 14px; }
.step.active{ display:block; animation: in .18s ease; }
@keyframes in{
  from{ opacity:.6; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}

.q{ margin: 0; font-size: 18px; letter-spacing:-.01em; }
.q__sub{ margin: 6px 0 14px; color: var(--muted); font-size: 13px; line-height:1.5; }

/* Chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.chip{
  appearance:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-size: 13px;
  line-height: 1;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.chip[aria-checked="true"]{
  border-color: rgba(103,232,249,.45);
  background: rgba(103,232,249,.10);
  box-shadow: 0 10px 30px rgba(103,232,249,.08);
}

/* Fields */
.fields{ margin-top: 8px; display:flex; flex-direction:column; gap:12px; }
.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px){
  .grid2{ grid-template-columns: 1fr; }
}
.field{ display:flex; flex-direction:column; gap:7px; }
label{ font-size:12px; color: rgba(255,255,255,.80); }
input{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  padding: 12px 12px;
  color: rgba(255,255,255,.92);
  outline:none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
input::placeholder{ color: rgba(255,255,255,.42); }
input:focus{
  border-color: rgba(103,232,249,.55);
  box-shadow: 0 0 0 4px rgba(103,232,249,.10);
  background: rgba(0,0,0,.26);
}

/* Consent */
.consent{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 12px 12px;
}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
  user-select:none;
}
.check input{ display:none; }
.check__box{
  width: 20px; height: 20px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  position:relative;
  flex: 0 0 auto;
  margin-top:2px;
}
.check input:checked + .check__box{
  border-color: rgba(52,211,153,.55);
  box-shadow: 0 0 0 4px rgba(52,211,153,.10);
  background: rgba(52,211,153,.12);
}
.check input:checked + .check__box:after{
  content:"";
  position:absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border: solid rgba(255,255,255,.92);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check__text{
  color: rgba(255,255,255,.80);
  font-size: 12.5px;
  line-height: 1.45;
}
.check__text a{
  color: rgba(103,232,249,.92);
  text-decoration:none;
}
.check__text a:hover{ text-decoration:underline; }

/* Actions */
.actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.actions__right{ display:flex; gap:10px; align-items:center; }

.btn{
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 650;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .08s ease, opacity .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  line-height:1;
}
.btn:active{ transform: translateY(1px); }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.12);
}
.btn--primary{
  background: linear-gradient(90deg, var(--a), var(--b));
  color: rgba(5,8,20,.95);
  box-shadow: 0 16px 50px rgba(103,232,249,.12);
}
.btn--primary:hover{ filter: brightness(1.02); }

/* Messages */
.error{
  display:none;
  margin-top: 12px;
  color: var(--danger);
  font-size: 12.5px;
}
.success{
  display:none;
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.30);
  background: rgba(34,197,94,.10);
  padding: 12px 12px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  line-height: 1.45;
}

.microcopy{
  margin: 12px 0 0;
  color: var(--muted2);
  font-size: 12px;
}

/* Footer */
.footer{ padding: 18px 0 26px; color: rgba(255,255,255,.55); position:relative; z-index:2; }
.footer__inner{ display:flex; gap:12px; align-items:center; justify-content:center; flex-wrap:wrap; }
.footer__sep{ opacity:.55; }
