:root {
  color-scheme: light;
  --background: #fff9f5;
  --surface: rgba(255, 242, 234, 0.86);
  --surface-soft: #fcf7f3;
  --primary: #f4b183;
  --primary-strong: #e8a06c;
  --primary-light: #fce4d6;
  --secondary: #bfd8c1;
  --accent: #f2b6c6;
  --text: #4e403b;
  --muted: #8b817c;
  --border: #efe5de;
  --shadow: rgba(78, 64, 59, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 182, 198, 0.24), transparent 30rem),
    radial-gradient(circle at 92% 18%, rgba(191, 216, 193, 0.34), transparent 28rem),
    linear-gradient(145deg, var(--background), #fff2ea);
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: #9b5f3d;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.shell {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(244, 177, 131, 0.45);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--primary-light), #fce8ee);
  font-size: 1.35rem;
  box-shadow: 0 10px 26px var(--shadow);
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(239, 229, 222, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 60px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero::after {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(191, 216, 193, 0.5), rgba(242, 182, 198, 0.35));
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.9rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.updated {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.content {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(78, 64, 59, 0.055);
}

.card:nth-child(3n + 2) {
  background: rgba(234, 245, 235, 0.78);
}

.card:nth-child(3n) {
  background: rgba(252, 232, 238, 0.68);
}

h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p,
ul {
  margin-top: 0;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.3rem;
}

li + li {
  margin-top: 7px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(232, 160, 108, 0.22);
}

.button.secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 4px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer nav {
  display: flex;
  gap: 16px;
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 20px, 880px);
    padding-top: 14px;
  }

  .topbar {
    margin-bottom: 20px;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    border-radius: 27px;
  }

  .card {
    border-radius: 21px;
  }

  .button {
    width: 100%;
  }
}
