:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5c6b63;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --line: #d9ded6;
  --accent: #d44c2e;
  --accent-dark: #973b28;
  --leaf: #2d6a4f;
  --sky: #e4eef3;
  --shadow: 0 18px 44px rgba(23, 33, 28, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--paper), #fffaf4 56%, #ffffff);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 3;
  border-bottom: 1px solid rgba(23, 33, 28, 0.10);
  background: rgba(247, 245, 239, 0.84);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: conic-gradient(from 215deg, #f6b24d, var(--accent), #742d22, #f6b24d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 18px rgba(151, 59, 40, 0.24);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

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

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

main {
  padding: 58px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-panel {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.signal {
  display: grid;
  gap: 12px;
}

.signal-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.signal-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--leaf);
  place-items: center;
  font-weight: 800;
}

.signal-title {
  margin: 0;
  font-weight: 760;
}

.signal-copy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 740;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(151, 59, 40, 0.34);
  background: transparent;
  color: var(--accent-dark);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.card h2,
.content h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: 0;
}

.card p,
.content p,
.content li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.content {
  width: min(860px, 100%);
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(23, 33, 28, 0.07);
}

.content section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content p {
  margin: 0 0 12px;
}

.content ul {
  margin: 0;
  padding-left: 22px;
}

.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(23, 33, 28, 0.10);
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  nav {
    justify-content: flex-start;
  }

  main {
    padding-top: 34px;
  }

  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .content {
    padding: 22px;
  }
}
