:root {
  color-scheme: dark;
  --page-bg: #06130f;
  --page-surface: rgba(9, 24, 18, 0.72);
  --page-surface-strong: rgba(11, 29, 22, 0.9);
  --page-surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(167, 242, 212, 0.12);
  --line-strong: rgba(167, 242, 212, 0.22);
  --text: #f6fcf8;
  --text-muted: rgba(229, 239, 234, 0.78);
  --text-soft: rgba(229, 239, 234, 0.58);
  --accent: #86f4c0;
  --accent-strong: #34d78f;
  --accent-ink: #042116;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(95, 228, 173, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(114, 157, 255, 0.11), transparent 18%),
    radial-gradient(circle at 50% 36%, rgba(18, 80, 58, 0.22), transparent 34%),
    linear-gradient(180deg, #071510 0%, #06110d 44%, #040806 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

[hidden] {
  display: none !important;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-position: center;
  background-size: 104px 104px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 78%);
  opacity: 0.22;
  pointer-events: none;
}

.hero-floating,
.hero-grid,
.support-section,
.final-cta-section,
.site-footer {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
}

.hero-floating {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 22px;
}

.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
}

.brand-lockup img {
  width: 74px;
  height: auto;
}

.status-pill,
.eyebrow,
.proof-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-section {
  position: relative;
  padding: 16px 0 64px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(96px);
  pointer-events: none;
}

.hero-glow-left {
  top: 26px;
  left: -88px;
  width: 260px;
  height: 260px;
  background: rgba(140, 246, 197, 0.15);
}

.hero-glow-right {
  top: 156px;
  right: -76px;
  width: 224px;
  height: 224px;
  background: rgba(114, 157, 255, 0.11);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.proof-label {
  margin: 0;
  color: rgba(190, 255, 226, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1,
.waitlist-panel h2,
.support-copy h2,
.final-cta-card h2 {
  margin: 0;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 7.1ch;
  margin-top: 14px;
  font-size: clamp(2.55rem, 8.6vw, 4.7rem);
  line-height: 0.92;
}

.hero-subheadline,
.form-header p,
.support-copy p:last-child,
.timeline-list p,
.final-cta-card p:last-child,
.site-footer,
.final-cta-actions a,
.signal-list li,
.form-feedback,
.success-note,
.success-message,
.hero-trust {
  color: var(--text-muted);
}

.hero-subheadline {
  max-width: 29rem;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.primary-button,
.secondary-link,
.text-button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.primary-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-size: 0.97rem;
  font-weight: 800;
}

.primary-button {
  width: 100%;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--accent-ink);
  box-shadow:
    0 14px 38px rgba(52, 215, 143, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.secondary-link:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow:
    0 18px 42px rgba(52, 215, 143, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.primary-button:focus-visible,
.secondary-link:focus-visible,
.text-button:focus-visible,
.form-row input:focus-visible {
  outline: 2px solid rgba(140, 246, 197, 0.56);
  outline-offset: 2px;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.secondary-link {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  color: var(--text);
}

.hero-trust {
  margin: 14px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.proof-grid article {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-grid h2 {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.proof-grid article p:last-child {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.waitlist-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(10, 26, 19, 0.82), rgba(6, 16, 12, 0.94)),
    var(--page-surface);
  backdrop-filter: blur(18px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 192px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(134, 244, 192, 0.22), transparent 24%),
    radial-gradient(circle at 82% 26%, rgba(114, 157, 255, 0.16), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--page-surface-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel-visual img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  opacity: 0;
}

.panel-visual::before,
.panel-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.panel-visual::before {
  top: 18px;
  left: 18px;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(134, 244, 192, 0.52), rgba(134, 244, 192, 0) 68%);
  filter: blur(12px);
  opacity: 0.7;
}

.panel-visual::after {
  right: 18px;
  bottom: 18px;
  width: 34%;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(5, 15, 11, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(-10deg);
}

.panel-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 11, 0.02) 0%, rgba(5, 16, 11, 0.76) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 68px
    );
}

.panel-visual-copy {
  position: absolute;
  inset: auto 20px 18px;
  max-width: 15rem;
}

.panel-visual-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 6.8vw, 2.15rem);
  line-height: 1;
}

.waitlist-preview,
.waitlist-form,
.waitlist-success {
  margin-top: 20px;
}

.signal-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.1);
  font-size: 0.92rem;
  line-height: 1.55;
}

.signal-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(140, 246, 197, 0.1);
}

.waitlist-preview .primary-button {
  margin-top: 20px;
}

.text-button {
  min-height: 48px;
  padding: 0;
  cursor: pointer;
  color: rgba(206, 252, 228, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.text-button-inline {
  min-height: 24px;
}

.text-button-quiet {
  color: rgba(246, 252, 248, 0.62);
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.form-header h2,
.waitlist-success h2 {
  font-size: clamp(1.72rem, 6.2vw, 2.2rem);
  line-height: 1.02;
}

.form-header p:last-child {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.waitlist-form {
  position: relative;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row label {
  color: rgba(246, 252, 248, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-row label span {
  color: var(--text-soft);
  font-weight: 600;
}

.form-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-row input::placeholder {
  color: rgba(229, 239, 234, 0.34);
}

.form-row input:focus {
  border-color: rgba(140, 246, 197, 0.48);
  box-shadow: 0 0 0 4px rgba(140, 246, 197, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.form-row input[aria-invalid="true"] {
  border-color: rgba(255, 164, 176, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 164, 176, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feedback-card {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.12);
}

.form-feedback {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-feedback.is-error {
  color: #ffb5bf;
}

.form-feedback.is-success {
  color: #c6ffe5;
}

.waitlist-success {
  padding: 4px 0 0;
}

.success-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(140, 246, 197, 0.36) 0%, rgba(95, 228, 173, 0.18) 100%);
  box-shadow: inset 0 0 0 1px rgba(140, 246, 197, 0.22);
}

.success-badge::after {
  content: "";
  display: block;
  width: 12px;
  height: 22px;
  margin: 11px auto 0;
  border-right: 3px solid #d9fff0;
  border-bottom: 3px solid #d9fff0;
  transform: rotate(38deg);
}

.success-message {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.reserved-email {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
}

.reserved-email p:last-child {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.success-note {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.support-section {
  display: grid;
  gap: 28px;
  padding: 0 0 72px;
}

.support-copy {
  max-width: 34rem;
}

.support-copy h2 {
  margin-top: 16px;
  max-width: 10.5ch;
  font-size: clamp(1.9rem, 7vw, 3.1rem);
  line-height: 1.01;
}

.support-copy p:last-child {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

.timeline-list {
  display: grid;
  gap: 0;
  padding: 20px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.timeline-list li {
  display: grid;
  gap: 16px;
  padding: 18px 0;
}

.timeline-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline-list h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.timeline-list p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.62;
}

.final-cta-section {
  padding-bottom: 32px;
}

.final-cta-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.final-cta-card h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 6vw, 2.75rem);
  line-height: 1.02;
}

.final-cta-card p:last-child {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 0.94rem;
  line-height: 1.62;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 40px;
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-reveal="header"] {
  animation-delay: 80ms;
}

[data-reveal="hero-copy"] {
  animation-delay: 140ms;
}

[data-reveal="waitlist-panel"] {
  animation-delay: 220ms;
}

[data-reveal="support-section"] {
  animation-delay: 280ms;
}

[data-reveal="final-cta-section"] {
  animation-delay: 340ms;
}

@media (min-width: 740px) {
  .hero-floating,
  .hero-grid,
  .support-section,
  .final-cta-section,
  .site-footer {
    width: min(var(--content-width), calc(100vw - 48px));
  }

  .brand-lockup img {
    width: 82px;
  }

  .hero-actions,
  .final-cta-actions {
    flex-direction: row;
    align-items: center;
  }

  .primary-button,
  .secondary-link {
    width: fit-content;
    min-width: 13rem;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-list li {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .site-footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (max-width: 739px) {
  .hero-floating,
  .hero-grid,
  .support-section,
  .final-cta-section,
  .site-footer {
    width: min(var(--content-width), calc(100vw - 24px));
  }

  .hero-section {
    padding-top: 12px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    max-width: 7.2ch;
  }

  .status-pill {
    min-height: 34px;
    padding: 0 12px;
  }

  .panel-visual {
    min-height: 176px;
  }

  .panel-visual img {
    height: 176px;
  }

  .panel-visual-copy {
    max-width: 13.5rem;
  }

  .support-copy h2 {
    max-width: 9.4ch;
  }
}

@media (min-width: 1040px) {
  .hero-section {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.88fr);
    gap: 32px;
    align-items: center;
  }

  .waitlist-panel {
    padding: 22px;
  }

  .support-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .final-cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
  }

  .final-cta-actions {
    align-items: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .primary-button,
  .secondary-link,
  .text-button,
  .form-row input {
    transition: none !important;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
