/* Descale — Nord palette, light variant.
   Snow Storm background, Polar Night text, Frost accents.
   No JS, no webfonts, no build step. */

:root {
  /* Polar Night */
  --nord0: #2e3440;
  --nord1: #3b4252;
  --nord2: #434c5e;
  --nord3: #4c566a;
  /* Snow Storm */
  --nord4: #d8dee9;
  --nord5: #e5e9f0;
  --nord6: #eceff4;
  /* Frost */
  --nord7: #8fbcbb;
  --nord8: #88c0d0;
  --nord9: #81a1c1;
  --nord10: #5e81ac;

  --bg: var(--nord6);
  --ink: var(--nord0);
  --ink-soft: var(--nord3);
  --rule: var(--nord4);
  --accent: var(--nord10);
  --accent-hover: var(--nord9);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 38rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header img {
  width: 140px;
  height: auto;
  display: inline-block;
}

h1 {
  font-family: ui-serif, Charter, "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 3rem;
  text-align: center;
}

h1 span {
  display: block;
}

.manifesto p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.manifesto strong {
  font-weight: 600;
  color: var(--ink);
}

.suite {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}

.suite h2 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
}

.suite dl {
  margin: 0;
}

.suite dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.25rem;
}

.suite dt:first-child {
  margin-top: 0;
}

.suite dd {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
}

.suite .more {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-style: italic;
}

footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-align: center;
}

footer p {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 120ms ease;
}

a:hover, a:focus {
  color: var(--accent-hover);
}

::selection {
  background: var(--nord4);
  color: var(--ink);
}

@media (max-width: 30rem) {
  main { padding-top: 3.5rem; }
  h1 span { display: inline; }
}
