:root {
  --bg: #f2eee5;
  --panel: rgba(255, 251, 244, 0.9);
  --text: #1f2b22;
  --muted: #526254;
  --accent: #0b6e4f;
  --accent-strong: #084f39;
  --border: rgba(31, 43, 34, 0.12);
  --shadow: 0 30px 80px rgba(14, 31, 24, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 110, 79, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(197, 148, 34, 0.15), transparent 28%),
    linear-gradient(135deg, #efe5d2, var(--bg));
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.panel {
  width: min(760px, 100%);
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  line-height: 0.98;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 48rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

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

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

.highlights {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .panel {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
