:root {
  --ink: #183d45;
  --muted: #665d55;
  --cream: #fffaf2;
  --travertine: #f1dec1;
  --turquoise: #70b9bd;
  --deep-turquoise: #2f6970;
  --sage: #6f8f5f;
  --clay: #c9976b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: ui-serif, "Cormorant Garamond", Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(112, 185, 189, 0.22), transparent 36rem),
    linear-gradient(180deg, #fffaf2 0%, #f6ead8 54%, #d9ebdf 100%);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.shell {
  width: min(720px, 100%);
  padding: 30px;
  border: 1px solid rgba(47, 105, 112, 0.14);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 24px 70px rgba(64, 44, 25, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  margin: 0;
  color: var(--deep-turquoise);
  font-size: clamp(52px, 13vw, 88px);
  font-weight: 500;
  line-height: 0.95;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8a6a50;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(38px, 10vw, 62px);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
}

p,
li {
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

ul {
  padding-left: 20px;
}

.lede {
  max-width: 560px;
  margin: 0 0 22px;
  color: #475c61;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: var(--deep-turquoise);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(47, 105, 112, 0.18);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.card {
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(47, 105, 112, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.62);
}

.card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.legal {
  align-items: flex-start;
}

.legal .shell {
  max-width: 860px;
}

.legal .brand {
  font-size: 40px;
}

.legal h1 {
  font-size: clamp(34px, 8vw, 52px);
}

.fine-print {
  margin-top: 22px;
  color: #7d756e;
  font-size: 13px;
}

@media (max-width: 540px) {
  .shell {
    padding: 24px;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }
}
