:root {
  --bg: #080909;
  --panel: #101111;
  --text: #d8d8d8;
  --muted: #777777;
  --dim: #4e4e4e;
  --orange: #ff6532;
  --orange-soft: rgba(255, 101, 50, 0.42);
  --rule: #222424;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100svh;
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 24px;
  color: var(--text);
  background: var(--bg);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.7;
}

body::selection {
  color: var(--bg);
  background: var(--orange);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
  padding: 0;
}

.wordmark {
  display: inline-block;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow:
    2px 0 #ad3518,
    0 2px #ad3518,
    2px 2px #ad3518,
    4px 4px 0 rgba(0, 0, 0, 0.72);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

nav a:hover {
  color: var(--orange);
}

main {
  padding: 0;
}

.hero {
  max-width: none;
}

.kicker {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 40px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.copy-block {
  max-width: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.copy-block p {
  margin-bottom: 16px;
}

.copy-block a,
.signal-line span {
  color: var(--text);
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.copy-block a:hover {
  color: var(--orange);
}

.signal-line {
  max-width: none;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
}

.products {
  margin-top: 60px;
  padding-top: 0;
}

.products h2 {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}

.product-link {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 2px;
  padding-left: 0;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
}

.product-link span {
  display: inline;
}

.product-link small {
  display: block;
  max-width: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
}

.product-link:hover span {
  color: var(--text);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding: 0;
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 300;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--orange);
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  body {
    padding: 44px 20px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }
}
