:root {
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #6d28d9;
  --purple-glow: rgba(139, 92, 246, 0.4);
  --purple-subtle: rgba(139, 92, 246, 0.08);
  --black: #09090b;
  --gray-950: #0c0c0f;
  --gray-900: #18181b;
  --gray-800: #27272a;
  --gray-400: #a1a1aa;
  --white: #fafafa;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--black);
  color: var(--gray-400);
}

body {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: screen;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.08), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(109, 40, 217, 0.1), transparent 35%),
    linear-gradient(140deg, #09090b 10%, #0c0c0f 45%, #0a0a0c 100%);
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  z-index: -1;
}

.glow.one {
  width: clamp(220px, 40vw, 520px);
  height: clamp(220px, 40vw, 520px);
  top: 8%;
  left: -5%;
  background: var(--purple);
}

.glow.two {
  width: clamp(200px, 35vw, 460px);
  height: clamp(200px, 35vw, 460px);
  bottom: 0;
  right: -8%;
  background: var(--purple-dark);
}

.container {
  width: min(1300px, 100% - clamp(2rem, 6vw, 7rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.6);
  background: rgba(9, 9, 11, 0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(64px, 9vw, 84px);
  gap: 1rem;
}

.logo {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.logo span {
  color: var(--purple-light);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.6rem, 2vw, 1.4rem);
}

.nav-links a {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.35rem;
  border: 1px solid transparent;
  transition: 220ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.12);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

main {
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 6rem);
}

.hero {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(12, 1fr);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.hero-copy {
  grid-column: span 7;
}

.hero-visual {
  grid-column: span 5;
  border: 1px solid var(--gray-800);
  background: linear-gradient(160deg, rgba(24, 24, 27, 0.95), rgba(12, 12, 15, 0.95));
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: clamp(1rem, 3vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--purple);
  opacity: 0.45;
  transition: width 240ms ease, opacity 240ms ease;
}

.hero-visual:hover::before {
  width: 5px;
  opacity: 0.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: var(--purple-subtle);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple-glow);
}

h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
}

.subtitle {
  color: var(--purple-light);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  max-width: 55ch;
}

.hero-stats {
  margin-top: clamp(1.1rem, 2vw, 1.8rem);
  display: grid;
  gap: clamp(0.8rem, 1.2vw, 1rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  border: 1px solid var(--gray-800);
  background: var(--gray-900);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: 0.9rem 1rem;
}

.stat strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
}

.stat span {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.grid-section {
  margin-top: clamp(2.5rem, 6vw, 6rem);
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(12, 1fr);
}

.card {
  grid-column: span 4;
  border: 1px solid var(--gray-800);
  background: var(--gray-900);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--purple);
  opacity: 0.5;
  transition: opacity 220ms ease, width 220ms ease;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139, 92, 246, 0.2);
}

.card:hover::before {
  width: 5px;
  opacity: 0.9;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.card small {
  color: var(--purple-light);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.page-title {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.person-card {
  border: 1px solid var(--gray-800);
  background: var(--gray-900);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.person-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--purple);
  opacity: 0.5;
  transition: opacity 220ms ease, width 220ms ease;
}

.person-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139, 92, 246, 0.2);
}

.person-card:hover::before {
  width: 5px;
  opacity: 0.9;
}

.avatar {
  width: clamp(100px, 16vw, 140px);
  height: clamp(100px, 16vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.08);
}

.person-name {
  margin-top: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.person-role {
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.person-email {
  margin-top: 0.75rem;
  display: inline-block;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.register-box {
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--gray-800);
  background: linear-gradient(160deg, rgba(24, 24, 27, 0.95), rgba(12, 12, 15, 0.95));
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.15);
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  background: rgba(139, 92, 246, 0.25);
  box-shadow: 6px 6px 0 rgba(139, 92, 246, 0.2);
}

.footer {
  border-top: 1px solid rgba(39, 39, 42, 0.8);
  padding: 1.3rem 0 2rem;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #7f7f88;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scan {
  height: 220px;
  border: 1px solid var(--gray-800);
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.04) 50%, transparent 75%),
    linear-gradient(180deg, rgba(250, 250, 250, 0.03), transparent 50%);
  position: relative;
  overflow: hidden;
}

.scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(167, 139, 250, 0.8);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  animation: sweep 4.5s linear infinite;
}

@keyframes sweep {
  0% {
    top: -3%;
  }
  100% {
    top: 103%;
  }
}

@media (max-width: 990px) {
  .hero-copy,
  .hero-visual,
  .card {
    grid-column: span 12;
  }

  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.8rem;
  }

  .people-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
