:root {
  --bg: #010201;
  --panel: #060706;
  --panel-soft: #0b0c0a;
  --text: #f6f5ef;
  --muted: #8a8a84;
  --faint: #4f514b;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --lime: #c9ff4c;
  --lime-soft: rgba(201, 255, 76, 0.18);
  --mx: 50%;
  --my: 35%;
  --progressive-blur-width: 54px;
  --progressive-blur-tint: rgba(1, 2, 1, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
footer {
  scroll-margin-top: 28px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle 360px at var(--mx) var(--my), rgba(97, 255, 101, 0.07), transparent 68%),
    linear-gradient(180deg, #000 0%, var(--bg) 34%, #000 100%);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(201, 255, 76, 0.78);
  outline-offset: 4px;
}

.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;
}

.progressive-blur-x {
  position: relative;
}

.progressive-blur-x::before,
.progressive-blur-x::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 8;
  width: var(--progressive-blur-width);
  pointer-events: none;
  opacity: var(--progressive-blur-opacity, 0.92);
  background: var(--progressive-blur-tint);
  -webkit-backdrop-filter: blur(13px) saturate(1.05);
  backdrop-filter: blur(13px) saturate(1.05);
}

.progressive-blur-x::before {
  left: 0;
  opacity: var(--progressive-blur-left-opacity, 0.58);
  -webkit-mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.74) 42%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.74) 42%, transparent 100%);
}

.progressive-blur-x::after {
  right: 0;
  opacity: var(--progressive-blur-right-opacity, 0.92);
  -webkit-mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.74) 42%, transparent 100%);
  mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.74) 42%, transparent 100%);
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    filter 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.page-shell {
  position: relative;
  width: min(100%, 1480px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 112px;
  overflow: hidden;
}

.aurora-ring {
  position: absolute;
  z-index: 0;
  top: -190px;
  left: 50%;
  width: 720px;
  height: 280px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.28;
  filter: blur(1px) saturate(1.08);
}

.aurora-ring::before,
.aurora-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 920px 920px 0 0;
}

.aurora-ring::before {
  background:
    repeating-radial-gradient(ellipse at 50% 100%,
      transparent 0 58px,
      rgba(202, 255, 76, 0.11) 60px 72px,
      rgba(62, 255, 114, 0.16) 74px 86px,
      rgba(255, 187, 56, 0.11) 90px 104px,
      rgba(67, 101, 255, 0.09) 108px 120px,
      transparent 124px 146px),
    radial-gradient(ellipse at 50% 100%, rgba(210, 255, 90, 0.44), transparent 59%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 50%, transparent 72%);
}

.aurora-ring::after {
  background-image:
    linear-gradient(86deg, transparent 0 10%, rgba(0, 0, 0, 0.56) 13% 15%, transparent 18% 100%),
    linear-gradient(97deg, transparent 0 42%, rgba(0, 0, 0, 0.34) 45% 47%, transparent 50% 100%);
  mix-blend-mode: multiply;
}

.site-header {
  --nav-side-offset: 61px;
  position: fixed;
  z-index: 50;
  top: auto;
  bottom: clamp(16px, 2vw, 24px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100vw - 154px);
  min-height: 64px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(31, 32, 29, 0.97), rgba(9, 10, 9, 0.96)),
    radial-gradient(circle at 18% 0%, rgba(201, 255, 76, 0.13), transparent 34%);
  isolation: isolate;
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(calc(-50% - var(--nav-side-offset)));
  animation: navEnter 760ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.44),
    0 0 46px rgba(201, 255, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateX(calc(-50% - var(--nav-side-offset))) translateY(-2px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 1px 12px auto;
  z-index: 2;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: calc(50% + var(--nav-side-offset));
  bottom: -34px;
  z-index: -1;
  width: 100vw;
  height: 168px;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 62%, rgba(201, 255, 76, 0.055), transparent 44%),
    linear-gradient(180deg, transparent 0%, rgba(1, 2, 1, 0.34) 34%, rgba(1, 2, 1, 0.82) 100%);
  opacity: 0.96;
  pointer-events: none;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 14%, #000 42%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 14%, #000 42%, #000 100%);
}

.site-header:hover::after {
  opacity: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
}

.site-header .logo {
  display: none;
}

.site-header .logo:hover {
  transform: none;
}

.logo img {
  display: block;
  width: auto;
  height: 26px;
}

.site-header .logo img {
  width: auto;
  height: 14px;
}

.nav-links {
  --progressive-blur-width: 0px;
  --progressive-blur-left-opacity: 0;
  --progressive-blur-right-opacity: 0;
  --progressive-blur-tint: rgba(12, 13, 12, 0.64);
  display: flex;
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: start;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  color: rgba(246, 245, 239, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.site-header .progressive-blur-x::before,
.site-header .progressive-blur-x::after {
  display: none;
}

.nav-links a {
  --dock-scale: 1;
  --dock-y: 0px;
  position: relative;
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  white-space: nowrap;
  transform: translateY(var(--dock-y)) scale(var(--dock-scale));
  transform-origin: center bottom;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 3px 1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.085);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-links a:hover {
  color: var(--text);
  --dock-y: -1px;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.dock-nav.is-dock-active a {
  transition-duration: 220ms;
}

.dock-nav.is-dock-active a.is-dock-target {
  --dock-scale: 1;
  --dock-y: 0px;
  color: var(--text);
}

.dock-nav.is-dock-active a.is-dock-neighbor {
  --dock-scale: 1;
  --dock-y: 0px;
  color: rgba(246, 245, 239, 0.9);
}

.dock-nav.is-dock-active a.is-dock-target::before,
.dock-nav.is-dock-active a.is-dock-neighbor::before {
  opacity: 0;
  transform: scaleX(0.72);
}

.dock-nav.is-dock-active a.is-dock-target:hover::before,
.dock-nav.is-dock-active a.is-dock-neighbor:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a span {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  color: var(--lime);
  font-size: 0;
  line-height: 1;
  transform: none;
  transition: transform 180ms ease;
}

.nav-links a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
  transform: translate(-58%, -50%) rotate(45deg);
}

.nav-links a:hover span {
  transform: translateX(3px);
}

.pill-button {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #091004;
  font-size: 13px;
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(201, 255, 76, 0.22), 0 16px 38px rgba(164, 255, 64, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pill-button::after {
  content: "";
  position: absolute;
  inset: -58% -42%;
  z-index: 1;
  background: linear-gradient(105deg, transparent 37%, rgba(255, 255, 255, 0.58) 50%, transparent 63%);
  opacity: 0.34;
  pointer-events: none;
  transform: translateX(-128%) rotate(8deg);
  animation: buttonShimmer 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.pill-button:disabled::after {
  opacity: 0;
  animation: none;
}

.pill-button > * {
  position: relative;
  z-index: 2;
}

.pill-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(201, 255, 76, 0.3), 0 20px 48px rgba(164, 255, 64, 0.19);
}

@keyframes buttonShimmer {
  0%,
  54% {
    transform: translateX(-128%) rotate(8deg);
  }

  76%,
  100% {
    transform: translateX(128%) rotate(8deg);
  }
}

.header-button {
  justify-self: end;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: end;
  gap: 6px;
}

.interactive-hover-button {
  --interactive-bg: var(--lime);
  --interactive-fg: #071002;
  --interactive-fill: #071002;
  --interactive-hover-fg: var(--lime);
  --interactive-border: rgba(201, 255, 76, 0.32);
  --interactive-shadow: 0 0 0 1px rgba(201, 255, 76, 0.18), 0 16px 38px rgba(164, 255, 64, 0.14);
  --interactive-shadow-hover: 0 0 0 1px rgba(201, 255, 76, 0.28), 0 20px 48px rgba(164, 255, 64, 0.2);
  position: relative;
  display: inline-flex;
  min-height: 44px;
  min-width: 154px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px 0 32px;
  border: 1px solid var(--interactive-border);
  border-radius: 999px;
  background: var(--interactive-bg);
  box-shadow: var(--interactive-shadow);
  color: var(--interactive-fg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.interactive-hover-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--interactive-fill);
  transform: translateY(-50%) scale(1);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.65, 0, 0.076, 1);
}

.interactive-hover-button::after {
  display: none;
}

.interactive-hover-button:hover {
  box-shadow: var(--interactive-shadow-hover);
  transform: translateY(-1px);
}

.interactive-hover-button:hover::before {
  transform: translateY(-50%) scale(34);
}

.interactive-hover-button .button-label,
.interactive-hover-button > .button-arrow {
  position: relative;
  z-index: 2;
  transition:
    opacity 260ms ease,
    transform 340ms cubic-bezier(0.65, 0, 0.076, 1);
}

.interactive-hover-button .button-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  color: currentColor;
  font-size: 0;
  line-height: 1;
}

.interactive-hover-button .button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
  transform: translate(-62%, -50%) rotate(45deg);
}

.interactive-hover-button .button-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--interactive-hover-fg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 260ms ease,
    transform 340ms cubic-bezier(0.65, 0, 0.076, 1);
}

.interactive-hover-button .button-hover .button-arrow {
  color: var(--interactive-hover-fg);
}

.interactive-hover-button:hover .button-label,
.interactive-hover-button:hover > .button-arrow {
  opacity: 0;
  transform: translateX(38px);
}

.interactive-hover-button:hover .button-hover {
  opacity: 1;
  transform: translateX(0);
}

.interactive-hover-button:disabled:hover::before {
  transform: translateY(-50%) scale(1);
}

.interactive-hover-button:disabled:hover .button-label,
.interactive-hover-button:disabled:hover > .button-arrow {
  opacity: 1;
  transform: none;
}

.interactive-hover-button:disabled:hover .button-hover {
  opacity: 0;
  transform: translateX(18px);
}

@keyframes navEnter {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(calc(-50% - var(--nav-side-offset))) translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(calc(-50% - var(--nav-side-offset))) translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 80px;
  min-height: 620px;
  padding: 106px 130px 78px;
}

.hero-copy {
  position: relative;
  max-width: 610px;
}

.hero-logo {
  position: absolute;
  left: 0;
  top: -74px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
}

.hero-logo img {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(118, 255, 64, 0.16);
}

.hero h1,
.details h2,
.access-panel h2 {
  margin: 0;
  color: var(--text);
  font-weight: 200;
  line-height: 0.96;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 70px;
}

.hero strong,
.details strong,
.access-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
}

.hero-word-line {
  display: block;
  min-height: 0.98em;
}

.rotating-word {
  display: inline-block;
  max-width: 100%;
  perspective: 900px;
  white-space: nowrap;
  transform-style: preserve-3d;
}

.text-3d-flip {
  display: inline-block;
  line-height: 0.94;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateX(0deg) translateY(0);
  transform-origin: center 54%;
  transition:
    opacity 160ms ease,
    transform 640ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.rotating-word.is-flipping .text-3d-flip {
  opacity: 0;
  transform: rotateX(86deg) translateY(-0.04em);
}

.rotating-word:hover .text-3d-flip {
  transform: rotateX(12deg) translateY(-0.02em);
}

.hero-copy > p {
  width: min(100%, 430px);
  margin: 24px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.seo-intro {
  position: relative;
  z-index: 1;
  width: calc(100% - 260px);
  margin: -24px auto 58px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-soft);
}

.seo-intro p {
  width: min(100%, 760px);
  margin: 0;
  color: rgba(246, 245, 239, 0.58);
  font-size: 15px;
  line-height: 1.68;
}

.waitlist-block {
  width: min(100%, 510px);
}

.waitlist-form {
  display: flex;
  width: min(100%, 430px);
  height: 52px;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.waitlist-form:focus-within {
  border-color: rgba(201, 255, 76, 0.42);
  box-shadow: 0 0 0 4px rgba(201, 255, 76, 0.07);
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 22px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

.waitlist-form input::placeholder {
  color: #686a64;
}

.waitlist-form .pill-button {
  height: 42px;
  min-height: 42px;
}

.waitlist-form .interactive-hover-button {
  min-width: 154px;
  padding: 0 18px;
}

.waitlist-form .interactive-hover-button::before,
.waitlist-form .interactive-hover-button .button-hover {
  display: none;
}

.waitlist-form .interactive-hover-button:hover .button-label,
.waitlist-form .interactive-hover-button:hover > .button-arrow {
  opacity: 1;
  transform: none;
}

.waitlist-form .pill-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--lime);
  font-size: 12px;
}

.fazier-badge {
  width: fit-content;
  line-height: 0;
}

.fazier-badge img {
  display: block;
  width: 120px;
  aspect-ratio: 103 / 44;
  height: auto;
}

.fazier-badge--desktop {
  display: inline-flex;
  margin-top: 4px;
}

.fazier-badge--mobile {
  display: none;
}

.referral-share {
  width: min(100%, 430px);
}

.referral-link-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.referral-link-box a {
  min-width: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.referral-copy-button {
  height: 42px;
  min-height: 42px;
  min-width: 142px;
  padding: 0 18px;
}

.referral-copy-button::before,
.referral-copy-button .button-hover {
  display: none;
}

.referral-copy-button:hover .button-label,
.referral-copy-button:hover > .button-arrow {
  opacity: 1;
  transform: none;
}

.referral-copy-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--lime);
  font-size: 12px;
}

body.waitlist-dialog-open {
  overflow: hidden;
}

.waitlist-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.waitlist-dialog[hidden] {
  display: none;
}

.waitlist-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-dialog-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle 520px at 50% 46%, rgba(201, 255, 76, 0.12), transparent 64%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.waitlist-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 28px;
  border: 1px solid rgba(201, 255, 76, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(15, 19, 12, 0.96), rgba(3, 5, 3, 0.98)),
    var(--panel);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.56),
    0 0 80px rgba(201, 255, 76, 0.12);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.waitlist-dialog.is-open .waitlist-dialog-panel {
  transform: translateY(0) scale(1);
}

.waitlist-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  pointer-events: auto;
}

.waitlist-dialog-close::before,
.waitlist-dialog-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  content: "";
}

.waitlist-dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.waitlist-dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.waitlist-dialog-panel h2 {
  max-width: 360px;
  margin: 8px 0 18px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

.waitlist-dialog-panel .waitlist-form {
  width: 100%;
  max-width: 100%;
}

.waitlist-dialog-status {
  margin-bottom: 18px;
}

.waitlist-dialog-panel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.waitlist-dialog-panel small a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 4px;
}

.fomo-stream {
  position: relative;
  width: min(100%, 430px);
  min-height: 0;
  margin-top: 0;
  overflow: visible;
  pointer-events: none;
}

.fomo-stream.is-active {
  min-height: 92px;
  margin-top: 10px;
}

.fomo-bubble {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: min(100%, 360px);
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(12, 14, 12, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 34px rgba(144, 255, 88, 0.08);
  opacity: 0;
  transform: translate3d(var(--bubble-x, 0), 14px, 0) scale(0.98);
  transition: opacity 280ms ease, transform 280ms ease;
  backdrop-filter: blur(16px);
}

.fomo-bubble.is-visible {
  opacity: 1;
  transform: translate3d(var(--bubble-x, 0), 0, 0) scale(1);
}

.fomo-bubble.is-leaving {
  opacity: 0;
  transform: translate3d(calc(var(--bubble-x, 0) + var(--bubble-drift, 0)), -16px, 0) scale(0.98);
}

.fomo-bubble + .fomo-bubble {
  top: 34px;
}

.fomo-bubble + .fomo-bubble + .fomo-bubble {
  top: 58px;
}

.fomo-bubble img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.fomo-copy {
  min-width: 0;
}

.fomo-copy b {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fomo-copy span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.mini-social strong {
  color: var(--text);
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.mini-avatars {
  display: flex;
  min-width: 98px;
}

.mini-avatars img {
  width: 34px;
  height: 34px;
  border: 2px solid #070907;
  border-radius: 50%;
  background: #131713;
  object-fit: cover;
}

.mini-avatars img + img {
  margin-left: -10px;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 430px;
  height: 560px;
  border-radius: 42%;
  background:
    radial-gradient(circle at 50% 78%, rgba(126, 255, 176, 0.28), transparent 30%),
    radial-gradient(circle at 30% 86%, rgba(248, 182, 69, 0.22), transparent 24%),
    radial-gradient(circle at 76% 86%, rgba(201, 55, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(56, 255, 105, 0.12), transparent 54%);
  filter: blur(36px);
  opacity: 0.9;
}

.phone-shell {
  position: relative;
  isolation: isolate;
  width: 346px;
  height: 688px;
  padding: 11px;
  border-radius: 48px;
  background: linear-gradient(160deg, #151914, #020302 43%, #141816);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 44px 90px rgba(0, 0, 0, 0.7);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(140px circle at 18% 12%, rgba(201, 255, 76, 0.72), transparent 58%),
    radial-gradient(130px circle at 82% 88%, rgba(125, 244, 255, 0.38), transparent 56%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(201, 255, 76, 0.2), transparent 72%);
  background-size: 240% 240%;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: shineBorder 8.5s linear infinite;
}

.phone-screen {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 17% 92%, rgba(242, 187, 72, 0.86), transparent 15%),
    radial-gradient(circle at 38% 93%, rgba(97, 255, 131, 0.9), transparent 18%),
    radial-gradient(circle at 82% 93%, rgba(214, 32, 228, 0.75), transparent 17%),
    linear-gradient(180deg, #010101 0%, #070807 72%, #030403 100%);
}

.phone-screen-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-prompt-bubbles {
  position: absolute;
  inset: 11px;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
}

.phone-prompt-bubbles span {
  position: absolute;
  display: inline-flex;
  max-width: 176px;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(29, 31, 28, 0.84), rgba(5, 6, 5, 0.7)),
    radial-gradient(circle at 18% 0%, rgba(201, 255, 76, 0.2), transparent 42%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  opacity: 0;
  text-align: center;
  text-wrap: balance;
  transform: translate3d(0, 14px, 0) scale(0.96);
  animation: phonePromptBubble 16s cubic-bezier(0.2, 0.82, 0.2, 1) infinite;
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
}

.phone-prompt-bubbles span::after {
  content: "";
  position: absolute;
  inset: 1px 10px auto;
  height: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.8;
}

.phone-prompt-bubbles span:nth-child(1) {
  top: 110px;
  left: -28px;
  animation-delay: 0s;
}

.phone-prompt-bubbles span:nth-child(2) {
  top: 175px;
  right: -34px;
  animation-delay: 2.3s;
}

.phone-prompt-bubbles span:nth-child(3) {
  top: 258px;
  left: -38px;
  animation-delay: 4.6s;
}

.phone-prompt-bubbles span:nth-child(4) {
  top: 334px;
  right: -42px;
  animation-delay: 6.9s;
}

.phone-prompt-bubbles span:nth-child(5) {
  top: 372px;
  left: 20px;
  animation-delay: 9.2s;
}

.phone-prompt-bubbles span:nth-child(6) {
  top: 292px;
  right: 10px;
  animation-delay: 11.5s;
}

.phone-prompt-bubbles span:nth-child(7) {
  top: 224px;
  left: 50%;
  --prompt-x: -50%;
  animation-delay: 13.8s;
  transform: translate3d(-50%, 14px, 0) scale(0.96);
}

.phone-status {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 25px 30px 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-icons i {
  display: block;
  width: 11px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.86);
}

.status-icons i:nth-child(2) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.86);
}

.status-icons i:nth-child(3) {
  width: 18px;
  height: 8px;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 244px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 150px;
  height: 150px;
}

.orbit-two {
  width: 265px;
  height: 265px;
}

.orbit-three {
  width: 385px;
  height: 385px;
}

.character {
  position: absolute;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 13px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.36);
}

.char-one {
  top: 78px;
  left: 143px;
}

.char-two {
  top: 198px;
  left: 41px;
}

.char-three {
  top: 199px;
  right: 82px;
}

.char-four {
  top: 315px;
  right: 28px;
}

.app-logo {
  position: absolute;
  z-index: 4;
  top: 260px;
  left: 50%;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.auth-panel {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 52px;
  left: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-panel h2 {
  position: relative;
  width: 100%;
  min-height: 72px;
  margin: 0 0 2px;
  padding: 12px 18px;
  background: rgba(19, 20, 18, 0.86);
  color: var(--text);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.auth-panel h2::before,
.auth-panel h2::after {
  content: "";
  position: absolute;
  top: 0;
  width: 44px;
  height: 100%;
  background: rgba(19, 20, 18, 0.86);
}

.auth-panel h2::before {
  left: -44px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.auth-panel h2::after {
  right: -44px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.auth-panel button {
  display: grid;
  grid-template-columns: 22px 1fr 16px;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  cursor: pointer;
}

.apple-mark {
  width: 13px;
  height: 16px;
  justify-self: center;
  border-radius: 48% 48% 54% 54%;
  background: #fff;
}

.google-mark {
  justify-self: center;
  color: #fff;
  font-weight: 800;
}

.auth-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.ticker {
  --progressive-blur-width: 108px;
  --progressive-blur-left-opacity: 0.82;
  --progressive-blur-right-opacity: 0.82;
  --progressive-blur-tint: rgba(1, 2, 1, 0.72);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 62px;
  min-height: 82px;
  padding: 0 110px;
  font-size: 23px;
  white-space: nowrap;
  animation: drift 18s linear infinite alternate;
}

.ticker-track b {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(201, 255, 76, 0.7);
}

.ticker-track em {
  color: rgba(255, 255, 255, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

@keyframes drift {
  from {
    transform: translateX(-32px);
  }

  to {
    transform: translateX(24px);
  }
}

@keyframes shineBorder {
  0% {
    background-position: 0% 18%;
  }

  50% {
    background-position: 100% 82%;
  }

  100% {
    background-position: 0% 18%;
  }
}

@keyframes phonePromptBubble {
  0%,
  7% {
    opacity: 0;
    transform: translate3d(var(--prompt-x, 0), 14px, 0) scale(0.96);
    filter: blur(6px);
  }

  13%,
  28% {
    opacity: 1;
    transform: translate3d(var(--prompt-x, 0), 0, 0) scale(1);
    filter: blur(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translate3d(var(--prompt-x, 0), -16px, 0) scale(0.97);
    filter: blur(5px);
  }
}

@keyframes featureRouletteChange {
  from {
    opacity: 0.62;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  gap: 86px;
  align-items: center;
  padding: 96px 130px 118px;
}

.details-copy-block {
  max-width: 620px;
}

.details h2 {
  width: min(100%, 640px);
  font-size: 58px;
  line-height: 1.05;
}

.details-copy {
  width: min(100%, 480px);
  margin: 30px 0 0;
  color: rgba(246, 245, 239, 0.66);
  font-size: 16px;
  line-height: 1.62;
}

.details-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 34px;
}

.details-points span,
.feature-chip {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(246, 245, 239, 0.62);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.feature-chip {
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.feature-chip:hover,
.feature-chip.is-active {
  border-color: rgba(201, 255, 76, 0.3);
  color: rgba(246, 245, 239, 0.86);
  background: rgba(201, 255, 76, 0.075);
}

.feature-chip:focus-visible {
  outline: 2px solid rgba(201, 255, 76, 0.55);
  outline-offset: 3px;
}

.feature-roulette {
  display: none;
}

.feature-seo-copy {
  display: none;
}

.feature-notes {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.feature-notes article {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.feature-notes h3 {
  margin: 0;
  color: rgba(246, 245, 239, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-notes p {
  margin: 0;
  color: rgba(246, 245, 239, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.details-chat {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.details-chat::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 76, 0.16), transparent 68%);
  filter: blur(34px);
  opacity: 0.58;
  pointer-events: none;
}

.details-chat-frame {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: min(100%, 330px);
  padding: 11px;
  aspect-ratio: 684 / 1458;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(160deg, #151914, #020302 43%, #141816);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 34px 100px rgba(0, 0, 0, 0.58);
}

.details-chat-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(140px circle at 18% 12%, rgba(201, 255, 76, 0.72), transparent 58%),
    radial-gradient(130px circle at 82% 88%, rgba(125, 244, 255, 0.38), transparent 56%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(201, 255, 76, 0.2), transparent 72%);
  background-size: 240% 240%;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: shineBorder 8.5s linear infinite;
}

.details-chat-screen {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 17% 92%, rgba(242, 187, 72, 0.78), transparent 15%),
    radial-gradient(circle at 38% 93%, rgba(97, 255, 131, 0.74), transparent 18%),
    radial-gradient(circle at 82% 93%, rgba(214, 32, 228, 0.6), transparent 17%),
    linear-gradient(180deg, #010101 0%, #070807 72%, #030403 100%);
}

.details-chat-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-0.35%) scale(1.065);
}

.access-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: calc(100% - 260px);
  min-height: 430px;
  margin: 0 auto 136px;
  padding: 78px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(90deg, transparent, rgba(92, 255, 98, 0.06), transparent),
    rgba(255, 255, 255, 0.01);
  text-align: center;
}

.access-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(260px circle at 0% 0%, rgba(201, 255, 76, 0.48), transparent 54%),
    radial-gradient(220px circle at 100% 100%, rgba(125, 244, 255, 0.22), transparent 52%),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  background-size: 260% 260%;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: shineBorder 11s linear infinite;
}

.panel-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 420px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201, 255, 76, 0.14), transparent 63%);
  filter: blur(28px);
}

.eyebrow {
  position: relative;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.access-panel h2 {
  position: relative;
  font-size: 74px;
}

.access-panel > p:not(.eyebrow) {
  position: relative;
  width: min(100%, 470px);
  margin: 28px auto 28px;
  color: var(--muted);
  font-size: 14px;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.access-panel small {
  position: relative;
  margin-top: 31px;
  color: rgba(255, 255, 255, 0.27);
  font-size: 11px;
}

.access-panel small a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-decoration-color: rgba(201, 255, 76, 0.38);
  text-underline-offset: 3px;
}

.faq-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
  width: calc(100% - 260px);
  margin: 0 auto 82px;
  padding-top: 78px;
  border-top: 1px solid var(--line-soft);
}

.faq-heading {
  align-self: start;
}

.faq-section h2 {
  width: min(100%, 420px);
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 200;
  line-height: 0.98;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.024);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 42px rgba(0, 0, 0, 0.16);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(201, 255, 76, 0.2);
  background:
    linear-gradient(180deg, rgba(201, 255, 76, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.034);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 19px 20px 19px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  margin: 0;
  color: rgba(246, 245, 239, 0.9);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.faq-plus {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background:
    radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.13), transparent 58%),
    rgba(0, 0, 0, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.3);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(246, 245, 239, 0.76);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-plus {
  border-color: rgba(201, 255, 76, 0.28);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 58px 22px 24px;
}

.faq-answer p {
  margin: 0;
  color: rgba(246, 245, 239, 0.56);
  font-size: 14px;
  line-height: 1.55;
}

.characters-slider {
  --character-cycle-ms: 5200ms;
  --character-drag-x: 0px;
  --character-drag-copy-x: 0px;
  position: relative;
  z-index: 1;
  width: min(calc(100% - 128px), 1240px);
  margin: 78px auto 86px;
  touch-action: pan-y;
}

.characters-slider + .details {
  padding-top: 0;
}

.characters-panel {
  position: relative;
  --character-accent: #a8ff00;
  --character-glow: rgba(168, 255, 0, 0.18);
  min-height: 700px;
  padding: 70px 72px 54px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 48% 16%, var(--character-glow), transparent 34%),
    radial-gradient(circle at 43% 62%, color-mix(in srgb, var(--character-accent) 8%, transparent), transparent 33%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, transparent, rgba(92, 255, 98, 0.045), transparent),
    rgba(255, 255, 255, 0.01);
  color: var(--text);
  isolation: isolate;
  transition: background 320ms ease;
}

.characters-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(220px circle at 20% 16%, color-mix(in srgb, var(--character-accent) 44%, transparent), transparent 56%),
    radial-gradient(240px circle at 88% 82%, rgba(255, 255, 255, 0.13), transparent 58%);
  background-size: 280% 280%;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: shineBorder 12s linear infinite reverse;
}

.characters-panel::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  z-index: 0;
  width: 560px;
  height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--character-glow), transparent 63%);
  filter: blur(28px);
  transition: background 320ms ease;
}

.characters-bg-word {
  position: absolute;
  z-index: 1;
  left: 57%;
  bottom: 98px;
  color: rgba(255, 255, 255, 0.022);
  font-size: clamp(220px, 26vw, 430px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.characters-stripe {
  display: none;
}

.characters-index {
  position: absolute;
  top: 78px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.36);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.characters-index p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.characters-index p::after {
  content: " -";
}

.characters-index strong {
  display: block;
  margin-top: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.character-media {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(52vw, 640px);
  height: 100%;
  margin: 0;
  pointer-events: none;
}

.character-image-halo {
  position: absolute;
  left: 35%;
  bottom: 8%;
  width: 470px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 38%, rgba(201, 255, 76, 0.16), transparent 34%),
    radial-gradient(circle at 48% 65%, rgba(92, 255, 98, 0.09), transparent 52%);
  filter: blur(28px);
  opacity: 0.9;
  transform: translateX(-50%);
}

.character-image {
  position: absolute;
  --character-art-scale: 1;
  --character-shift-x: 0px;
  --character-shift-y: 0px;
  display: block;
  left: var(--character-art-left, -80px);
  bottom: var(--character-art-bottom, -84px);
  width: var(--character-art-width, 720px);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  transform: translate3d(calc(var(--character-shift-x) + var(--character-drag-x)), var(--character-shift-y), 0) scale(var(--character-art-scale));
  transform-origin: left bottom;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46));
  box-shadow: none;
  transition: opacity 220ms ease, transform 320ms ease, filter 320ms ease;
}

.character-copy {
  position: absolute;
  z-index: 4;
  left: clamp(315px, 34vw, 455px);
  bottom: 142px;
  width: min(50vw, 610px);
  min-height: 276px;
  padding: 24px 30px 86px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 220ms ease, transform 320ms ease;
}

.character-copy > p:not(.character-stats) {
  position: absolute;
  top: -34px;
  left: 2px;
  display: block;
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.character-copy h2 {
  margin: 0;
  overflow-wrap: normal;
  color: rgba(246, 245, 239, 0.95);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 200;
  line-height: 0.96;
  letter-spacing: 0;
  white-space: nowrap;
}

.character-stats {
  --progressive-blur-width: 42px;
  --progressive-blur-left-opacity: 0;
  --progressive-blur-right-opacity: 0.82;
  --progressive-blur-tint: rgba(5, 7, 5, 0.34);
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 6px;
  max-width: 100%;
  margin: 18px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.character-stats::-webkit-scrollbar {
  display: none;
}

.character-stat {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--character-accent) 22%, rgba(255, 255, 255, 0.07));
  border-radius: 999px;
  background:
    linear-gradient(100deg, color-mix(in srgb, var(--character-accent) 11%, rgba(16, 23, 16, 0.82)), rgba(12, 14, 11, 0.76)),
    rgba(12, 15, 11, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 8px 18px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(246, 245, 239, 0.9);
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.character-more {
  display: inline-flex;
  --interactive-bg: var(--lime);
  --interactive-fg: #071002;
  --interactive-fill: #071002;
  --interactive-hover-fg: var(--lime);
  --interactive-border: rgba(201, 255, 76, 0.32);
  --interactive-shadow: 0 0 0 1px rgba(201, 255, 76, 0.18), 0 16px 38px rgba(164, 255, 64, 0.14);
  --interactive-shadow-hover: 0 0 0 1px rgba(201, 255, 76, 0.28), 0 20px 48px rgba(164, 255, 64, 0.2);
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 54px;
  bottom: 12px;
  min-width: 154px;
  min-height: 44px;
  margin-top: 0;
  padding: 0 18px 0 32px;
  font-size: 13px;
  font-weight: 800;
}

.character-more:hover {
  transform: translateY(-1px);
  box-shadow: var(--interactive-shadow-hover);
}

.button-arrow-icon {
  width: 16px;
  height: 16px;
}

.character-controls {
  position: absolute;
  left: clamp(330px, 39vw, 520px);
  bottom: 58px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(11, 18, 13, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 320ms ease;
}

.character-arrow,
.character-thumb {
  border: 0;
  cursor: pointer;
}

.character-arrow {
  display: grid;
  width: 46px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transition: transform 180ms ease, background 180ms ease;
}

.character-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.character-arrow-icon {
  width: 20px;
  height: 20px;
}

.character-arrow-icon.is-left {
  transform: rotate(180deg);
}

.character-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.character-thumb {
  position: relative;
  width: 66px;
  height: 40px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #081008;
  padding: 0;
  transition: border-color 180ms ease, transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  opacity: 0.58;
}

.character-thumb::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 4px;
  left: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--character-accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.character-thumb.is-active {
  border-color: var(--character-accent);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--character-accent) 18%, transparent);
}

.character-thumb.is-active.is-progressing::after {
  opacity: 1;
  animation: thumbProgress var(--character-cycle-ms) linear forwards;
}

.characters-slider.is-paused .character-thumb.is-active.is-progressing::after {
  animation-play-state: paused;
}

.character-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.45);
}

.characters-slider.is-switching .character-image {
  opacity: 0;
  --character-shift-x: -18px;
  --character-shift-y: 10px;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46)) blur(4px);
}

.characters-slider.is-switching .character-copy {
  opacity: 0;
}

.characters-slider.is-switching .character-copy {
  transform: translateY(10px);
}

.characters-slider.is-switching .character-thumb.is-active {
  animation: characterThumbSwitch 360ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.characters-slider.is-dragging .character-copy {
  transform: translateX(var(--character-drag-copy-x));
}

.characters-slider.is-entering .character-image {
  animation: none;
}

.characters-slider.is-entering .character-copy > p:not(.character-stats) {
  animation: characterTextIn 420ms cubic-bezier(0.18, 0.86, 0.22, 1) 80ms both;
}

.characters-slider.is-entering .character-copy h2 {
  animation: characterNameIn 640ms cubic-bezier(0.18, 0.86, 0.22, 1) 120ms both;
}

.characters-slider.is-entering .character-stat {
  animation: characterBadgeIn 420ms cubic-bezier(0.2, 0.86, 0.24, 1) both;
}

.characters-slider.is-entering .character-stat:nth-child(1) {
  animation-delay: 220ms;
}

.characters-slider.is-entering .character-stat:nth-child(2) {
  animation-delay: 260ms;
}

.characters-slider.is-entering .character-stat:nth-child(3) {
  animation-delay: 300ms;
}

.characters-slider.is-entering .character-stat:nth-child(4) {
  animation-delay: 340ms;
}

.characters-slider.is-entering .character-stat:nth-child(5) {
  animation-delay: 380ms;
}

.characters-slider.is-entering .character-stat:nth-child(6) {
  animation-delay: 420ms;
}

.characters-slider.is-entering .character-more {
  animation: characterButtonIn 520ms cubic-bezier(0.18, 0.86, 0.22, 1) 480ms both;
}

@keyframes characterArtIn {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--character-shift-x) - 30px), calc(var(--character-shift-y) + 12px), 0) scale(calc(var(--character-art-scale) * 0.985));
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46)) blur(5px);
  }

  to {
    opacity: 1;
    transform: translate3d(var(--character-shift-x), var(--character-shift-y), 0) scale(var(--character-art-scale));
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46));
  }
}

@keyframes characterTextIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes characterNameIn {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes characterBadgeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes characterButtonIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes characterThumbSwitch {
  0% {
    transform: translateY(-1px) scale(0.94);
    opacity: 0.72;
  }

  62% {
    transform: translateY(-2px) scale(1.05);
    opacity: 1;
  }

  100% {
    transform: translateY(-1px) scale(1);
    opacity: 1;
  }
}

@keyframes thumbProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.content-page {
  --page-accent: var(--lime);
  --page-accent-soft: rgba(201, 255, 76, 0.14);
  position: relative;
  z-index: 1;
  min-height: 640px;
  padding: 98px 130px 116px;
}

.content-page--privacy {
  --page-accent: #7df4ff;
  --page-accent-soft: rgba(125, 244, 255, 0.13);
}

.content-page--contact {
  --page-accent: #ffce5c;
  --page-accent-soft: rgba(255, 206, 92, 0.13);
}

.content-page--about {
  --page-accent: #ff7aa8;
  --page-accent-soft: rgba(255, 122, 168, 0.12);
}

.content-page--brand-kit {
  --page-accent: #c9ff4c;
  --page-accent-soft: rgba(201, 255, 76, 0.16);
}

.content-page--seo {
  --page-accent: #c9ff4c;
  --page-accent-soft: rgba(201, 255, 76, 0.12);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: 440px;
  align-items: end;
  padding: clamp(42px, 5.8vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 34px 0 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 52%),
    radial-gradient(circle at 84% 18%, var(--page-accent-soft), transparent 34%),
    rgba(255, 255, 255, 0.012);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 35%, #000, transparent 72%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  z-index: -1;
  width: 420px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--page-accent-soft), transparent 66%);
  filter: blur(22px);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(64px, 8.4vw, 126px);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: 0;
}

.page-hero-copy > p:not(.eyebrow) {
  width: min(100%, 610px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.42;
}

.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.page-hero-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 30%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--page-accent) 8%, transparent);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.page-hero small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 270px;
  place-items: center;
}

.hero-terminal,
.contact-signal-card {
  width: min(100%, 360px);
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 24%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--page-accent) 8%, transparent), transparent),
    rgba(0, 0, 0, 0.44);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero-terminal span,
.contact-signal-card span,
.brand-downloads span,
.about-story span,
.about-roadmap > span {
  display: block;
  margin-bottom: 18px;
  color: var(--page-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-terminal strong,
.contact-signal-card strong {
  display: block;
  color: var(--text);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.hero-terminal p,
.contact-signal-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-orbit {
  position: relative;
  display: grid;
  width: min(72vw, 330px);
  aspect-ratio: 1;
  place-items: center;
}

.privacy-orbit span {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--page-accent) 28%, transparent);
  border-radius: 50%;
}

.privacy-orbit span:nth-child(1) {
  inset: 9%;
}

.privacy-orbit span:nth-child(2) {
  inset: 24%;
}

.privacy-orbit span:nth-child(3) {
  inset: 39%;
  background: var(--page-accent-soft);
}

.privacy-orbit strong {
  width: min(100%, 150px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.05;
  text-align: center;
}

.about-portrait {
  position: relative;
  width: min(100%, 340px);
  height: 360px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--page-accent) 24%, transparent);
  border-radius: 0 26px 0 26px;
  background:
    radial-gradient(circle at 50% 20%, var(--page-accent-soft), transparent 42%),
    linear-gradient(180deg, #111611, #020302);
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.46));
}

.brand-hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 210px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 24%, transparent);
  border-radius: 0 26px 0 26px;
  background:
    radial-gradient(circle at 50% 50%, var(--page-accent-soft), transparent 52%),
    #f6f5ef;
}

.brand-hero-mark img {
  display: block;
  width: min(230px, 72%);
  height: auto;
  filter: invert(1);
}

.brand-hero-mark--icon {
  min-height: 260px;
  border: 0;
  background: transparent;
}

.brand-hero-mark img.brand-app-icon,
.brand-logo-panel img.brand-app-icon {
  width: min(220px, 72%);
  max-height: none;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(1, 2, 1, 0.2));
  box-shadow: none;
}

.brand-hero-mark--icon img.brand-app-icon {
  width: min(270px, 82%);
  filter: drop-shadow(0 32px 56px rgba(201, 255, 76, 0.18));
}

.not-found-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 44%, rgba(201, 255, 76, 0.06), transparent 32%),
    radial-gradient(circle at 76% 80%, rgba(125, 244, 255, 0.05), transparent 24%),
    #000;
}

.not-found-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
}

.not-found-header {
  --nav-side-offset: 61px;
  width: max-content;
  max-width: calc(100vw - 154px);
  min-height: 64px;
  margin: 0;
}

.not-found-header .logo img {
  height: 14px;
}

.not-found-header .nav-links {
  justify-content: start;
  gap: 8px;
  color: rgba(246, 245, 239, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.not-found-header .header-actions {
  margin-left: 0;
}

.not-found-main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px 28px 86px;
}

.not-found-stage {
  position: relative;
  display: grid;
  width: min(100%, 1040px);
  min-height: min(74vh, 720px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.not-found-stage::before {
  content:
    "1|0/{40}--KUN--7::0/9+=17_02  <memory::404>  #18>route=lost  11://moon\A"
    "80>17::5/0  sync=&{voice}  04+99  //branch[empty]  /k/u/n/  22::7\A"
    "route-map   0xKUN  9/13 -> null  404 + 404 + 404  /story/offline\A"
    "7>18+4  ::afterimage  memory[missing]  05:43  signal:thin  #route\A"
    "01/11  character.cache=false  path? no  9::0  ++soft-error++  404\A"
    "wake route  #dream  5>8  /access  0/0  unknown page  //return-home\A"
    "17://heart  prompt?  no-response  route-map  404  6*1  8_8  KUN\A"
    "voice-line dropped  404: page not found  branch closed  0x0004";
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  place-items: center;
  padding: 0 4vw;
  color: rgba(246, 245, 239, 0.075);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(12px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: pre-wrap;
  word-break: break-word;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 44%, transparent 78%);
  animation: not-found-noise-drift 9s steps(3, end) infinite;
}

.not-found-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #000 0%, transparent 18%, transparent 72%, #000 100%),
    radial-gradient(ellipse at 50% 48%, transparent 0%, transparent 36%, rgba(0, 0, 0, 0.9) 82%);
  pointer-events: none;
}

.not-found-scan {
  position: absolute;
  inset: 8% 8% 10%;
  z-index: -1;
  background:
    linear-gradient(rgba(246, 245, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 245, 239, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.48;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 74%);
  animation: not-found-grid-scan 7s linear infinite;
}

.not-found-content {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  padding: 58px 0 28px;
  text-align: center;
}

.not-found-kicker {
  margin: 0 0 16px;
  color: rgba(246, 245, 239, 0.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  animation: not-found-flicker 4.8s steps(1, end) infinite;
}

.not-found-code {
  margin: 0;
  color: #f6f5ef;
  font-size: clamp(118px, 20vw, 252px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow:
    0 0 22px rgba(246, 245, 239, 0.12),
    0 0 76px rgba(201, 255, 76, 0.08);
  animation: not-found-code-pulse 3.6s ease-in-out infinite;
}

.not-found-copy {
  width: min(100%, 430px);
  margin: 24px 0 0;
  color: rgba(246, 245, 239, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(54px, 9vh, 104px);
}

.not-found-home {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  background: #f6f5ef;
  color: #10110d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, background 180ms ease;
}

.not-found-home:hover {
  transform: translateY(-1px);
  background: var(--lime);
}

.not-found-home span {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 50%, #10110d 0) 50% 0 / 60% 48% no-repeat,
    linear-gradient(#10110d, #10110d) 50% 72% / 72% 56% no-repeat;
}

.not-found-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.not-found-chips a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(246, 245, 239, 0.08);
  border-radius: 999px;
  background: rgba(246, 245, 239, 0.06);
  color: rgba(246, 245, 239, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.not-found-chips a:hover {
  border-color: rgba(201, 255, 76, 0.34);
  background: rgba(201, 255, 76, 0.1);
  color: var(--lime);
}

@keyframes not-found-noise-drift {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0);
  }

  34% {
    opacity: 0.7;
    transform: translate3d(-10px, 7px, 0);
  }

  67% {
    opacity: 0.58;
    transform: translate3d(12px, -5px, 0);
  }

  100% {
    opacity: 0.66;
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes not-found-grid-scan {
  0% {
    background-position: 0 0, 0 0;
    opacity: 0.34;
  }

  50% {
    opacity: 0.58;
  }

  100% {
    background-position: 0 48px, 48px 0;
    opacity: 0.34;
  }
}

@keyframes not-found-code-pulse {
  0%,
  100% {
    opacity: 0.94;
    text-shadow:
      0 0 18px rgba(246, 245, 239, 0.08),
      0 0 58px rgba(201, 255, 76, 0.06);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 26px rgba(246, 245, 239, 0.16),
      0 0 92px rgba(201, 255, 76, 0.13);
  }
}

@keyframes not-found-flicker {
  0%,
  74%,
  80%,
  100% {
    opacity: 1;
  }

  76%,
  78% {
    opacity: 0.42;
  }
}

.page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
  padding-top: 72px;
}

.page-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--page-accent-soft), transparent 56%),
    rgba(255, 255, 255, 0.018);
}

.page-sidebar span {
  display: block;
  margin-bottom: 16px;
  color: var(--page-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-sidebar a {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.page-stack {
  display: grid;
  gap: 20px;
}

.page-card,
.contact-tile,
.brand-showcase,
.brand-section,
.brand-asset-grid article,
.about-principles article,
.page-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
}

.page-card {
  padding: 34px;
}

.page-card h2,
.contact-tile h2,
.brand-section h2,
.brand-downloads h2,
.brand-asset-grid h2,
.about-principles h2,
.about-story h2,
.page-note h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.12;
}

.page-card p,
.contact-tile p,
.brand-section p,
.brand-downloads p,
.brand-asset-grid p,
.about-principles p,
.about-story p,
.page-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.seo-route-copy {
  display: grid;
  gap: 18px;
}

.seo-route-copy p {
  width: min(100%, 720px);
  margin: 0;
  color: rgba(246, 245, 239, 0.64);
  font-size: 16px;
  line-height: 1.68;
}

.seo-route-copy h2 {
  margin: 10px 0 0;
  color: rgba(246, 245, 239, 0.92);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.02;
}

.seo-route-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.seo-route-points article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--page-accent-soft), transparent 58%),
    rgba(255, 255, 255, 0.018);
}

.seo-route-points h2 {
  margin: 0;
  color: rgba(246, 245, 239, 0.9);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.15;
}

.seo-route-points p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.page-card a,
.contact-tile a,
.page-note a {
  color: var(--page-accent);
  font-weight: 800;
}

.legal-document {
  border-top: 1px solid var(--line);
}

.legal-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-row > span {
  color: color-mix(in srgb, var(--page-accent) 72%, white);
  font-size: 12px;
  font-weight: 950;
}

.legal-row h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.02;
}

.legal-row p {
  width: min(100%, 680px);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.page-note-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  background:
    linear-gradient(90deg, var(--page-accent-soft), transparent),
    rgba(255, 255, 255, 0.025);
}

.page-note-banner p {
  margin: 0;
}

.page-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 22px;
}

.page-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 14px var(--page-accent-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-tile {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
}

.contact-tile::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--page-accent-soft);
}

.contact-tile span,
.about-principles span {
  display: block;
  margin-bottom: 42px;
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
}

.contact-tile a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--page-accent);
  font-size: 13px;
  font-weight: 900;
}

.contact-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--page-accent-soft), transparent 45%),
    rgba(255, 255, 255, 0.018);
}

.contact-board-copy {
  padding: 4px 0;
}

.contact-board-copy span {
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
}

.contact-board-copy h2 {
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 200;
  line-height: 0.96;
}

.contact-board-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.contact-form-row {
  display: grid;
  gap: 9px;
}

.contact-form-message {
  grid-column: 1 / -1;
}

.contact-form label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
  padding: 14px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: color-mix(in srgb, var(--page-accent) 44%, transparent);
  box-shadow: 0 0 0 4px var(--page-accent-soft);
}

.contact-form .pill-button {
  width: fit-content;
  background: var(--page-accent);
}

.contact-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--page-accent);
  font-size: 12px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(230px, 0.64fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-story h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.94;
}

.about-story p {
  font-size: 18px;
  line-height: 1.5;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-principles article {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, var(--page-accent-soft), transparent 54%),
    rgba(255, 255, 255, 0.018);
}

.about-roadmap {
  background:
    linear-gradient(90deg, var(--page-accent-soft), transparent 60%),
    rgba(255, 255, 255, 0.022);
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
}

.brand-logo-panel {
  display: grid;
  min-height: 300px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%) 0 0 / 26px 26px,
    radial-gradient(circle at 50% 50%, rgba(201, 255, 76, 0.17), transparent 58%),
    #f6f5ef;
}

.brand-logo-panel img {
  width: min(350px, 72%);
  max-height: 170px;
  filter: invert(1);
}

.brand-downloads {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
}

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

.brand-asset-grid article {
  overflow: hidden;
}

.brand-asset-grid img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  background: #080a08;
}

.brand-asset-grid h2,
.brand-asset-grid p {
  padding-right: 24px;
  padding-left: 24px;
}

.brand-asset-grid h2 {
  margin-top: 24px;
}

.brand-asset-grid p {
  margin-bottom: 26px;
}

.brand-section {
  padding: 34px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.swatch {
  display: grid;
  min-height: 134px;
  align-content: end;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: var(--swatch);
  color: #080a06;
}

.swatch--dark {
  color: #f6f5ef;
  box-shadow: inset 0 0 0 1px rgba(246, 245, 239, 0.16);
}

.swatch span {
  font-size: 13px;
  font-weight: 900;
}

.swatch code {
  font-size: 12px;
}

.type-samples {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.type-samples p {
  margin: 0;
  color: var(--text);
}

.type-sample-sans {
  font-size: 30px;
  font-weight: 700;
}

.type-sample-serif {
  color: var(--page-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 800;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 72px;
  margin: 0 64px;
  padding: 70px 66px 36px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand p {
  width: min(100%, 300px);
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.region-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-pills span,
.music-button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
}

.music-button {
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.music-button:hover,
.music-button.is-playing {
  border-color: rgba(201, 255, 76, 0.52);
  color: var(--lime);
  box-shadow: 0 0 24px rgba(201, 255, 76, 0.12);
}

.music-button:active {
  transform: scale(0.96);
}

.music-button.is-playing::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 255, 76, 0.26);
  border-radius: 50%;
  animation: musicPulse 1.7s ease-out infinite;
}

.music-icon {
  font-size: 22px;
  line-height: 1;
}

.site-header .music-button {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  display: grid;
  width: 52px;
  height: 52px;
  margin-left: 0;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(31, 32, 29, 0.96), rgba(9, 10, 9, 0.95));
  color: rgba(246, 245, 239, 0.78);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  transform: translateY(-50%);
}

.music-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 8, 0.92);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, -4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header .music-label {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 4px);
}

.music-button:hover .music-label,
.music-button:focus-visible .music-label,
.music-button.is-playing .music-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.locale-picker {
  position: relative;
  width: min(100%, 270px);
  margin-top: 26px;
}

.site-header .locale-picker {
  position: absolute;
  top: 50%;
  left: calc(100% + 70px);
  display: block;
  width: 52px;
  margin-top: 0;
  transform: translateY(-50%);
}

.locale-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.locale-button:hover,
.locale-button[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text);
  box-shadow: 0 0 28px rgba(201, 255, 76, 0.08);
}

.locale-globe {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.locale-globe svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.locale-button span:nth-child(2) {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 16px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locale-chevron {
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 9px solid rgba(255, 255, 255, 0.48);
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  transition: transform 180ms ease;
}

.locale-button[aria-expanded="true"] .locale-chevron {
  transform: rotate(180deg);
}

.locale-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 16px);
  z-index: 10;
  display: grid;
  width: min(360px, calc(100vw - 48px));
  max-height: 360px;
  padding: 18px 0;
  overflow: auto;
  border-radius: 12px;
  background: #1b1b1a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header .locale-menu {
  top: auto;
  right: 0;
  bottom: calc(100% + 16px);
  left: auto;
}

.site-header .locale-button {
  min-height: 52px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(31, 32, 29, 0.96), rgba(9, 10, 9, 0.95));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.site-header .locale-globe {
  width: 26px;
  height: 26px;
}

.site-header .locale-button span:nth-child(2),
.site-header .locale-chevron {
  display: none;
}

.locale-menu::after {
  content: "";
  position: absolute;
  left: 170px;
  bottom: -15px;
  width: 30px;
  height: 30px;
  background: #1b1b1a;
  transform: rotate(45deg);
}

.site-header .locale-menu::after {
  top: auto;
  right: 7px;
  bottom: -15px;
  left: auto;
}

.locale-picker.is-open .locale-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.locale-option {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 18px;
  text-align: left;
  cursor: pointer;
}

.locale-option:hover,
.locale-option[aria-selected="true"] {
  color: var(--text);
}

.locale-option::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
}

.locale-option[aria-selected="true"]::before {
  background: var(--text);
}

@keyframes musicPulse {
  from {
    opacity: 0.68;
    transform: scale(0.88);
  }

  to {
    opacity: 0;
    transform: scale(1.28);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: end;
  gap: 18px 34px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-links a[aria-current="page"] {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .site-header {
    width: max-content;
    max-width: calc(100vw - 154px);
    gap: 10px;
  }

  .site-header .logo {
    width: 52px;
  }

  .nav-links a {
    padding: 0 12px;
    font-size: 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .site-header .interactive-hover-button {
    min-width: 150px;
    padding: 0 16px 0 30px;
  }

  .site-header .locale-picker {
    width: 52px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 90px 48px 76px;
  }

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

  .hero-logo {
    top: -58px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: 62px;
  }

  .phone-stage {
    min-height: 600px;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 96px 48px 94px;
  }

  .details h2 {
    width: min(100%, 700px);
    font-size: 52px;
  }

  .seo-intro,
  .faq-section {
    width: calc(100% - 96px);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .details-copy {
    max-width: 560px;
  }

  .details-chat {
    min-height: 600px;
    place-items: center;
  }

  .details-chat-frame {
    width: min(100%, 330px);
  }

  .access-panel {
    width: calc(100% - 96px);
  }

  .characters-slider {
    width: calc(100% - 68px);
  }

  .content-page {
    padding: 84px 48px 104px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .page-hero-visual {
    justify-items: start;
    min-height: 220px;
  }

  .page-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }

  .contact-grid,
  .about-principles,
  .brand-asset-grid,
  .swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-board {
    grid-template-columns: 1fr;
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .characters-panel {
    min-height: 620px;
    padding: 60px 42px 42px;
  }

  .characters-index {
    top: 58px;
  }

  .characters-index p {
    font-size: 11px;
  }

  .characters-index strong {
    font-size: 11px;
  }

  .character-media {
    width: 62vw;
    height: 100%;
  }

  .character-image {
    --character-art-scale: 0.86;
    transform-origin: left bottom;
  }

  .character-copy {
    left: clamp(250px, 37vw, 360px);
    bottom: 124px;
    width: min(56vw, 500px);
    min-height: 246px;
    padding: 21px 24px 76px;
  }

  .character-copy h2 {
    font-size: clamp(42px, 6vw, 64px);
  }

  .character-stats {
    gap: 5px;
    margin-top: 14px;
  }

  .character-stat {
    min-height: 27px;
    padding: 0 9px;
    font-size: 9.5px;
  }

  .character-controls {
    left: clamp(280px, 43vw, 450px);
    bottom: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin: 0 34px;
    padding: 58px 20px 34px;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .header-button {
    display: none;
  }
}

@media (max-width: 760px) {
  section,
  footer {
    scroll-margin-top: 28px;
  }

  .page-shell {
    padding-bottom: 96px;
  }

  .aurora-ring {
    top: -150px;
    width: 500px;
    height: 230px;
  }

  .site-header {
    --nav-side-offset: 0px;
    bottom: 10px;
    justify-content: stretch;
    gap: 3px;
    width: calc(100vw - 20px);
    max-width: none;
    min-height: 52px;
    padding: 4px;
    margin: 0;
  }

  .site-header:hover {
    transform: translateX(calc(-50% - var(--nav-side-offset)));
  }

  .site-header .logo {
    width: 48px;
    height: 48px;
  }

  .site-header .logo img {
    height: 14px;
  }

  .nav-links {
    --progressive-blur-width: 0px;
    --progressive-blur-right-opacity: 0;
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    mask-image: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0 7px;
    font-size: 11.5px;
  }

  .nav-links a span {
    font-size: 20px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-button {
    display: none;
  }

  .site-header .music-button,
  .site-header .locale-picker {
    width: 42px;
  }

  .site-header .music-button,
  .site-header .locale-button {
    min-height: 42px;
    height: 42px;
  }

  .site-header .music-button {
    left: calc(100% + 8px);
  }

  .site-header .locale-picker {
    left: calc(100% + 64px);
  }

  .site-header .locale-button {
    justify-content: center;
    padding: 0;
  }

  .site-header .locale-globe {
    width: 30px;
    height: 30px;
  }

  .site-header .locale-button span:nth-child(2),
  .site-header .locale-chevron {
    display: none;
  }

  .site-header .music-button,
  .site-header .locale-picker {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 42px;
    transform: none;
  }

  .site-header,
  .site-header::after,
  .character-controls,
  .character-stat,
  .phone-prompt-bubbles span {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .pill-button::after,
  .access-panel::before,
  .characters-panel::after,
  .phone-prompt-bubbles span,
  .ticker-track {
    animation: none;
  }

  .reveal-on-scroll {
    filter: none;
    transition:
      opacity 280ms ease,
      transform 320ms cubic-bezier(0.2, 0.82, 0.2, 1);
  }

  .hero {
    gap: 20px;
    padding: 74px 22px 68px;
  }

  .hero h1 {
    align-items: center;
    margin-inline: auto;
    font-size: 50px;
    text-align: center;
  }

  .hero-copy > p {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    text-align: center;
  }

  .hero-copy {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    min-width: 0;
    text-align: center;
  }

  .hero-logo {
    left: 50%;
    top: -46px;
    transform: translateX(-50%);
  }

  .hero-logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .waitlist-block,
  .waitlist-form {
    min-width: 0;
    max-width: 100%;
  }

  .waitlist-block,
  .waitlist-form {
    width: 100%;
  }

  .waitlist-form {
    height: auto;
    min-height: 52px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
  }

  .waitlist-form input {
    min-height: 44px;
    font-size: 16px;
  }

  .waitlist-form .pill-button {
    height: 44px;
    min-height: 44px;
    width: 100%;
  }

  .fazier-badge--desktop {
    display: none;
  }

  .fazier-badge--mobile {
    display: flex;
    justify-content: center;
    margin: 18px auto 0;
  }

  .pill-button {
    min-height: 44px;
  }

  .referral-share {
    width: 100%;
  }

  .referral-link-box {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
  }

  .referral-link-box a {
    min-height: 42px;
    padding: 11px 14px 0;
  }

  .referral-copy-button {
    width: 100%;
  }

  .waitlist-dialog {
    align-items: end;
    padding: 16px;
  }

  .waitlist-dialog-panel {
    padding: 24px 16px 18px;
    border-radius: 24px;
  }

  .waitlist-dialog-panel h2 {
    padding-right: 48px;
    font-size: 40px;
  }

  .fomo-stream {
    width: 100%;
  }

  .phone-stage {
    min-height: 535px;
  }

  .phone-glow {
    width: 330px;
    height: 470px;
  }

  .phone-shell {
    width: 292px;
    height: 580px;
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 34px;
  }

  .phone-prompt-bubbles span {
    max-width: 148px;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .phone-prompt-bubbles span:nth-child(1) {
    top: 92px;
    left: -18px;
  }

  .phone-prompt-bubbles span:nth-child(2) {
    top: 146px;
    right: -22px;
  }

  .phone-prompt-bubbles span:nth-child(3) {
    top: 208px;
    left: -24px;
  }

  .phone-prompt-bubbles span:nth-child(4) {
    top: 268px;
    right: -24px;
  }

  .phone-prompt-bubbles span:nth-child(5) {
    top: 320px;
    left: 14px;
  }

  .phone-prompt-bubbles span:nth-child(6) {
    top: 240px;
    right: 8px;
  }

  .phone-prompt-bubbles span:nth-child(7) {
    top: 188px;
  }

  .phone-status {
    padding: 22px 24px 0;
  }

  .orbit {
    top: 212px;
  }

  .orbit-one {
    width: 126px;
    height: 126px;
  }

  .orbit-two {
    width: 224px;
    height: 224px;
  }

  .orbit-three {
    width: 326px;
    height: 326px;
  }

  .character {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .char-one {
    top: 73px;
    left: 123px;
  }

  .char-two {
    top: 178px;
    left: 33px;
  }

  .char-three {
    top: 178px;
    right: 68px;
  }

  .char-four {
    top: 279px;
    right: 22px;
  }

  .app-logo {
    top: 232px;
    font-size: 29px;
  }

  .auth-panel {
    right: 22px;
    bottom: 42px;
    left: 22px;
  }

  .auth-panel h2 {
    min-height: 62px;
    font-size: 20px;
  }

  .ticker-track {
    gap: 32px;
    min-height: 70px;
    padding: 0 32px;
    font-size: 18px;
  }

  .ticker {
    border-top: 0;
    border-bottom: 0;
  }

  .details {
    gap: 34px;
    padding: 72px 22px 60px;
  }

  .details-copy-block {
    text-align: center;
  }

  .details h2 {
    margin: 0 auto;
    font-size: 38px;
    text-align: center;
  }

  .details-copy {
    display: none;
  }

  .seo-intro,
  .faq-section {
    width: calc(100% - 44px);
  }

  .seo-intro {
    margin-top: -24px;
    margin-bottom: 44px;
    padding-top: 22px;
  }

  .seo-intro p {
    font-size: 14px;
    text-align: center;
  }

  .details-points {
    justify-content: center;
    gap: 8px;
    margin: 22px auto 0;
  }

  .details-points span,
  .feature-chip {
    padding: 7px 9px;
    font-size: 11px;
  }

  .feature-roulette {
    display: none;
  }

  .feature-seo-copy {
    display: block;
    width: min(100%, 430px);
    margin: 20px auto 0;
    color: rgba(246, 245, 239, 0.52);
    font-size: 13px;
    line-height: 1.48;
    text-align: center;
  }

  .feature-notes {
    display: none;
  }

  .details-chat {
    min-height: 0;
  }

  .details-chat::after {
    width: 280px;
    height: 280px;
  }

  .details-chat-frame {
    width: min(100%, 316px);
    border-radius: 42px;
  }

  .feature-notes {
    margin-top: 28px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 58px;
    padding-top: 58px;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-section h2 {
    margin-inline: auto;
    font-size: 36px;
    text-align: center;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    min-height: 58px;
    padding: 16px 14px 16px 18px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer {
    padding: 0 48px 18px 18px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .details-chat-screen {
    border-radius: 34px;
  }

  .access-panel {
    width: calc(100% - 44px);
    min-height: 380px;
    margin-bottom: 84px;
    padding: 58px 20px;
    border-radius: 24px;
  }

  .access-panel h2 {
    font-size: 52px;
  }

  .characters-slider {
    width: calc(100% - 44px);
    margin-bottom: 84px;
  }

  .content-page {
    padding: 74px 22px 82px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 30px 22px;
    border-radius: 0 24px 0 24px;
  }

  .page-hero-copy {
    text-align: center;
  }

  .page-hero h1 {
    margin-inline: auto;
    font-size: 54px;
    text-align: center;
  }

  .page-hero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    text-align: center;
  }

  .page-hero-chips {
    justify-content: center;
    margin-top: 24px;
  }

  .page-hero-visual {
    min-height: 180px;
  }

  .hero-terminal,
  .contact-signal-card {
    width: 100%;
  }

  .privacy-orbit {
    width: min(78vw, 250px);
  }

  .about-portrait {
    width: min(100%, 290px);
    height: 290px;
  }

  .brand-hero-mark {
    width: 100%;
    min-height: 160px;
    font-size: 46px;
  }

  .not-found-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100vw - 18px);
    min-height: 58px;
    margin: 0;
  }

  .not-found-header .logo img {
    height: 14px;
  }

  .not-found-header .header-actions {
    display: flex;
    margin-left: 0;
  }

  .not-found-header .header-button {
    display: none;
  }

  .not-found-main {
    min-height: 100vh;
    padding: 20px 18px 86px;
  }

  .not-found-stage {
    min-height: 620px;
  }

  .not-found-stage::before {
    padding: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .not-found-scan {
    inset: 8% 0 14%;
    background-size: 36px 36px;
  }

  .not-found-content {
    padding: 34px 0 20px;
  }

  .not-found-code {
    font-size: clamp(108px, 42vw, 172px);
  }

  .not-found-copy {
    width: min(100%, 310px);
    font-size: 14px;
  }

  .not-found-actions {
    margin-top: 64px;
  }

  .not-found-home {
    min-height: 44px;
    padding: 0 18px;
    font-size: 11px;
  }

  .not-found-chips {
    gap: 8px;
    margin-top: 22px;
  }

  .not-found-chips a {
    min-height: 44px;
    padding: 0 13px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 38px;
  }

  .page-sidebar {
    position: relative;
    top: auto;
  }

  .page-card,
  .contact-tile,
  .brand-section,
  .contact-board,
  .brand-showcase {
    padding: 22px;
  }

  .page-card h2,
  .contact-tile h2,
  .brand-section h2 {
    font-size: 23px;
  }

  .legal-row,
  .about-story,
  .about-principles,
  .contact-grid,
  .contact-board,
  .contact-form,
  .brand-showcase,
  .brand-asset-grid,
  .seo-route-points,
  .swatch-grid {
    grid-template-columns: 1fr;
  }

  .legal-row {
    gap: 12px;
    padding: 28px 0;
  }

  .page-note-banner {
    grid-template-columns: 1fr;
  }

  .contact-form-message {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form select {
    height: 50px;
    min-height: 50px;
    line-height: 1.2;
  }

  .contact-form select {
    -webkit-appearance: none;
    appearance: none;
  }

  .brand-logo-panel {
    min-height: 190px;
  }

  .brand-asset-grid img {
    height: 220px;
  }

  .type-sample-sans,
  .type-sample-serif {
    font-size: 24px;
  }

  .characters-panel {
    min-height: 640px;
    padding: 42px 18px 28px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, transparent, rgba(92, 255, 98, 0.06), transparent),
      rgba(255, 255, 255, 0.01);
  }

  .characters-panel::before {
    top: -126px;
    width: 430px;
    height: 300px;
    filter: blur(18px);
  }

  .characters-bg-word {
    top: auto;
    bottom: 148px;
    font-size: 158px;
  }

  .characters-index {
    top: 50px;
  }

  .characters-index p {
    font-size: 11px;
  }

  .characters-index strong {
    font-size: 11px;
  }

  .character-media {
    left: 0;
    bottom: 78px;
    width: 100%;
    height: 84%;
    margin: 0;
    opacity: 0.94;
  }

  .character-image-halo {
    filter: blur(18px);
  }

  .character-image {
    --character-art-scale: 0.64;
    width: auto;
    height: min(870px, 248vw);
    transform-origin: left bottom;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
    transition: opacity 180ms ease, filter 180ms ease;
  }

  .characters-slider.is-switching .character-image {
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
  }

  .characters-slider.is-entering .character-image {
    animation: none;
  }

  .character-copy {
    z-index: 6;
    right: 18px;
    bottom: 44px;
    left: 18px;
    width: auto;
    min-height: 230px;
    padding: 18px 18px 62px;
    background: transparent;
    text-align: center;
  }

  .character-copy h2 {
    color: #f6f5ef;
    font-size: 36px;
    white-space: normal;
  }

  .character-stats {
    gap: 5px;
    margin-top: 12px;
    justify-content: flex-start;
    text-align: center;
  }

  .character-stat {
    min-height: 27px;
    padding: 0 9px;
    font-size: 9px;
  }

  .character-more {
    left: 24px;
    bottom: 58px;
    min-height: 44px;
    min-width: 150px;
    padding: 0 16px 0 30px;
    font-size: 13px;
  }

  .character-controls {
    z-index: 7;
    left: 50%;
    bottom: 28px;
    max-width: 100%;
    margin-top: 0;
    gap: 4px;
    padding: 4px;
    transform: translateX(-50%);
  }

  .character-thumbs {
    gap: 4px;
  }

  .character-arrow,
  .character-thumb {
    flex: 0 0 44px;
  }

  .character-arrow {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .character-thumb {
    width: 44px;
    height: 44px;
    border-radius: 9px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    margin: 0 18px;
    padding: 52px 4px 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .site-header {
    --nav-side-offset: 0px;
    bottom: 8px;
    width: calc(100vw - 20px);
    gap: 3px;
    padding: 4px;
  }

  .page-shell {
    padding-bottom: 92px;
  }

  .site-header .logo {
    width: 48px;
  }

  .nav-links a {
    padding: 0 6px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .details h2 {
    font-size: 34px;
  }

  .mini-social {
    align-items: flex-start;
  }

  .phone-stage {
    transform: translateX(-4px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
