:root {
  color-scheme: light;
  --bg: #f4f6f2;
  --bg-forest: #e2ebe0;
  --surface: #ffffff;
  --text: #1e2a22;
  --muted: #5a6b5e;
  --sylvan: #3d6b52;
  --sylvan-light: #6b9a7a;
  --nail: #c9a0a8;
  --nail-soft: #f0e0e4;
  --pearl: #e8ece4;
  --border: rgba(30, 42, 34, 0.1);
  --shadow: 0 22px 58px rgba(61, 107, 82, 0.14);
  --radius: 14px;
  --font-display: "Optima", "Segoe UI", Candara, sans-serif;
  --font-body:
    "SF Pro Text",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(107, 154, 122, 0.15), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 100%, rgba(201, 160, 168, 0.12), transparent 50%),
    var(--bg);
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  padding: 34px 32px 38px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nail-mark {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.nail-mark__tip {
  width: 28px;
  height: 40px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, var(--nail-soft) 0%, var(--nail) 100%);
  border: 1px solid rgba(201, 160, 168, 0.4);
  box-shadow: 0 4px 12px rgba(201, 160, 168, 0.25);
}

.nail-mark__leaf {
  width: 24px;
  height: 12px;
  border-radius: 0 50% 0 50%;
  background: var(--sylvan-light);
  transform: rotate(-25deg);
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sylvan);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-title span {
  color: var(--nail);
}

h1 {
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.lead {
  margin-top: 10px;
  max-width: 50ch;
  font-size: 0.97rem;
  color: var(--muted);
}

.updated {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sylvan-light);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.highlights li:nth-child(1) {
  border-top: 3px solid var(--sylvan);
}

.highlights li:nth-child(2) {
  border-top: 3px solid var(--nail);
}

.highlights li:nth-child(3) {
  border-top: 3px solid var(--sylvan-light);
}

.highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.card--wide {
  grid-column: 1 / -1;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sylvan);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 10px;
}

a {
  color: var(--sylvan);
  font-weight: 650;
}

a:hover {
  color: var(--nail);
}

.footer {
  margin-top: 32px;
  padding: 20px 26px;
  border-radius: var(--radius);
  background: var(--sylvan);
  color: var(--pearl);
  text-align: center;
  font-size: 0.86rem;
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nail-mark {
    flex-direction: row;
    justify-content: center;
  }

  .lead {
    max-width: none;
  }

  .highlights,
  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 28px 0 56px;
  }

  .hero {
    padding: 26px 22px 30px;
  }
}
