:root {
  color-scheme: light;
  --bg: #f6f8f4;
  --bg-soft: #e8f0e4;
  --surface: #ffffff;
  --text: #243028;
  --muted: #5a6b5e;
  --move: #4a8f6a;
  --move-light: #7bc49a;
  --move-soft: #d4eedc;
  --sage: #8aab7a;
  --mist: #c5d8c8;
  --border: rgba(36, 48, 40, 0.1);
  --shadow: 0 18px 52px rgba(74, 143, 106, 0.14);
  --radius: 26px;
  --radius-sm: 14px;
  --font-display: "SF Pro Rounded", system-ui, -apple-system, 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 70% 50% at 0% 50%, var(--move-soft), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(197, 216, 200, 0.6), transparent 50%),
    var(--bg);
}

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

.hero {
  margin-bottom: 32px;
  padding: 36px 32px 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.move-trail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.move-trail span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--move-light);
  opacity: 0.5;
}

.move-trail span:nth-child(1) {
  width: 8px;
  height: 8px;
  opacity: 0.35;
}

.move-trail span:nth-child(2) {
  opacity: 0.55;
}

.move-trail span:nth-child(3) {
  width: 16px;
  height: 16px;
  opacity: 0.85;
  background: var(--move);
}

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

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title .gentle {
  font-weight: 500;
  color: var(--sage);
}

.brand-title .moves {
  color: var(--move);
}

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

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

.updated {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--move);
  background: var(--move-soft);
  border-radius: 999px;
}

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

.highlights li {
  padding: 22px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.highlights li:hover {
  transform: translateY(-3px);
}

.highlights li:nth-child(1) {
  background: linear-gradient(180deg, var(--move-soft) 0%, var(--surface) 100%);
}

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

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

.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.card:nth-child(even) {
  margin-left: 24px;
  background: var(--bg-soft);
}

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

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

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

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

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

.footer {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--move) 0%, #3a7358 100%);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.86rem;
}

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

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

  .card:nth-child(even) {
    margin-left: 0;
  }

  .hero__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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