@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --bg:#05070c;
  --ink:#eaf2ff;
  --muted:rgba(234,242,255,.72);


  --a:#2EC8D7;
  --b:#518FDD;

  --r:26px;
  --shadow: 0 22px 80px rgba(0,0,0,.62);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow:hidden;
}

a{ color:inherit; text-decoration:none; }
::selection{ background: rgba(46,200,215,.25); }


.loader{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background: radial-gradient(900px 520px at 30% 20%, rgba(46,200,215,.14), transparent 60%),
              radial-gradient(900px 520px at 80% 30%, rgba(81,143,221,.14), transparent 60%),
              #04060a;
  z-index: 999;
}
.loader__core{
  position:relative;
  width: 220px; height: 220px;
  display:grid; place-items:center;
}
.loader__ring{
  position:absolute; inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.12);
  border-top-color: rgba(46,200,215,.9);
  border-right-color: rgba(81,143,221,.85);
  animation: spin 650ms linear infinite;
  filter: drop-shadow(0 0 24px rgba(46,200,215,.18));
}
.loader__ring--b{
  inset: 18px;
  border-top-color: rgba(81,143,221,.95);
  border-right-color: rgba(46,200,215,.85);
  animation-duration: 520ms;
  opacity:.9;
}
.loader__spark{
  position:absolute; inset: 48px;
  border-radius: 20px;
  /* background: linear-gradient(135deg, rgba(46,200,215,.26), rgba(81,143,221,.16)); */
  /* border: 1px solid rgba(255,255,255,.10); */
  transform: rotate(1deg);
  /* animation: pop 650ms ease-in-out infinite alternate; */
}
.loader__text{
  letter-spacing: .22em;
  font-weight: 900;
  font-size: 14px;
  color: rgba(234,242,255,.92);
  text-shadow: 0 0 26px rgba(46,200,215,.18);
  animation: pop 650ms ease-in-out infinite alternate;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes pop{
  from{ transform: rotate(-6deg) scale(.98); opacity:.75; }
  to{ transform: rotate(6deg) scale(1.02); opacity:1; }
}


.stage{
  position:fixed; inset:0;
  z-index:-1;
}
#fx{
  position:absolute; inset:0;
  width:100%; height:100%;
}
.vignette{
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 35%, transparent 0 55%, rgba(0,0,0,.55) 78%, rgba(0,0,0,.78) 100%);
  pointer-events:none;
}
.grain{
  position:absolute; inset:0;
  opacity:.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* content */
.shell{
  height:100vh;
  display:grid;
  place-items:center;
  padding: clamp(18px, 4vw, 44px);
  position:relative;
}
.glass{
  width: min(980px, 100%);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow:hidden;
  transform: translateY(8px);
  animation: enter 620ms cubic-bezier(.2,.9,.2,1) both;
}
@keyframes enter{
  from{ opacity:0; transform: translateY(18px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}
.glass:before{
  content:"";
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(46,200,215,.18), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(81,143,221,.16), transparent 55%);
  transform: rotate(14deg);
  opacity:.55;
}
.glass > *{ position:relative; }

.top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.brand{ display:flex; align-items:center; gap: 14px; }
.brand__logo{
  width: 90px; height: auto; object-fit:contain;
  filter: drop-shadow(0 12px 32px rgba(46,200,215,.22));
  animation: hover 3.2s ease-in-out infinite;
}
@keyframes hover{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.brand__name{
  font-weight: 650;
  letter-spacing: .22em;
  font-size: 14px;

}
.brand__sub{
  margin-top: 3px;
  color: rgba(234,242,255,.66);
  font-size: 12px;
}

.badge{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  color: rgba(234,242,255,.78);
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
}
.badge__pulse{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(180deg, var(--a), var(--b));
  box-shadow: 0 0 0 4px rgba(46,200,215,.12), 0 0 24px rgba(81,143,221,.32);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:.85; }
  50%{ transform: scale(1.28); opacity:1; }
}

.title{
  margin: 22px 0 10px;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
.grad{
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(46,200,215,.12);
}

.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

.actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.cta{
  display:inline-flex; align-items:center; gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(90deg, rgba(46,200,215,.95), rgba(81,143,221,.95));
  color: #fff;
  font-weight: 650;
  letter-spacing:.02em;
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta:hover{ transform: translateY(-1px); box-shadow: 0 22px 66px rgba(0,0,0,.45); }
.cta__arrow{
  display:inline-block;
  transform: translateX(0);
  transition: transform .18s ease;
}
.cta:hover .cta__arrow{ transform: translateX(3px); }

.ghost{
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--ink);
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.ghost:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.07); }

.mini{
  margin-top: 18px;
  display:flex; align-items:center; gap: 10px;
  color: rgba(234,242,255,.70);
  font-size: 13px;
}
.mini__dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--a);
  box-shadow: 0 0 0 4px rgba(46,200,215,.12), 0 0 22px rgba(46,200,215,.30);
}

.foot{
  position:absolute;
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  bottom: 16px;
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
  color: rgba(234,242,255,.58);
  font-size: 12px;
}
.foot a{ color: rgba(234,242,255,.78); }
.foot a:hover{ color: rgba(234,242,255,.95); text-decoration: underline; text-underline-offset: 4px; }
.sep{ opacity:.55; }

@media (max-width: 560px){
  .brand__logo{ width: 56px; height:56px; }
  .badge{ width: 100%; justify-content:center; }
}
