:root {
  color-scheme: light;
  --ink: #101a33;
  --muted: #5f6677;
  --accent: #ff5d62;
  --teal: #0f9b9f;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(16, 26, 51, 0.10);
  --shadow: 0 24px 70px rgba(28, 35, 82, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 93, 98, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(15, 155, 159, 0.18), transparent 30rem),
    linear-gradient(135deg, #f3f5ff 0%, #fff7f8 48%, #ffffff 100%);
}

a {
  color: var(--teal);
}

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

.hero {
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero p:not(.eyebrow):not(.lede) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  display: block;
  margin-top: 22px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(28, 35, 82, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-grid .card {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(28, 35, 82, 0.13);
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
}

.card h2,
article h2 {
  margin: 0 0 10px;
}

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

footer {
  margin-top: 30px;
  color: var(--muted);
  text-align: center;
}

.legal {
  max-width: 820px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 700;
  text-decoration: none;
}

article {
  padding: clamp(28px, 7vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

article h1 {
  font-size: clamp(2.1rem, 7vw, 4rem);
}

.updated {
  margin: 14px 0 32px;
  color: var(--muted);
  font-weight: 700;
}

article h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

article p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

  .hero {
    padding: 30px;
    border-radius: 24px;
  }

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