:root {
  color-scheme: light;
  --bg: #f5efe6;
  --surface: rgba(255, 251, 245, 0.94);
  --surface-strong: #fffdf8;
  --text: #201711;
  --muted: #6e5b4b;
  --brand: #1d6b5d;
  --brand-strong: #154f45;
  --line: rgba(85, 61, 34, 0.12);
  --shadow: 0 24px 70px rgba(56, 36, 12, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Helvetica Neue",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 30%),
    radial-gradient(circle at bottom right, rgba(29, 107, 93, 0.12), transparent 24%),
    linear-gradient(135deg, #efe2cf 0%, #f7f1e7 45%, #ebe2d3 100%);
}

a {
  color: inherit;
}

.landing-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero-card {
  width: min(760px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(250, 243, 232, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  margin-top: 28px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #f6f1e8;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(29, 107, 93, 0.24);
}

.primary-link:hover,
.primary-link:focus-visible {
  opacity: 0.94;
  outline: none;
}

@media (max-width: 720px) {
  .hero-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .lead {
    font-size: 1rem;
  }
}
