:root {
  --paper: #f6f4ef;
  --ink: #1a1814;
  --muted: #5e574d;
  --card: #fffcf7;
  --line: rgba(26, 24, 20, .12);
  --accent: #2f4560;
  --accent-hover: #3d5878;
  --warm: #7a5c3a;
  --shadow: rgba(26, 24, 20, .06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(47, 69, 96, .07), transparent 55%),
    linear-gradient(180deg, #fdfbf7 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
}

h1 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.lede {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 22px 18px 20px;
}

.card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.card-landing {
  text-align: center;
  padding: 26px 20px 22px;
}

.card-landing > p:first-child {
  text-align: left;
  margin-bottom: 22px;
}

.cta {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font: 600 15px/1 inherit;
  padding: 14px 18px;
  text-decoration: none;
  transition: background .15s ease;
}

.cta:hover {
  background: var(--accent-hover);
}

.fine {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.foot em {
  font-style: normal;
  color: var(--ink);
}
