@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #02050d;
  --bg-raised: #070c18;
  --ink: #0b0c12;
  --text: #f4f5f7;
  --secondary: #9aa0ad;
  --line: #5e667c;
  --violet: #8b7cff;
  --error: #ff6b7a;
  --success: #4ade80;
  --gutter: 16px;
  --measure: 34rem;
}

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

html { color-scheme: dark; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.scene i {
  position: absolute;
  display: block;
  will-change: opacity;
}

.halo {
  top: 8vh;
  left: 50%;
  width: 120vmax;
  height: 70vh;
  translate: -50% 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(150, 170, 255, 0.16) 0%, rgba(110, 130, 255, 0.06) 35%, transparent 65%);
}

.atmosphere {
  left: 50%;
  top: calc(80vh - 32vh);
  width: 170vw;
  height: 64vh;
  translate: -50% 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(70, 120, 255, 0.24) 0%, rgba(50, 90, 230, 0.10) 28%, transparent 60%);
  animation: breathe 7s ease-in-out infinite alternate;
}

.planet {
  left: 50%;
  top: calc(100vh - 20vh);
  width: 260vw;
  height: 260vw;
  translate: -50% 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 0%, #101a3a 0%, #090e20 14%, #05070d 40%);
  box-shadow:
    0 -1px 0 0 rgba(215, 228, 255, 0.95),
    0 -3px 10px rgba(150, 185, 255, 0.7),
    0 -12px 34px rgba(90, 140, 255, 0.45),
    0 -36px 100px rgba(60, 110, 255, 0.3),
    0 -90px 220px rgba(50, 90, 230, 0.2),
    inset 0 20px 60px rgba(0, 0, 0, 0.7);
}

.sunrise {
  left: 50%;
  top: calc(100vh - 20vh - 5vh);
  width: 34vw;
  height: 5vh;
  translate: -50% 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(240, 245, 255, 0.9) 0%, rgba(170, 200, 255, 0.45) 14%, rgba(110, 150, 255, 0.16) 38%, transparent 68%);
  animation: breathe 7s ease-in-out infinite alternate;
}

.afterglow {
  left: 50%;
  top: 70vh;
  width: 170vw;
  height: 130vh;
  translate: -50% 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(60, 110, 255, 0.13) 0%, rgba(40, 80, 220, 0.05) 28%, transparent 58%);
}

@keyframes breathe {
  from { opacity: 0.72; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scene i { animation: none; }
  html { scroll-behavior: auto; }
}

main, footer { position: relative; z-index: 1; }

main {
  padding: 0 var(--gutter);
  max-width: 72rem;
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0 26vh;
}

.brand {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  margin: 0;
  color: var(--secondary);
  opacity: 0.45;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.wordmark {
  margin: 0;
  font-size: clamp(3.25rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(150, 170, 255, 0.35), 0 0 120px rgba(110, 130, 255, 0.2);
}

.accent {
  background: linear-gradient(100deg, #dfe5ff 0%, #8f9fff 45%, #4f6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.domain {
  margin: 1.25rem 0 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lede {
  margin: 1.75rem 0 0;
  max-width: var(--measure);
  color: var(--secondary);
  font-size: 1.125rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #3a66ee 0%, #2b52d6 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(0, 0, 0, 0.45), 0 10px 30px rgba(43, 82, 214, 0.28);
  transition: transform 140ms ease, box-shadow 220ms ease, filter 140ms ease;
}
.button span { display: inline-block; transition: transform 160ms ease; }
.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(0, 0, 0, 0.45), 0 14px 40px rgba(58, 102, 238, 0.42);
}
.button:hover span { transform: translateX(3px); }
.button:active { transform: translateY(1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.45); }
.button:disabled { opacity: 0.6; cursor: default; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

.quiet-link {
  margin-top: 1.4rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: rgba(154, 160, 173, 0.5);
  transition: color 120ms ease, text-decoration-color 120ms ease;
}
.quiet-link:hover { color: var(--text); text-decoration-color: var(--text); }

.about, .offer {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 4rem 0;
}

h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--secondary);
  font-size: 0.9375rem;
}
.about li {
  padding: 0.6rem 0;
  border-top: 1px solid rgba(154, 160, 173, 0.18);
}
.about li:last-child { border-bottom: 1px solid rgba(154, 160, 173, 0.18); }

.offer {
  padding: 2.5rem 1.75rem 2.75rem;
  margin-top: 1rem;
  margin-bottom: 6rem;
  border: 1px solid rgba(140, 165, 255, 0.10);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(20, 32, 68, 0.28) 0%, rgba(6, 10, 22, 0.42) 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.offer form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.field { display: grid; gap: 0.4rem; }

label {
  font-weight: 500;
  font-size: 0.9375rem;
}
.optional { color: var(--secondary); font-weight: 400; }

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--bg-raised);
  color: var(--text);
  font: inherit;
  line-height: 1.4;
}
input[type="number"] { font-variant-numeric: tabular-nums; }
textarea { resize: vertical; min-height: 6rem; }

input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 0;
  border-color: var(--violet);
}

form.submitted :invalid { border-color: var(--error); }

.offer .button { margin-top: 0.5rem; justify-self: start; }

.botcheck { display: none; }

.status {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
.status-success { color: var(--success); }
.status-error { color: var(--error); }

footer {
  padding: 2rem var(--gutter) 2.5rem;
  text-align: center;
  color: var(--secondary);
  font-size: 0.8125rem;
}
footer p { max-width: var(--measure); margin: 0 auto; }

@media (max-width: 480px) {
  .hero { padding: 4rem 0 24vh; }
  .lede { font-size: 1.0625rem; }
  .about { padding: 3rem 0; }
  .offer { padding: 2rem 1.25rem 2.25rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero > .wordmark { animation-name: focus; animation-duration: 1.1s; }
  .brand { opacity: 0; animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1s forwards; }
  .hero > :nth-child(2) { animation-delay: 0.35s; }
  .hero > :nth-child(3) { animation-delay: 0.5s; }
  .hero > :nth-child(4) { animation-delay: 0.65s; }
  .hero > :nth-child(5) { animation-delay: 0.8s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes focus {
    from { opacity: 0; filter: blur(16px); letter-spacing: 0.04em; }
    60%  { opacity: 1; }
    to   { opacity: 1; filter: blur(0); letter-spacing: -0.04em; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .reveal.in-view { opacity: 1; transform: none; }
}
