:root {
  --bg-0: #ffffff;

  --bg-1: #ffffff;

  --text: #222222;

  --muted: rgba(40, 40, 40, 0.72);

  --soft: rgba(255, 255, 255, 0.08);

  --pink: #61b0d4;

  --lilac: #d8b6ff;

  --line: rgba(97, 176, 212, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;

  height: 100%;

  margin: 0;

  overflow: hidden;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(97, 176, 212, 0.08),
      transparent 34rem
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(216, 182, 255, 0.06),
      transparent 26rem
    ),
    radial-gradient(
      circle at 50% 30%,
      rgba(97, 176, 212, 0.13),
      transparent 34rem
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(216, 182, 255, 0.11),
      transparent 26rem
    ),
    #ffffff;

  color: var(--text);
}

body {
  min-height: 100dvh;
}

.language-switcher img {
  width: 20px;

  height: 20px;

  border-radius: 50%;

  object-fit: cover;
}

#neural-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  width: 100%;

  height: 100%;
}

body::after {
  content: "";

  position: fixed;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background: radial-gradient(
    circle at center,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 100%
  );
}

.page-shell {
  position: relative;

  z-index: 2;

  width: min(1180px, calc(100% - 32px));

  height: 100dvh;

  max-height: 100dvh;

  margin: 0 auto;

  display: grid;

  grid-template-rows: auto minmax(0, 1fr);

  align-items: stretch;

  padding: clamp(10px, 2.2vh, 22px) 0 clamp(8px, 1.8vh, 18px);

  overflow: hidden;
}

.hero-header {
  text-align: center;

  min-height: 0;
}

.logo {
  width: min(450px, 68vw, 46vh);

  height: auto;

  display: block;

  margin: 0 auto;

  filter: drop-shadow(0 0 18px rgba(97, 176, 212, 0.24));
}

.eyebrow {
  font-weight: 650;

  margin: clamp(2px, 0.7vh, 8px) 0 0;

  color: var(--muted);

  letter-spacing: 0.36em;

  font-size: clamp(0.62rem, 1.2vw, 0.82rem);
}

.subtitulo {
  display: block;

  font-weight: 650;

  margin: clamp(2px, 0.7vh, 8px) 0 0;

  color: var(--muted);

  letter-spacing: 0.12em;

  text-transform: uppercase;

  font-size: clamp(1.15rem, 3vh, 2rem);
}

.hero {
  position: relative;

  min-height: 0;

  display: grid;

  grid-template-rows: auto minmax(0, 1fr) auto;

  place-items: center;

  padding: clamp(6px, 1.5vh, 14px) 0 0;

  overflow: hidden;
}

.glass-panel {
  width: min(340px, 94vw);

  margin: 0;

  padding: clamp(8px, 1.5vh, 14px) 20px;

  text-align: center;

  border: 2px solid var(--line);

  border-radius: 26px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );

  box-shadow: 0 22px 70px rgba(0, 0, 0, 0);

  backdrop-filter: blur(14px);
}

.subtitle {
  max-width: 350px;

  margin: 0 auto;

  color: var(--text);

  font-size: clamp(0.82rem, 1.55vw, 1.05rem);

  line-height: 1.15;
}

.subtitle.en {
  margin-top: 4px;

  color: var(--text);
}

.anna-stage {
  position: relative;

  width: min(520px, 78vw, 62vh);

  height: min(520px, 58vh);

  min-height: 0;

  display: grid;

  place-items: center;

  margin: clamp(-18px, -1.8vh, -4px) 0 0;

  overflow: visible;
}

.halo {
  position: absolute;

  width: 70%;

  aspect-ratio: 1;

  border-radius: 999px;

  background:
    radial-gradient(circle, rgba(97, 176, 212, 0.22), transparent 58%),
    radial-gradient(circle, rgba(97, 176, 212, 0.12), transparent 72%);

  filter: blur(4px);

  transform: translateY(-8%);
}

.anna-image {
  position: relative;

  z-index: 2;

  width: auto;

  height: auto;

  max-width: 80%;

  max-height: 88%;

  margin-top: clamp(-80px, -8vh, -24px);

  object-fit: contain;

  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 22px rgba(97, 176, 212, 0.13));
}

.coming {
  font-weight: 650;

  margin: clamp(-48px, -6vh, -18px) 0 0;

  padding: 10px 14px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  background: rgb(97, 176, 212);

  box-shadow:
    inset 0 0 20px rgba(97, 176, 212, 0.08),
    0 0 28px rgba(97, 176, 212, 0.08);
}

.coming span {
  letter-spacing: 0.28em;

  text-transform: uppercase;

  font-size: clamp(0.7rem, 1.4vw, 0.92rem);

  color: rgba(255, 255, 255, 0.9);
}

.footer {
  text-align: center;

  font-size: 0.88rem;

  line-height: 1.5;

  padding-top: 8px;

  color: var(--text);
}

.footer p {
  margin: 4px 0;
}

.footer .small {
  font-size: 1.3rem;

  letter-spacing: 0.16em;

  color: rgba(97, 176, 212, 0.72);
}

.label {
  position: fixed;

  z-index: 1;

  pointer-events: none;

  transform: translate(-50%, -50%);

  color: rgba(97, 176, 212, 0.74);

  font-size: clamp(12px, 1.55vw, 22px);

  letter-spacing: 0.13em;

  text-transform: uppercase;

  text-shadow: 0 0 12px rgba(97, 176, 212, 0.32);

  white-space: nowrap;

  opacity: 0;

  transition: opacity 0.8s ease;
}

@media (max-height: 780px) and (min-width: 761px) {
  .page-shell {
    padding-top: 8px;

    padding-bottom: 8px;
  }

  .logo {
    width: min(390px, 42vh);
  }

  .subtitulo {
    font-size: clamp(1rem, 2.6vh, 1.55rem);
  }

  .eyebrow {
    font-size: 0.68rem;

    margin-top: 2px;
  }

  .glass-panel {
    padding: 8px 18px;
  }

  .subtitle {
    font-size: 0.86rem;

    line-height: 1.08;
  }

  .anna-stage {
    width: min(430px, 56vh);

    height: min(420px, 52vh);

    margin-top: -8px;
  }

  .anna-image {
    max-height: 90%;

    margin-top: -42px;
  }

  .coming {
    margin-top: -34px;

    padding: 8px 12px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow: hidden;

    background: #fff;
  }

  .page-shell {
    width: min(100% - 24px, 560px);

    padding-top: 16px;
  }

  .logo {
    width: min(450px, 92vw);
  }

  .glass-panel {
    margin-bottom: 10px;

    padding: 10px;

    border-radius: 20px;
  }

  .anna-stage {
    width: min(430px, 90vw);

    height: min(560px, 62vh);
  }

  .anna-image {
    max-width: 80%;

    max-height: 80%;

    margin-top: -80px;
  }

  .coming {
    margin-top: -120px;

    margin-left: -14px;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }
}

@media (max-height: 620px) and (min-width: 761px) {
  .logo {
    width: min(330px, 38vh);
  }

  .subtitulo {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.62rem;
  }

  .anna-stage {
    width: min(350px, 50vh);

    height: min(340px, 48vh);
  }

  .anna-image {
    max-height: 92%;

    margin-top: -28px;
  }

  .coming {
    margin-top: -26px;

    padding: 7px 11px;
  }
}

/*
.label-highlight {
  animation: labelPulse 8s ease;
}
*/

.label-highlight {
  color: rgba(42, 92, 201, 0.95);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(97, 176, 212, 0.85);
  transition:
    color 0.5s ease,
    font-weight 0.5s ease;
}

@keyframes labelPulse {
  0% {
    color: rgba(97, 176, 212, 0.75);
    font-weight: 300;
  }

  10% {
    color: rgba(20, 20, 20, 1);
    font-weight: 400;
  }

  20% {
    color: rgba(20, 20, 20, 1);
    font-weight: 500;
  }

  30% {
    color: rgba(20, 20, 20, 1);
    font-weight: 600;
  }

  40% {
    color: rgba(20, 20, 20, 1);
    font-weight: 700;
  }

  60% {
    color: rgba(20, 20, 20, 1);
    font-weight: 700;
  }

  70% {
    color: rgba(20, 20, 20, 1);
    font-weight: 600;
  }

  80% {
    color: rgba(20, 20, 20, 1);
    font-weight: 500;
  }

  90% {
    color: rgba(20, 20, 20, 1);
    font-weight: 400;
  }

  100% {
    color: rgba(97, 176, 212, 0.75);
    font-weight: 300;
  }
}

@media (prefers-reduced-motion: reduce) {
  .label {
    transition: none;
  }
}
