:root {
  --bg: #020304;
  --panel: rgba(13, 14, 15, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --text: #f7f8f8;
  --muted: #c6cbd0;
  --soft: #8d949b;
  --silver: #d9dde0;
  --silver-strong: #f7f8f8;
  --silver-dark: #778087;
  --stroke: rgba(230, 234, 237, 0.24);
  --stroke-strong: rgba(230, 234, 237, 0.44);
  --shadow: rgba(0, 0, 0, 0.62);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 244, 245, 0.1), transparent 34rem),
    linear-gradient(180deg, #000 0%, #030404 48%, #000 100%);
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.bio-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 clamp(28px, 5vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 24rem),
    rgba(0, 0, 0, 0.92);
}

.section-loader {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.section-loader-error {
  padding: 32px;
  text-align: center;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  gap: 12px;
  border-radius: 8px;
  font-size: clamp(0.82rem, 1.8vw, 0.95rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #0a0b0c;
  background:
    linear-gradient(135deg, #aab1b7 0%, #f6f7f8 45%, #969fa6 100%);
  box-shadow: 0 16px 42px rgba(217, 221, 224, 0.16);
}

.hero-glow-button {
  position: relative;
  overflow: visible;
  border-radius: 2000px;
  background: white !important;
  --left: 0%;
}

.hero-glow-button .hero-button-text {
  position: relative;
  z-index: 10000;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-glow-button svg {
  position: relative;
  z-index: 10000;
}

.hero-glow-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border: solid 1px white;
  border-radius: inherit;
  opacity: 50%;
  background: #ffffff40;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
}

.hero-glow-button:hover::before {
  opacity: 0%;
  background: #ffffff40;
  transition: 0.5s ease;
}

.hero-glow-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--left, 0%);
  z-index: 9999;
  width: 15%;
  height: 80%;
  opacity: 70%;
  background: rgb(255, 207, 74);
  filter: blur(15px);
  mix-blend-mode: screen;
  transform: translate(0%, -50%);
  transition: none;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 248, 248, 0.72);
}

.section {
  width: min(100%, 1080px);
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
}

.section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--silver);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section h2::before,
.section h2::after {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--silver));
}

.section h2::after {
  background: linear-gradient(90deg, var(--silver), transparent);
}

@media (max-width: 760px) {
  .bio-shell {
    padding: 0 0 32px;
  }
}

@media (max-width: 420px) {
  .bio-shell {
    padding: 0 0 28px;
  }

  .button {
    min-height: 56px;
    padding: 0 12px;
  }

  .section h2 {
    gap: 10px;
  }

  .section h2::before,
  .section h2::after {
    width: 18px;
  }
}
