:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.52);

  --accent1:#7C3AED;
  --accent2:#22D3EE;
  --accent3:#A3FFCE;
  --warn:#FBBF24;

  --r12: 12px;
  --r16: 16px;
  --r20: 20px;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow2: 0 12px 36px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 10% 10%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(34,211,238,.25), transparent 58%),
    radial-gradient(900px 700px at 70% 90%, rgba(163,255,206,.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 4px; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:12px;
  background: #fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
}
.skip:focus{ left:12px; z-index:999; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand__mark{
  width: 40px; height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(124,58,237,.85), rgba(34,211,238,.55));
  box-shadow: 0 14px 40px rgba(124,58,237,.25);
  position: relative;
  overflow: hidden;
}
.brand__mark span{
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.35), transparent 55%);
  transform: rotate(18deg);
  mix-blend-mode: overlay;
}
.brand__mark span:nth-child(2){ transform: rotate(-22deg); opacity:.65; }
.brand__mark span:nth-child(3){ transform: rotate(44deg); opacity:.45; }

.brand__text strong{
  display:block;
  letter-spacing: .2px;
  font-weight: 800;
}
.brand__text span{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.brand--small .brand__mark{ width:34px; height:34px; border-radius: 12px; }
.brand--small .brand__text strong{ font-size: 14px; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a{ opacity:.9; }
.nav a:hover{ opacity:1; text-decoration:none; }
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.hero{
  padding: 54px 0 26px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.badge .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 6px rgba(251,191,36,.18);
}
.sep{ opacity:.55; }

h1{
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.1px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 58ch;
}

.glow{
  background: linear-gradient(90deg, rgba(124,58,237,1), rgba(34,211,238,1), rgba(163,255,206,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 32px rgba(34,211,238,.18));
}
.underline{
  position: relative;
  display:inline-block;
}
.underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.20), rgba(34,211,238,.18));
  filter: blur(1px);
  z-index:-1;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
}

.btn{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 12px 34px rgba(0,0,0,.30);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}
.btn:active{ transform: translateY(0px); }

.btn--primary{
  border-color: rgba(124,58,237,.55);
  background:
    radial-gradient(120px 80px at 20% 20%, rgba(255,255,255,.30), transparent 55%),
    linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.55));
  box-shadow:
    0 18px 70px rgba(124,58,237,.25),
    0 12px 34px rgba(0,0,0,.32);
}
.btn--primary:hover{
  border-color: rgba(34,211,238,.65);
  background:
    radial-gradient(120px 80px at 20% 20%, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(135deg, rgba(124,58,237,1), rgba(34,211,238,.62));
}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.btn__arrow{
  margin-left: 8px;
  opacity: .9;
}

.tiny{ font-size: 12px; }

.hero__metrics{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric{
  padding: 14px 14px;
  border-radius: var(--r16);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.metric__label{ color: var(--muted2); font-size: 12px; font-weight: 700; }
.metric__value{ margin-top: 6px; font-weight: 800; letter-spacing: .2px; }

.panel{
  border-radius: 22px;
  background:
    radial-gradient(600px 260px at 30% 0%, rgba(124,58,237,.22), transparent 60%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.panel__title{
  display:flex;
  align-items:center;
  gap: 12px;
}
.panel__icon{
  width: 42px; height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(10px 10px at 35% 28%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(34,211,238,.65), rgba(124,58,237,.85));
  box-shadow: 0 14px 44px rgba(34,211,238,.18);
}
.panel__heading{ font-weight: 900; letter-spacing: .2px; }
.panel__sub{ font-size: 12px; color: var(--muted2); margin-top: 2px; }

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.chip__pulse{
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--accent3);
  box-shadow: 0 0 0 6px rgba(163,255,206,.16);
}

.panel__grid{
  padding: 14px 14px 6px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.card{
  border-radius: var(--r16);
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.card--soft{
  background: rgba(255,255,255,.04);
}
.card__kicker{
  font-size: 12px;
  color: var(--muted2);
  font-weight: 800;
}
.card__big{
  margin-top: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.2px;
}
.card__small{
  margin-top: 6px;
  font-size: 12px;
}

.panel__list{
  padding: 10px 14px 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.row__left{
  display:flex;
  align-items:center;
  gap: 10px;
}
.row__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.row__dot--warn{ background: var(--warn); box-shadow: 0 0 0 6px rgba(251,191,36,.12); }
.row__dot--ok{ background: var(--accent3); box-shadow: 0 0 0 6px rgba(163,255,206,.10); }
.row__title{ font-weight: 800; font-size: 13px; }
.row__sub{ font-size: 12px; margin-top: 2px; }
.row__right{
  font-weight: 900;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.panel__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.mini{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 9px 10px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
}

.section{
  padding: 28px 0 10px;
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.section__head h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -.4px;
}
.section__head p{
  margin:0;
  max-width: 56ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.info{
  padding: 16px 16px;
  border-radius: var(--r20);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.info__icon{ font-size: 22px; }
.info h3{ margin: 10px 0 6px; font-size: 16px; letter-spacing: -.2px; }
.info p{ margin:0; line-height: 1.6; }

.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.step{
  display:flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--r20);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.step__num{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(124,58,237,.85), rgba(34,211,238,.45));
  box-shadow: 0 14px 44px rgba(124,58,237,.18);
}
.step__body h3{ margin: 0 0 6px; }
.step__body p{ margin: 0; line-height: 1.6; }

.cta{
  margin-top: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  background:
    radial-gradient(500px 220px at 10% 10%, rgba(34,211,238,.18), transparent 60%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}
.cta h3{ margin:0 0 6px; }
.cta p{ margin:0; line-height: 1.6; max-width: 62ch; }

.faq{
  display:grid;
  gap: 10px;
}
details{
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight: 800;
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
details p{ margin: 10px 0 2px; line-height: 1.6; }

.footer{
  margin-top: 18px;
  padding: 18px 0 54px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 960px){
  .hero{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .section__head{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .hero__metrics{ grid-template-columns: 1fr; }
  .panel__grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .cta{ flex-direction:column; align-items:flex-start; }
  .footer{ flex-direction:column; align-items:flex-start; }
}
