:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f5f3ee;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #68645d;
  --line: #ddd8cf;
  --accent: #ad7f24;
  --accent-dark: #8f681b;
  --success: #23633b;
  --danger: #9d2b2b;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0 48px;
}

.brand {
  display: inline-block;
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 15px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 7px;
}

.eyebrow, .card-kicker {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 18px;
  max-width: 680px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
}

.lead {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.benefits {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  color: #34312d;
  font-size: 15px;
}
.benefits span { color: var(--success); font-weight: 900; margin-right: 8px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 18px 60px rgba(56, 45, 24, .08);
}

.card h2 { margin: 4px 0 0; font-size: 30px; }
.price { margin: 22px 0 0; font-size: 46px; font-weight: 900; letter-spacing: -.04em; }
.price-note { margin: 4px 0 26px; color: var(--muted); }

form { display: grid; gap: 10px; }
label { font-size: 14px; font-weight: 750; margin-top: 7px; }
input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfc8bc;
  border-radius: 11px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(173, 127, 36, .13); }

.hint, .secure-note, .result-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

button {
  border: 0;
  border-radius: 11px;
  min-height: 54px;
  padding: 0 18px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  margin-top: 8px;
}
button:hover { background: var(--accent-dark); }
button:disabled { opacity: .58; cursor: wait; }
button.secondary { background: #ece7dc; color: var(--ink); }

.error {
  margin: 2px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

.success-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6f3e9;
  color: var(--success);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 0 16px 28px;
}

[hidden] { display: none !important; }

@media (max-width: 820px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 42px;
  }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .card { padding: 24px; }
}
