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

:root {
  --bg:       #09090b;
  --border:   rgba(255, 255, 255, 0.08);
  --text:     #fafafa;
  --muted:    #71717a;
  --accent-1: #a78bfa;
  --accent-2: #60a5fa;
  --font: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Canvas dot grid */
#grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow — top-center purple bloom */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 80% 55% at 50% -5%,
    rgba(139, 92, 246, 0.18),
    transparent 70%
  );
}

/* ── Nav ─────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}


/* ── Main ────────────────────────────────── */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Hero ────────────────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.25rem, 5vw, 3rem);
}

.hero-name {
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.75rem;

  /* Gradient text */
  background: linear-gradient(
    135deg,
    #e2d9f3 0%,
    var(--accent-1) 38%,
    var(--accent-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-blurb {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Contact ─────────────────────────────── */

.contact {
  position: relative;
  z-index: 1;
  padding: 1.75rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.contact-heading {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list li {
  font-size: 0.975rem;
  color: var(--muted);
}

.contact-list a {
  color: var(--accent-1);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-list a:hover {
  color: var(--accent-2);
}

/* ── Footer ──────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.925rem;
  }

  .hero-name {
    letter-spacing: -0.04em;
  }
}
