:root {
  color-scheme: light;
  --bg: #f4f8f6;
  --surface: #ffffff;
  --surface-warm: #faf6f0;
  --text: #1a2822;
  --muted: #5c6b64;
  --forest: #2d6a4f;
  --forest-light: #52a87a;
  --amber: #d4a056;
  --amber-soft: #f5e6cc;
  --clay: #b8846a;
  --line: rgba(26, 40, 34, 0.09);
  --shadow: 0 22px 60px rgba(45, 106, 79, 0.11);
  --radius: 4px;
  --radius-lg: 40px;
  --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:
    conic-gradient(from 210deg at 80% 20%, rgba(82, 168, 122, 0.12), transparent 40%),
    conic-gradient(from 30deg at 10% 80%, rgba(212, 160, 86, 0.15), transparent 45%),
    var(--bg);
}

.page {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 76px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
}

.plate-mark {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--forest);
  box-shadow: var(--shadow), inset 0 0 0 12px var(--amber-soft);
}

.plate-mark__ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed var(--forest-light);
  opacity: 0.5;
}

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

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

.brand-title em {
  font-style: normal;
  color: var(--amber);
}

h1 {
  margin: 20px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.lead {
  margin-top: 14px;
  max-width: 48ch;
  font-size: 1.02rem;
  color: var(--muted);
}

.updated {
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest-light);
}

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

.highlights li {
  padding: 0 0 0 16px;
  border-left: 3px solid var(--forest);
}

.highlights li:nth-child(2) {
  border-left-color: var(--amber);
}

.highlights li:nth-child(3) {
  border-left-color: var(--clay);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
}

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

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

.card {
  padding: 26px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg) var(--radius) var(--radius) var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(26, 40, 34, 0.04);
}

.card:nth-child(even) {
  border-radius: var(--radius) var(--radius-lg) var(--radius-lg) var(--radius);
  background: var(--surface-warm);
}

.card--wide {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

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

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

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

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

.footer {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 2px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}

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

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

  .plate-mark {
    margin: 0 auto;
    order: -1;
    width: 140px;
    height: 140px;
  }

  .plate-mark__ring {
    width: 90px;
    height: 90px;
  }

  .lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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