:root {
  --bg: #0d4a46;
  --fg: #f2ebd8;
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Major Mono Display', ui-monospace, monospace;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.8;
}

header svg {
  width: 14px;
  height: 14px;
}

header a {
  color: var(--fg);
  text-decoration: none;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

header nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

header nav a:hover {
  border-bottom-color: currentColor;
  opacity: 1;
}

main {
  margin: auto 0;
  max-width: 56ch;
}

.wordmark {
  font-size: clamp(3rem, 14vw, 8.5rem);
  letter-spacing: 0.01em;
  line-height: 1;
  font-weight: 400;
}

.tag {
  margin-top: 1.75rem;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  opacity: 0.75;
  max-width: 36ch;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 2rem;
}

.products {
  list-style: none;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.products .name {
  line-height: 1.2;
}

.products .desc {
  padding-left: 1.25em;
  opacity: 0.65;
  font-size: 0.9em;
  margin-top: 0.35rem;
  line-height: 1.3;
}

.products a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s ease;
}

.products a:hover {
  opacity: 0.6;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

footer a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}

footer a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}

footer .tri {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
}
