:root {
  --ink: #10243f;
  --muted: #5c6b7c;
  --teal: #0fa7a0;
  --teal-dark: #087a7a;
  --coral: #ff735c;
  --amber: #ffc84b;
  --cloud: #f7fbfd;
  --line: rgba(16, 36, 63, 0.1);
  --shadow: 0 24px 70px rgba(16, 36, 63, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 200, 75, 0.24), transparent 26rem),
    radial-gradient(circle at 10% 30%, rgba(15, 167, 160, 0.17), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--cloud) 100%);
}

.site-shell {
  overflow: hidden;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark:hover,
.brand-mark:focus {
  color: var(--teal-dark);
}

.brand-dot {
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber) 58%, var(--coral));
  box-shadow: 0 0 0 0.35rem rgba(15, 167, 160, 0.12);
  animation: pingPulse 2.6s ease-in-out infinite;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(15, 167, 160, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section {
  padding: 3.5rem 0 2.5rem;
}

.hero-copy {
  animation: fadeUp 0.8s ease both;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.display-title {
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 900;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.notify-form {