@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&family=Pixelify+Sans:wght@400;500;600&family=Share+Tech+Mono&family=VT323&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #000200;
  --panel: #030603;
  --panel-soft: rgba(4, 13, 5, 0.72);
  --green: #00ff41;
  --green-strong: #00ff41;
  --green-dim: rgba(0, 255, 65, 0.5);
  --green-faint: rgba(0, 255, 65, 0.1);
  --red: #ff666f;
  --white: #f3fff1;
  --muted: rgba(226, 255, 224, 0.72);
  --line: rgba(0, 255, 65, 0.3);
  --font-mono: 'Pixelify Sans', 'Share Tech Mono', monospace;
  --font-display: 'Pixelify Sans', 'Share Tech Mono', monospace;
  --font-script: 'Caveat', cursive;
  --font-body: 'Inter', system-ui, sans-serif;
  --color-bg: var(--bg);
  --color-bg-elevated: #040806;
  --color-surface: rgba(4, 13, 7, 0.92);
  --color-text: var(--white);
  --color-text-muted: rgba(226, 255, 224, 0.68);
  --color-accent: var(--green);
  --color-accent-subtle: var(--green-faint);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: var(--line);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: var(--font-body);
}

.site-loading-overlay[hidden] {
  display: none;
}

.site-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #000200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-loading-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-loading-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 255, 65, 0.28);
}

.site-loading-card img {
  width: min(170px, 46vw);
  height: auto;
  animation: site-loading-pulse 1.4s ease-in-out infinite;
}

.site-loading-meter {
  width: min(220px, 60vw);
  height: 2px;
  overflow: hidden;
  background: rgba(0, 255, 65, 0.14);
}

.site-loading-meter::before {
  content: '';
  display: block;
  width: 42%;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.7);
  animation: site-loading-scan 1s ease-in-out infinite;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 100% 4px, 72px 72px;
  mix-blend-mode: screen;
  opacity: 0.045;
}

button,
input {
  font: inherit;
}

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

.portal-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.portal-screen,
.landing {
  display: none;
}

.portal-screen.is-active {
  display: grid;
}

.landing.is-active {
  display: flex;
}

.portal-screen {
  position: fixed;
  inset: 0;
  place-items: center;
  overflow: hidden;
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  background: #000;
  box-shadow: none;
}

.portal-screen::before {
  content: none;
}

.landing::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 255, 65, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.045;
}

.starfield {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px var(--green);
  animation: blink 2.8s ease-in-out infinite;
}

.star::before,
.star::after {
  content: '';
  position: absolute;
  inset: -5px 1px;
  border-left: 1px solid var(--green);
  opacity: 0.7;
}

.star::after {
  inset: 1px -5px;
  border-left: 0;
  border-top: 1px solid var(--green);
}

.star--one { top: 18%; left: 18%; animation-delay: 0.4s; }
.star--two { top: 28%; right: 19%; transform: scale(0.75); animation-delay: 1.1s; }
.star--three { bottom: 28%; left: 24%; transform: scale(0.6); animation-delay: 1.7s; }
.star--four { top: 46%; right: 12%; transform: scale(0.9); animation-delay: 0.7s; }
.star--five { bottom: 20%; right: 28%; transform: scale(0.55); animation-delay: 2.2s; }

.portal-screen--login .star--one { top: 12%; left: 10%; transform: scale(0.48); animation-delay: 0.1s; }
.portal-screen--login .star--two { top: 8%; right: 24%; transform: scale(0.36); animation-delay: 1.1s; }
.portal-screen--login .star--three { top: 18%; left: 24%; transform: scale(0.66); animation-delay: 2.1s; }
.portal-screen--login .star--four { top: 13%; right: 12%; transform: scale(0.7); animation-delay: 0.7s; }
.portal-screen--login .star--five { top: 25%; left: 13%; transform: scale(0.42); animation-delay: 1.6s; }
.portal-screen--login .star--six { top: 24%; right: 18%; transform: scale(0.52); animation-delay: 2.6s; }
.portal-screen--login .star--seven { top: 32%; left: 8%; transform: scale(0.68); animation-delay: 0.9s; }
.portal-screen--login .star--eight { top: 30%; right: 8%; transform: scale(0.36); animation-delay: 2.9s; }
.portal-screen--login .star--nine { top: 42%; left: 17%; transform: scale(0.34); animation-delay: 1.9s; }
.portal-screen--login .star--ten { top: 39%; right: 22%; transform: scale(0.48); animation-delay: 0.4s; }
.portal-screen--login .star--eleven { top: 50%; left: 6%; transform: scale(0.5); animation-delay: 2.3s; }
.portal-screen--login .star--twelve { top: 51%; right: 6%; transform: scale(0.74); animation-delay: 1.3s; }
.portal-screen--login .star--13 { top: 58%; left: 15%; transform: scale(0.38); animation-delay: 3.1s; }
.portal-screen--login .star--14 { top: 62%; right: 17%; transform: scale(0.42); animation-delay: 0.6s; }
.portal-screen--login .star--15 { top: 69%; left: 25%; transform: scale(0.32); animation-delay: 1.7s; }
.portal-screen--login .star--16 { top: 70%; right: 28%; transform: scale(0.34); animation-delay: 2.5s; }
.portal-screen--login .star--17 { top: 6%; left: 42%; transform: scale(0.28); animation-delay: 2s; }
.portal-screen--login .star--18 { top: 7%; right: 43%; transform: scale(0.3); animation-delay: 0.3s; }
.portal-screen--login .star--19 { top: 20%; left: 42%; transform: scale(0.24); animation-delay: 1.5s; }
.portal-screen--login .star--20 { top: 20%; right: 41%; transform: scale(0.26); animation-delay: 2.7s; }
.portal-screen--login .star--21 { top: 34%; left: 38%; transform: scale(0.22); animation-delay: 0.8s; }
.portal-screen--login .star--22 { top: 34%; right: 38%; transform: scale(0.24); animation-delay: 1.8s; }
.portal-screen--login .star--23 { top: 46%; left: 36%; transform: scale(0.2); animation-delay: 2.8s; }
.portal-screen--login .star--24 { top: 46%; right: 36%; transform: scale(0.22); animation-delay: 1.2s; }
.portal-screen--login .star--25 { top: 78%; left: 12%; transform: scale(0.56); animation-delay: 0.5s; }
.portal-screen--login .star--26 { top: 78%; right: 12%; transform: scale(0.46); animation-delay: 2.2s; }
.portal-screen--login .star--27 { top: 86%; left: 37%; transform: scale(0.22); animation-delay: 1.4s; }
.portal-screen--login .star--28 { top: 86%; right: 36%; transform: scale(0.24); animation-delay: 3s; }

.sketch-star {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.34));
  opacity: 0.92;
}

.sketch-star--a {
  top: 27%;
  left: 27%;
  transform: rotate(-12deg) scale(0.9);
}

.sketch-star--b {
  top: 34%;
  right: 27%;
  transform: rotate(9deg) scale(0.82);
}

.portal-screen--login .sketch-star--a {
  top: calc(50% - 282px);
  left: calc(50% - 154px);
  transform: rotate(-7deg) scale(0.56);
}

.portal-screen--login .sketch-star--b {
  top: calc(50% - 208px);
  right: calc(50% - 176px);
  transform: rotate(8deg) scale(0.66);
}

.portal-screen--welcome .sketch-star--a {
  top: calc(50% - 26px);
  left: calc(50% - 178px);
  transform: rotate(8deg) scale(0.72);
}

.portal-screen--welcome .sketch-star--b {
  top: calc(50% - 186px);
  right: calc(50% - 150px);
  transform: rotate(-9deg) scale(0.74);
}

.runway {
  position: relative;
  z-index: 2;
  width: min(64vw, 560px);
  height: 270px;
}

.trail {
  position: absolute;
  left: 0;
  bottom: 48px;
  width: 72%;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 16;
  opacity: 0.82;
  filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.55));
  animation: trail-flow 2s linear infinite;
}

.santa {
  width: 124px;
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(255, 104, 104, 0.24));
}

.santa-art {
  display: block;
  width: 100%;
  height: auto;
}

.santa svg {
  display: block;
  overflow: visible;
}

.santa-art + svg {
  display: none;
}

.santa-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.santa-face {
  stroke-width: 2.65;
}

.santa-motion {
  stroke-width: 3.6;
  opacity: 0.82;
}

.santa--running {
  position: absolute;
  left: 49%;
  top: 96px;
  animation: santa-run 2.2s ease-in-out infinite;
}

.santa--running .santa-arm-a,
.santa--running .santa-leg-b {
  transform-origin: 60px 80px;
  animation: limb-a 0.45s ease-in-out infinite alternate;
}

.santa--running .santa-arm-b,
.santa--running .santa-leg-a {
  transform-origin: 60px 80px;
  animation: limb-b 0.45s ease-in-out infinite alternate;
}

.portal-copy,
.welcome-stack {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 290px;
  font-family: var(--font-mono);
  text-align: center;
  text-transform: uppercase;
}

.portal-copy h1,
.welcome-stack h1,
.login-card h1 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, min(4vw, 7dvh), 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.26);
}

.portal-copy p,
.welcome-stack p,
.login-card p {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0;
  text-shadow: 0 0 6px rgba(0, 255, 65, 0.16);
}

.meter {
  width: min(226px, 58vw);
  height: 6px;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 255, 65, 0.035);
}

.meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green));
  box-shadow: 0 0 9px rgba(0, 255, 65, 0.28);
  transform-origin: left;
  animation: loadbar 3.2s ease forwards;
}

.next-screen {
  display: none;
}

.login-card {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(520px, calc(100vw - 36px));
  justify-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-mono);
  transform: translateY(clamp(-70px, -8dvh, -24px));
}

.portal-mascot {
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  opacity: 1;
  user-select: none;
  pointer-events: none;
}

.portal-mascot--login {
  width: clamp(148px, min(18vw, 26dvh), 208px);
  margin-bottom: 14px;
  opacity: 1;
  mix-blend-mode: normal;
}

.login-card p {
  max-width: 360px;
  text-align: center;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.login-form {
  display: grid;
  width: min(400px, 100%);
  gap: 16px;
  margin-top: 32px;
  padding: 0;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0, 255, 65, 0.16);
}

.login-tabs button {
  min-height: 38px;
  border: 0;
  outline: none;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.login-tabs .is-selected {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

.login-form label {
  display: grid;
  gap: 6px;
}

.login-form label span {
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.login-form input {
  min-height: 47px;
  border: 1px solid rgba(0, 255, 65, 0.26);
  border-radius: 5px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  padding: 0 14px;
  outline: none;
  font-family: var(--font-mono);
  font-size: 15px;
}

.login-form input:focus {
  border-color: rgba(0, 255, 65, 0.64);
  box-shadow: 0 0 0 1px rgba(0, 255, 65, 0.12);
}

.login-form input::placeholder {
  color: var(--muted);
  text-transform: uppercase;
}

.login-submit {
  min-height: 48px;
  border: 1px solid rgba(0, 255, 65, 0.64);
  border-radius: 5px;
  color: var(--green);
  background: rgba(0, 255, 65, 0.025);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.login-submit:hover,
.login-submit:focus-visible,
.hero-actions a:hover,
.hero-actions a:focus-visible {
  border-color: var(--green);
  background: rgba(0, 255, 65, 0.09);
  box-shadow: 0 0 18px rgba(0, 255, 65, 0.16);
  outline: none;
}

.admin-login-modal[hidden] {
  display: none;
}

.admin-login-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.admin-login-card {
  display: grid;
  width: min(360px, 100%);
  gap: 14px;
  padding: 22px;
  color: var(--green);
  background: rgba(3, 6, 3, 0.96);
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.62), inset 0 0 22px rgba(0, 255, 65, 0.035);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.admin-login-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.24);
}

.admin-login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}

.admin-login-card input {
  min-height: 44px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(0, 255, 65, 0.24);
  border-radius: 5px;
  outline: none;
}

.admin-login-card input:focus {
  border-color: rgba(0, 255, 65, 0.62);
  box-shadow: 0 0 0 1px rgba(0, 255, 65, 0.12);
}

.admin-login-error {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  line-height: 1.5;
}

.admin-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-login-actions button {
  min-height: 40px;
  color: var(--green);
  background: rgba(0, 255, 65, 0.025);
  border: 1px solid rgba(0, 255, 65, 0.28);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.admin-login-actions button:hover,
.admin-login-actions button:focus-visible {
  border-color: var(--green);
  background: rgba(0, 255, 65, 0.08);
  outline: none;
}

.text-button {
  border: 0;
  outline: none;
  color: var(--green);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 16px 0 0;
  padding: 0;
  text-shadow: 0 0 6px rgba(0, 255, 65, 0.22);
}

.text-button:focus-visible {
  outline: 1px solid rgba(0, 255, 65, 0.34);
  outline-offset: 5px;
}

.welcome-stack {
  margin-top: 0;
  gap: 9px;
  transform: translateY(clamp(-60px, -7dvh, -18px));
  max-width: min(520px, calc(100vw - 36px));
}

.portal-mascot--welcome {
  width: clamp(148px, min(18vw, 26dvh), 208px);
  margin-bottom: 14px;
  opacity: 1;
  mix-blend-mode: normal;
  transform: translateX(0);
}

.welcome-stack h1 {
  font-size: clamp(2rem, min(4vw, 7dvh), 3.2rem);
}

.welcome-stack .meter {
  margin-top: 14px;
}

.meter--welcome span {
  animation-duration: 4.6s;
}

.unlock-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(430px, calc(100vw - 36px));
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(202, 255, 201, 0.56);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.unlock-steps li {
  min-height: 32px;
  padding: 9px 8px;
  border: 1px solid rgba(0, 255, 65, 0.15);
  background: rgba(0, 255, 65, 0.02);
  animation: step-glow 4.6s ease forwards;
}

.unlock-steps li:nth-child(2) {
  animation-delay: 0.9s;
}

.unlock-steps li:nth-child(3) {
  animation-delay: 1.8s;
}

.landing {
  --home-logo-mark-size: 52px;
  --home-logo-font-size: 13px;
  --home-logo-letter-spacing: 3px;

  position: relative;
  min-height: 100vh;
  padding: 0 28px 32px;
  overflow: auto;
  background: var(--bg);
}

.portal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 255, 65, 0.16);
  background: rgba(0, 2, 0, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 255, 65, 0.28);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--red);
  filter: drop-shadow(0 0 5px rgba(255, 104, 104, 0.42));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a:first-child {
  color: var(--green);
}

.main-nav a,
.socials a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.socials a:hover,
.socials a:focus-visible {
  color: var(--green);
  outline: none;
  text-shadow: 0 0 12px rgba(0, 255, 65, 0.34);
}

.visitor-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 255, 65, 0.025);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.visitor-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(0, 255, 65, 0.7);
}

.visitor-chip strong {
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.hero-portal {
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  max-width: 1320px;
  min-height: min(760px, calc(100vh - 92px));
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 255, 65, 0.14);
}

.hero-art {
  position: absolute;
  inset: 18px 0 0;
  overflow: hidden;
}

.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 2, 0, 0.98), rgba(0, 2, 0, 0.24) 38%, rgba(0, 2, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 2, 0, 1), transparent 36%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.44) brightness(0.72);
}

.hero-title {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding: 0 0 74px 46px;
}

.hero-title p {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title h1 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(0, 255, 65, 0.3);
}

.hero-title span {
  display: block;
  max-width: 360px;
  margin-top: 28px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 255, 65, 0.34);
  border-radius: 5px;
  color: var(--green);
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-note {
  position: absolute;
  right: 34px;
  bottom: 44px;
  z-index: 4;
  width: min(260px, 28vw);
  padding: 16px;
  border: 1px solid rgba(0, 255, 65, 0.22);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 2, 0, 0.62);
  backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.hero-note span {
  display: block;
  margin-bottom: 12px;
  color: rgba(202, 255, 201, 0.58);
  font-size: 10px;
}

.hero-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.hero-note strong {
  color: var(--green);
  font-weight: 500;
}

.hero-note dl {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
}

.hero-note div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 255, 65, 0.18);
}

.hero-note dt,
.hero-note dd {
  margin: 0;
}

.hero-note dt {
  color: rgba(202, 255, 201, 0.52);
  font-size: 9px;
}

.hero-note dd {
  color: var(--green);
  font-size: 12px;
  text-align: right;
}

.landing-player {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px 0 52px;
  border-bottom: 1px solid rgba(0, 255, 65, 0.14);
}

.landing-player__copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.landing-player__copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
}

.landing-player__copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.landing-player__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 230px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 255, 65, 0.035);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-player__button:hover,
.landing-player__button:focus-visible {
  border-color: var(--green);
  background: rgba(0, 255, 65, 0.09);
  box-shadow: 0 0 26px rgba(0, 255, 65, 0.16);
  transform: translateY(-3px);
  outline: none;
}

.portal-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  min-height: 78px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 255, 65, 0.14);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 28px;
  font-size: 20px;
}

.playlist-toggle {
  color: var(--green);
  background: rgba(4, 13, 7, 0.92);
  border-color: var(--line);
  box-shadow: 0 0 24px rgba(0, 255, 65, 0.12);
}

.playlist-toggle:hover {
  box-shadow: 0 0 36px rgba(0, 255, 65, 0.22);
}

.playlist-toggle.active {
  color: var(--bg);
  background: var(--green);
  border-color: var(--green);
}

.playlist-panel {
  background: rgba(1, 5, 3, 0.98);
  border-color: var(--line);
}

.playlist-btn--play:hover {
  color: var(--bg);
  background: var(--green);
}

@keyframes blink {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 1; }
}

@keyframes site-loading-pulse {
  0%, 100% { opacity: 0.78; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes site-loading-scan {
  0% { transform: translateX(-105%); }
  100% { transform: translateX(245%); }
}

@keyframes trail-flow {
  to { stroke-dashoffset: -48; }
}

@keyframes santa-run {
  0%, 100% { transform: translate3d(-30px, 8px, 0) rotate(-7deg); }
  50% { transform: translate3d(32px, -14px, 0) rotate(6deg); }
}

@keyframes limb-a {
  to { transform: rotate(17deg); }
}

@keyframes limb-b {
  to { transform: rotate(-17deg); }
}

@keyframes float-santa {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

@keyframes welcome-santa {
  0%, 100% { transform: translateX(-18px) rotate(-6deg); }
  50% { transform: translateX(18px) rotate(6deg); }
}

@keyframes loadbar {
  from { transform: scaleX(0.1); }
  to { transform: scaleX(1); }
}

@keyframes step-glow {
  0%, 34% {
    color: rgba(202, 255, 201, 0.42);
    border-color: rgba(0, 255, 65, 0.15);
    background: rgba(0, 255, 65, 0.02);
  }

  48%, 100% {
    color: var(--green);
    border-color: rgba(0, 255, 65, 0.42);
    background: rgba(0, 255, 65, 0.06);
  }
}

@media (max-width: 900px) {
  .portal-screen {
    inset: 0;
    min-height: 100vh;
  }

  .runway {
    width: min(88vw, 420px);
    height: 250px;
  }

  .next-screen {
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 46px;
  }

  .portal-screen--login .next-screen {
    display: none;
  }

  .landing {
    padding: 0 16px 22px;
  }

  .portal-nav {
    height: 66px;
  }

  .portal-shell {
    --nav-height: 66px;
  }

  .visitor-chip {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(1, 5, 1, 0.96);
  }

  .main-nav.is-open {
    display: grid;
  }

  .hero-portal {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    height: min(56vh, 430px);
    border: 1px solid rgba(0, 255, 65, 0.14);
  }

  .hero-art::before {
    background:
      linear-gradient(0deg, rgba(0, 2, 0, 0.94), transparent 42%),
      linear-gradient(90deg, rgba(0, 2, 0, 0.42), transparent);
  }

  .hero-title {
    padding: 20px 0 30px;
  }

  .hero-title h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 28px;
  }

  .landing-player {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 28px 0 34px;
  }

  .landing-player__button {
    width: 100%;
  }

  .portal-footer {
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .portal-copy {
    margin-top: 250px;
  }

  .login-card {
    width: min(440px, calc(100vw - 28px));
    padding: 0;
    transform: translateY(-36px);
  }

  .login-form {
    width: min(400px, 100%);
    padding: 0;
    margin-bottom: 0;
  }

  .portal-copy h1,
  .welcome-stack h1,
  .login-card h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .unlock-steps {
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 36px));
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions a {
    justify-content: center;
  }
}

@media (max-height: 680px) {
  .login-card {
    gap: 8px;
    transform: translateY(clamp(-34px, -5dvh, -16px));
  }

  .welcome-stack {
    gap: 8px;
    transform: translateY(clamp(-26px, -4dvh, -10px));
  }

  .portal-mascot--login,
  .portal-mascot--welcome {
    width: clamp(126px, min(15vw, 22dvh), 168px);
    margin-bottom: 8px;
  }

  .login-form {
    gap: 10px;
    margin-top: clamp(16px, 4dvh, 24px);
  }

  .login-form input,
  .login-submit {
    min-height: 42px;
  }

  .portal-copy h1,
  .welcome-stack h1,
  .login-card h1 {
    font-size: clamp(1.65rem, min(3.5vw, 6dvh), 2.6rem);
  }

  .portal-copy p,
  .welcome-stack p,
  .login-card p {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* V1-style landing, scoped to the post-login page. */
.portal-shell[data-screen='landing'] {
  overflow: visible;
}

body.has-entered {
  background: #050705;
}

body.has-entered::before {
  content: none;
}

.landing {
  --font-mono: 'Share Tech Mono', monospace;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'VT323', monospace;
  --color-bg: #050705;
  --color-text: #eef2ee;
  --color-text-secondary: #a8aea8;
  --color-text-muted: #747c74;
  --color-accent: #00ff41;
  --color-accent-dim: rgba(0, 255, 65, 0.72);
  --color-accent-subtle: rgba(0, 255, 65, 0.045);
  --color-accent-glow: rgba(0, 255, 65, 0.12);
  --color-border: rgba(255, 255, 255, 0.08);
  --content-padding: 24px;
  --max-width: 1200px;
  --nav-height: 56px;
  --nav-bg: rgba(10, 10, 10, 0.85);
  --nav-blur: 16px;
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--nav-height) 0 0;
  flex-direction: column;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.65;
}

.landing::before {
  content: none;
}

.landing:not(.is-active) {
  display: none;
}

.landing #matrix-rain {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.landing .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom: 1px solid var(--color-border);
}

.landing .nav-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: var(--home-logo-font-size);
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: var(--home-logo-letter-spacing);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.45);
}

.landing .nav-logo__mark {
  width: var(--home-logo-mark-size);
  height: var(--home-logo-mark-size);
  flex: 0 0 var(--home-logo-mark-size);
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 1;
}

.landing .nav-logo__word {
  display: none;
}

.landing .nav-links {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing .nav-visitor-chip {
  position: relative;
  display: inline-block;
  max-width: 170px;
  margin-left: auto;
  margin-right: 14px;
  color: var(--color-accent);
  font-family: var(--font-mono);
}

.landing .nav-visitor-chip__button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 170px;
  min-height: 30px;
  padding: 0 11px;
  color: var(--color-accent);
  background: rgba(0, 255, 65, 0.026);
  border: 1px solid rgba(0, 255, 65, 0.16);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.22);
}

.landing .nav-visitor-chip__button:hover,
.landing .nav-visitor-chip__button:focus-visible,
.landing .nav-visitor-chip__button[aria-expanded='true'] {
  border-color: rgba(0, 255, 65, 0.36);
  background: rgba(0, 255, 65, 0.055);
  outline: none;
}

.landing .nav-visitor-chip__dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.7);
}

.landing .nav-visitor-chip strong {
  min-width: 0;
  overflow: hidden;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing .nav-visitor-menu[hidden] {
  display: none;
}

.landing .nav-visitor-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  z-index: 1010;
  display: grid;
  min-width: 150px;
  padding: 5px;
  background: rgba(5, 7, 5, 0.98);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.62), inset 0 0 18px rgba(0, 255, 65, 0.025);
}

.landing .nav-visitor-menu button {
  min-height: 31px;
  padding: 0 10px;
  color: rgba(224, 224, 224, 0.72);
  background: transparent;
  border: 0;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-align: left;
  text-transform: uppercase;
}

.landing .nav-visitor-menu button:hover,
.landing .nav-visitor-menu button:focus-visible {
  color: var(--color-accent);
  background: rgba(0, 255, 65, 0.08);
  outline: none;
}

.visitor-rename-modal[hidden] {
  display: none;
}

.visitor-rename-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.visitor-rename-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.visitor-rename-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(420px, 100%);
  gap: 16px;
  padding: 22px;
  color: var(--color-text);
  background: rgba(5, 7, 5, 0.98);
  border: 1px solid rgba(0, 255, 65, 0.24);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72), inset 0 0 24px rgba(0, 255, 65, 0.035);
  font-family: var(--font-mono);
}

.visitor-rename-dialog h2 {
  margin: 0;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.visitor-rename-dialog label {
  display: grid;
  gap: 8px;
  color: rgba(224, 224, 224, 0.62);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.visitor-rename-dialog input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--color-accent);
  background: rgba(0, 255, 65, 0.035);
  border: 1px solid rgba(0, 255, 65, 0.22);
  border-radius: 4px;
  font: inherit;
  letter-spacing: 1.2px;
}

.visitor-rename-dialog input:focus {
  border-color: rgba(0, 255, 65, 0.52);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.08);
}

.visitor-rename-dialog__error {
  margin: -4px 0 0;
  color: #ff6b6b;
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.visitor-rename-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.visitor-rename-dialog__actions button {
  min-height: 34px;
  padding: 0 13px;
  color: rgba(224, 224, 224, 0.7);
  background: transparent;
  border: 1px solid rgba(0, 255, 65, 0.18);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.visitor-rename-dialog__actions button[type='submit'] {
  color: #021006;
  background: var(--color-accent);
  border-color: var(--color-accent);
}


.landing .nav-links a {
  display: block;
  padding: 8px 20px;
  color: rgba(224, 224, 224, 0.42);
  border-left: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 150ms, background 150ms, text-shadow 150ms;
}

.landing .nav-links a::before {
  content: './';
  color: var(--color-text-muted);
  opacity: 0.4;
}

.landing .nav-links a:hover,
.landing .nav-links a:focus-visible {
  color: var(--color-accent);
  background: var(--color-accent-subtle);
  border-left-color: var(--color-border);
  outline: none;
  text-shadow: 0 0 8px var(--color-accent);
}

.landing .nav-links.open {
  background: #050705 !important;
  background-color: #050705 !important;
}

.landing .nav-links.open a,
.landing .nav-links.open a:hover,
.landing .nav-links.open a:focus-visible {
  background: transparent !important;
}

.landing .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.landing .nav-toggle:focus-visible {
  border-color: rgba(0, 255, 65, 0.45);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 255, 65, 0.08);
}

.landing .nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--color-accent);
}

.landing .hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  overflow: hidden;
}

.landing .hero-left {
  position: absolute;
  left: var(--content-padding);
  bottom: clamp(76px, 12vh, 132px);
  display: flex;
  width: min(57vw, 720px);
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  transform: none;
  z-index: 2;
}

.landing .hero-line1 {
  margin: 0 0 24px;
  color: var(--color-accent-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
}

.landing .hero-line1__text {
  animation: v1-flicker 3s ease-in-out infinite;
}

.landing .hero-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--color-accent);
  animation: v1-blink-cursor 1s step-end infinite;
}

.landing .hero-line2 {
  min-height: 2.15em;
  margin: 0 0 14px;
  color: var(--color-accent);
  font-family: var(--font-display);
  max-width: 720px;
  font-size: clamp(2.25rem, 4.05vw, 3.65rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.24);
}

.landing .typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 4px;
  vertical-align: text-bottom;
  background: var(--color-accent);
  animation: v1-blink-cursor 0.8s step-end infinite;
}

.landing .hero-line2--glow {
  animation: v1-text-glow 3s ease-in-out infinite;
}

.landing .hero-line3 {
  max-width: 560px;
  margin: 0;
  color: rgba(226, 255, 224, 0.68);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.16);
}

.landing .hero-right {
  position: absolute;
  inset: 0;
  display: block;
  max-width: none;
  pointer-events: none;
  z-index: 1;
}

.landing .hero-photo-wrap {
  isolation: isolate;
  position: absolute;
  inset: 0;
  width: auto;
  overflow: hidden;
}

.landing .hero-photo {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: brightness(0.78) contrast(1.08) saturate(0.48);
}

.landing .hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--color-bg) 0%, rgba(5, 7, 5, 0.98) 28%, rgba(5, 7, 5, 0.78) 46%, transparent 66%),
    linear-gradient(to left, var(--color-bg) 0%, transparent 17%),
    linear-gradient(to bottom, var(--color-bg) 0%, transparent 12%),
    linear-gradient(to top, var(--color-bg) 0%, transparent 23%);
}

.landing .hero-photo-wrap::after {
  content: none;
}

.landing .playlist-toggle {
  color: var(--color-accent);
  background: rgba(10, 10, 10, 0.72);
  border-color: rgba(0, 255, 65, 0.22);
  box-shadow: 0 0 24px rgba(0, 255, 65, 0.12);
}

.landing .playlist-toggle:hover {
  box-shadow: 0 0 36px rgba(0, 255, 65, 0.22);
}

.landing .playlist-toggle.active {
  color: #0a0a0a;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.landing .playlist-panel {
  background: rgba(1, 5, 3, 0.98);
  border-color: rgba(0, 255, 65, 0.3);
}

.landing .playlist-btn--play:hover {
  color: #0a0a0a;
  background: var(--color-accent);
}

.landing .site-footer {
  position: relative;
  z-index: 1;
  padding: 18px var(--content-padding) 20px;
  border-top: 0;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  line-height: 1.9;
  opacity: 0.78;
  text-align: center;
}

.landing .site-footer > p:first-child {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.landing .site-footer__disclaimer {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
  opacity: 0.88;
}

.landing .site-footer__disclaimer a {
  color: var(--color-accent);
  text-decoration: none;
}

.landing .site-footer__disclaimer a:hover {
  text-decoration: underline;
}

@media (max-height: 680px) {
  .landing {
    overflow-y: auto;
  }

  .landing .hero {
    min-height: min(520px, calc(100svh - var(--nav-height) - 46px));
  }
}

@keyframes v1-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
  25%, 75% { opacity: 0.85; }
}

@keyframes v1-blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes v1-text-glow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(0, 255, 65, 0.3),
      0 0 60px rgba(0, 255, 65, 0.08);
  }

  50% {
    text-shadow:
      0 0 30px rgba(0, 255, 65, 0.5),
      0 0 80px rgba(0, 255, 65, 0.15),
      0 0 120px rgba(0, 255, 65, 0.05);
  }
}

@media (max-width: 1024px) {
  .landing {
    padding-top: 56px;
  }

  .landing .nav-inner {
    padding: 0 20px;
  }

  .landing .nav-logo {
    font-size: var(--home-logo-font-size);
  }

  .landing .nav-toggle {
    display: flex;
  }

  .landing .nav-visitor-chip {
    max-width: min(34vw, 132px);
    margin-left: auto;
    margin-right: 10px;
  }

  .landing .nav-visitor-chip__button {
    max-width: min(34vw, 132px);
    min-height: 28px;
    padding: 0 9px;
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .landing .nav-visitor-menu {
    right: 10px;
  }

  .landing .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: 2px;
    isolation: isolate;
    padding: 14px 20px 18px;
    background: #050705 !important;
    background-color: #050705 !important;
    border-top: 1px solid rgba(0, 255, 65, 0.12);
    border-bottom: 1px solid rgba(0, 255, 65, 0.24);
    box-shadow:
      0 22px 40px rgba(0, 0, 0, 0.82),
      inset 0 1px 0 rgba(0, 255, 65, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #050705;
  }

  .landing .nav-links.open {
    display: flex;
  }

  .landing .nav-links a {
    padding: 14px 18px;
    color: rgba(224, 224, 224, 0.74);
    background: transparent !important;
    border-left-color: rgba(0, 255, 65, 0.12);
    text-shadow: none;
  }

  .landing .nav-links a:hover,
  .landing .nav-links a:focus-visible {
    color: var(--color-accent);
    background: transparent !important;
    border-left-color: rgba(0, 255, 65, 0.55);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.34);
  }

  .landing .hero {
    display: flex;
    align-items: flex-end;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 20px;
  }

  .landing .hero-left {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: clamp(58px, 10svh, 96px);
    z-index: 3;
    width: min(100%, 460px);
    padding: 0;
    justify-content: flex-end;
    transform: none;
  }

  .landing .hero-line1 {
    white-space: normal;
  }

  .landing .hero-line2 {
    min-height: 2.15em;
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .landing .hero-line3 {
    font-size: 14px;
  }

  .landing .site-footer {
    padding: 10px 20px 12px;
  }

  .landing .hero-right {
    position: absolute;
    inset: 0;
    max-width: none;
    width: 100%;
  }

  .landing .hero-photo-wrap {
    inset: 0;
    width: 100%;
  }

  .landing .hero-photo {
    object-fit: cover;
    object-position: 48% center;
  }

  .landing .hero-photo-wrap::before {
    background:
      linear-gradient(to bottom, rgba(5, 7, 5, 0.04) 0%, rgba(5, 7, 5, 0.18) 34%, rgba(5, 7, 5, 0.78) 58%, var(--color-bg) 86%),
      linear-gradient(to right, var(--color-bg) 0%, transparent 16%),
      linear-gradient(to left, var(--color-bg) 0%, transparent 12%);
  }
}
