:root {
  color-scheme: dark;
  --page-bg: #06101d;
  --text-primary: #f6fbff;
  --text-muted: #91a9d1;
  --border: #253553;
  --accent-purple: #6f6cff;
  --accent-teal: #1de1a8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 50% at 50% 50%, rgba(111, 108, 255, 0.07) 0%, rgba(29, 225, 168, 0.05) 40%, transparent 70%),
    var(--page-bg);
  color: var(--text-primary);
  font-family: "DM Sans", "Inter", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.name-first {
  font-weight: 300;
  color: var(--text-primary);
}

.name-last {
  font-weight: 900;
  color: var(--text-primary);
}

.name-divider {
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ff1428 20%, #ff2a2a 50%, #ff1428 80%, transparent 100%);
  border-radius: 999px;
  margin: 1.5rem 0 1.75rem;
  box-shadow:
    0 0 6px rgba(255, 20, 40, 0.9),
    0 0 14px rgba(255, 20, 40, 0.55),
    0 0 28px rgba(255, 20, 40, 0.25);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  transition:
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

/* All buttons use red glow on hover */
.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(255, 20, 40, 0.65);
  color: #ff1428;
  box-shadow: 0 0 8px rgba(255, 20, 40, 0.45), 0 0 18px rgba(255, 20, 40, 0.18);
  outline: none;
}

.social-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile: full circles as per design spec */
@media (max-width: 640px) {
  .social-link {
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
