:root {
  --ink: #14211c;
  --muted: #5d6c65;
  --paper: #0c1b16;
  --card: #fbfcf8;
  --green: #155943;
  --green-2: #2b8263;
  --lime: #daf27c;
  --line: rgba(226, 239, 232, .18);
  --danger: #a32d2d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #f7fbf8;
  background:
    radial-gradient(circle at 88% 7%, rgba(70, 142, 106, .32), transparent 27rem),
    radial-gradient(circle at 8% 78%, rgba(218, 242, 124, .08), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.topbar {
  height: 82px;
  max-width: 1180px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; color: inherit; text-decoration: none; }
.brand-logo { display: block; width: 270px; height: auto; }
.brand-logo-mobile { display: none; width: 34px; height: 46px; overflow: hidden; }
.brand-logo-mobile img { display: block; width: auto; height: 46px; transform: translateX(-7px); }
.private-label { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c5d5ce; font-size: .8rem; }

main { max-width: 1180px; margin: 0 auto; padding: 44px 28px 58px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: start; }
.intro { position: relative; padding-top: 18px; min-width: 0; }
.eyebrow { color: var(--lime); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; max-width: 35rem; }
h1 { margin: 22px 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 5.2vw, 5.1rem); font-weight: 500; line-height: .97; letter-spacing: -.055em; }
h1 em { color: var(--lime); font-weight: inherit; }
.lede { max-width: 37rem; font-size: 1.16rem; line-height: 1.65; color: #b8cbc2; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; color: #e3ece7; font-size: .86rem; font-weight: 700; }
.proof-row span::before { content: "•"; color: var(--lime); margin-right: 7px; }
.campaign-visual { margin: 32px 0 0; overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid rgba(255,255,255,.13); border-radius: 8px 30px 8px 30px; box-shadow: 0 28px 70px rgba(0, 0, 0, .32); }
.campaign-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 55% 58%; filter: saturate(.86) contrast(1.04); }

.card { color: var(--ink); background: var(--card); border: 1px solid rgba(218, 242, 124, .16); border-radius: 8px 30px 8px 30px; padding: clamp(26px, 4vw, 44px); box-shadow: 0 32px 86px rgba(0, 0, 0, .34); }
.advisor-line { margin: 0 0 22px; padding-bottom: 17px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid #dfe6e1; font-size: .85rem; }
.advisor-line span { color: var(--muted); }
.advisor-line b { color: var(--green); }
.progress-label { display: flex; justify-content: space-between; color: var(--muted); font-size: .8rem; font-weight: 700; }
.progress-track { height: 7px; margin: 9px 0 34px; overflow: hidden; border-radius: 99px; background: #e8eeea; }
.progress-bar { width: 33%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--green-2)); transition: width .25s ease; }
h2 { margin: 0 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.1; letter-spacing: -.03em; }
.step { display: none; }
.step.active { display: block; animation: reveal .25s ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(6px); } }
label, legend { display: block; margin: 18px 0 7px; font-size: .9rem; font-weight: 740; }
input, select {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #cbd7d0;
  border-radius: 11px;
  font: inherit;
  font-size: 1rem;
}
input:focus, select:focus { outline: 3px solid rgba(38, 120, 92, .16); border-color: var(--green-2); }
fieldset { margin: 0; padding: 0; border: 0; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option { position: relative; margin: 0; }
.option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option span { min-height: 86px; padding: 15px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #ccd8d1; border-radius: 13px; cursor: pointer; transition: .15s ease; }
.option b { font-size: .96rem; }
.option small { margin-top: 3px; color: var(--muted); font-size: .78rem; font-weight: 500; line-height: 1.3; }
.option input:checked + span { border-color: var(--green); background: #eef8f3; box-shadow: inset 0 0 0 1px var(--green); }
.option input:focus-visible + span { outline: 3px solid rgba(38, 120, 92, .18); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { margin: -8px 0 24px; color: var(--muted); }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-weight: 500; line-height: 1.35; }
.consent input { width: 20px; min-height: 20px; margin: 0; }
.website-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.actions { display: flex; gap: 10px; margin-top: 30px; }
button { min-height: 52px; padding: 0 22px; border-radius: 11px; font: inherit; font-weight: 780; cursor: pointer; }
.link-button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.primary { flex: 1; color: white; background: var(--green); border: 1px solid var(--green); }
.primary:hover { background: #0f3d2e; }
.primary:disabled { opacity: .68; cursor: wait; }
.secondary { color: var(--green); background: white; border: 1px solid #b9c8c0; }
.error { min-height: 1.5em; margin: 12px 0 0; color: var(--danger); font-size: .88rem; }

.result { text-align: center; animation: reveal .3s ease both; }
.result-icon { width: 58px; height: 58px; margin: 4px auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--green); font-size: 1.6rem; font-weight: 900; }
.result-kicker { margin: 0 0 8px; color: var(--green-2); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.result p { color: var(--muted); }
.summary { margin: 24px 0; padding: 17px; text-align: left; background: #f2f7f4; border-radius: 13px; font-size: .92rem; }
.result .link-button { width: 100%; margin-bottom: 10px; }

.concern-panel { margin-top: 34px; padding-top: 24px; border-top: 1px solid #dfe6e1; }
.concern-panel p { margin: 0 0 13px; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.concern-panel ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; list-style: none; }
.concern-panel li { position: relative; padding-left: 16px; color: var(--ink); font-size: .87rem; font-weight: 720; }
.concern-panel li::before { content: ""; position: absolute; left: 0; top: .56em; width: 6px; height: 6px; border-radius: 50%; background: var(--green-2); }

footer { padding: 26px; border-top: 1px solid var(--line); text-align: center; color: #8fa49a; font-size: .78rem; }
footer p { max-width: 760px; margin: auto; }

@media (max-width: 820px) {
  main { padding-top: 22px; grid-template-columns: 1fr; gap: 36px; }
  .intro { position: relative; padding-top: 8px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
}
@media (max-width: 520px) {
  .topbar, main { padding-left: 18px; padding-right: 18px; }
  .brand-logo-full { display: block; width: min(68vw, 235px); }
  .brand-logo-mobile, .private-label { display: none; }
  .private-label { font-size: .73rem; }
  .card { margin: 0 -4px; border-radius: 6px 22px 6px 22px; padding: 24px 18px; }
  .option-grid, .two-col { grid-template-columns: 1fr; }
  .concern-panel ul { grid-template-columns: 1fr; }
  .option span { min-height: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
