:root {
  color-scheme: dark;
  --bg: #020204;
  --text: #eefaff;
  --muted: #9aa8b8;
  --cyan: #00f5ff;
  --green: #42ff7b;
  --line: rgba(0, 245, 255, 0.2);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 245, 255, 0.08), transparent 22rem),
    radial-gradient(circle at 82% 10%, rgba(154, 92, 255, 0.08), transparent 22rem),
    #000;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.8rem;
  color: #001014;
  background: var(--green);
  border-radius: 0.4rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  padding: 1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.nav a {
  color: rgba(238, 250, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.content-shell {
  display: grid;
  flex: 1;
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 7rem) 1.25rem clamp(3rem, 7vh, 5rem);
  align-items: center;
}

.content {
  width: 100%;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.5rem;
  color: var(--text);
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 650;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 245, 255, 0.24);
}

h2 {
  margin: 2rem 0 0.65rem;
  color: rgba(0, 245, 255, 0.78);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

p {
  max-width: 68ch;
  margin: 0 0 1rem;
  color: rgba(238, 250, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.78;
}

code {
  color: var(--text);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

a {
  color: var(--cyan);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--green);
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.contact-list {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  margin: 1.75rem 0 2rem;
  font-style: normal;
}

.contact-item {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(238, 250, 255, 0.08);
}

.contact-label {
  color: rgba(66, 255, 123, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-value {
  color: rgba(238, 250, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.55;
}

.site-footer {
  width: 100%;
  padding: 0 1rem max(1rem, env(safe-area-inset-bottom));
  text-align: center;
}

.site-footer p {
  display: flex;
  max-width: none;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  color: rgba(238, 250, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

@media (min-width: 620px) {
  .contact-item {
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
  }
}
