:root {
  --ink: #050605;
  --panel: #0c0f0b;
  --panel-hover: #11160d;
  --line: rgba(216, 255, 170, 0.16);
  --white: #f5f7f1;
  --muted: #9ca396;
  --acid: #a8f000;
  --acid-bright: #c3ff39;
  --shadow: rgba(131, 230, 0, 0.22);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 12%, #18200d 0, var(--ink) 42%);
  background-size: 56px 56px, 56px 56px, auto;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(168, 240, 0, 0.025) 50%, transparent 70%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.055;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  pointer-events: none;
}

.glow {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(146, 225, 0, 0.11);
  filter: blur(110px);
  pointer-events: none;
}

.glow--one {
  top: -15rem;
  left: -12rem;
}

.glow--two {
  right: -15rem;
  bottom: -18rem;
}

.page {
  width: min(100% - 40px, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 52px 0 28px;
}

.hero {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: pulse 2.2s ease-in-out infinite;
}

.profile {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 38px;
}

.profile__frame {
  position: relative;
  padding: 5px;
  border: 1px solid rgba(185, 255, 41, 0.38);
  border-radius: 50%;
  background: #090b08;
  box-shadow: 0 0 45px rgba(144, 235, 0, 0.13);
}

.profile__frame::before,
.profile__frame::after {
  position: absolute;
  z-index: 1;
  background: var(--acid);
  content: "";
}

.profile__frame::before {
  top: 12%;
  right: -3px;
  width: 6px;
  height: 28%;
}

.profile__frame::after {
  bottom: -3px;
  left: 17%;
  width: 27%;
  height: 6px;
}

.profile__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.kicker {
  margin: 0 0 2px;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 12vw, 6.3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.period {
  color: var(--acid);
  text-shadow: 0 0 24px var(--shadow);
}

.intro {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.socials {
  display: grid;
  gap: 10px;
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px 48px 1fr 36px;
  align-items: center;
  min-height: 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  text-decoration: none;
  transform: translateY(12px);
  opacity: 0;
  transition:
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.social-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--acid);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
}

.social-card::after {
  position: absolute;
  top: -100%;
  left: -35%;
  width: 18%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(210, 255, 126, 0.08), transparent);
  content: "";
  transform: rotate(22deg);
  transition: left 0.65s var(--ease);
}

.social-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(177, 255, 24, 0.56);
  outline: none;
  background: var(--panel-hover);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28), inset 0 0 35px rgba(168, 240, 0, 0.025);
  transform: translateY(-3px) translateX(3px);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  transform: scaleY(1);
}

.social-card:hover::after,
.social-card:focus-visible::after {
  left: 125%;
}

.social-card__number {
  align-self: start;
  padding: 12px 0 0 12px;
  color: #555c50;
  font-family: Consolas, monospace;
  font-size: 0.58rem;
}

.social-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.social-card__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-card:hover .social-card__icon,
.social-card:focus-visible .social-card__icon {
  border-color: var(--acid);
  background: var(--acid);
  color: #0b0e08;
}

.social-card__copy {
  display: flex;
  min-width: 0;
  padding-left: 16px;
  flex-direction: column;
  gap: 3px;
}

.social-card__label {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-card__hint {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.social-card__arrow {
  color: var(--muted);
  font-size: 1.25rem;
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.social-card:hover .social-card__arrow,
.social-card:focus-visible .social-card__arrow {
  color: var(--acid);
  transform: translate(3px, -3px);
}

footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  color: #636a5f;
  font-family: Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.footer__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  flex: 1;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 22px var(--acid);
    transform: scale(1.2);
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 720px);
    padding-top: 30px;
  }

  .eyebrow {
    margin-bottom: 23px;
  }

  .profile {
    grid-template-columns: 104px 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .intro {
    font-size: 0.79rem;
  }

  .intro br {
    display: none;
  }

  .social-card {
    grid-template-columns: 24px 42px 1fr 28px;
    min-height: 82px;
  }

  .social-card__number {
    padding-left: 8px;
  }

  .social-card__icon {
    width: 38px;
    height: 38px;
  }

  .social-card__copy {
    padding-left: 12px;
  }
}

@media (max-width: 380px) {
  .profile {
    grid-template-columns: 86px 1fr;
  }

  .intro {
    display: none;
  }
}

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