:root {
  --bg: #f4efe5;
  --paper: #fffaf2;
  --paper-strong: #fffdf8;
  --text: #1e1e18;
  --muted: #5f6257;
  --line: #ddd2c0;
  --accent: #1e4f3a;
  --accent-soft: #dceee4;
  --accent-strong: #0f3224;
  --sand: #ecd8b2;
  --shadow: rgba(25, 28, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at top left, rgba(236, 216, 178, 0.45), transparent 28rem),
    linear-gradient(180deg, #f8f3ea 0%, var(--bg) 100%);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.shell-narrow {
  width: min(860px, calc(100% - 2rem));
}

.top-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.top-nav a {
  text-decoration: none;
  font-weight: 700;
}

.hero-card,
.page-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(30, 79, 58, 0.12), transparent 14rem),
    linear-gradient(135deg, var(--paper-strong), var(--paper));
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(236, 216, 178, 0.42);
}

.eyebrow,
.card-label {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  max-width: 12ch;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.hero-copy,
.lead,
.muted,
.legal-copy p,
.faq p,
.info-card p {
  max-width: 68ch;
}

.hero-copy {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #f6fff9;
}

.button-secondary {
  background: transparent;
  color: var(--accent-strong);
  border-color: rgba(30, 79, 58, 0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.info-card,
.page-card {
  padding: 1.5rem;
}

.page-card + .page-card {
  margin-top: 1rem;
}

.support-email {
  font-size: 1.2rem;
  font-weight: 800;
}

.support-email a {
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq article:first-child {
  padding-top: 0;
  border-top: 0;
}

.list {
  padding-left: 1.2rem;
}

.list li + li {
  margin-top: 0.45rem;
}

.legal-copy h2 {
  margin-top: 1.7rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

@media (max-width: 760px) {
  .shell,
  .shell-narrow {
    width: min(100% - 1rem, 100%);
  }

  .hero-card,
  .page-card,
  .info-card {
    border-radius: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .top-nav {
    flex-wrap: wrap;
  }
}
