:root{
  --brand: #3567DA;
  --brand2: #67A0FF;

  --bg: #0B1220;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --faint: rgba(255,255,255,0.55);
  --stroke: rgba(255,255,255,0.10);

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,0.55);

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{ box-sizing: border-box; }
html, body{
  min-height: 100%;
  height: auto;
}



body{
  min-height: 100svh;
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(1100px 900px at 16% 18%, rgba(53,103,218,0.34), transparent 56%),
    radial-gradient(900px 700px at 84% 22%, rgba(103,160,255,0.18), transparent 58%),
    radial-gradient(900px 900px at 50% 96%, rgba(53,103,218,0.10), transparent 62%),
    var(--bg);
  overflow-x: hidden;
}

/* background grid */
.grid{
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events: none;
  opacity: 0.33;
}

.orb{
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.9;
}
.orb.a{
  width: 580px; height: 580px;
  top: -240px; left: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(53,103,218,0.30), transparent 60%);
}
.orb.b{
  width: 720px; height: 720px;
  bottom: -390px; right: -320px;
  background: radial-gradient(circle at 40% 40%, rgba(103,160,255,0.16), transparent 62%);
  opacity: 0.8;
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px) clamp(14px, 3vw, 22px) 54px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}


/* header */
.top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-chip{
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--brand);
  border: 1px solid rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55), 0 0 0 1px rgba(53,103,218,0.35) inset;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.logo-chip::before{
  content:"";
  position:absolute;
  inset: -2px;
  background:
    radial-gradient(240px 140px at 30% 15%, rgba(255,255,255,0.20), transparent 58%),
    radial-gradient(260px 160px at 85% 70%, rgba(103,160,255,0.18), transparent 64%);
  opacity: 0.95;
  pointer-events:none;
}
.logo-chip svg{
  width: 92%;
  height: 92%;
  position: relative;
  z-index: 1;
  display: block;
  filter: drop-shadow(0 7px 22px rgba(0,0,0,0.50));
}

.brand-title{
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-title strong{
  font-weight: 720;
  letter-spacing: 0.2px;
  line-height: 1.15;
  font-size: 18px;
}
.brand-title span{
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(62vw, 520px);
}

/* status pill */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(53,103,218,0.32);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: var(--muted);
  font-size: 13px;
  flex: 0 0 auto;
}

/* slow breathing pulse */
.dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand2);
  position: relative;
  animation: breathe 3.4s ease-in-out infinite;
}
.dot::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: 999px;
  background: rgba(103,160,255,0.22);
  filter: blur(6px);
  opacity: 0.35;
  animation: breatheGlow 3.4s ease-in-out infinite;
}
@keyframes breathe{
  0%,100%{ transform: scale(0.92); opacity: 0.65; }
  50%{ transform: scale(1.12); opacity: 1; }
}
@keyframes breatheGlow{
  0%,100%{ opacity: 0.22; transform: scale(0.96); }
  50%{ opacity: 0.55; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce){
  .dot, .dot::after{ animation: none !important; }
}

/* main layout */
.main{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 980px){
  .main{ grid-template-columns: 1fr; }
  .pill{ width: 100%; justify-content: center; }
}

.hero{
  border-radius: var(--radius);
  border: 1px solid rgba(53,103,218,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
  padding: clamp(18px, 3.2vw, 28px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 260px at 18% 0%, rgba(53,103,218,0.26), transparent 60%),
    radial-gradient(900px 300px at 92% 12%, rgba(103,160,255,0.20), transparent 58%),
    linear-gradient(90deg, transparent, rgba(53,103,218,0.10), transparent);
  opacity: 0.95;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:-20%;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 10px);
  opacity: 0.16;
  transform: rotate(2deg);
  pointer-events:none;
}
.hero > *{ position: relative; }

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2px;
}

h1{
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
  margin: 16px 0 12px;
  letter-spacing: -0.8px;
}

.accent{
  color: var(--brand2);
  text-shadow: 0 0 24px rgba(103,160,255,0.18);
}

.lede{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 18px;
}
.lede b{ color: var(--text); font-weight: 650; }

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

/* properly styled input + buttons */
.field{
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(53,103,218,0.22);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  min-width: min(100%, 520px);
}
.field input{
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
  min-width: 0;
}
.field input::placeholder{ color: rgba(255,255,255,0.45); }

.btn{
  border: 1px solid rgba(103,160,255,0.48);
  background: linear-gradient(180deg, rgba(53,103,218,0.30), rgba(53,103,218,0.10));
  color: var(--text);
  font-weight: 720;
  letter-spacing: 0.2px;
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, filter .15s ease;
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(103,160,255,0.78);
  filter: brightness(1.05);
}
.btn:active{ transform: translateY(0px); }
.btn.secondary{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-weight: 720;
}

@media (max-width: 520px){
  .cta-row{
    flex-direction: column;
    align-items: stretch;
  }

  /* Make the form stack too */
  .field{
    width: 100%;
    min-width: 100%;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .field input{
    width: 100%;
    padding: 12px 10px;
  }

  /* Full-width buttons on mobile */
  .btn{
    width: 100%;
  }

  .logo-chip{
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }
}



.note{
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  margin-top: 10px;
  line-height: 1.5;
}

/* side cards */
.side{ display: grid; gap: 14px; }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(53,103,218,0.18);
  background: rgba(255,255,255,0.06);
  padding: 18px;
  box-shadow: 0 16px 55px rgba(0,0,0,0.45);
}

.card h2{
  font-size: 14px;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.list{
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none; /* removes bullets */
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.item{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.16);
}

.badge{
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(103,160,255,0.24);
  background: rgba(53,103,218,0.12);
  white-space: nowrap;
  margin-top: 1px;
  flex: 0 0 auto;
}

a{ color: rgba(103,160,255,0.95); text-decoration: none; }
a:hover{ text-decoration: underline; }

/* footer */
.footer{
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
}
.links{ display: flex; gap: 14px; flex-wrap: wrap; }

.status{
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  border: 1px solid rgba(53,103,218,0.22);
  background: rgba(0,0,0,0.22);
  padding: 7px 10px;
  border-radius: 999px;
}

/* --- Mobile/content overlay fix: keep hero content above background layers --- */
.hero{
  position: relative;
}

.hero::before,
.hero::after{
  z-index: 0;
}

.hero > *{
  position: relative;
  z-index: 1;
}

/* If your hero content is wrapped (common), this ensures the wrapper is also above */
.hero > div{
  position: relative;
  z-index: 1;
}

/* Waitlist banner (same style language as the site) */
.banner{
  margin-top: 12px;
}

.banner-inner{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(53,103,218,0.26);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 55px rgba(0,0,0,0.35);
}

.banner-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand2);
  margin-top: 3px;
  box-shadow: 0 0 18px rgba(103,160,255,0.22);
  flex: 0 0 auto;
}

.banner-text{
  display: grid;
  gap: 2px;
  line-height: 1.35;
}

.banner-text strong{
  font-weight: 750;
  color: var(--text);
  font-size: 13.5px;
}

.banner-text span{
  color: var(--muted);
  font-size: 12.5px;
}

.banner-close{
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
  padding: 0;
}

.banner-close:hover{
  border-color: rgba(103,160,255,0.40);
}

@media (max-width: 520px){
  .banner-inner{
    align-items: center;
  }
}
