@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;700;800&family=Manrope:wght@400;500;700;800&display=swap');

:root {
  --bg: #040710;
  --bg-soft: #0b1324;
  --card: rgba(9, 19, 38, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fbff;
  --muted: #a8b8d6;
  --cyan: #58f5ff;
  --teal: #20c2aa;
  --lime: #cafb73;
  --gold: #ffd17a;
  --coral: #ff7b87;
  --radius: 20px;
  --radius-lg: 34px;
  --shadow-lg: 0 32px 70px rgba(0, 0, 0, 0.45);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #0b1f3f 0%, transparent 40%),
    radial-gradient(circle at 80% -20%, #153126 0%, transparent 42%),
    linear-gradient(140deg, #02040c, #0b1020 45%, #040710);
  font-family: 'Manrope', system-ui, sans-serif;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  content: '';
  position: fixed;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  filter: blur(95px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.55;
  animation: drift 18s infinite ease-in-out alternate;
}

.site-shell::before {
  background: #1f887f;
  left: -220px;
  top: -140px;
}

.site-shell::after {
  background: #315b98;
  right: -220px;
  top: 260px;
  animation-delay: -7s;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(55px, -45px, 0) scale(1.18);
  }
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: min(var(--max), 95vw);
  margin: 16px auto 0;
  backdrop-filter: blur(16px);
  background: rgba(4, 8, 18, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--lime));
  box-shadow: 0 0 22px rgba(88, 245, 255, 0.9);
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #001015;
  background: linear-gradient(120deg, var(--cyan), var(--lime));
  box-shadow: 0 12px 30px rgba(122, 255, 230, 0.33);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 110px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(88, 245, 255, 0.4);
  background: rgba(42, 138, 144, 0.16);
  color: #b8f8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h1,
h2,
h3 {
  font-family: 'Syne', sans-serif;
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 7.4vw, 5rem);
  margin-top: 18px;
}

.gradient-text {
  background: linear-gradient(110deg, #79ffff, #ffe194 44%, #9efab3 68%, #8cd0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-panel {
  position: relative;
  min-height: 530px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(8, 17, 37, 0.95), rgba(8, 12, 21, 0.6));
  border: 1px solid rgba(130, 180, 255, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -28% -12%;
  background: conic-gradient(
    from 40deg,
    rgba(88, 245, 255, 0.2),
    rgba(202, 251, 115, 0.32),
    rgba(255, 123, 135, 0.15),
    rgba(88, 245, 255, 0.2)
  );
  animation: rotate 15s linear infinite;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(170deg, rgba(3, 9, 22, 0.9), rgba(8, 17, 30, 0.65));
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mixer-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.signal {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(202, 251, 115, 0.65);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(202, 251, 115, 0.6);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(202, 251, 115, 0);
  }
}

.mixer-modes {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mode-pill {
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.mode-pill.active {
  color: #0b1019;
  background: linear-gradient(120deg, var(--cyan), var(--lime));
  border-color: transparent;
}

.slider-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.slider-col {
  min-height: 255px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.slider-col::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  top: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 70%);
}

.slider-bar {
  position: relative;
  width: 100%;
  border-radius: 18px;
  height: var(--h, 50%);
  z-index: 1;
}

.slider-label {
  position: relative;
  z-index: 1;
  margin-top: 11px;
  color: #d8e5ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.slider-col.vibe .slider-bar {
  background: linear-gradient(180deg, #ff9ec0, #ff698f);
  --h: 67%;
}

.slider-col.tone .slider-bar {
  background: linear-gradient(180deg, #87e9ff, #47c0ff);
  --h: 58%;
}

.time-chip {
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

section {
  padding: 52px 0;
}

.section-head {
  max-width: 730px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

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

.card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(8px);
  padding: 22px;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-strip {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(140deg, rgba(9, 22, 41, 0.85), rgba(7, 11, 20, 0.6));
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story {
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story strong {
  display: block;
  margin-bottom: 8px;
  color: #dff6ff;
}

.story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.onboarding-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 12, 26, 0.72);
  padding: 20px;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 255, 227, 0.3), transparent 72%);
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0a1017;
  background: linear-gradient(120deg, var(--cyan), var(--lime));
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
}

.banner-note {
  margin-top: 12px;
  color: #fff3bf;
  font-size: 0.85rem;
  font-weight: 700;
}

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

.mode-card {
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(5, 15, 30, 0.95), rgba(4, 10, 19, 0.6));
  position: relative;
  overflow: hidden;
}

.mode-card::before {
  content: '';
  position: absolute;
  inset: -35% 45% 55% -35%;
  border-radius: 999px;
  filter: blur(45px);
}

.mode-card.gamma::before {
  background: rgba(255, 123, 135, 0.45);
}

.mode-card.beta::before {
  background: rgba(88, 245, 255, 0.45);
}

.mode-card.alpha::before {
  background: rgba(202, 251, 115, 0.45);
}

.mode-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.mode-card p {
  color: var(--muted);
  margin: 0;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 24px;
}

.price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  margin: 10px 0;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list li::before {
  content: '•';
  color: var(--cyan);
  margin-right: 8px;
}

.stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stack .card {
  min-height: 230px;
}

.cta {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(130deg, rgba(8, 22, 43, 0.95), rgba(5, 11, 20, 0.88));
  padding: 34px;
  display: grid;
  gap: 18px;
}

.cta h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
}

.footer {
  padding: 40px 0 54px;
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.84, 0.16, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.waitlist-body {
  background: #04070d;
}

.waitlist-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

#liquid-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.waitlist-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(32, 194, 170, 0.35), transparent 42%),
    radial-gradient(circle at 78% 32%, rgba(255, 123, 135, 0.34), transparent 40%),
    radial-gradient(circle at 55% 84%, rgba(88, 245, 255, 0.3), transparent 47%);
  animation: floatGlow 12s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes floatGlow {
  0% {
    transform: translate3d(-2%, -3%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.12);
  }
}

.waitlist-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 90px 0 34px;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.waitlist-lead h1 {
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  margin-top: 14px;
}

.waitlist-lead p {
  color: #cee2ff;
  line-height: 1.8;
  max-width: 58ch;
}

.float-pill-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.float-pill {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
}

.signup-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(20px);
  padding: 30px;
  box-shadow: 0 26px 80px rgba(2, 4, 9, 0.62);
}

.signup-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(10, 24, 39, 0.95), rgba(6, 13, 26, 0.74));
  z-index: -1;
}

.signup-card h2 {
  font-size: 2rem;
}

.signup-card p {
  color: #bfd0ea;
}

.form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #e3efff;
}

input,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 12px 14px;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: 2px solid rgba(88, 245, 255, 0.55);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.btn-main {
  margin-top: 6px;
  padding: 13px 20px;
  border-radius: 999px;
  border: none;
  color: #001114;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(115deg, #7ef9ff, #b8ff72 42%, #ffd17a 90%);
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 180ms ease;
  box-shadow: 0 18px 40px rgba(136, 255, 230, 0.3);
}

.btn-main:hover {
  transform: translateY(-1px);
}

.form-note {
  min-height: 24px;
  font-weight: 700;
  color: #b7ffca;
}

.form-note.error {
  color: #ffc0b4;
}

.subtle-links {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #b6c7e3;
}

.legal-wrap {
  padding: 70px 0;
}

.legal-card {
  width: min(900px, 92vw);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.82);
  padding: 34px;
}

.legal-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-card h2 {
  margin-top: 24px;
  font-size: 1.3rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero-grid,
  .waitlist-grid,
  .pricing-wrap,
  .stack,
  .story-strip,
  .onboarding-flow,
  .grid-3,
  .modes {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 420px;
  }

  .top-nav {
    position: static;
    margin-top: 12px;
  }

  .nav-links {
    display: none;
  }

  .waitlist-content {
    padding-top: 56px;
  }
}
