:root {
  --bg: #020202;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.58);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  overflow: hidden;
  letter-spacing: 0.01em;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.background-video,
.video-tint,
.video-noise,
.gothic-vignette {
  position: fixed;
  inset: 0;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.28) contrast(1.08);
  animation: videoFlash 7.5s steps(1, end) infinite;
}

.video-tint {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 44%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.24), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.video-noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: screen;
  opacity: 0.28;
  pointer-events: none;
  z-index: 2;
}

.gothic-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.46));
}

.site-sigil-net {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0.72;
}

.site-stamp {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
}

.net-ring,
.net-line,
.net-corner {
  position: absolute;
}

.net-ring {
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.012),
    0 0 22px rgba(255, 255, 255, 0.03);
}

.net-ring-outer {
  width: min(92vw, 920px);
  height: min(92vw, 920px);
  border-radius: 40px;
  transform: rotate(45deg);
  animation: sigilDrift 24s linear infinite;
}

.net-ring-mid {
  width: min(72vw, 660px);
  height: min(72vw, 660px);
  border-radius: 50%;
  animation: sigilPulse 6s ease-in-out infinite;
}

.net-ring-inner {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  border-radius: 50%;
  opacity: 0.72;
}

.net-line {
  opacity: 0.28;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.05);
}

.net-line-v {
  width: 1px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.net-line-h {
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.net-line-d1,
.net-line-d2 {
  width: 1px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.net-line-d1 {
  transform: rotate(45deg);
}

.net-line-d2 {
  transform: rotate(-45deg);
}

.net-corner {
  width: 96px;
  height: 96px;
  border-color: rgba(255, 255, 255, 0.12);
}

.net-corner::before,
.net-corner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
}

.net-corner::before {
  width: 70px;
  height: 1px;
}

.net-corner::after {
  width: 1px;
  height: 70px;
}

.net-corner-tl {
  top: 26px;
  left: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.net-corner-tl::before,
.net-corner-tl::after {
  top: 0;
  left: 0;
}

.net-corner-tr {
  top: 26px;
  right: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.net-corner-tr::before {
  top: 0;
  right: 0;
}

.net-corner-tr::after {
  top: 0;
  right: 0;
}

.net-corner-bl {
  bottom: 26px;
  left: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.net-corner-bl::before {
  bottom: 0;
  left: 0;
}

.net-corner-bl::after {
  bottom: 0;
  left: 0;
}

.net-corner-br {
  bottom: 26px;
  right: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.net-corner-br::before {
  bottom: 0;
  right: 0;
}

.net-corner-br::after {
  bottom: 0;
  right: 0;
}

.loading-screen,
.enter-screen,
.content {
  position: relative;
  z-index: 3;
}

.loading-screen,
.enter-screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.loading-panel {
  width: min(100%, 680px);
  padding: 46px 26px 28px;
  text-align: center;
  border: 0;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 62%);
  box-shadow: var(--shadow);
}

.sigil-core {
  position: relative;
  margin: 0 auto;
  border-radius: 999px;
}

.loader-sigil {
  width: 176px;
  height: 176px;
  margin-bottom: 26px;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.14));
  animation: sigilFloat 4.6s ease-in-out infinite;
}

.enter-gate {
  position: relative;
  width: min(100%, 520px);
  min-height: 290px;
  display: grid;
  place-items: center;
}

.enter-gate::before,
.enter-gate::after {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  transform: rotate(45deg);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.enter-gate::after {
  inset: 24% 24%;
  border-color: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg) scale(1.18);
}

.enter-sigil {
  position: absolute;
  width: 240px;
  height: 240px;
  filter: drop-shadow(0 0 42px rgba(255, 255, 255, 0.16));
  animation: sigilSpin 16s linear infinite;
}

.sigil-ring,
.sigil-mark,
.sigil-center {
  position: absolute;
  inset: 0;
  margin: auto;
}

.sigil-ring {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.sigil-ring-outer {
  width: 100%;
  height: 100%;
  opacity: 0.64;
}

.sigil-ring-mid {
  width: 72%;
  height: 72%;
  opacity: 0.56;
}

.sigil-ring-inner {
  width: 42%;
  height: 42%;
  opacity: 0.46;
}

.sigil-mark {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
  opacity: 0.72;
}

.sigil-mark-v {
  width: 1px;
  height: 100%;
}

.sigil-mark-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.sigil-mark-d1,
.sigil-mark-d2 {
  width: 1px;
  height: 78%;
}

.sigil-mark-d1 {
  transform: rotate(45deg);
}

.sigil-mark-d2 {
  transform: rotate(-45deg);
}

.sigil-center {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.04) 72%);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.22),
    0 0 70px rgba(255, 255, 255, 0.14);
}

.progress-track {
  height: 8px;
  width: min(100%, 320px);
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.04),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18));
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.24);
  transition: width 0.28s ease;
}

.progress-copy,
.enter-note,
.bio,
.tagline {
  color: var(--muted);
}

.progress-copy {
  margin: 14px 0 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.enter-screen {
  gap: 16px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.enter-button {
  position: relative;
  z-index: 1;
  min-width: 280px;
  padding: 22px 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  box-shadow:
    0 0 46px rgba(255, 255, 255, 0.1),
    var(--shadow);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.enter-button::before,
.enter-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: translateY(-50%);
}

.enter-button::before {
  left: 18px;
}

.enter-button::after {
  right: 18px;
}

.enter-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 70px rgba(255, 255, 255, 0.16),
    var(--shadow);
}

.content {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.easter-egg {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(92vw, 360px);
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  z-index: 4;
  pointer-events: none;
}

.easter-egg-text {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.02),
    0 0 30px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  opacity: 0;
  filter: blur(10px) translateY(8px);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: pre-wrap;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
  transition:
    opacity 0.28s ease,
    filter 0.28s ease;
}

.easter-egg.is-revealed .easter-egg-text {
  opacity: 1;
  filter: blur(0) translateY(0);
}

.hero-card {
  position: relative;
  width: min(100%, 560px);
  padding: 44px 28px 30px;
  border: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 48%);
}

.hero-card::after {
  display: none;
}

.cathedral-frame {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  opacity: 0.55;
}

.cathedral-arch,
.cathedral-spine {
  position: absolute;
}

.cathedral-arch {
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  border-bottom: 0;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

.cathedral-arch-outer {
  top: 8px;
  width: min(74%, 350px);
  height: 160px;
}

.cathedral-arch-inner {
  top: 34px;
  width: min(50%, 220px);
  height: 108px;
  opacity: 0.72;
}

.cathedral-spine-v {
  top: 10px;
  left: 50%;
  width: 1px;
  height: calc(100% - 20px);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.09));
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.04);
}

.cathedral-spine-h {
  left: 14%;
  bottom: 72px;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.profile-sigil {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.8;
}

.profile-ring,
.profile-line {
  position: absolute;
}

.profile-ring {
  border: 0;
  border-radius: 999px;
}

.profile-ring-outer {
  width: 100%;
  height: 100%;
}

.profile-ring-mid {
  width: 72%;
  height: 72%;
}

.profile-ring-inner {
  width: 44%;
  height: 44%;
  opacity: 0.72;
}

.profile-line {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}

.profile-line-v {
  width: 1px;
  height: 100%;
}

.profile-line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.profile-line-d1,
.profile-line-d2 {
  width: 1px;
  height: 82%;
}

.profile-line-d1 {
  transform: rotate(45deg);
}

.profile-line-d2 {
  transform: rotate(-45deg);
}

.title-frame {
  position: relative;
  display: grid;
  place-items: center;
  gap: 14px;
  margin: 0 auto 8px;
  width: 100%;
  max-width: 100%;
  padding: 34px 58px 26px;
}

.title-glyph {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.03);
}

.title-glyph::before,
.title-glyph::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}

.title-glyph::before {
  top: 50%;
  left: 16%;
  width: 68%;
  height: 1px;
  transform: translateY(-50%);
}

.title-glyph::after {
  left: 50%;
  top: 16%;
  width: 1px;
  height: 68%;
  transform: translateX(-50%);
}

.title-glyph-left {
  left: 10px;
}

.title-glyph-right {
  right: 10px;
}

.eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.52);
}

.sigil-title {
  display: inline-block;
  max-width: 100%;
  position: relative;
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.35rem, 7vw, 3.95rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 48px rgba(255, 255, 255, 0.1);
}

.sigil-title.is-flicker-off {
  color: rgba(255, 255, 255, 0.18);
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.08),
    0 0 10px rgba(255, 255, 255, 0.04);
}

.sigil-title::before,
.sigil-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sigil-title::before {
  color: rgba(255, 255, 255, 0.18);
  transform: scale(1.06, 1.12);
  filter: blur(8px);
}

.sigil-title::after {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.sigil-title.is-flicker-off::before {
  opacity: 0.12;
  filter: blur(3px);
}

.sigil-title.is-flicker-off::after {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}

.tagline {
  margin: 14px 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.bio {
  max-width: 28rem;
  margin: 4px auto 0;
  font-size: 0.94rem;
  line-height: 1.7;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(100%, 460px);
  margin: 4px auto 10px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.12)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 10px 20px rgba(255, 255, 255, 0.06),
    0 12px 36px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
  transform: translateY(0);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
  position: relative;
  overflow: hidden;
}

.badge-chip::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0.4;
  transform: translateX(-65%);
}

.badge-chip-verified {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.09) 42%, rgba(255, 255, 255, 0.18)),
    rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 12px 24px rgba(255, 255, 255, 0.08),
    0 14px 38px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(255, 255, 255, 0.14);
}

.badge-chip-furry {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07) 42%, rgba(255, 255, 255, 0.16)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 10px 22px rgba(255, 255, 255, 0.07),
    0 12px 34px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 255, 255, 0.1);
}

.badge-chip-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.13)),
    rgba(0, 0, 0, 0.18);
}

.badge-chip:hover {
  transform: translateY(-2px) scale(1.02);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.16)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 12px 24px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(255, 255, 255, 0.14);
}

.actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(100%, 520px);
  margin: 34px auto 0;
}

.icon-link {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.06)),
    rgba(0, 0, 0, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    inset 0 18px 32px rgba(255, 255, 255, 0.035),
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 32px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.icon-link::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.08));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.38;
  pointer-events: none;
}

.icon-link:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0.1)),
    rgba(0, 0, 0, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 20px 36px rgba(255, 255, 255, 0.05),
    0 24px 46px rgba(0, 0, 0, 0.22),
    0 0 44px rgba(255, 255, 255, 0.09);
}

.link-sigil {
  position: absolute;
  top: 50%;
  left: 52px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 58%),
    conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.11), transparent, rgba(255, 255, 255, 0.07), transparent);
  filter: blur(0.2px);
  opacity: 0.9;
  pointer-events: none;
}

.icon-glyph {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 58%, transparent 72%),
    rgba(0, 0, 0, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 10px 18px rgba(255, 255, 255, 0.04),
    0 0 26px rgba(255, 255, 255, 0.08);
}

.icon-glyph::before {
  display: none;
}

.icon-link svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: currentColor;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.14));
}

.telegram-logo {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.08));
}

.vrchat-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: auto;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.link-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 5px;
  text-align: left;
}

.action-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.action-meta {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.link-arrow {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 18px rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes sigilFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@keyframes sigilSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes sigilPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.72;
  }
}

@keyframes sigilDrift {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes videoFlash {
  0%,
  8%,
  22%,
  48%,
  74%,
  100% {
    filter: saturate(1.02) brightness(0.28) contrast(1.08);
  }

  9%,
  23%,
  49%,
  75% {
    filter: saturate(1.2) brightness(0.56) contrast(1.14);
  }

  10%,
  50% {
    filter: saturate(1.08) brightness(0.38) contrast(1.1);
  }
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .site-stamp {
    top: 14px;
    right: 14px;
    padding: 8px 11px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .loading-panel {
    padding: 28px 20px;
  }

  .tagline {
    letter-spacing: 0.18em;
  }

  .loader-sigil {
    width: 144px;
    height: 144px;
  }

  .enter-gate {
    min-height: 250px;
  }

  .enter-sigil {
    width: 208px;
    height: 208px;
  }

  .enter-button {
    min-width: 230px;
    padding: 20px 28px;
    letter-spacing: 0.28em;
  }

  .enter-button::before,
  .enter-button::after {
    width: 28px;
  }

  .net-ring-outer {
    width: min(110vw, 720px);
    height: min(110vw, 720px);
  }

  .net-ring-mid {
    width: min(84vw, 460px);
    height: min(84vw, 460px);
  }

  .net-ring-inner {
    width: min(52vw, 250px);
    height: min(52vw, 250px);
  }

  .net-corner {
    width: 62px;
    height: 62px;
  }

  .net-corner::before {
    width: 44px;
  }

  .net-corner::after {
    height: 44px;
  }

  .hero-card {
    width: 100%;
    padding: 34px 18px 24px;
  }

  .cathedral-arch-outer {
    width: 78%;
    height: 128px;
  }

  .cathedral-arch-inner {
    width: 54%;
    height: 88px;
  }

  .title-glyph {
    width: 46px;
    height: 46px;
  }

  .sigil-title {
    font-size: clamp(2rem, 10vw, 3.15rem);
    letter-spacing: 0.11em;
  }

  .badge-row {
    gap: 8px;
  }

  .badge-chip {
    min-height: 32px;
    padding: 7px 14px;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .actions {
    gap: 12px;
    width: 100%;
  }

  .icon-link {
    min-height: 88px;
    gap: 12px;
    padding: 14px 16px;
    grid-template-columns: auto 1fr auto;
  }

  .link-sigil {
    left: 45px;
    width: 72px;
    height: 72px;
  }

  .icon-glyph {
    width: 52px;
    height: 52px;
  }

  .icon-link svg {
    width: 24px;
    height: 24px;
  }

  .telegram-logo {
    width: 26px;
    height: 26px;
  }

  .vrchat-logo {
    width: 30px;
  }

  .action-label {
    font-size: 0.62rem;
  }

  .action-meta {
    font-size: 0.64rem;
  }

  .link-arrow {
    width: 30px;
    height: 30px;
  }
}
