:root {
  color-scheme: light;
  --bg: #f4f7f2;
  --bg-deep: #e8efe4;
  --surface: #ffffff;
  --surface-muted: #f8faf6;
  --text: #2a3d32;
  --muted: #5c6f62;
  --sage: #6b8f71;
  --sage-deep: #3d5c44;
  --clay: #c4a484;
  --clay-soft: #f0e8dc;
  --mist: #b8d4c8;
  --lavender: #d4c8e0;
  --border: rgba(61, 92, 68, 0.14);
  --shadow: 0 20px 50px rgba(42, 61, 50, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-body: "SF Pro Text", system-ui, -apple-system, "Segoe UI", 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.7;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184, 212, 200, 0.45), transparent),
    linear-gradient(165deg, var(--bg-deep) 0%, var(--bg) 45%, #fafbf9 100%);
}

.ambient__wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 180px;
  opacity: 0.5;
}

.ambient__wave--top {
  top: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23b8d4c8' fill-opacity='0.35' d='M0,64 C240,120 480,0 720,48 C960,96 1200,32 1440,56 L1440,0 L0,0 Z'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.ambient__orb--left {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -100px;
  background: rgba(107, 143, 113, 0.2);
}

.ambient__orb--right {
  width: 260px;
  height: 260px;
  top: 25%;
  right: -60px;
  background: rgba(212, 200, 224, 0.35);
}

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

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
  padding: 44px 40px 48px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--sage) 0%, var(--mist) 50%, var(--lavender) 100%);
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: var(--sage-deep);
  background: linear-gradient(145deg, var(--surface-muted) 0%, var(--clay-soft) 100%);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.8);
}

.hero__badge svg {
  width: 40px;
  height: 40px;
}

.hero__content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sage-deep);
}

.brand-sub {
  margin: 8px 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}

h1 {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}

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

.updated {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
  background: var(--clay-soft);
  border-radius: 999px;
  letter-spacing: 0.03em;
}

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

.highlights li {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(42, 61, 50, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlights li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 61, 50, 0.08);
}

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

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

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

.highlights strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sage-deep);
}

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

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card:nth-child(1),
.card:nth-child(4),
.card:nth-child(7) {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.card:nth-child(3n) {
  grid-column: 1 / -1;
  max-width: 100%;
}

.card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sage-deep);
}

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

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

a {
  color: var(--sage);
  font-weight: 600;
}

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

.footer {
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sage-deep);
}

@media (max-width: 720px) {
  .highlights {
    grid-template-columns: 1fr;
  }

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

  .card:nth-child(3n) {
    grid-column: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px 40px;
  }

  .hero__badge {
    margin: 0 auto;
  }

  .lead {
    max-width: none;
  }
}

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

  .hero {
    padding: 28px 22px 32px;
  }
}
