/* MINUSPHERE_PUBLIC_FULL_AUTH_TEMPLATE_START */

*{box-sizing:border-box}

html,
body{
  margin:0;
  min-height:100%;
  background:#050B14;
  color:#F8FBFF;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body{
  min-height:100vh;
  overflow-x:hidden;
}

.bg-video{
  position:fixed;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
  background:#050B14;
}

.bg-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:left center;
  opacity:.68;
  filter:saturate(1.12) contrast(1.10) brightness(1.10) blur(0px);
  transform:scale(1.10);
}

.bg-video::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 58% 48%, rgba(5,11,20,.38), rgba(5,11,20,.10) 34%, rgba(5,11,20,.48) 78%),
    linear-gradient(90deg, rgba(5,11,20,.58), rgba(5,11,20,.24), rgba(5,11,20,.52)),
    linear-gradient(180deg, rgba(5,11,20,.34), rgba(5,11,20,.06), rgba(5,11,20,.72));
}

.glow{
  position:fixed;
  inset:0;
  z-index:1;
  pointer-events:none;
}

.glow::before{
  content:"";
  position:absolute;
  left:-10%;
  top:-20%;
  width:520px;
  height:520px;
  border-radius:999px;
  background:rgba(117,230,230,.10);
  filter:blur(120px);
}

.glow::after{
  content:"";
  position:absolute;
  right:-8%;
  top:10%;
  width:520px;
  height:520px;
  border-radius:999px;
  background:rgba(47,143,211,.10);
  filter:blur(130px);
}

.page{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.container{
  width:min(100% - 48px, 1152px);
  margin:0 auto;
}

.header{
  position:relative;
  z-index:3;
  padding:20px 0 8px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  color:#F8FBFF;
  text-decoration:none;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  background:#fff;
  padding:4px;
  border-radius:4px;
}

.brand span{
  font-size:18px;
  font-weight:700;
  letter-spacing:.34em;
  text-transform:uppercase;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  color:#DDE7F5;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
}

.nav a:hover{
  color:#75E6E6;
}

.actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:14px 24px;
  font-size:16px;
  font-weight:750;
  text-decoration:none;
  white-space:nowrap;
}

.btn-secondary{
  color:#CFFBFF;
  border:1px solid rgba(117,230,230,.20);
  background:rgba(117,230,230,.10);
}

.btn-primary{
  color:#050B14;
  background:linear-gradient(90deg,#75E6E6,#2F8FD3);
}

.main{
  flex:1;
  padding:72px 0 74px;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:56px;
  align-items:center;
}

.copy{
  max-width:780px;
}

.kicker{
  display:inline-flex;
  width:max-content;
  border:1px solid rgba(117,230,230,.30);
  background:rgba(117,230,230,.10);
  color:#BFFBFF;
  border-radius:999px;
  padding:10px 18px;
  font-size:13px;
  font-weight:750;
  letter-spacing:.20em;
  text-transform:uppercase;
}

h1{
  margin:28px 0 0;
  max-width:820px;
  color:#F8FBFF;
  font-size:clamp(40px,4vw,58px);
  line-height:1.08;
  letter-spacing:-.02em;
  font-weight:650;
}

.lead{
  margin:24px 0 0;
  max-width:720px;
  color:#D3DEEC;
  font-size:18px;
  line-height:1.58;
  font-weight:600;
}

.hero-actions{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.chip{
  color:#DDE7F5;
  background:rgba(8,17,31,.72);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  padding:10px 16px;
}

.panel{
  width:100%;
  max-width:520px;
  justify-self:end;
  border-radius:34px;
  border:1px solid rgba(117,230,230,.22);
  background:rgba(8,17,31,.95);
  padding:34px;
  box-shadow:0 32px 120px rgba(0,0,0,.52);
  backdrop-filter:blur(2px);
}

.panel h2{
  margin:0;
  color:#fff;
  font-size:34px;
  line-height:1.1;
  font-weight:650;
}

.panel p{
  margin:14px 0 0;
  color:#C9D6E8;
  font-size:16px;
  line-height:1.55;
  font-weight:600;
}

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

.card{
  border-radius:24px;
  border:1px solid rgba(117,230,230,.14);
  background:rgba(2,7,18,.72);
  padding:22px;
}

.card h3{
  margin:0;
  color:#F8FBFF;
  font-size:18px;
}

.card p{
  margin:10px 0 0;
  color:#BDCADC;
  font-size:14px;
  line-height:1.5;
}

.footer{
  position:relative;
  z-index:2;
  border-top:1px solid rgba(117,230,230,.12);
  background:rgba(5,11,20,.82);
  backdrop-filter:blur(10px);
  padding:32px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer strong{
  display:block;
  color:#F8FBFF;
  font-size:15px;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.footer span{
  color:#B8C4D6;
  font-size:14px;
  font-weight:600;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.footer-links a{
  color:#B8C4D6;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.footer-links a:hover{
  color:#75E6E6;
}

@media (max-width:980px){
  .header-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .nav,
  .actions{
    flex-wrap:wrap;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .panel{
    justify-self:start;
    max-width:100%;
  }

  .cards{
    grid-template-columns:1fr;
  }
}

@media (max-width:620px){
  .container{
    width:min(100% - 28px, 1152px);
  }

  .main{
    padding-top:46px;
  }

  h1{
    font-size:38px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* MINUSPHERE_PUBLIC_FULL_AUTH_TEMPLATE_END */
