@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #eaf1ef;
  --muted: #94a8ab;
  --quiet: #5e7479;
  --navy: #081521;
  --line: rgba(175, 218, 223, 0.17);
  --cyan: #91e9f5;
  --cyan-soft: rgba(145, 233, 245, 0.16);
  --mint: #b8f3d0;
  --font-ui: "Manrope", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--navy); font-family: var(--font-ui); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; }

body::before { position: fixed; inset: 0; z-index: -2; background-image: linear-gradient(rgba(145, 233, 245, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(145, 233, 245, .035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 80%); content: ""; }
body::after { position: fixed; inset: 0; z-index: -1; opacity: .55; background: radial-gradient(circle at 78% 20%, rgba(36, 138, 167, .2), transparent 30%), radial-gradient(circle at 18% 85%, rgba(31, 73, 91, .25), transparent 32%); pointer-events: none; content: ""; }
a { color: inherit; text-decoration: none; }
.page-glow { position: absolute; top: 8rem; left: 50%; width: min(75vw, 920px); height: 480px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(49, 130, 154, .12), transparent 68%); filter: blur(28px); pointer-events: none; }
.site-shell { width: min(1120px, calc(100% - 56px)); margin: 0 auto; }

.site-header { display: flex; align-items: center; justify-content: space-between; min-height: 92px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 31px; height: 31px; overflow: hidden; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 9px; background: #fdfcf7; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.header-note { color: var(--quiet); font: 10px var(--font-mono); letter-spacing: .07em; text-transform: uppercase; }

.hero { display: grid; grid-template-columns: minmax(0, .94fr) minmax(390px, 1.06fr); align-items: center; gap: clamp(55px, 9vw, 130px); min-height: calc(100vh - 168px); padding: 82px 0 112px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 25px; color: var(--cyan); font: 10px var(--font-mono); letter-spacing: .09em; text-transform: uppercase; }
.eyebrow span { margin: 0 5px; color: var(--quiet); }
h1 { max-width: 680px; margin: 0 0 28px; font-size: clamp(52px, 6vw, 82px); font-weight: 500; letter-spacing: -.075em; line-height: .98; }
h1 em { color: var(--cyan); font-style: normal; }
.lede { max-width: 430px; margin: 0 0 42px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.waitlist-form { max-width: 530px; }
.form-row { display: flex; align-items: stretch; gap: 9px; }
.form-row input { min-width: 0; flex: 1; padding: 16px 18px; color: var(--ink); border: 1px solid var(--line); border-radius: 7px; outline: none; background: rgba(4, 15, 25, .55); font: 13px var(--font-mono); transition: border-color 180ms ease, box-shadow 180ms ease; }
.form-row input::placeholder { color: var(--quiet); }
.form-row input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px var(--cyan-soft); }
button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 19px; color: var(--navy); border: 0; border-radius: 7px; background: var(--cyan); font: 600 12px var(--font-ui); letter-spacing: .02em; white-space: nowrap; cursor: pointer; transition: background 180ms ease, transform 180ms ease; }
button:hover, button:focus-visible { background: #c4f4f5; transform: translateY(-1px); }
button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-note { margin: 12px 0 0; color: var(--quiet); font: 10px var(--font-mono); }
.form-status { min-height: 19px; margin: 10px 0 0; color: var(--mint); font: 11px var(--font-mono); }
.form-status.error { color: #f3c488; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.hero-art { position: relative; display: grid; width: 100%; min-height: min(47vw, 520px); overflow: hidden; place-items: center; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at center, rgba(49, 150, 170, .2), rgba(4, 15, 25, .3) 44%, rgba(4, 15, 25, .05) 70%); }
.hero-art::before { position: absolute; inset: 12%; border: 1px solid rgba(145, 233, 245, .12); border-radius: 50%; content: ""; }
.hero-art::after { position: absolute; inset: 7%; border: 1px solid rgba(145, 233, 245, .08); border-radius: 50%; transform: rotate(21deg); content: ""; }
.art-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(145, 233, 245, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(145, 233, 245, .11) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, black 12%, transparent 72%); }
.world-line { position: absolute; border: 1px solid rgba(145, 233, 245, .26); border-radius: 50%; }
.world-line-one { width: 77%; height: 29%; transform: rotate(-26deg); animation: drift-one 17s linear infinite; }
.world-line-two { width: 49%; height: 86%; transform: rotate(49deg); border-color: rgba(184, 243, 208, .22); animation: drift-two 21s linear infinite reverse; }
.world-line-three { width: 95%; height: 56%; transform: rotate(15deg); border-color: rgba(243, 196, 136, .18); animation: drift-three 25s linear infinite; }
.art-core { position: relative; z-index: 1; display: flex; width: 148px; height: 148px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: #fdfcf7; box-shadow: 0 0 55px rgba(105, 213, 229, .32), 0 0 0 14px rgba(145, 233, 245, .05); }
.art-core img { width: 100%; height: 100%; object-fit: cover; }
.visual-note { position: absolute; z-index: 2; color: var(--muted); font: 9px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.visual-note-left { bottom: 19%; left: 9%; }
.visual-note-right { top: 21%; right: 8%; }
.crosshair { position: absolute; width: 12px; height: 12px; border: 1px solid var(--cyan); opacity: .6; }
.crosshair-top { top: 15%; left: 15%; border-bottom: 0; border-right: 0; }
.crosshair-bottom { right: 18%; bottom: 13%; border-top: 0; border-left: 0; }

.site-footer { display: flex; align-items: center; justify-content: space-between; min-height: 76px; border-top: 1px solid var(--line); color: var(--quiet); font: 10px var(--font-mono); letter-spacing: .04em; text-transform: uppercase; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes drift-one { from { transform: rotate(-26deg); } to { transform: rotate(334deg); } }
@keyframes drift-two { from { transform: rotate(49deg); } to { transform: rotate(409deg); } }
@keyframes drift-three { from { transform: rotate(15deg); } to { transform: rotate(375deg); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } }

@media (max-width: 780px) {
  .site-shell { width: min(100% - 36px, 620px); }
  .site-header { min-height: 78px; }
  .header-note { display: none; }
  .hero { display: flex; min-height: auto; flex-direction: column; align-items: stretch; gap: 62px; padding: 76px 0 80px; }
  h1 { max-width: 540px; font-size: clamp(48px, 14vw, 72px); }
  .lede { font-size: 15px; }
  .hero-art { min-height: min(88vw, 480px); }
}

@media (max-width: 430px) {
  .form-row { display: block; }
  .form-row input, .form-row button { width: 100%; min-height: 49px; }
  .form-row button { margin-top: 9px; }
  .hero-art { min-height: min(93vw, 390px); }
  .site-footer { flex-wrap: wrap; gap: 10px 20px; padding: 20px 0; }
}
