* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050507;
  --panel: rgba(12, 12, 18, 0.55);
  --text: #f7f7fb;
  --muted: #9a9aad;
  --cyan: #23d9ff;
  --purple: #8d4dff;
  --magenta: #ff2bd6;
  --line: rgba(255,255,255,0.12);
}

html, body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(141,77,255,.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,43,214,.10), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: "Rajdhani", system-ui, sans-serif;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hero {
  width: min(920px, 100%);
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 2px solid var(--magenta);
  opacity: .35;
  pointer-events: none;
}

.eyebrow {
  font-family: "VT323", monospace;
  letter-spacing: .25em;
  color: var(--cyan);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .78;
  font-weight: 700;
  letter-spacing: -.05em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro {
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  max-width: 620px;
  margin-bottom: 34px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px var(--magenta);
  animation: pulse 1.5s infinite;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent 35%, transparent 65%, var(--magenta));
  opacity: .5;
  margin: 42px 0 28px;
}

.philosophy {
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .95rem;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .12em;
  transition: color .2s ease, text-shadow .2s ease;
}

.socials a:hover {
  color: #fff;
  text-shadow: 0 0 14px var(--cyan);
}

.tiny {
  font-family: "VT323", monospace;
  color: #666679;
  font-size: .95rem;
}

.glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .16;
  pointer-events: none;
  z-index: 0;
}

.glow-one {
  background: var(--purple);
  top: -15vw;
  left: -10vw;
}

.glow-two {
  background: var(--magenta);
  bottom: -18vw;
  right: -10vw;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

@keyframes pulse {
  0%, 100% { opacity: .35; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 640px) {
  .hero {
    padding: 34px 24px;
  }

  .socials {
    flex-direction: column;
    gap: 12px;
  }

  h1 {
    line-height: .85;
  }
}
