﻿:root {
  --bg: #0a0a0b;
  --fg: #fafafa;
  --muted: #a1a1aa;
  --accent: #22d3ee;
  --accent-hover: #67e8f9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(34, 211, 238, 0.06), transparent);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.dev-landing {
  width: 100%;
  max-width: 36rem;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
}

.dev-landing__name {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.dev-landing__role {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.dev-landing__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}

.dev-landing__contacts a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s ease;
}

.dev-landing__contacts a:hover,
.dev-landing__contacts a:focus-visible {
  color: var(--accent-hover);
  outline: none;
}

.dev-landing__contacts a:focus-visible {
  text-decoration: underline;
}

.dev-landing__link-group {
  margin: 1.5rem 0 0;
}

.dev-landing__link-group a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.dev-landing__link-group a:hover,
.dev-landing__link-group a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}
