:root {
  --bg: #050507;
  --bg-2: #0b0b10;
  --green: #8cff00;
  --purple: #9b35ff;
  --white: #f5f5f5;
  --muted: #a8a8b3;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(140, 255, 0, 0.34);
  --violet-line: rgba(155, 53, 255, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 44%, rgba(155, 53, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 19% 16%, rgba(140, 255, 0, 0.12), transparent 28rem),
    linear-gradient(120deg, var(--bg), var(--bg-2) 52%, #030304);
  font-family: ui-monospace, "SFMono-Regular", "Cascadia Code", "Liberation Mono", Menlo, monospace;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.34;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.03) 39px 40px);
  mask-image: linear-gradient(90deg, #000, transparent 73%);
}

a {
  color: inherit;
}

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

.ambient-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.62;
  background:
    linear-gradient(135deg, transparent 0 13%, rgba(140, 255, 0, 0.17) 13.2%, transparent 13.6%),
    linear-gradient(25deg, transparent 0 18%, rgba(155, 53, 255, 0.16) 18.2%, transparent 18.7%),
    linear-gradient(90deg, transparent 0 2.4rem, rgba(140, 255, 0, 0.09) 2.45rem, transparent 2.5rem);
  mask-image: linear-gradient(90deg, #000 0 34%, transparent 70%);
}

.ambient-grid::before,
.ambient-grid::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line);
  filter: drop-shadow(0 0 10px rgba(140, 255, 0, 0.24));
  opacity: 0.45;
}

.ambient-grid::before {
  top: 5rem;
  left: 3rem;
  width: min(28vw, 23rem);
  height: 15rem;
  border-right: 0;
  border-bottom: 0;
  clip-path: polygon(0 0, 68% 0, 82% 20%, 100% 20%, 100% 100%, 0 100%);
}

.ambient-grid::after {
  bottom: 4rem;
  left: 2.4rem;
  width: min(38vw, 37rem);
  height: 12rem;
  border-color: var(--violet-line);
  border-right: 0;
  filter: drop-shadow(0 0 12px rgba(155, 53, 255, 0.26));
  clip-path: polygon(0 0, 100% 0, 100% 72%, 96% 72%, 92% 100%, 0 100%);
}

.code-rain {
  position: absolute;
  top: 2.1rem;
  left: 31vw;
  z-index: -1;
  display: grid;
  gap: 0.55rem;
  width: 27rem;
  color: rgba(140, 255, 0, 0.48);
  font-size: clamp(0.63rem, 0.72vw, 0.78rem);
  line-height: 1.2;
  opacity: 0.55;
  text-shadow: 0 0 18px rgba(155, 53, 255, 0.64);
}

.code-rain span:nth-child(odd) {
  color: rgba(155, 53, 255, 0.6);
}

.status-badge {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.35rem);
  right: clamp(1.25rem, 3.5vw, 3.5rem);
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: clamp(0.7rem, 1vw, 0.92rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-badge::before {
  position: absolute;
  inset: -0.65rem -2.7rem -0.55rem -0.8rem;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 82% 22%, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.74) 56%, transparent 72%);
}

.status-badge strong {
  position: relative;
  color: var(--green);
  font-size: 0.95em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-shadow: 0 0 18px rgba(140, 255, 0, 0.88);
}

.status-badge strong::after {
  position: absolute;
  top: -1.55rem;
  right: -1.65rem;
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(21rem, 43%) minmax(25rem, 57%);
  min-height: 100vh;
  padding: clamp(2rem, 4.2vw, 4.25rem) clamp(1.35rem, 4.4vw, 4.25rem) 4.6rem;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 1) 0 50%, rgba(5, 5, 7, 0.96) 60%, rgba(5, 5, 7, 0.34) 74%, rgba(5, 5, 7, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 5, 7, 0.95) 0, transparent 28%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 47rem;
  padding-top: 1rem;
}

.brand-mark {
  width: clamp(10rem, 17vw, 16rem);
  height: auto;
  margin: 0 0 clamp(0.85rem, 1.5vw, 1.25rem) -0.45rem;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 1rem rgba(140, 255, 0, 0.24));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.9) 73%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 0 62%, rgba(0, 0, 0, 0.9) 73%, transparent 100%);
}

.tagline {
  margin: 0;
  color: var(--green);
  font-size: clamp(0.95rem, 1.55vw, 1.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(140, 255, 0, 0.32);
}

.tagline span {
  color: var(--purple);
  padding: 0 0.45rem;
}

.accent-line {
  width: 5rem;
  height: 0.14rem;
  margin: 1.35rem 0 1.4rem;
  background: linear-gradient(90deg, var(--purple) 0 72%, var(--green) 72% 100%);
  box-shadow: 0 0 16px rgba(155, 53, 255, 0.72);
}

.intro,
.secondary {
  max-width: 42rem;
  margin: 0;
  color: var(--white);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.secondary {
  margin-top: 1.05rem;
  color: #d7d7df;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.45;
}

.availability span {
  color: var(--green);
  font-size: 0.65rem;
  text-shadow: 0 0 16px rgba(140, 255, 0, 0.85);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0 0;
  color: var(--white);
  font-size: 0.98rem;
}

.location span,
.location strong {
  color: var(--green);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(7.25rem, 1fr));
  gap: 0.9rem;
  max-width: 42rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(155, 53, 255, 0.66);
  border-radius: 0.4rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 1.1rem rgba(155, 53, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--green);
  box-shadow:
    inset 0 0 1.4rem rgba(140, 255, 0, 0.1),
    0 0 1.25rem rgba(140, 255, 0, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.hero-art::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 45%, transparent 0 18rem, rgba(5, 5, 7, 0.18) 30rem, rgba(5, 5, 7, 0.64) 58rem),
    linear-gradient(90deg, rgba(5, 5, 7, 1) 0 48%, rgba(5, 5, 7, 0.72) 62%, transparent 78%);
}

.hero-art img {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(72vw, 92rem);
  height: 100%;
  object-fit: cover;
  object-position: 84% center;
  transform: translateY(-50%);
  filter: saturate(1.12) contrast(1.08);
}

.site-footer {
  position: absolute;
  left: clamp(1.35rem, 4.4vw, 4.25rem);
  bottom: 1.35rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer span:nth-child(1),
.site-footer span:nth-child(3) {
  color: var(--green);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.35);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 7rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 1) 0 66%, rgba(5, 5, 7, 0.82) 82%, rgba(5, 5, 7, 0.62)),
      linear-gradient(0deg, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.2) 54%, rgba(5, 5, 7, 0.74));
  }

  .hero-copy {
    max-width: 45rem;
    padding-top: 4.7rem;
  }

  .hero-art img {
    width: 100%;
    opacity: 0.58;
    object-position: 84% center;
  }

  .code-rain {
    left: auto;
    right: 1.5rem;
  }
}

@media (min-width: 900px) and (max-height: 850px) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 2.6rem;
  }

  .hero-copy {
    align-self: start;
    padding-top: 1rem;
  }

  .brand-mark {
    width: clamp(8.5rem, 13vw, 12.25rem);
    margin-bottom: 0.55rem;
  }

  .tagline {
    font-size: clamp(0.82rem, 1.25vw, 1rem);
  }

  .accent-line {
    margin: 0.9rem 0 1rem;
  }

  .intro,
  .secondary {
    max-width: 39rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .secondary {
    margin-top: 0.75rem;
  }

  .availability {
    margin-top: 0.75rem;
    font-size: 0.8rem;
  }

  .location {
    margin-top: 0.65rem;
    font-size: 0.84rem;
  }

  .social-links {
    gap: 0.7rem;
    max-width: 34rem;
    margin-top: 1rem;
  }

  .social-links a {
    min-height: 2.75rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.76rem;
  }

  .site-footer {
    bottom: 1.75rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 72% 15%, rgba(155, 53, 255, 0.16), transparent 20rem),
      radial-gradient(circle at 15% 10%, rgba(140, 255, 0, 0.1), transparent 17rem),
      var(--bg);
  }

  .page-shell {
    overflow: clip;
  }

  .status-badge {
    top: 1.35rem;
    right: 1.45rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.68rem;
  }

  .status-badge strong::after {
    top: -1.15rem;
    right: -0.35rem;
  }

  .code-rain {
    top: 6.7rem;
    right: -6rem;
    width: 22rem;
    opacity: 0.28;
  }

  .hero {
    padding: 4.8rem 1.1rem 6.2rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .brand-mark {
    width: min(68vw, 13.5rem);
    margin: 0 auto 0.85rem;
  }

  .tagline {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .intro,
  .secondary {
    font-size: 0.92rem;
  }

  .availability {
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .location {
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .social-links a {
    min-width: 0;
    width: 100%;
  }

  .hero-art img {
    width: 155%;
    right: -78%;
    opacity: 0.42;
    object-position: 84% center;
  }

  .site-footer {
    left: 1rem;
    right: 1rem;
    bottom: 1.1rem;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: center;
  }
}
