:root {
  --bg: #0c0e14;
  --bg-elev: #141824;
  --accent: #00d4aa;
  --text: #e6edf3;
  --muted: #7d8590;
  --border: rgba(0, 212, 170, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.12), transparent),
    radial-gradient(circle at 20% 90%, rgba(0, 168, 138, 0.08), transparent);
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

header.site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
}

nav.site {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

nav.site a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

h1 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: 1.15rem;
  margin: 1.4rem 0 0.4rem;
  color: var(--text);
}

.tagline {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

p,
li {
  color: #c9d1d9;
}

p + p {
  margin-top: 0.85rem;
}

ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

a {
  color: var(--accent);
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin: 1rem 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pills span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--accent);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.1rem;
  background: var(--accent);
  color: #04231c;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
}

footer.site {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

label {
  display: block;
  font-size: 0.85rem;
  margin: 0.75rem 0 0.3rem;
}

input,
textarea {
  width: 100%;
  background: #0c0e14;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

button[type="submit"] {
  margin-top: 1rem;
  padding: 0.65rem 1.1rem;
  background: var(--accent);
  color: #04231c;
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
