:root {
  --paper: #f5efe6;
  --paper-strong: #fff9f0;
  --panel: rgba(255, 251, 245, 0.9);
  --ink: #18253b;
  --muted: #68758b;
  --line: rgba(24, 37, 59, 0.12);
  --line-strong: rgba(24, 37, 59, 0.2);
  --navy: #102845;
  --navy-soft: #1b4068;
  --copper: #d77431;
  --copper-soft: #efc49f;
  --inverse: #faf6ee;
  --shadow: 0 24px 60px rgba(16, 40, 69, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 116, 49, 0.18), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(16, 40, 69, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, #f4ecdf 100%);
}

.shell {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px 0 40px;
}

.hero,
.note,
.closing {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  padding: 56px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 40, 69, 0.98), rgba(27, 64, 104, 0.94));
  color: var(--inverse);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 116, 49, 0.35), rgba(215, 116, 49, 0));
}

.eyebrow,
.kicker {
  display: inline-block;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.72);
}

h1 {
  margin: 16px 0 20px;
  max-width: 11ch;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 700;
}

.lead {
  max-width: 46rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.8);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.button.primary {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
}

.button.primary:hover {
  box-shadow: 0 14px 26px rgba(16, 40, 69, 0.18);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--inverse);
  background: rgba(255, 255, 255, 0.08);
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note {
  padding: 24px;
  border-radius: 24px;
}

.note .kicker,
.footer-note .kicker {
  color: var(--muted);
}

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

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16, 40, 69, 0.98), rgba(27, 64, 104, 0.94));
  color: var(--inverse);
  box-shadow: var(--shadow);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.stat span {
  margin-top: 8px;
  color: rgba(249, 244, 238, 0.72);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
}

.closing-copy {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.footer-note .subtle {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  border: 1px solid var(--line);
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: var(--ink);
}

@media (max-width: 860px) {
  .overview,
  .strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 1100px);
    padding: 20px 0 28px;
  }

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

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
