:root {
  --bg: #f2f4ee;
  --bg-strong: #e8eee4;
  --card: rgba(252, 251, 248, 0.84);
  --card-strong: rgba(248, 246, 241, 0.92);
  --line: rgba(58, 78, 80, 0.12);
  --text: #2a3a3b;
  --muted: rgba(42, 58, 59, 0.74);
  --subtle: rgba(42, 58, 59, 0.56);
  --sage: #7ba18d;
  --gold: #d0af84;
  --slate: #8c9fb4;
  --link: #4d6f77;
  --shadow: 0 26px 70px rgba(25, 36, 37, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 16%, rgba(198, 214, 196, 0.9), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(230, 214, 183, 0.82), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 100%);
  font: 16px/1.7 "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: var(--radius-xl);
  padding: 30px 26px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stack {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

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

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.72;
}

.orb.sage {
  width: 140px;
  height: 80px;
  top: -14px;
  right: 20px;
  background: rgba(123, 161, 141, 0.18);
}

.orb.gold {
  width: 120px;
  height: 120px;
  bottom: -26px;
  right: -26px;
  background: rgba(208, 175, 132, 0.14);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--subtle);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 8vw, 4.8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 12px;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 18px;
}

.button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--sage), #5f7f76);
  color: #fff;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.note {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 8px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.footer {
  margin-top: 24px;
  color: var(--subtle);
  font-size: 0.95rem;
}

.footer a {
  color: inherit;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 980px);
    padding-top: 18px;
  }

  .hero {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .panel {
    padding: 20px 18px;
  }

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

  h1 {
    max-width: 12ch;
  }
}
