:root {
  color-scheme: dark;
  --bg: #0c0d0b;
  --ink: #f3f0e8;
  --muted: #aaa397;
  --panel: #171812;
  --panel-strong: #202217;
  --line: rgba(243, 240, 232, 0.15);
  --green: #a5ff5f;
  --cyan: #64dcff;
  --red: #ff6f61;
  --gold: #ffd166;
  --shadow: rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(145deg, #0c0d0b 0%, #131411 52%, #090a09 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 56px;
}

.hero {
  min-height: min(760px, calc(100vh - 76px));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 9vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.6vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.22;
}

.truths,
.critique {
  padding: 82px 0 72px;
  border-bottom: 1px solid var(--line);
}

.truths h2,
.critique h2 {
  max-width: 900px;
}

.critique > p {
  max-width: 880px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.paired-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.point {
  min-width: 0;
  min-height: 260px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid rgba(165, 255, 95, 0.42);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

.point p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.compact .point {
  min-height: 220px;
}

.compact .point p {
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
}

.truism {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.truism h2 {
  max-width: 980px;
  color: var(--green);
}

.closing {
  min-height: 300px;
  display: grid;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.closing h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.command {
  padding: 72px 0 24px;
}

.command h2 {
  max-width: 900px;
}

.command-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: command;
}

.command-list li {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
  font-weight: 800;
}

.command-list li::before {
  counter-increment: command;
  content: "0" counter(command);
  display: block;
  margin-bottom: 30px;
  color: var(--green);
  font-size: 0.84rem;
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 18px;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 44px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.08rem, 11vw, 3.5rem);
  }

  .truths,
  .critique,
  .truism {
    padding: 54px 0;
  }

  .paired-points {
    gap: 10px;
  }

  .point {
    min-height: 240px;
    padding: 14px;
  }

  .point-number {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 0.76rem;
  }

  .point p,
  .compact .point p {
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    line-height: 1.38;
  }

  .command-list {
    grid-template-columns: 1fr;
  }

  .command-list li {
    min-height: 110px;
  }
}
