:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5b6762;
  --line: #dfe7e2;
  --bg: #f7faf8;
  --panel: #ffffff;
  --green: #287458;
  --green-dark: #14553f;
  --pink: #bf4f76;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 248, 0.96)),
    var(--bg);
}

.page {
  width: min(1040px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 44px;
  padding: 64px 0;
}

.hero {
  max-width: 760px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--pink);
}

.brand-mark svg {
  width: 72px;
  height: 72px;
  display: block;
  fill: rgba(191, 79, 118, 0.16);
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 11vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.summary {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
}

.actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.button:focus-visible,
.button:hover {
  background: var(--green-dark);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.details article {
  max-width: 420px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 520px);
    gap: 32px;
    padding: 40px 0;
  }

  .brand-mark,
  .brand-mark svg {
    width: 58px;
    height: 58px;
  }

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