@font-face {
  font-family: "Oxanium";
  src: url("/assets/fonts/oxanium/Oxanium-wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  color-scheme: dark;
  --bg: #03040a;
  --text: #f7fbff;
  --muted: #aeb8d3;
  --quiet: #74809b;
  --cyan: #38bdf8;
  --violet: #8b5cf6;
  --violet-hot: #a855f7;
  --warning: #facc15;
  --font-display: Oxanium, Rajdhani, "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 64% 34%, rgba(56, 189, 248, 0.066), transparent 30rem),
    radial-gradient(ellipse at 86% 72%, rgba(168, 85, 247, 0.052), transparent 30rem),
    linear-gradient(135deg, #03050d 0%, #020309 52%, #050610 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  font-synthesis: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.052) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 28%, rgba(56, 189, 248, 0.07) 0 1px, transparent 1.4px),
    radial-gradient(circle at 64% 76%, rgba(168, 85, 247, 0.06) 0 1px, transparent 1.5px),
    linear-gradient(rgba(56, 189, 248, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.02) 1px, transparent 1px);
  background-size: 180px 180px, 230px 230px, 290px 290px, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 3, 9, 1) 0%, rgba(2, 3, 9, 0.84) 38%, rgba(2, 3, 9, 0.48) 100%),
    linear-gradient(180deg, rgba(2, 3, 9, 0.34) 0%, rgba(2, 3, 9, 0.96) 100%);
}

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

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

.page-shell {
  position: relative;
  display: grid;
  width: min(1780px, calc(100% - clamp(48px, 6vw, 128px)));
  min-height: 100vh;
  margin: 0 auto;
  overflow: visible;
  grid-template-rows: auto 1fr auto auto;
}

.page-shell::before {
  position: fixed;
  inset: 8% 0 auto 50%;
  z-index: -1;
  width: min(42vw, 560px);
  height: 46vh;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent, rgba(56, 189, 248, 0.07), transparent 68%),
    repeating-linear-gradient(118deg, transparent 0 18px, rgba(56, 189, 248, 0.035) 19px, transparent 21px);
  opacity: 0.72;
  transform: skewX(-12deg);
}

.page-shell::after {
  position: fixed;
  top: 18%;
  right: max(18px, calc((100vw - 1220px) / 2));
  z-index: -1;
  width: min(34vw, 420px);
  height: 42vh;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(56, 189, 248, 0.08) 35%, transparent 36%),
    linear-gradient(180deg, transparent 0 18%, rgba(185, 205, 255, 0.04) 19%, transparent 20%),
    linear-gradient(180deg, transparent 0 54%, rgba(168, 85, 247, 0.05) 55%, transparent 56%);
  opacity: 0.55;
}

.topbar {
  position: relative;
  display: flex;
  min-height: 142px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  color: #f7fbff;
  font-size: clamp(1.58rem, 2.28vw, 2.24rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand img {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.topbar p {
  position: absolute;
  top: 190px;
  right: 4%;
  z-index: 6;
  margin-bottom: 0;
  color: rgba(116, 128, 155, 0.78);
  font-size: 0.68rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar p strong {
  display: block;
  position: relative;
  margin-top: 4px;
  padding-left: 15px;
  color: var(--warning);
  font-weight: 700;
}

.topbar p strong::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--warning);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.55);
  transform: translateY(-50%);
}

.hero {
  position: relative;
  display: block;
  min-height: min(650px, calc(100vh - 142px));
  overflow: visible;
  padding: 0 0 92px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -8% -14vw 2% 36%;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 56% 48%, rgba(56, 189, 248, 0.18), transparent 22rem),
    radial-gradient(ellipse at 66% 58%, rgba(168, 85, 247, 0.115), transparent 26rem),
    linear-gradient(90deg, rgba(3, 4, 10, 0.98), rgba(3, 4, 10, 0.3) 52%, rgba(3, 4, 10, 0.72));
  -webkit-mask-image: radial-gradient(ellipse at 58% 48%, #000 0 54%, rgba(0, 0, 0, 0.66) 64%, transparent 86%);
  mask-image: radial-gradient(ellipse at 58% 48%, #000 0 54%, rgba(0, 0, 0, 0.66) 64%, transparent 86%);
}

.hero::after {
  position: absolute;
  inset: auto -8vw 100px 36%;
  z-index: 0;
  height: 170px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(56, 189, 248, 0.1), transparent 58%),
    linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), rgba(168, 85, 247, 0.05), transparent);
  transform: perspective(900px) rotateX(66deg);
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(650px, 38vw);
  padding-top: 52px;
}

.eyebrow {
  display: none;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 4.9vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.headline-primary,
.headline-accent {
  display: block;
}

.headline-primary {
  color: #f4f6f8;
}

.headline-accent {
  margin-top: 10px;
  background: linear-gradient(115deg, #159cff 0%, #3569ff 42%, #9f38ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.intro {
  max-width: 470px;
  margin-bottom: 42px;
  color: rgba(236, 240, 249, 0.9);
  font-size: clamp(1rem, 1.14vw, 1.12rem);
  font-weight: 500;
  line-height: 1.58;
}

.intro span {
  color: var(--cyan);
}

.intro span:nth-of-type(2),
.intro span:nth-of-type(3) {
  color: var(--violet-hot);
}

.waitlist {
  position: relative;
  width: min(540px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.16), rgba(168, 85, 247, 0.08), transparent) left bottom / 100% 1px no-repeat;
  box-shadow: none;
  backdrop-filter: none;
}

.waitlist::before {
  display: none;
}

.waitlist label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.field-row input,
.field-row button {
  min-height: 64px;
  border-radius: 4px;
  font: inherit;
}

.field-row input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(185, 205, 255, 0.13);
  background: rgba(1, 3, 10, 0.52);
  color: var(--text);
  outline: none;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field-row input::placeholder {
  color: rgba(174, 184, 211, 0.52);
}

.field-row input:focus {
  border-color: rgba(56, 189, 248, 0.58);
  background: rgba(2, 5, 14, 0.74);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.1),
    inset 0 0 24px rgba(56, 189, 248, 0.035);
}

.field-row button {
  flex: 0 0 auto;
  border: 1px solid rgba(56, 189, 248, 0.34);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(168, 85, 247, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  box-shadow:
    0 10px 24px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  min-width: 232px;
  padding: 0 22px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.field-row button:hover,
.field-row button:focus-visible {
  border-color: rgba(185, 225, 255, 0.58);
  box-shadow:
    0 16px 42px rgba(56, 189, 248, 0.3),
    0 0 30px rgba(168, 85, 247, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.field-row button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-note {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(540px, 100%);
  min-height: 0;
  margin: 0;
  color: rgba(184, 194, 216, 0.86);
  padding-left: 22px;
  font-size: 0.82rem;
  letter-spacing: 0;
  opacity: 0.82;
  text-transform: none;
}

.form-note::before {
  position: absolute;
  top: 0.45em;
  left: 1px;
  width: 9px;
  height: 7px;
  border: 1px solid rgba(185, 205, 255, 0.55);
  border-radius: 1px;
  content: "";
}

.form-note::after {
  position: absolute;
  top: 0.12em;
  left: 3px;
  width: 5px;
  height: 6px;
  border: 1px solid rgba(185, 205, 255, 0.55);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  content: "";
}

.form-note.is-success {
  color: #8fffd2;
}

.form-note.is-error {
  color: rgba(255, 134, 154, 0.96);
}

.form-note.is-loading {
  color: rgba(185, 225, 255, 0.92);
}

.form-note a {
  color: rgba(224, 232, 248, 0.88);
  border-bottom: 1px solid rgba(224, 232, 248, 0.28);
  transition: border-color 160ms ease, color 160ms ease;
}

.form-note a:hover,
.form-note a:focus-visible {
  color: var(--cyan);
  border-color: rgba(56, 189, 248, 0.62);
}

.visual-stage {
  position: absolute;
  inset: -124px -18vw 70px 34%;
  z-index: 2;
  display: grid;
  min-height: 0;
  overflow: visible;
  place-items: center;
  perspective: 1000px;
}

.scene-bg {
  position: absolute;
  inset: -12% -34vw -12% -12%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 10, 0.98) 0%, rgba(3, 4, 10, 0.72) 20%, rgba(3, 4, 10, 0.1) 45%, rgba(3, 4, 10, 0.5) 100%),
    radial-gradient(ellipse at 47% 44%, rgba(3, 4, 10, 0) 0 31%, rgba(3, 4, 10, 0.34) 66%, rgba(3, 4, 10, 0.96) 100%),
    url("/assets/brand-source/hero-cinematic-bg.jpg") 180% 52% / 122% auto no-repeat;
  opacity: 0.8;
  -webkit-mask-image: radial-gradient(ellipse at 41% 53%, #000 0 52%, rgba(0, 0, 0, 0.82) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 98%);
  mask-image: radial-gradient(ellipse at 41% 53%, #000 0 52%, rgba(0, 0, 0, 0.82) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 98%);
}

.scene-bg::before,
.scene-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.scene-bg::before {
  background:
    linear-gradient(90deg, #03040a 0%, rgba(3, 4, 10, 0.98) 12%, rgba(3, 4, 10, 0.36) 30%, transparent 48%, rgba(3, 4, 10, 0.28) 66%, rgba(3, 4, 10, 0.72) 86%, #03040a 100%),
    linear-gradient(180deg, #03040a 0%, #03040a 27%, rgba(3, 4, 10, 0.82) 37%, transparent 54%, rgba(3, 4, 10, 0.3) 73%, #03040a 100%),
    radial-gradient(ellipse at 41% 51%, transparent 0 35%, rgba(3, 4, 10, 0.52) 70%, #03040a 100%);
}

.scene-bg::after {
  background:
    radial-gradient(ellipse at 40% 64%, rgba(56, 189, 248, 0.13), transparent 18%),
    radial-gradient(ellipse at 46% 61%, rgba(168, 85, 247, 0.07), transparent 24%),
    linear-gradient(180deg, transparent 0 35%, rgba(56, 189, 248, 0.035) 48%, transparent 68%);
  opacity: 0.8;
}

.visual-stage::before,
.visual-stage::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.visual-stage::before {
  display: none;
}

.visual-stage::after {
  bottom: 13%;
  left: 50%;
  width: min(38vw, 620px);
  height: 96px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(56, 189, 248, 0.46), rgba(124, 58, 237, 0.15) 18%, transparent 44%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.38), transparent 66%),
    repeating-radial-gradient(ellipse at center, transparent 0 12px, rgba(56, 189, 248, 0.22) 13px, transparent 14px 26px),
    linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.12), transparent);
  opacity: 0.78;
  transform: translateX(-50%);
}

.core-glow {
  display: none;
}

.core-glow::before {
  display: none;
}

.core-glow::after {
  display: none;
}

.core-logo {
  position: relative;
  z-index: 4;
  width: min(41.6vw, 576px);
  height: auto;
  border-radius: 26px;
  image-rendering: auto;
  animation: core-float 7.5s ease-in-out infinite;
}

.teasers {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: min(680px, 54vw);
  margin: clamp(-212px, calc(800px - 100vh), -64px) 0 8px;
}

.teasers article {
  position: relative;
  min-height: 124px;
  padding: 0 24px 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.teasers article + article {
  border-left: 1px solid rgba(185, 205, 255, 0.15);
  padding-left: 30px;
}

.teasers article::before {
  display: none;
}

.teasers article:hover {
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.teasers span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 13px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.82);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.teasers svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.teasers h2 {
  margin-bottom: 7px;
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.teasers p {
  margin-bottom: 0;
  color: rgba(224, 232, 248, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.footer {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--quiet);
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer p {
  margin-bottom: 0;
}

.footer::before {
  display: block;
  margin: 0;
  color: var(--violet-hot);
  content: "⌄";
  font-size: 1.5rem;
  line-height: 0.75;
}

.legal-links {
  position: absolute;
  right: 0;
  bottom: 11px;
  display: inline-flex;
  gap: 18px;
  color: rgba(174, 184, 211, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-links a {
  transition: color 160ms ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: rgba(247, 251, 255, 0.86);
}

.legal-page-body {
  background:
    radial-gradient(ellipse at 82% 12%, rgba(56, 189, 248, 0.05), transparent 28rem),
    linear-gradient(135deg, #03050d 0%, #020309 62%, #050610 100%);
}

.newsletter-flow-body {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(56, 189, 248, 0.1), transparent 24rem),
    radial-gradient(ellipse at 70% 70%, rgba(168, 85, 247, 0.08), transparent 28rem),
    linear-gradient(135deg, #03050d 0%, #020309 62%, #050610 100%);
}

.legal-shell {
  width: min(1040px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 44px 0 36px;
}

.newsletter-flow-shell {
  display: grid;
  grid-template-rows: auto 1fr;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 8vw, 92px);
}

.legal-topbar .brand {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

.legal-topbar .brand img {
  width: 44px;
  height: 44px;
}

.legal-nav,
.legal-page-footer {
  display: flex;
  gap: 18px;
  color: rgba(174, 184, 211, 0.68);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a,
.legal-page-footer a,
.legal-panel a {
  color: inherit;
  transition: color 160ms ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-page-footer a:hover,
.legal-page-footer a:focus-visible,
.legal-panel a:hover,
.legal-panel a:focus-visible {
  color: var(--cyan);
}

.legal-panel {
  max-width: 820px;
  color: rgba(232, 238, 250, 0.86);
}

.legal-document {
  max-width: 920px;
}

.legal-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-panel h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.96;
}

.legal-notice {
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  background: rgba(250, 204, 21, 0.055);
  color: rgba(250, 236, 190, 0.92);
}

.legal-panel section {
  padding: 24px 0;
  border-top: 1px solid rgba(185, 205, 255, 0.1);
}

.legal-panel h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-panel p {
  max-width: 72ch;
  margin-bottom: 0;
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(185, 205, 255, 0.1);
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document h3,
.legal-document h4 {
  max-width: 72ch;
  margin: 22px 0 8px;
  color: rgba(247, 251, 255, 0.94);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.legal-document h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-document h4 {
  color: rgba(203, 213, 235, 0.92);
  font-size: 0.9rem;
}

.legal-document p,
.legal-document ul {
  max-width: 82ch;
  margin-bottom: 16px;
  color: rgba(226, 233, 246, 0.84);
}

.legal-document ul {
  padding-left: 22px;
}

.legal-document li {
  padding-left: 4px;
}

.legal-document li + li {
  margin-top: 9px;
}

.legal-document strong {
  color: rgba(247, 251, 255, 0.94);
}

.legal-document a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

.newsletter-flow-card {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(680px, 100%);
  max-width: 680px;
  margin: 0 auto clamp(36px, 8vh, 96px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(185, 205, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(9, 14, 32, 0.82), rgba(4, 7, 18, 0.92)),
    radial-gradient(ellipse at 18% 0%, rgba(56, 189, 248, 0.12), transparent 34rem),
    radial-gradient(ellipse at 100% 100%, rgba(168, 85, 247, 0.1), transparent 26rem);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.newsletter-flow-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(56, 189, 248, 0.12);
  clip-path: polygon(0 0, 86px 0, 86px 1px, 1px 1px, 1px 86px, 0 86px);
}

.newsletter-flow-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.newsletter-state {
  position: relative;
  min-height: 32px;
  margin-bottom: 18px;
  padding-left: 20px;
  color: rgba(185, 225, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.newsletter-state::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.newsletter-state.is-loading {
  color: rgba(185, 225, 255, 0.94);
}

.newsletter-state.is-success {
  color: rgba(125, 255, 191, 0.96);
}

.newsletter-state.is-error {
  color: rgba(255, 134, 154, 0.96);
}

.newsletter-flow-copy {
  max-width: 52ch;
  margin-bottom: 28px;
  color: rgba(226, 233, 246, 0.74);
}

.newsletter-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.68), rgba(168, 85, 247, 0.66)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.newsletter-back:hover,
.newsletter-back:focus-visible {
  border-color: rgba(185, 225, 255, 0.52);
  box-shadow:
    0 14px 34px rgba(56, 189, 248, 0.16),
    0 0 22px rgba(168, 85, 247, 0.13);
  transform: translateY(-1px);
}

.unsubscribe-panel {
  max-width: 720px;
}

.unsubscribe-panel h1 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
}

.unsubscribe-panel > p:not(.legal-kicker) {
  max-width: 62ch;
  margin-bottom: 28px;
}

.unsubscribe-form {
  display: grid;
  gap: 12px;
  max-width: 610px;
  margin-bottom: 24px;
}

.unsubscribe-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.unsubscribe-field-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.unsubscribe-field-row input,
.unsubscribe-field-row button {
  min-height: 54px;
  border-radius: 4px;
  font: inherit;
}

.unsubscribe-field-row input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(185, 205, 255, 0.14);
  background: rgba(1, 3, 10, 0.55);
  color: var(--text);
  outline: none;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.unsubscribe-field-row input::placeholder {
  color: rgba(174, 184, 211, 0.54);
}

.unsubscribe-field-row input:focus {
  border-color: rgba(56, 189, 248, 0.58);
  background: rgba(2, 5, 14, 0.74);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.1),
    inset 0 0 24px rgba(56, 189, 248, 0.035);
}

.unsubscribe-field-row button {
  flex: 0 0 auto;
  min-width: 230px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.86), rgba(168, 85, 247, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
  box-shadow:
    0 10px 24px rgba(56, 189, 248, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0 18px;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.unsubscribe-field-row button:hover,
.unsubscribe-field-row button:focus-visible {
  border-color: rgba(185, 225, 255, 0.55);
  box-shadow:
    0 16px 36px rgba(56, 189, 248, 0.22),
    0 0 24px rgba(168, 85, 247, 0.15);
  transform: translateY(-1px);
}

.unsubscribe-field-row button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.unsubscribe-status {
  min-height: 40px;
  margin-bottom: 0;
  color: rgba(226, 233, 246, 0.84);
  font-size: 0.92rem;
}

.unsubscribe-status.is-success {
  color: rgba(125, 255, 191, 0.94);
}

.unsubscribe-status.is-error {
  color: rgba(255, 134, 154, 0.96);
}

.unsubscribe-status.is-loading {
  color: rgba(185, 225, 255, 0.92);
}

.legal-page-footer {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 205, 255, 0.1);
}

@keyframes core-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  body {
    background: linear-gradient(135deg, #03050d 0%, #020309 62%, #050610 100%);
  }

  body::before,
  .page-shell::before,
  .page-shell::after,
  .hero::before,
  .hero::after {
    display: none;
  }

  .page-shell {
    width: min(100% - 60px, 1120px);
  }

  .hero-copy {
    width: min(650px, 100%);
  }

  h1 {
    font-size: clamp(3.35rem, 6vw, 4.55rem);
  }

  .intro {
    margin-bottom: 36px;
  }

  .waitlist {
    width: min(500px, 100%);
  }

  .field-row {
    gap: 10px;
  }

  .field-row button {
    min-width: 188px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .visual-stage {
    display: none;
  }

  .core-logo {
    width: min(38vw, 480px);
  }

  .teasers {
    width: min(620px, 60vw);
    margin-top: -96px;
  }

  .teasers article {
    padding-right: 18px;
  }

  .teasers article + article {
    padding-left: 20px;
  }

  .teasers h2 {
    font-size: 0.86rem;
  }

  .teasers p {
    font-size: 0.82rem;
  }

  .legal-links {
    position: static;
    margin-top: 4px;
  }
}

@media (min-width: 1181px) and (max-height: 940px) {
  .hero-copy {
    padding-top: 40px;
  }

  .teasers article {
    min-height: 110px;
    padding-right: 18px;
  }

  .teasers span {
    width: 46px;
    height: 46px;
    margin-bottom: 9px;
  }

  .teasers svg {
    width: 23px;
    height: 23px;
  }

  .teasers h2 {
    margin-bottom: 5px;
    font-size: 0.88rem;
  }

  .teasers p {
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .footer {
    min-height: 46px;
  }
}

@media (max-width: 1060px) and (min-width: 981px) {
  .waitlist {
    width: min(470px, 100%);
  }

  .field-row button {
    min-width: 172px;
    letter-spacing: 0.065em;
  }

  .teasers {
    margin-top: -112px;
  }
}

@media (max-width: 980px) {
  body {
    background: linear-gradient(135deg, #03050d 0%, #020309 62%, #050610 100%);
  }

  body::before,
  .page-shell::before,
  .page-shell::after,
  .hero::before,
  .hero::after {
    display: none;
  }

  .page-shell {
    width: min(100% - 28px, 1280px);
  }

  .topbar {
    min-height: 108px;
    padding-top: 30px;
  }

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

  .topbar p {
    top: 136px;
    right: 2%;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    padding: 20px 0 28px;
  }

  .hero::before {
    inset: 8% -24vw 34% 12%;
  }

  .hero::after {
    inset: auto -18vw 18px 12%;
    height: 150px;
  }

  .hero-copy {
    width: min(680px, 100%);
    padding-top: 0;
    z-index: 5;
  }

  .visual-stage {
    display: none;
  }

  .teasers {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 0;
  }

  .teasers article,
  .teasers article + article {
    padding: 12px 0;
    border-left: 0;
  }

  .legal-links {
    position: static;
    margin-top: 4px;
  }

  .legal-shell {
    width: min(100% - 32px, 860px);
    padding-top: 30px;
  }

  .legal-topbar {
    margin-bottom: 48px;
  }

  .newsletter-flow-card {
    align-self: start;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 14px;
  }

  .hero::before {
    inset: 16% -38vw 38% -12%;
    opacity: 0.82;
  }

  .hero::after {
    inset: auto -24vw 0 -18%;
    height: 120px;
  }

  body::after {
    background:
      linear-gradient(180deg, rgba(3, 4, 10, 0.48) 0%, rgba(3, 4, 10, 0.96) 62%),
      linear-gradient(90deg, rgba(3, 4, 10, 0.96), rgba(3, 4, 10, 0.68));
  }

  .topbar {
    min-height: 68px;
    align-items: center;
    padding-top: 0;
  }

  .topbar p {
    display: none;
  }

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

  h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 13.4vw, 4.1rem);
    letter-spacing: 0.035em;
  }

  .intro {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .waitlist {
    width: 100%;
    padding: 0;
  }

  .field-row {
    flex-direction: column;
    gap: 7px;
  }

  .field-row input,
  .field-row button {
    min-height: 46px;
    border-radius: 0;
  }

  .field-row button {
    width: 100%;
  }

  .teasers article {
    min-height: 0;
    padding: 12px 0;
  }

  .teasers article + article {
    border-top: 1px solid rgba(185, 205, 255, 0.08);
  }

  .teasers span {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .legal-nav {
    flex-wrap: wrap;
  }

  .legal-panel h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .legal-notice {
    padding: 14px;
  }

  .unsubscribe-field-row {
    flex-direction: column;
  }

  .unsubscribe-field-row input,
  .unsubscribe-field-row button {
    min-height: 48px;
    width: 100%;
  }

  .newsletter-back {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100% - 22px, 1280px);
  }

  .brand span {
    display: none;
  }

  .waitlist,
  .teasers article {
    border-radius: 15px;
  }
}

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