:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5d6962;
  --line: #d8ddd8;
  --paper: #fbfcfa;
  --wash: #eef5f2;
  --accent: #087f5b;
  --accent-dark: #056246;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
.wrap { min-height: 100vh; }
.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh min(8vw, 96px);
  background: linear-gradient(120deg, rgba(8,127,91,.12), rgba(31,120,148,.09)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%23f8fbf9'/%3E%3Cg fill='none' stroke='%2399b4aa' stroke-width='2' opacity='.65'%3E%3Crect x='705' y='115' width='330' height='510' rx='22'/%3E%3Crect x='745' y='180' width='250' height='54' rx='10'/%3E%3Crect x='745' y='260' width='250' height='128' rx='12'/%3E%3Crect x='745' y='420' width='250' height='46' rx='9'/%3E%3Crect x='745' y='490' width='250' height='56' rx='12' fill='%23087f5b' opacity='.18'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .82rem;
}
h1 {
  margin: 0;
  max-width: 660px;
  font-size: 5.4rem;
  line-height: .94;
}
h2 { margin: 0 0 16px; font-size: 1.35rem; }
.lede {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.checkout-form {
  display: flex;
  max-width: 680px;
  gap: 10px;
  margin-top: 28px;
}
.checkout-form input {
  flex: 1;
  min-width: 220px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  font: inherit;
}
.form-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--muted);
}
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,.75);
}
.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  padding: 64px min(8vw, 96px);
  background: #fff;
  border-top: 1px solid var(--line);
}
ul { margin: 0; padding-left: 20px; line-height: 1.8; color: var(--muted); }
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--wash);
}
.panel p, .final p { color: var(--muted); line-height: 1.6; }
.final { padding: 56px min(8vw, 96px) 72px; }
@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    padding: 56px 22px;
    background-position: 18% center;
    overflow: hidden;
  }
  h1 { max-width: 330px; font-size: 3.1rem; line-height: .98; }
  .lede { max-width: 330px; font-size: 1rem; }
  .checkout-form { max-width: 330px; flex-direction: column; }
  .actions { max-width: 330px; }
  .band { grid-template-columns: 1fr; padding: 42px 22px; gap: 24px; }
  .final { padding: 42px 22px 56px; }
  .actions .button, .final .button { width: 100%; }
}
