:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(125, 211, 252, 0.078);
  --panel-strong: rgba(125, 211, 252, 0.13);
  --text: #f7fafc;
  --muted: #c7d9ee;
  --line: rgba(125, 211, 252, 0.22);
  --electric: #00d8ff;
  --electric-soft: rgba(0, 216, 255, 0.19);
  --blue: #0075ff;
  --blue-soft: rgba(0, 117, 255, 0.19);
  --violet: #6d5dfc;
  --radius: 8px;
  --max: 560px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 216, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(0, 117, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 78% 82%, rgba(109, 93, 252, 0.14), transparent 26rem),
    linear-gradient(135deg, #020512 0%, #07182b 54%, #02040a 100%);
  color: var(--text);
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
}

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

.hub {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.intro {
  padding-top: 10px;
}

.banner {
  height: 142px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 5, 18, 0.08), rgba(2, 5, 18, 0.02)),
    url("assets/hero-banner-electric.svg") center / cover no-repeat;
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(0, 216, 255, 0.13);
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.profile-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(0, 216, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.eyebrow,
.handle,
h1,
p {
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.handle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(39px, 11vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy {
  max-width: 48ch;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-card {
  position: relative;
  display: block;
  min-height: 76px;
  padding: 17px 64px 17px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(125, 211, 252, 0.05);
}

.link-card::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--electric);
  content: ">";
  font-weight: 950;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(0, 216, 255, 0.66);
  background: var(--panel-strong);
  outline: none;
}

.link-card-primary {
  border-color: rgba(0, 216, 255, 0.74);
  background:
    linear-gradient(135deg, var(--blue-soft), var(--electric-soft)),
    var(--panel);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(0, 216, 255, 0.16);
}

.link-card-soft {
  opacity: 0.88;
}

.link-main,
.link-note {
  display: block;
  min-width: 0;
}

.link-main {
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 930;
}

.link-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .hub {
    width: min(calc(100% - 24px), var(--max));
    padding-top: 18px;
  }

  .banner {
    height: 104px;
  }

  .link-card {
    min-height: 74px;
    padding: 15px 52px 15px 14px;
  }

  .link-card::after {
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .intro-copy {
    font-size: 16px;
  }
}
