:root {
  --bg0: #07071b;
  --bg1: #0b0a2a;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #6cf0ff;
  --primary: #7a2cff;
  --primary2: #22d3ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 800px at 50% 20%, #1e2b6d 0%, var(--bg1) 45%, var(--bg0) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background layers */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  filter: blur(80px);
  opacity: 0.45;
  transform: translateZ(0);
}

.bg__glow--a {
  left: -240px;
  top: -280px;
  background: radial-gradient(circle at 30% 30%, rgba(122, 44, 255, 0.95), rgba(122, 44, 255, 0) 60%);
}

.bg__glow--b {
  right: -300px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.75), rgba(34, 211, 238, 0) 60%);
}

.bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(700px 420px at 50% 20%, black 0%, transparent 70%);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(6, 6, 20, 0.85), rgba(6, 6, 20, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(110, 54, 255, 1), rgba(85, 214, 255, 1));
  box-shadow: 0 10px 26px rgba(110, 54, 255, 0.25);
}

.brand__name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand__ai {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

/* Hero */
.main {
  padding-bottom: 24px;
}

/* Coming Soon */
.coming {
  padding: clamp(28px, 6vh, 56px) 0;
}

.coming__inner {
  min-height: calc(100vh - 72px - 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(10px, 2vh, 18px) 0;
  gap: 10px;
}

.coming__kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.coming__title {
  margin: 8px 0 0;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.coming__accent {
  background: linear-gradient(135deg, rgba(34, 211, 238, 1), rgba(122, 44, 255, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coming__subtitle {
  margin: 6px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
}

.coming__contact {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.coming__contact-label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.coming__contact-email {
  display: inline-flex;
  align-items: center;
  font-size: clamp(15px, 2.4vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.coming__contact-email:hover {
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 36px rgba(122, 44, 255, 0.18);
}

.coming__contact-email:focus-visible {
  outline: 2px solid rgba(122, 44, 255, 0.55);
  outline-offset: 3px;
}

/* Stats */
.tiny {
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 920px) {
  .coming {
    padding-top: 54px;
  }
}


