:root {
  --bg: #0b1020;
  --bg-deep: #070a14;
  --surface: #161b33;
  --elevated: #1e2544;
  --primary: #8b7cff;
  --primary-light: #b7a9ff;
  --text: #ffffff;
  --text-secondary: #c7c9d9;
  --text-muted: rgba(199, 201, 217, 0.72);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.18);
  --focus: #b7a9ff;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 72rem;
  --radius: 1.25rem;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg-deep);
  font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-light);
}

a:hover {
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-120%);
  z-index: 20;
  padding: 0.65rem 1rem;
  background: var(--elevated);
  color: var(--text);
  border-radius: 999px;
}

.skip:focus {
  transform: translateY(0.75rem);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(139, 124, 255, 0.16), transparent 55%),
    radial-gradient(700px 420px at 90% 20%, rgba(181, 169, 255, 0.08), transparent 50%),
    radial-gradient(800px 500px at 10% 80%, rgba(79, 216, 255, 0.05), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 28% 72%, rgba(183, 169, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 67% 24%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 81% 63%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 44% 41%, rgba(183, 169, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 91% 88%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 8% 92%, rgba(255, 255, 255, 0.32), transparent);
  opacity: 0.7;
}

.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 18% 46%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 73% 12%, rgba(183, 169, 255, 0.55), transparent),
    radial-gradient(1px 1px at 52% 84%, rgba(255, 255, 255, 0.3), transparent);
  animation: drift 28s ease-in-out infinite;
}

.page {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 0.6rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.wordmark img {
  display: block;
  width: min(168px, 46vw);
  mix-blend-mode: screen;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  min-width: 44px;
  min-height: 36px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.lang-switch button.is-active {
  color: var(--text);
  background: rgba(139, 124, 255, 0.18);
}

.lang-rule {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.hero {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: clamp(2.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 10vw, 7rem);
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-light);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 1.8rem;
  max-width: 32rem;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(139, 124, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta:hover {
  background: var(--primary-light);
  color: var(--bg-deep);
}

.boo {
  justify-self: end;
  width: min(160px, 42vw);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.92;
  margin-top: 0.25rem;
}

section {
  padding: clamp(2.75rem, 7vw, 5.5rem) 0;
}

.section-heading {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.stages {
  display: grid;
  gap: 0;
  counter-reset: stage;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stage {
  position: relative;
  padding: 1.35rem 0 1.35rem 3.2rem;
  border-left: 1px solid rgba(183, 169, 255, 0.22);
}

.stage:last-child {
  border-left-color: transparent;
}

.stage::before {
  counter-increment: stage;
  content: counter(stage, decimal-leading-zero);
  position: absolute;
  left: -0.95rem;
  top: 1.4rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
}

.stage h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.stage p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-secondary);
}

.why {
  padding-top: clamp(3rem, 8vw, 6rem);
}

.why-panel {
  max-width: 40rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--glass-border);
  border-radius: calc(var(--radius) + 0.35rem);
  background: linear-gradient(
    180deg,
    rgba(30, 37, 68, 0.7),
    rgba(11, 16, 32, 0.35)
  );
}

.why-panel p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.why-panel p:last-child {
  margin-bottom: 0;
}

.why-turn {
  color: var(--text) !important;
  font-size: clamp(1.35rem, 3vw, 1.85rem) !important;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.quiet-card {
  max-width: 40rem;
}

.quiet-card p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.whisper {
  color: var(--primary-light) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem !important;
}

.email {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--text);
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  overflow-wrap: anywhere;
  user-select: all;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  align-items: baseline;
  justify-content: space-between;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.legal-label {
  color: rgba(199, 201, 217, 0.55);
  cursor: default;
}

@keyframes drift {
  0%,
  100% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.85;
    transform: translate3d(0, -8px, 0);
  }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: end;
  }

  .boo {
    width: 200px;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    max-width: 16ch;
  }

  .boo {
    width: 220px;
  }
}

@media (max-width: 389px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .boo {
    width: 118px;
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stars::after,
  .cta,
  .lang-switch button {
    animation: none !important;
    transition: none !important;
  }
}
