@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("fonts/ibm-plex-sans.woff2") format("woff2");
}

:root {
  --bg: #1A2422;
  --ink: #E8EEE9;
  --muted: #A8B6B0;
  --teal: #5BA89A;
  --gold: #C4A35A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(ellipse 85% 42% at 50% 108%, rgba(91, 168, 154, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 28% at 12% 0%, rgba(196, 163, 90, 0.05), transparent 52%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
  letter-spacing: 0.055em;
}

.nav {
  padding: 1.15rem 6.5vw 0.4rem;
}

.brand img {
  width: 96px;
  height: auto;
  display: block;
}

main {
  padding: 0 6.5vw 4.5rem;
}

h1 {
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: 0.08em;
  margin: 1.6rem 0 0.7rem;
}
.lede {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  margin: 0 0 2.1rem;
  max-width: 28rem;
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
  max-width: 54rem;
}

.pair article {
  background: rgba(232, 238, 233, 0.045);
  border: 1px solid rgba(232, 238, 233, 0.09);
  border-radius: 0.7rem;
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.kicker {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

h2 {
  font-weight: 400;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  min-height: 1.55em;
}

.entry {
  margin: 0.55rem 0 0.95rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  min-height: 1.4em;
}

.lines {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  line-height: 1.55;
}

.lines p + p { margin-top: 0.28rem; }

.cta {
  margin-top: 2.2rem;
}

.cta a {
  color: #5BA89A;
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-bottom: 1px solid rgba(91, 168, 154, 0.45);
  padding-bottom: 0.12rem;
}

.cta a:hover { border-bottom-color: #5BA89A; }

@media (max-width: 720px) {
  .nav { padding: 0.95rem 6vw 0.2rem; }
  main { padding: 0 6vw 3.5rem; }
  h1 {
    font-size: 1.7rem;
    margin: 1.15rem 0 1.55rem;
  }
  .pair {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .cta { margin-top: 1.6rem; }
}
