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

:root {
  color-scheme: dark;
  --bg: #050508;
  --panel: rgba(14, 16, 24, 0.72);
  --panel-strong: rgba(17, 18, 29, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(216, 180, 254, 0.38);
  --text: #f5f7fb;
  --muted: #b8bfd5;
  --quiet: #747b92;
  --purple: #9b5cff;
  --purple-deep: #5b21b6;
  --blue: #67e8f9;
  --blue-deep: #2563eb;
  --pink: #f472b6;
  --mint: #7dd3c7;
  --danger: #fb7185;
  --radius: 8px;
  --max: 1180px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.05), transparent 26%),
    linear-gradient(225deg, rgba(244, 114, 182, 0.06), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: rgba(155, 92, 255, 0.55);
  color: #fff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

#signal-canvas,
.ambient-field,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#signal-canvas {
  z-index: -3;
  opacity: 0.62;
}

.ambient-field {
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(155, 92, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 78% 18%, rgba(103, 232, 249, 0.13), transparent 32%),
    radial-gradient(ellipse at 50% 95%, rgba(244, 114, 182, 0.1), transparent 42%);
}

.mesh {
  position: absolute;
  width: 120vw;
  height: 70vh;
  left: -10vw;
  filter: blur(42px);
  opacity: 0.36;
  transform: rotate(-6deg);
}

.mesh-a {
  top: -18vh;
  background: linear-gradient(90deg, transparent, rgba(91, 33, 182, 0.72), rgba(37, 99, 235, 0.44), transparent);
  animation: drift-one 16s ease-in-out infinite alternate;
}

.mesh-b {
  bottom: -28vh;
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.42), rgba(125, 211, 199, 0.32), transparent);
  animation: drift-two 19s ease-in-out infinite alternate;
}

.scan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 74%, transparent);
}

.cursor-glow {
  z-index: 20;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(103, 232, 249, 0.2), transparent 185px);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 8, 0.62);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(103, 232, 249, 0.28);
  background: rgba(7, 8, 13, 0.78);
  box-shadow: 0 20px 90px rgba(103, 232, 249, 0.11);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span,
.footer-brand strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--pink), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(216, 180, 254, 0.36);
  border-radius: 999px;
  background: rgba(155, 92, 255, 0.16);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(155, 92, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(103, 232, 249, 0.5);
  box-shadow: 0 0 36px rgba(103, 232, 249, 0.22), 0 0 54px rgba(244, 114, 182, 0.13);
  transform: translateY(-1px);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 58px;
  align-items: center;
  min-height: 100vh;
  padding-top: 118px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue), #c084fc 45%, var(--pink));
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 32px rgba(155, 92, 255, 0.22);
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: 0;
}

.hero-subtitle,
.section-intro p,
.feature-card p,
.timeline-card p,
.founder-note p,
.waitlist-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(244, 114, 182, 0.42);
  background: linear-gradient(105deg, rgba(91, 33, 182, 0.96), rgba(37, 99, 235, 0.82) 54%, rgba(244, 114, 182, 0.82));
  color: #fff;
  box-shadow: 0 0 34px rgba(155, 92, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 0 42px rgba(103, 232, 249, 0.24), 0 0 72px rgba(244, 114, 182, 0.2);
}

.button-secondary {
  border: 1px solid rgba(103, 232, 249, 0.3);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(244, 114, 182, 0.4);
  box-shadow: 0 0 34px rgba(103, 232, 249, 0.16);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  min-height: 44px;
  padding: 13px 14px 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #dce2ef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-list li::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
  content: "";
}

.trust-list li:nth-child(2)::before {
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

.trust-list li:nth-child(3)::before {
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.trust-list li:nth-child(4)::before {
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.dashboard,
.waitlist-card,
.feature-card,
.timeline-card,
.founder-note {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.dashboard {
  min-height: 560px;
  padding: 22px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transform-origin: center;
}

.dashboard::before,
.waitlist-card::before,
.feature-card::before,
.timeline-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.46), transparent 33%, rgba(244, 114, 182, 0.34));
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.52;
  pointer-events: none;
}

.dashboard::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(103, 232, 249, 0.07), transparent);
  content: "";
  animation: scan 4.8s linear infinite;
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--quiet);
  font-family: Sora, Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 16px currentColor;
}

.window-dots i:nth-child(2) {
  background: var(--blue);
}

.window-dots i:nth-child(3) {
  background: var(--purple);
}

.wave-panel {
  height: 158px;
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(4, 6, 12, 0.58);
  background-size: 24px 24px;
}

.wave-stack {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 100%;
  gap: 8px;
}

.wave-stack i {
  width: 9px;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(to top, var(--purple), var(--blue) 52%, var(--pink));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.24);
  animation: equalize 1.4s ease-in-out infinite alternate;
  animation-delay: calc(var(--h) * -0.02);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
  margin-top: 14px;
}

.signal-readout,
.mini-network,
.slider-bank,
.terminal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.signal-readout {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.signal-readout span,
.slider-bank span {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-readout strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
}

.mini-network {
  position: relative;
  min-height: 94px;
  overflow: hidden;
}

.mini-network::before,
.mini-network::after {
  position: absolute;
  inset: 28px 26px;
  border-top: 1px solid rgba(103, 232, 249, 0.36);
  border-bottom: 1px solid rgba(244, 114, 182, 0.3);
  content: "";
  transform: skewY(-18deg);
}

.mini-network span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

.mini-network span:nth-child(1) {
  top: 21px;
  left: 24px;
}

.mini-network span:nth-child(2) {
  top: 60px;
  left: 40px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

.mini-network span:nth-child(3) {
  top: 36px;
  left: 70px;
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.mini-network span:nth-child(4) {
  top: 22px;
  right: 30px;
}

.mini-network span:nth-child(5) {
  right: 24px;
  bottom: 24px;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.slider-bank {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
}

.slider-bank div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.slider-bank b {
  color: #dfe8ff;
  font-size: 11px;
}

.slider-bank i {
  grid-column: 1 / -1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.slider-bank i::before {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
  content: "";
}

.terminal {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px;
}

.terminal code {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.5;
}

.terminal code:nth-child(2) {
  color: var(--muted);
}

.terminal code:nth-child(3) {
  color: var(--pink);
}

.access-section,
.timeline-section,
.founder-section {
  padding: 96px 0;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.feature-card,
.timeline-card {
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.timeline-card:hover {
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow: 0 24px 90px rgba(103, 232, 249, 0.1);
  transform: translateY(-4px);
}

.feature-icon,
.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border: 1px solid rgba(103, 232, 249, 0.26);
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.08);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card p,
.timeline-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.waitlist-section {
  position: relative;
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 104px 0;
}

.waitlist-card {
  display: grid;
  gap: 22px;
  padding: 42px;
  overflow: hidden;
  background: rgba(11, 11, 19, 0.82);
  box-shadow: 0 0 76px rgba(91, 33, 182, 0.22), 0 32px 120px rgba(0, 0, 0, 0.42);
}

.card-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.1), transparent 30%);
  opacity: 0.45;
  transform: translateX(-90%);
  animation: sheen 6s ease-in-out infinite;
  pointer-events: none;
}

.status-pill {
  justify-self: start;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(244, 114, 182, 0.28);
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.08);
  color: #ffd7eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: pulse-pill 2.4s ease-in-out infinite;
}

.waitlist-card h2 {
  margin-bottom: 0;
}

.waitlist-copy {
  max-width: 660px;
  margin-bottom: 4px;
}

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

label {
  display: grid;
  gap: 9px;
}

label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 128px;
  padding: 15px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

option {
  background: #0c0d14;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(103, 232, 249, 0.62);
  background: rgba(103, 232, 249, 0.05);
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.08), 0 0 28px rgba(103, 232, 249, 0.1);
}

::placeholder {
  color: rgba(184, 191, 213, 0.54);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.submit-button.is-loading {
  cursor: wait;
}

.submit-button.is-loading span::after {
  display: inline-block;
  width: 1.2em;
  content: "...";
  animation: dots 1s steps(3) infinite;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-error {
  color: #fecdd3;
}

.fine-print,
.scarcity {
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.6;
}

.scarcity {
  color: #dac8ff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 20px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), var(--pink), transparent);
  content: "";
  opacity: 0.62;
}

.timeline-card {
  min-height: 280px;
  padding-top: 68px;
}

.timeline-card span {
  position: absolute;
  top: 0;
  left: 24px;
  width: auto;
  min-width: 92px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 8, 13, 0.94);
}

.timeline-card.future {
  border-color: rgba(244, 114, 182, 0.22);
}

.founder-section {
  padding-top: 80px;
}

.founder-note {
  max-width: 880px;
  margin: 0 auto;
  padding: 46px;
}

.founder-note::after {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
  content: "";
  opacity: 0.75;
}

.founder-note p {
  font-size: 18px;
}

.signature {
  display: inline-block;
  margin-top: 14px;
  color: #ffd4e9;
  font-family: Sora, Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 40px), var(--max));
  margin: 42px auto 0;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--quiet);
  font-size: 13px;
}

.footer img {
  width: 44px;
  height: 44px;
}

.footer p {
  margin: 5px 0 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.footer a:hover {
  color: var(--blue);
}

@keyframes drift-one {
  from {
    transform: translate3d(-2vw, -2vh, 0) rotate(-6deg);
  }
  to {
    transform: translate3d(5vw, 4vh, 0) rotate(2deg);
  }
}

@keyframes drift-two {
  from {
    transform: translate3d(3vw, 2vh, 0) rotate(5deg);
  }
  to {
    transform: translate3d(-4vw, -4vh, 0) rotate(-4deg);
  }
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes equalize {
  from {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
  to {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes sheen {
  0%,
  42% {
    transform: translateX(-95%);
  }
  72%,
  100% {
    transform: translateX(95%);
  }
}

@keyframes pulse-pill {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(244, 114, 182, 0.16);
  }
  50% {
    box-shadow: 0 0 28px rgba(103, 232, 249, 0.22);
  }
}

@keyframes dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 128px;
  }

  .dashboard {
    max-width: 680px;
    margin: 0 auto;
    transform: none;
  }

  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 22px), var(--max));
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .hero-subtitle,
  .section-intro p,
  .founder-note p,
  .waitlist-copy {
    font-size: 16px;
  }

  .form-grid,
  .dashboard-grid,
  .trust-list,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .waitlist-card,
  .founder-note {
    padding: 28px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section-shell,
  .waitlist-section,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero {
    gap: 38px;
    padding-top: 112px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .dashboard {
    min-height: auto;
    padding: 16px;
  }

  .wave-panel {
    height: 122px;
  }

  .access-section,
  .timeline-section,
  .founder-section,
  .waitlist-section {
    padding: 68px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-glow,
  #signal-canvas {
    display: none;
  }
}
