:root {
  --bg: #f6f1e8;
  --panel: #fffaf2;
  --ink: #1a1d16;
  --muted: #5f6656;
  --accent: #cf5d2b;
  --accent-dark: #8f3813;
  --line: rgba(26, 29, 22, 0.12);
  --shadow: 0 24px 60px rgba(54, 34, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(207, 93, 43, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(173, 197, 126, 0.24), transparent 28%),
    linear-gradient(180deg, #f6f1e8 0%, #efe5d7 100%);
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero,
.section {
  margin-bottom: 28px;
}

.hero,
.value-strip,
.problem-solution,
.offer,
.form-section,
.faq {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: 1.4fr 0.9fr;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.value-strip article,
.stack-card,
.offer-panel,
.form-copy,
.form-frame,
.faq-grid article {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.offer-panel,
.form-copy,
.form-frame {
  padding: 32px;
}

.eyebrow,
.section-label,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.2rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

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

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

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

.signal-list,
.offer-list,
.hero-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.hero-card {
  background:
    linear-gradient(160deg, rgba(207, 93, 43, 0.14), rgba(255, 250, 242, 0.96)),
    rgba(255, 250, 242, 0.9);
}

.value-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-strip article,
.stack-card,
.faq-grid article {
  padding: 24px;
}

.metric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #1a1d16;
  color: #fffaf2;
  font-weight: 700;
}

.problem-solution {
  grid-template-columns: 0.9fr 1.1fr;
}

.stack {
  display: grid;
  gap: 18px;
}

.offer-panel {
  background:
    linear-gradient(135deg, rgba(26, 29, 22, 0.96), rgba(55, 50, 38, 0.96)),
    var(--ink);
}

.offer-panel h2,
.offer-panel p,
.offer-panel li,
.offer-panel .section-label {
  color: #f7efe1;
}

.form-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.form-copy ol {
  padding-left: 20px;
}

.form-frame iframe {
  border-radius: 18px;
  background: #fff;
}

.embed-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(26, 29, 22, 0.06);
  padding: 2px 6px;
  border-radius: 8px;
}

@media (max-width: 920px) {
  .hero,
  .value-strip,
  .problem-solution,
  .form-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}
