:root {
  --bg: #101513;
  --bg-soft: #f6f3ea;
  --ink: #17201c;
  --paper: #fffaf0;
  --muted: #657169;
  --line: rgba(23, 32, 28, 0.14);
  --leaf: #287a4a;
  --clay: #a34f33;
  --sky: #2f6e8e;
  --gold: #d5a22e;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  color: #ffffff;
  background: rgba(9, 15, 13, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  font-size: 0.88rem;
}

.site-nav {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.site-nav a:hover,
.page-footer a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 132px 24px 72px;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 13, 0.46), rgba(9, 15, 13, 0.82)),
    linear-gradient(90deg, rgba(9, 15, 13, 0.78), rgba(9, 15, 13, 0.18));
}

.hero__content {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(40, 122, 74, 0.24);
  border-radius: 8px;
  color: var(--leaf);
  background: rgba(255, 250, 240, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7e8bd;
  border-color: rgba(247, 232, 189, 0.34);
  background: rgba(9, 15, 13, 0.5);
}

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

h1 {
  max-width: 820px;
  margin: 20px 0;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.45rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
}

.button--primary {
  color: #111611;
  background: #f2d27c;
  border-color: #f2d27c;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.split p,
.section__intro p,
.statement p,
.grounded p,
.closing p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contrast-grid,
.card-grid,
.phase-list {
  display: grid;
  gap: 16px;
}

.contrast-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contrast-card,
.plan-card,
.phase {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(47, 38, 26, 0.08);
}

.contrast-card {
  padding: 24px;
}

.contrast-card--strong {
  border-color: rgba(40, 122, 74, 0.28);
  background: #edf5ed;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement h2 {
  max-width: 920px;
  font-size: 3rem;
}

.statement p {
  max-width: 820px;
}

.section__intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.plan-card {
  min-height: 230px;
  padding: 22px;
}

.plan-card:nth-child(2) {
  border-top: 4px solid var(--sky);
}

.plan-card:nth-child(3) {
  border-top: 4px solid var(--leaf);
}

.plan-card:nth-child(4) {
  border-top: 4px solid var(--clay);
}

.plan-card:nth-child(5) {
  border-top: 4px solid var(--gold);
}

.plan-card p,
.phase p {
  color: var(--muted);
  font-size: 0.96rem;
}

.grounded {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.grounded__body {
  padding: 28px;
  border-left: 5px solid var(--clay);
  background: rgba(255, 250, 240, 0.78);
}

.phase-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phase {
  padding: 24px;
}

.phase span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.closing {
  margin-bottom: 48px;
  padding: 48px;
  border-radius: 8px;
  color: #ffffff;
  background: #18251f;
}

.closing p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
}

.page-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 28px 24px 72px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--bg);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.5rem;
  }

  .split,
  .grounded,
  .card-grid,
  .phase-list {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 92vh;
    padding: 150px 18px 54px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2,
  .statement h2 {
    font-size: 2rem;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 52px 0;
  }

  .contrast-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 30px 22px;
  }
}
