:root {
  --bg-ink: #08212f;
  --bg-slate: #154056;
  --paper: #f8f8f4;
  --card: #fefdfa;
  --text: #14242e;
  --muted: #4a5d67;
  --line: #d8ddd4;
  --accent: #dc6b3d;
  --accent-soft: #ffe2d6;
  --good: #1e6a56;
  --shadow: 0 20px 44px rgba(4, 22, 33, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #2d6581 0%, var(--bg-slate) 32%, var(--bg-ink) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.halo {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(95px);
}

.halo-a {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -110px;
  background: #ffbd9c;
}

.halo-b {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -110px;
  background: #9ddad3;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.2rem 0.95rem 3rem;
  display: grid;
  gap: 0.95rem;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.05rem;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(145deg, #fff9f6 0%, #fff6ec 46%, #f6f7f0 100%);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0.35rem 0 0.7rem;
  line-height: 1.2;
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(1.65rem, 3.1vw, 2.5rem);
}

h2 {
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
}

h3 {
  font-size: 1.03rem;
}

p,
li {
  line-height: 1.5;
}

.intro {
  margin: 0;
  max-width: 66ch;
}

.meta {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stat-card {
  background: linear-gradient(165deg, #fdfbf4 0%, #f9f7ef 100%);
  border: 1px solid #dfdfd4;
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.stat-label {
  margin: 0;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.stat-value {
  margin: 0.25rem 0 0.2rem;
  font-size: clamp(1.55rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--good);
}

.stat-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.two-col {
  display: grid;
  gap: 0.78rem;
}

.item {
  background: #fcfcfa;
  border: 1px solid #e0e2db;
  border-radius: 14px;
  padding: 0.8rem;
}

ol {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.35rem;
}

.ask {
  background: linear-gradient(145deg, var(--accent-soft) 0%, #fff4ed 100%);
  border-color: #efc6b6;
}

.ask strong {
  color: #74331b;
}

.reveal {
  animation: rise 0.7s ease both;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

.reveal:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .page {
    padding: 2.2rem 1.2rem 4rem;
    gap: 1.15rem;
  }

  .panel {
    padding: 1.3rem;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
