:root {
  color-scheme: dark;
  --pointer-x: 50%;
  --pointer-y: 45%;
  --gold: 218, 168, 72;
  --violet: 126, 52, 255;
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  background: #000;
}

body {
  min-height: 100svh;
  color: #f5f3f1;
  background: #000;
  font-family: Bahnschrift, "Avenir Next", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.is-page-hidden *,
.is-page-hidden *::before,
.is-page-hidden *::after {
  animation-play-state: paused !important;
}

.ambient-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 44% 43%, rgba(var(--violet), 0.1), transparent 30%),
    radial-gradient(circle at 57% 47%, rgba(var(--gold), 0.045), transparent 25%),
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      rgba(var(--violet), 0.055),
      rgba(var(--gold), 0.018) 16%,
      transparent 36%
  );
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
}

.is-intro-started .ambient-light {
  animation:
    atmosphere-reveal 4s var(--ease-cinematic) forwards,
    purple-breathe 7s 4s ease-in-out infinite;
}

.experience {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(2rem, 7vh, 5rem) clamp(1.25rem, 5vw, 5rem);
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(12rem, 21vw, 18rem);
  opacity: 1;
}

.shield-stage {
  position: relative;
  width: 100%;
  perspective: 60rem;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.08);
  filter: drop-shadow(0 0 2rem rgba(var(--violet), 0.12));
  user-select: none;
  -webkit-user-drag: none;
}

.is-shield-revealing .brand-logo {
  animation: shield-reveal 3.6s var(--ease-cinematic) forwards;
}

.brand-person {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateZ(0) scale(0.08);
  transform-origin: 50% 52%;
  filter:
    drop-shadow(0 0 0 rgba(var(--violet), 0))
    brightness(1);
  user-select: none;
  -webkit-user-drag: none;
}

.is-person-revealing .brand-person {
  animation: person-emerge 3.4s var(--ease-cinematic) forwards;
}

.brand-complete {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.is-assembly-locking .brand-complete {
  animation: complete-lock 0.35s ease-out forwards;
}

.assembly-burst {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 12%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 232, 156, 0.95);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.25);
  box-shadow:
    0 0 1rem rgba(var(--gold), 0.9),
    0 0 2.5rem rgba(var(--violet), 0.45);
  pointer-events: none;
}

.is-assembly-locking .assembly-burst {
  animation: assembly-burst 0.75s var(--ease-cinematic) forwards;
}

.protection-halo {
  position: absolute;
  z-index: 0;
  top: 46%;
  left: 50%;
  width: 108%;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--gold), 0.22);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 1.5rem rgba(var(--gold), 0.04),
    0 0 1.4rem rgba(var(--gold), 0.08);
  pointer-events: none;
}

.is-halo-active .protection-halo {
  animation:
    halo-reveal 1.6s ease forwards,
    halo-breathe 4.8s 1.6s ease-in-out infinite;
}

.halo-light {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
}

.is-halo-active .halo-light {
  animation: halo-travel 6.8s linear infinite;
}

.halo-light::before {
  position: absolute;
  top: -0.22rem;
  left: 50%;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: #fff4bf;
  box-shadow:
    0 0 0.35rem rgba(255, 228, 135, 1),
    0 0 0.9rem rgba(var(--gold), 0.95),
    0 0 1.8rem rgba(var(--gold), 0.58);
  content: "";
  transform: translateX(-50%);
}

.wordmark {
  margin: clamp(0.4rem, 1vh, 0.75rem) 0 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  text-align: center;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.18em;
  filter: drop-shadow(0 0.5rem 0.8rem rgba(0, 0, 0, 0.85));
  opacity: 0;
  transform: translateY(0.35rem);
}

.is-wordmark-active .wordmark {
  animation: wordmark-reveal 1.8s var(--ease-cinematic) forwards;
}

.wordmark span {
  display: block;
  padding-left: 0.34em;
}

.wordmark span:first-child {
  font-size: clamp(1.55rem, 2.75vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fbf9ff 32%,
    #d6cfdf 68%,
    #fff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 3px 0 rgba(77, 60, 100, 0.72),
    0 0 0.7rem rgba(var(--violet), 0.18);
}

.wordmark span:last-child {
  margin-top: 0.42rem;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #fff4c4 0%,
    #e8b34f 42%,
    #b87824 78%,
    #ffe195 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 242, 181, 0.28),
    0 3px 0 rgba(86, 46, 8, 0.78),
    0 0 0.8rem rgba(var(--gold), 0.2);
}

.message {
  min-height: 3em;
  max-width: 40rem;
  margin: clamp(2.25rem, 5vh, 4rem) 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 350;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  text-wrap: balance;
}

.message span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25rem);
  transition:
    opacity 1.3s var(--ease-cinematic),
    transform 1.3s var(--ease-cinematic);
}

.message span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message.is-finale {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.message .evolving-word {
  min-height: 1.5em;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #a260ff,
    #d8b6ff 38%,
    #f0b94f 78%,
    #ffd980
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 0.65rem rgba(var(--violet), 0.25));
}

.interest-invitation {
  min-height: 3.25rem;
  margin-top: clamp(1.5rem, 3.5vh, 2.5rem);
}

.interest-button {
  position: relative;
  min-width: 11.5rem;
  padding: 0.85rem 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(var(--gold), 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(110deg, rgba(var(--violet), 0.16), rgba(var(--gold), 0.1)),
    rgba(5, 2, 10, 0.72);
  box-shadow:
    inset 0 0 1.2rem rgba(var(--violet), 0.08),
    0 0 1.4rem rgba(var(--violet), 0.08);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.55rem);
  pointer-events: none;
  transition:
    border-color 350ms ease,
    box-shadow 350ms ease,
    transform 350ms var(--ease-cinematic);
}

.interest-button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 15%,
    rgba(255, 255, 255, 0.13) 48%,
    transparent 75%
  );
  content: "";
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-cinematic);
}

.interest-button span {
  position: relative;
}

.is-interest-ready .interest-button {
  animation: interest-reveal 1.4s var(--ease-cinematic) forwards;
  pointer-events: auto;
}

.interest-button:hover,
.interest-button:focus-visible {
  border-color: rgba(255, 221, 135, 0.82);
  box-shadow:
    inset 0 0 1.4rem rgba(var(--violet), 0.14),
    0 0 1.7rem rgba(var(--gold), 0.16);
  transform: translateY(-0.12rem);
}

.interest-button:hover::before,
.interest-button:focus-visible::before {
  transform: translateX(120%);
}

.interest-button:focus-visible,
.dialog-close:focus-visible,
.name-fields input:focus-visible,
.email-field input:focus-visible,
.email-field button:focus-visible,
.success-close:focus-visible {
  outline: 2px solid rgba(255, 225, 148, 0.9);
  outline-offset: 3px;
}

.interest-dialog {
  width: min(92vw, 34rem);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(var(--gold), 0.34);
  border-radius: 1.4rem;
  color: #f8f6fb;
  background:
    radial-gradient(circle at 25% 0%, rgba(var(--violet), 0.2), transparent 42%),
    linear-gradient(145deg, #090510, #030204 68%);
  box-shadow:
    0 2rem 7rem rgba(0, 0, 0, 0.8),
    0 0 3.5rem rgba(var(--violet), 0.1);
  opacity: 0;
  transform: translateY(0.8rem) scale(0.98);
}

.interest-dialog[open] {
  animation: dialog-enter 550ms var(--ease-cinematic) forwards;
}

.interest-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(0.45rem);
}

.dialog-content {
  padding: clamp(2rem, 6vw, 3.25rem);
  text-align: center;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-mark {
  display: block;
  width: clamp(3.6rem, 12vw, 4.8rem);
  height: auto;
  margin: -0.35rem auto 1.15rem;
  filter:
    saturate(1.08)
    drop-shadow(0 0 0.8rem rgba(var(--violet), 0.22))
    drop-shadow(0 0 0.45rem rgba(var(--gold), 0.16));
}

.dialog-eyebrow {
  margin: 0 0 0.75rem;
  color: rgb(var(--gold));
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.interest-dialog h2 {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.015em;
}

.dialog-introduction,
.success-message {
  max-width: 28rem;
  margin: 1rem auto 0;
  color: rgba(244, 240, 248, 0.7);
  font-size: 0.96rem;
  line-height: 1.65;
}

.delivery-note {
  max-width: 27rem;
  margin: 0.85rem auto 0;
  color: rgba(229, 191, 102, 0.78);
  font-size: 0.76rem;
  line-height: 1.55;
}

.interest-form {
  margin-top: 1.75rem;
  text-align: left;
}

.interest-form label {
  display: block;
  margin: 0 0 0.55rem 0.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.name-fields input {
  width: 100%;
  min-width: 0;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.name-fields input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.name-fields input:focus {
  border-color: rgba(var(--violet), 0.7);
  outline: 0;
  box-shadow: 0 0 1.5rem rgba(var(--violet), 0.12);
}

.location-label {
  margin-top: 0.9rem !important;
}

.location-label span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

#interest-location {
  width: 100%;
  padding: 0.86rem 2.8rem 0.86rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background-color: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

#interest-location:focus {
  border-color: rgba(var(--violet), 0.7);
  outline: 0;
  box-shadow: 0 0 1.5rem rgba(var(--violet), 0.12);
}

#interest-location option {
  color: #f8f6fb;
  background: #090510;
}

.consent-field {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1rem 0 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.72rem !important;
  line-height: 1.45;
  letter-spacing: 0.015em !important;
  cursor: pointer;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.05rem 0 0;
  accent-color: rgb(var(--violet));
}

.email-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.email-field:focus-within {
  border-color: rgba(var(--violet), 0.7);
  box-shadow: 0 0 1.5rem rgba(var(--violet), 0.12);
}

.email-field input {
  min-width: 0;
  padding: 0.72rem 0.95rem;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
}

.email-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.email-field input:focus {
  outline: 0;
}

.email-field button,
.success-close {
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 221, 135, 0.46);
  border-radius: 999px;
  color: #120b02;
  background: linear-gradient(135deg, #f6d47a, #bd7e28);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  cursor: pointer;
}

.form-error {
  min-height: 1.25rem;
  margin: 0.45rem 0 0 0.15rem;
  color: #e5a7ff;
  font-size: 0.76rem;
}

.privacy-note {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.privacy-note a {
  color: rgba(255, 221, 135, 0.72);
  text-underline-offset: 0.18em;
}

.success-view[hidden] {
  display: none;
}

.success-close {
  margin-top: 1.75rem;
}

.privacy-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--violet), 0.12), transparent 32%),
    #000;
}

.privacy-content {
  width: min(90vw, 44rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) 0;
}

.privacy-brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.privacy-brand img {
  width: 2.8rem;
  height: auto;
}

.privacy-content article {
  margin-top: clamp(2.5rem, 8vh, 5rem);
}

.privacy-content h1 {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.75rem);
  font-weight: 350;
  line-height: 1.1;
}

.privacy-content article > p:not(.dialog-eyebrow) {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.privacy-content .privacy-updated {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.no-script-fallback {
  position: fixed;
  z-index: 5;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100svh;
  padding: 2rem;
  background: #000;
  text-align: center;
}

.no-script-fallback img {
  width: clamp(12rem, 21vw, 18rem);
  height: auto;
}

.no-script-fallback p {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1em;
}

@keyframes shield-reveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes interest-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialog-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes atmosphere-reveal {
  to {
    opacity: 1;
  }
}

@keyframes purple-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes person-emerge {
  0% {
    opacity: 0;
    transform: translateZ(0) scale(0.08);
  }
  68% {
    opacity: 1;
    transform: translateZ(5rem) scale(1.18);
    filter:
      drop-shadow(0 0 1.8rem rgba(var(--violet), 0.38))
      brightness(1.12);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
    filter:
      drop-shadow(0 0 0.6rem rgba(var(--violet), 0.12))
      brightness(1);
  }
}

@keyframes complete-lock {
  to {
    opacity: 1;
  }
}

@keyframes assembly-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
  }
  22% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8);
  }
}

@keyframes wordmark-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes halo-reveal {
  to {
    opacity: 1;
  }
}

@keyframes halo-travel {
  to {
    transform: rotate(360deg);
  }
}

@keyframes halo-breathe {
  0%,
  100% {
    border-color: rgba(var(--gold), 0.18);
    box-shadow:
      inset 0 0 1.5rem rgba(var(--gold), 0.035),
      0 0 1.4rem rgba(var(--gold), 0.07);
  }
  50% {
    border-color: rgba(var(--gold), 0.34);
    box-shadow:
      inset 0 0 2rem rgba(var(--gold), 0.075),
      0 0 2.3rem rgba(var(--gold), 0.15);
  }
}

@media (max-width: 40rem) {
  :root {
    --gold: 232, 178, 72;
    --violet: 145, 67, 255;
  }

  .experience {
    padding-block: 2.5rem;
  }

  .brand-stage {
    width: clamp(11rem, 48vw, 15rem);
  }

  .brand-logo,
  .brand-person,
  .brand-complete {
    filter:
      saturate(1.16)
      brightness(1.14)
      contrast(1.06)
      drop-shadow(0 0 1.35rem rgba(var(--violet), 0.16));
  }

  .protection-halo {
    border-color: rgba(var(--gold), 0.3);
  }

  .message {
    max-width: 22rem;
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    letter-spacing: 0.09em;
  }

  .message .evolving-word {
    font-weight: 600;
    background: linear-gradient(
      90deg,
      #9d4dff 0%,
      #c071ff 42%,
      #d5a642 76%,
      #b97824 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    filter:
      brightness(1.1)
      saturate(1.12)
      drop-shadow(0 0 0.5rem rgba(150, 70, 255, 0.42))
      drop-shadow(0 0 0.3rem rgba(210, 154, 54, 0.2));
  }

  .interest-invitation {
    margin-top: 1.25rem;
  }

  .interest-button {
    min-width: 10.75rem;
    padding-block: 0.78rem;
  }

  .email-field {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    border-radius: 1.25rem;
  }

  .email-field button {
    width: 100%;
  }

  .name-fields {
    gap: 0.55rem;
  }

}

@media (max-height: 42rem) and (orientation: landscape) {
  .experience {
    grid-template-columns: auto minmax(15rem, 28rem);
    grid-template-rows: auto;
    gap: clamp(2rem, 7vw, 6rem);
    padding-block: 1.5rem;
  }

  .brand-stage {
    width: clamp(9rem, 24vh, 13rem);
  }

  .message {
    margin: 0;
    text-align: left;
  }

  .interest-invitation {
    grid-column: 2;
    margin-top: 1rem;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-light,
  .brand-stage {
    opacity: 1;
    animation: none;
  }

  .brand-stage,
  .message span {
    transform: none;
  }

  .brand-logo,
  .brand-complete,
  .wordmark {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .brand-person,
  .protection-halo,
  .assembly-burst {
    display: none;
  }

  .message span {
    opacity: 1;
    transition: none;
  }

  .interest-button {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
.stats-page {
  min-height: 100%;
  overflow: auto;
}

.stats-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.stats-panel {
  margin-top: 32px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(222, 180, 83, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(107, 32, 190, 0.18), transparent 48%),
    rgba(10, 7, 14, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.stats-panel h1 {
  margin: 8px 0 28px;
  color: #f8f4ff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.stats-grid article {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(167, 103, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.stats-grid strong {
  color: #d9b25f;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.stats-grid span,
.stats-note {
  color: rgba(239, 231, 250, 0.72);
}

.stats-note {
  max-width: 650px;
  margin: 28px 0 0;
  line-height: 1.65;
}

.stats-insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stats-insight {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(217, 178, 95, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.stats-insight-wide {
  grid-column: 1 / -1;
}

.stats-insight h2 {
  margin: 0 0 18px;
  color: #f8f4ff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.stats-insight p {
  margin: 0;
  color: rgba(239, 231, 250, 0.68);
  line-height: 1.7;
}

.stats-insight code {
  color: #e8c777;
}

.stats-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: clamp(6px, 2vw, 16px);
  min-height: 190px;
}

.stats-bar-item {
  display: grid;
  grid-template-rows: auto 128px auto;
  gap: 7px;
  min-width: 0;
  text-align: center;
}

.stats-bar-value,
.stats-bar-label {
  color: rgba(239, 231, 250, 0.7);
  font-size: 0.78rem;
}

.stats-bar {
  display: block;
  align-self: end;
  width: 100%;
  min-height: 6px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #e8c777, #8d6722);
  box-shadow: 0 0 16px rgba(217, 178, 95, 0.14);
}

.stats-bar-level-1 { height: 8px; }
.stats-bar-level-2 { height: 15px; }
.stats-bar-level-3 { height: 22px; }
.stats-bar-level-4 { height: 29px; }
.stats-bar-level-5 { height: 36px; }
.stats-bar-level-6 { height: 44px; }
.stats-bar-level-7 { height: 51px; }
.stats-bar-level-8 { height: 58px; }
.stats-bar-level-9 { height: 65px; }
.stats-bar-level-10 { height: 73px; }
.stats-bar-level-11 { height: 80px; }
.stats-bar-level-12 { height: 87px; }
.stats-bar-level-13 { height: 94px; }
.stats-bar-level-14 { height: 102px; }
.stats-bar-level-15 { height: 109px; }
.stats-bar-level-16 { height: 116px; }
.stats-bar-level-17 { height: 123px; }
.stats-bar-level-18 { height: 131px; }
.stats-bar-level-19 { height: 138px; }
.stats-bar-level-20 { height: 145px; }

.stats-breakdown {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-breakdown li:last-child {
  border-bottom: 0;
}

.stats-breakdown span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(239, 231, 250, 0.72);
}

.stats-breakdown strong {
  color: #e8c777;
}

.signup-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
}

.signup-heading h2 {
  margin: 6px 0 0;
  color: #f8f4ff;
}

.stats-download {
  flex: none;
  padding: 11px 17px;
  border: 1px solid rgba(222, 180, 83, 0.45);
  border-radius: 999px;
  color: #e8c777;
  text-decoration: none;
}

.stats-download:hover,
.stats-download:focus-visible {
  border-color: #e8c777;
  background: rgba(232, 199, 119, 0.08);
}

.signup-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid rgba(167, 103, 255, 0.16);
  border-radius: 18px;
}

.signup-table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(248, 244, 255, 0.82);
}

.signup-table th,
.signup-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(167, 103, 255, 0.12);
  text-align: left;
  white-space: nowrap;
}

.signup-table th {
  color: #d9b25f;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-table tr:last-child td {
  border-bottom: 0;
}

.copy-email {
  flex: none;
  padding: 6px 10px;
  border: 1px solid rgba(213, 175, 255, 0.35);
  border-radius: 999px;
  color: #d5afff;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.signup-email-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 290px;
}

.copy-email:hover,
.copy-email:focus-visible {
  border-color: #d5afff;
  background: rgba(213, 175, 255, 0.08);
}

.copy-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: #d9b25f;
  font-size: 0.9rem;
}

.stats-empty {
  color: rgba(239, 231, 250, 0.58);
  text-align: center !important;
}

@media (max-width: 620px) {
  .stats-insights {
    grid-template-columns: 1fr;
  }

  .stats-insight-wide {
    grid-column: auto;
  }

  .stats-bar-item {
    grid-template-rows: auto 96px auto;
  }

  .signup-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Private Fuller Evolve control panel */
.stats-page {
  min-height: 100%;
  overflow: auto;
  color: #f8f4ff;
  background:
    radial-gradient(circle at 72% 8%, rgba(99, 31, 171, 0.16), transparent 30%),
    #050307;
}

.control-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
}

.control-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  padding: 34px 22px;
  border-right: 1px solid rgba(222, 180, 83, 0.13);
  background: rgba(8, 5, 11, 0.9);
  flex-direction: column;
}

.control-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f8f4ff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.control-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.control-nav {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.control-nav-button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(239, 231, 250, 0.62);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.control-nav-button:hover,
.control-nav-button:focus-visible {
  color: #f8f4ff;
  background: rgba(255, 255, 255, 0.035);
}

.control-nav-button.is-active {
  border-color: rgba(216, 178, 95, 0.24);
  color: #f4d58b;
  background:
    linear-gradient(100deg, rgba(116, 47, 190, 0.18), rgba(216, 178, 95, 0.07));
}

.control-private {
  margin: auto 0 0;
  color: rgba(239, 231, 250, 0.35);
  font-size: 0.7rem;
  line-height: 1.5;
}

.control-main {
  min-width: 0;
  padding: clamp(30px, 5vw, 64px);
}

.control-view[hidden] {
  display: none;
}

.control-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.control-heading h1 {
  margin: 7px 0 6px;
  color: #f8f4ff;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 500;
}

.control-heading > div > p:last-child {
  margin: 0;
  color: rgba(239, 231, 250, 0.56);
}

.control-status,
.control-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 8px 12px;
  border: 1px solid rgba(216, 178, 95, 0.22);
  border-radius: 999px;
  color: #e8c777;
  background: rgba(216, 178, 95, 0.055);
  font-size: 0.74rem;
}

.control-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fd5a8;
  box-shadow: 0 0 10px rgba(159, 213, 168, 0.5);
}

.control-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.control-metrics article,
.control-card {
  border: 1px solid rgba(184, 126, 235, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(112, 42, 181, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.control-metrics article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.control-metrics span,
.control-metrics small {
  color: rgba(239, 231, 250, 0.55);
}

.control-metrics small {
  font-size: 0.72rem;
}

.control-metrics strong {
  color: #e4c06d;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 500;
  line-height: 1;
}

.control-metrics .control-word-metric {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.control-metrics .control-date-metric {
  font-size: clamp(0.92rem, 2vw, 1.25rem);
  line-height: 1.35;
}

.control-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 16px;
}

.control-card {
  min-width: 0;
  padding: 22px;
}

.control-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.control-card-heading h2 {
  margin: 0;
  color: #f8f4ff;
  font-size: 1.06rem;
  font-weight: 500;
}

.control-card-heading p {
  margin: 5px 0 0;
  color: rgba(239, 231, 250, 0.46);
  font-size: 0.74rem;
}

.control-card-heading > strong {
  color: #e8c777;
  font-size: 1.4rem;
}

.control-chart-card {
  min-height: 280px;
}

.control-text-button {
  padding: 0;
  border: 0;
  color: #d5afff;
  background: none;
  font: inherit;
  font-size: 0.76rem;
  cursor: pointer;
}

.control-overview-grid .stats-bars {
  min-height: 205px;
  margin-top: 15px;
}

.control-overview-grid .stats-bar-item {
  grid-template-rows: auto 145px auto;
}

.control-overview-grid .stats-breakdown {
  margin-top: 13px;
}

.control-recent-list {
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.control-recent-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.control-recent-list li:last-child {
  border-bottom: 0;
}

.control-recent-list span {
  display: grid;
  gap: 4px;
}

.control-recent-list strong {
  color: rgba(248, 244, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 500;
}

.control-recent-list small,
.control-recent-list time {
  color: rgba(239, 231, 250, 0.45);
  font-size: 0.7rem;
}

.control-view .signup-table-wrap {
  margin-top: 0;
  border: 0;
}

.control-email-card {
  margin-top: 18px;
}

.control-email-preview {
  max-width: 610px;
  margin: 22px auto 0;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(216, 178, 95, 0.17);
  border-radius: 18px;
  color: #eee8f5;
  background: #0d0912;
  line-height: 1.7;
}

.control-email-preview img {
  display: block;
  width: min(175px, 42%);
  height: auto;
  margin: 0 0 24px auto;
}

.control-email-preview p {
  margin: 0 0 18px;
}

.control-email-preview p:last-child {
  margin-bottom: 0;
}

.control-email-motto {
  color: #d5afff;
}

@media (max-width: 900px) {
  .control-shell {
    grid-template-columns: 1fr;
  }

  .control-sidebar {
    position: static;
    z-index: 5;
    min-height: 0;
    padding: 18px clamp(18px, 4vw, 32px);
    border-right: 0;
    border-bottom: 1px solid rgba(222, 180, 83, 0.13);
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }

  .control-nav {
    display: flex;
    gap: 6px;
    margin: 0 0 0 auto;
  }

  .control-nav-button {
    width: auto;
  }

  .control-private {
    display: none;
  }
}

@media (max-width: 720px) {
  .control-main {
    padding: 30px 18px 46px;
  }

  .control-metrics,
  .control-overview-grid {
    grid-template-columns: 1fr;
  }

  .control-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .control-overview-grid .stats-bar-item {
    grid-template-rows: auto 96px auto;
  }

  .control-overview-grid .stats-bars {
    min-height: 155px;
  }
}

@media (max-width: 560px) {
  .control-sidebar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .control-nav {
    width: 100%;
    margin: 0;
    overflow-x: auto;
  }

  .control-nav-button {
    flex: 1 0 auto;
    justify-content: center;
  }

  .control-brand img {
    width: 36px;
    height: 36px;
  }

  .control-card {
    padding: 18px;
  }

  .signup-table th,
  .signup-table td {
    padding: 13px 14px;
  }
}
