:root {
  --bg: #040603;
  --bg-soft: #0a0f09;
  --panel: rgba(8, 11, 8, 0.84);
  --panel-strong: rgba(5, 7, 5, 0.96);
  --text: #f4f8ef;
  --muted: #9aaa99;
  --muted-strong: #c9d6c7;
  --line: rgba(183, 255, 34, 0.16);
  --line-strong: rgba(183, 255, 34, 0.34);
  --neon: #b7ff22;
  --neon-hot: #e0ff7a;
  --orange: #ff7a00;
  --orange-hot: #ffab4d;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.54);
  --glow: 0 0 24px rgba(183, 255, 34, 0.26);
  --container: min(1240px, calc(100vw - 2.4rem));
  --hero-shift: 0px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(183, 255, 34, 0.16), transparent 26%),
    radial-gradient(circle at 14% 30%, rgba(124, 255, 42, 0.1), transparent 20%),
    radial-gradient(circle at 88% 34%, rgba(255, 122, 0, 0.13), transparent 24%),
    linear-gradient(180deg, #010201 0%, #050704 35%, #090d08 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(183, 255, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 34, 0.04) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 88%);
  opacity: 0.38;
}

body::after {
  background: radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.48) 100%);
}

body.chat-open::after {
  background:
    radial-gradient(circle at 84% 58%, rgba(183, 255, 34, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.52) 52%, rgba(0, 0, 0, 0.84) 100%),
    radial-gradient(circle at center, transparent 26%, rgba(0, 0, 0, 0.76) 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.consent {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.88rem 1.3rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button--solid {
  background: linear-gradient(180deg, var(--neon-hot), var(--neon));
  color: #040603;
  box-shadow:
    0 0 24px rgba(183, 255, 34, 0.32),
    inset 0 -0.18rem 0 rgba(32, 48, 12, 0.22);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow:
    0 0 34px rgba(183, 255, 34, 0.44),
    inset 0 -0.18rem 0 rgba(32, 48, 12, 0.22);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(6, 8, 6, 0.66);
  color: var(--text);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(183, 255, 34, 0.56);
  box-shadow: var(--glow);
}

.button--text {
  min-height: 0;
  padding-inline: 0;
  border-radius: 0;
  background: transparent;
  color: var(--neon);
}

.button--text::after {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.button--text:hover::after,
.button--text:focus-visible::after {
  transform: translateX(0.35rem);
}

.eyebrow {
  margin: 0;
  color: var(--neon);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 2.9rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 16%, rgba(183, 255, 34, 0.12), transparent 22%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.7rem;
  min-height: calc(100svh - 4rem);
  text-align: center;
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

body.chat-open {
  overflow: hidden;
}

body.chat-open .hero__inner {
  filter: blur(2px);
  opacity: 0.58;
}

body.chat-open .hero__inner {
  transform: translateX(-1.4rem) scale(0.992);
}

.hero__art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 48rem);
  min-height: 35.2rem;
  transform: translateY(calc(var(--hero-shift) * 0.08));
}

.hero__halo,
.hero__sigil,
.hero__wing {
  position: absolute;
  pointer-events: none;
}

.hero__halo {
  top: 0.2rem;
  left: 50%;
  width: min(100%, 28rem);
  height: 6.4rem;
  transform: translateX(-50%);
  border: 0.55rem solid rgba(183, 255, 34, 0.94);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(183, 255, 34, 0.72),
    0 0 54px rgba(183, 255, 34, 0.34);
}

.hero__sigil {
  inset: 5rem 2.6rem 1.4rem;
  border: 0.28rem solid rgba(183, 255, 34, 0.76);
  border-radius: 50%;
  box-shadow:
    inset 0 0 22px rgba(183, 255, 34, 0.14),
    0 0 22px rgba(183, 255, 34, 0.18);
}

.hero__sigil::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(183, 255, 34, 0.18);
}

.hero__wing {
  top: 10.6rem;
  width: 14rem;
  height: 11.2rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(183, 255, 34, 0.2), transparent 56%),
    linear-gradient(90deg, rgba(183, 255, 34, 0.42), transparent 70%);
  border: 3px solid rgba(183, 255, 34, 0.68);
  box-shadow:
    0 0 22px rgba(183, 255, 34, 0.18),
    inset 0 0 20px rgba(183, 255, 34, 0.08);
  opacity: 0.6;
}

.hero__wing--left {
  left: 0.8rem;
  clip-path: polygon(0 56%, 28% 18%, 100% 0, 72% 46%, 100% 100%, 28% 86%);
  transform: rotate(-8deg);
}

.hero__wing--right {
  right: 0.8rem;
  clip-path: polygon(100% 56%, 72% 18%, 0 0, 28% 46%, 0 100%, 72% 86%);
  transform: rotate(8deg);
}

.hero__fox {
  position: relative;
  z-index: 2;
  width: min(100%, 35rem);
  filter:
    drop-shadow(0 0 24px rgba(183, 255, 34, 0.26))
    drop-shadow(0 0 48px rgba(183, 255, 34, 0.14))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 34px rgba(255, 122, 0, 0.22));
}

.hero__banner {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 43rem);
  margin-top: -2rem;
  padding: 0.9rem 2rem 1rem;
  border: 4px solid rgba(183, 255, 34, 0.84);
  background: linear-gradient(180deg, rgba(8, 10, 8, 0.95), rgba(3, 4, 3, 0.98));
  box-shadow:
    0 0 26px rgba(183, 255, 34, 0.22),
    0 28px 80px rgba(0, 0, 0, 0.56);
  clip-path: polygon(2% 0, 98% 0, 98% 82%, 50% 100%, 2% 82%);
}

.hero__banner::before {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border: 1px solid rgba(183, 255, 34, 0.26);
  clip-path: inherit;
}

.hero__banner-main {
  display: block;
  color: #fbfff6;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.hero__lockup {
  position: relative;
  display: grid;
  gap: 0;
  width: min(100%, 72rem);
  margin-top: -0.45rem;
}

.hero__lockup::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  left: 50%;
  width: 1px;
  height: 0.5rem;
  background: linear-gradient(180deg, rgba(183, 255, 34, 0), rgba(183, 255, 34, 0.74));
  box-shadow: 0 0 18px rgba(183, 255, 34, 0.28);
  transform: translateX(-50%);
}

.waitlist-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.9fr);
  gap: 0.95rem;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(183, 255, 34, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(10, 14, 10, 0.24), rgba(6, 8, 6, 0));
  text-align: left;
}

.waitlist-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 255, 34, 0), rgba(183, 255, 34, 0.48) 18%, rgba(183, 255, 34, 0.72) 50%, rgba(183, 255, 34, 0.12) 100%);
}

.waitlist-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 255, 34, 0), rgba(183, 255, 34, 0.54));
  box-shadow: 0 0 18px rgba(183, 255, 34, 0.22);
}

.waitlist-panel__copy {
  display: grid;
  gap: 0;
  align-content: center;
  padding: 0.3rem 0 0.2rem 0.4rem;
}

.waitlist-panel__copy::before {
  content: "";
  width: 4rem;
  height: 1px;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, rgba(183, 255, 34, 0.74), rgba(183, 255, 34, 0));
  box-shadow: 0 0 16px rgba(183, 255, 34, 0.22);
}

.waitlist-panel__copy h1 {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 0 20px rgba(183, 255, 34, 0.08);
}

.waitlist-panel__copy p,
.field span,
.consent span,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lead-form {
  display: grid;
  gap: 0.5rem;
  padding: 0.1rem 0 0 0;
  background: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-form__strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.42rem;
  border: 1px solid rgba(183, 255, 34, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(11, 15, 11, 0.84), rgba(6, 8, 6, 0.94)),
    radial-gradient(circle at 15% 50%, rgba(183, 255, 34, 0.08), transparent 22%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 42px rgba(0, 0, 0, 0.28);
}

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

.field span {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(183, 255, 34, 0.16);
  border-radius: 0.95rem;
  background: rgba(4, 6, 4, 0.96);
  color: var(--text);
  font: inherit;
  padding: 0.96rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form__email {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02)),
    rgba(4, 6, 4, 0.58);
  color: var(--text);
  font: inherit;
  padding: 0.95rem 1.15rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form__email::placeholder {
  color: rgba(201, 214, 199, 0.46);
}

.lead-form__email:focus {
  border-color: rgba(183, 255, 34, 0.52);
  box-shadow: 0 0 0 0.2rem rgba(183, 255, 34, 0.1);
  background: rgba(4, 6, 4, 0.88);
}

.button--desk {
  min-height: 0;
  padding: 0;
  color: var(--neon);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input::placeholder {
  color: rgba(201, 214, 199, 0.4);
}

.field input:focus,
.field select:focus {
  border-color: rgba(183, 255, 34, 0.52);
  box-shadow: 0 0 0 0.2rem rgba(183, 255, 34, 0.1);
}

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

.consent {
  gap: 0.5rem;
  align-items: center;
}

.consent--minimal {
  gap: 0;
}

.consent-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.2rem;
  gap: 0.75rem;
  padding: 0 0.42rem;
}

.consent input {
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0;
  accent-color: var(--neon);
}

.form-status {
  min-height: 0;
  font-size: 0.84rem;
  padding: 0 0.42rem;
}

.form-status[data-state="success"] {
  color: var(--neon-hot);
}

.form-status[data-state="error"] {
  color: #ff9586;
}

.fox-chat__close,
.fox-chat__starter,
.fox-chat__send {
  appearance: none;
}

.fox-chat {
  position: fixed;
  right: 1rem;
  z-index: 30;
}

.fox-chat {
  top: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 1rem;
  width: min(37rem, 43vw);
  max-height: none;
  padding: 1.15rem;
  background:
    radial-gradient(circle at top center, rgba(183, 255, 34, 0.12), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 122, 0, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(7, 10, 7, 0.99), rgba(3, 5, 3, 0.99));
  color: var(--text);
  border: 1px solid rgba(183, 255, 34, 0.16);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.62),
    0 0 40px rgba(183, 255, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 2.8rem) 100%, 0 100%);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease, right 220ms ease;
}

.fox-chat__header {
  grid-area: header;
}

.fox-chat__intro {
  grid-area: intro;
}

.fox-chat__starters {
  grid-area: starters;
}

.fox-chat__messages {
  grid-area: messages;
}

.fox-chat__form {
  grid-area: form;
}

.fox-chat::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(183, 255, 34, 0.1);
  clip-path: inherit;
  pointer-events: none;
}

.fox-chat::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 50%;
  width: 42%;
  height: 0.2rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 18px rgba(183, 255, 34, 0.48);
  pointer-events: none;
}

body:not(.chat-open) .fox-chat {
  opacity: 0;
  pointer-events: none;
  transform: translateX(1.25rem) scale(0.985);
}

body.chat-open .fox-chat {
  box-shadow:
    0 46px 140px rgba(0, 0, 0, 0.68),
    0 0 52px rgba(183, 255, 34, 0.18),
    0 0 18px rgba(255, 122, 0, 0.08);
  transform: translateX(0);
}

.fox-chat__header,
.fox-chat__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fox-chat__header {
  position: relative;
  margin: -1.15rem -1.15rem 0;
  padding: 1.2rem 1.15rem 1rem;
  background:
    linear-gradient(180deg, rgba(183, 255, 34, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(13, 18, 13, 0.94), rgba(7, 10, 7, 0.84));
  border-bottom: 1px solid rgba(183, 255, 34, 0.12);
}

.fox-chat__header::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 34, 0.55), transparent);
}

.fox-chat__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--neon);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fox-chat__header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.fox-chat__title {
  display: grid;
  gap: 0.28rem;
}

.fox-chat__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.85rem;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 122, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--orange-hot);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fox-chat__close,
.fox-chat__starter {
  border: 1px solid rgba(183, 255, 34, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.fox-chat__close {
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange-hot);
  border-color: rgba(255, 122, 0, 0.18);
  background: rgba(255, 122, 0, 0.05);
}

.fox-chat__intro,
.fox-chat__status,
.fox-chat__meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.fox-chat__intro {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(183, 255, 34, 0.12);
  background:
    linear-gradient(180deg, rgba(183, 255, 34, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fox-chat__starters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.fox-chat__starter {
  min-height: 2.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fox-chat__starter:hover,
.fox-chat__starter:focus-visible,
.fox-chat__close:hover,
.fox-chat__close:focus-visible {
  border-color: rgba(183, 255, 34, 0.42);
  background: rgba(183, 255, 34, 0.08);
  box-shadow: 0 0 20px rgba(183, 255, 34, 0.12);
  transform: translateY(-1px);
}

.fox-chat__messages {
  display: grid;
  gap: 0.75rem;
  min-height: 20rem;
  align-content: start;
  padding: 0.95rem;
  border: 1px solid rgba(183, 255, 34, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.2);
  overflow: auto;
}

.fox-chat__messages::-webkit-scrollbar {
  width: 0.55rem;
}

.fox-chat__messages::-webkit-scrollbar-thumb {
  background: rgba(183, 255, 34, 0.2);
  border-radius: 999px;
}

.fox-chat__bubble {
  display: grid;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.85rem 0.95rem;
  line-height: 1.6;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.65rem), calc(100% - 1.1rem) 100%, 0 100%);
}

.fox-chat__bubble p {
  margin: 0;
}

.fox-chat__bubble--assistant {
  justify-self: start;
  background:
    linear-gradient(180deg, rgba(183, 255, 34, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(183, 255, 34, 0.12);
  box-shadow: inset 3px 0 0 rgba(183, 255, 34, 0.34);
}

.fox-chat__bubble--user {
  justify-self: end;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange));
  color: #050603;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.12);
}

.fox-chat__meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fox-chat__bubble--user .fox-chat__meta {
  color: rgba(5, 6, 3, 0.68);
}

.fox-chat__form {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(183, 255, 34, 0.12);
}

.fox-chat__field {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.fox-chat__input {
  width: 100%;
  min-height: 6.6rem;
  resize: vertical;
  border: 1px solid rgba(183, 255, 34, 0.14);
  background: rgba(3, 5, 3, 0.96);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
}

.fox-chat__input::placeholder {
  color: rgba(201, 214, 199, 0.42);
}

.fox-chat__input:focus {
  border-color: rgba(183, 255, 34, 0.48);
  box-shadow: 0 0 0 0.2rem rgba(183, 255, 34, 0.09);
}

.fox-chat__status {
  flex: 1;
  font-size: 0.88rem;
}

.fox-chat__status[data-state="error"] {
  color: #ff9f90;
}

.fox-chat__status[data-state="success"] {
  color: var(--neon-hot);
}

.fox-chat__send {
  min-width: 6rem;
}

html.js.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js.motion-ready body.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  body.chat-open .hero__inner {
    filter: none;
    opacity: 1;
  }

  body.chat-open .hero__inner {
    transform: none;
  }
}

@media (min-width: 981px) {
  body.chat-open .fox-chat {
    left: 50%;
    right: auto;
    width: min(76rem, calc(100vw - 2rem));
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.82fr);
    grid-template-areas:
      "header header"
      "messages intro"
      "messages starters"
      "messages form";
    align-items: start;
    column-gap: 1.15rem;
    transform: translateX(-50%);
  }

  body.chat-open .fox-chat__starters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.chat-open .fox-chat__messages {
    min-height: 30rem;
    align-self: stretch;
  }

  body.chat-open .fox-chat__intro,
  body.chat-open .fox-chat__starters,
  body.chat-open .fox-chat__form {
    align-self: start;
  }

  body.chat-open .fox-chat__form {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 980px) {
  .lead-form__strip {
    grid-template-columns: 1fr;
  }

  .hero__art {
    min-height: 29.6rem;
  }

  .hero__wing {
    width: 10rem;
    height: 8.4rem;
    top: 12rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
  }

  .button--ghost {
    display: none;
  }

  .hero {
    padding-top: 2.55rem;
  }

  .hero__art {
    min-height: 24.8rem;
  }

  .hero__halo {
    width: min(100%, 18rem);
    height: 4.6rem;
    border-width: 0.35rem;
  }

  .hero__sigil {
    inset: 4.4rem 1rem 2.1rem;
  }

  .hero__wing {
    top: 10.5rem;
    width: 7rem;
    height: 6rem;
    opacity: 0.46;
  }

  .hero__wing--left {
    left: -0.2rem;
  }

  .hero__wing--right {
    right: -0.2rem;
  }

  .hero__banner {
    margin-top: -1rem;
    padding: 0.8rem 1.1rem 0.9rem;
  }

  .hero__banner-main {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero__lockup {
    gap: 0;
    margin-top: -0.42rem;
  }

  .hero__lockup::before {
    top: -0.34rem;
    height: 0.38rem;
  }

  .waitlist-panel {
    gap: 1rem;
    padding: 0.55rem 0 0;
    align-items: start;
    margin-top: 0;
  }

  .waitlist-panel__copy {
    gap: 0.35rem;
    padding: 0;
    justify-items: center;
    text-align: center;
  }

  .waitlist-panel__copy::before {
    margin-bottom: 0.5rem;
  }

  .waitlist-panel__copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 9ch;
    text-wrap: balance;
  }

  .lead-form {
    display: grid;
  }

  .lead-form__strip,
  .consent-block,
  .form-status {
    padding-left: 0;
    padding-right: 0;
  }

  .fox-chat {
    right: 0.6rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: calc(100vw - 1.2rem);
    max-height: none;
    padding: 0.9rem;
    clip-path: none;
  }

  .fox-chat::after {
    top: 0.75rem;
    width: 52%;
  }

  .fox-chat__header {
    margin: -0.9rem -0.9rem 0;
    padding: 1rem 0.9rem 0.9rem;
  }

  .fox-chat__header h2 {
    font-size: 1.55rem;
  }

  .fox-chat__starters {
    grid-template-columns: 1fr;
  }

  .fox-chat__messages {
    padding: 0.8rem;
  }

  .fox-chat__header,
  .fox-chat__footer {
    align-items: flex-start;
  }

  .fox-chat__footer {
    flex-direction: column;
  }

  .fox-chat__send,
  .lead-form__strip .button {
    width: 100%;
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

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