:root{
  --blue: #2563eb;
  --blue-2: #1d4ed8;

  --bg-1: #0b1b52;
  --bg-2: #132a6a;
  --bg-3: #0a1438;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(255,255,255,0.12);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  min-height:100vh;
  overflow-x:hidden;

  background:
    radial-gradient(1200px 700px at 20% 25%, rgba(37,99,235,0.35), transparent 60%),
    radial-gradient(900px 600px at 78% 30%, rgba(29,78,216,0.28), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(0,0,0,0.35), transparent 60%),
    linear-gradient(135deg, var(--bg-2), var(--bg-1) 55%, var(--bg-3));
}

.wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding: 56px 18px;
}

.shell{
  width: min(980px, 100%);
  position: relative;
}

.panel{
  border-radius: 18px;
  padding: 28px 28px 34px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Top nav */
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}

.brandMark{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #66a3ff, var(--blue));
  box-shadow: 0 10px 26px rgba(37,99,235,0.45);
}

.brandName{
  font-weight: 800;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.92);
}

.links{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
}

.nav a:hover{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.nav a.active{
  color: #fff;
  background: rgba(37,99,235,0.28);
  border-color: rgba(37,99,235,0.35);
}

/* Headings / text */
h1{
  margin: 0 0 10px;
  font-size: clamp(46px, 6vw, 74px);
  letter-spacing: -1px;
  line-height: 0.95;
  background: linear-gradient(180deg, #66a3ff, var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

h2{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.tagline{
  margin: 0 0 18px;
  font-size: 18px;
  opacity: 0.92;
}

p{
  margin: 0 0 16px;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

/* Coming soon bubble */
.bubbleRow{
  position: relative;
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bubble{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 16px 40px rgba(37,99,235,0.38),
    0 2px 0 rgba(255,255,255,0.12) inset;
  user-select:none;
}

.bubble::before{
  content:"";
  position:absolute;
  width: 240px;
  height: 140px;
  border-radius: 999px;
  filter: blur(38px);
  background: rgba(37,99,235,0.35);
  transform: translateY(38px);
  z-index:-1;
}

hr{
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0;
}

.small{
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

@media (max-width: 640px){
  .panel{ padding: 22px 18px 26px; }
  .nav{ align-items:flex-start; }
  .links{ justify-content:flex-start; }
}
