/* UPI — one stylesheet for the whole funnel. Brand palette locked to Hybrid's. */
:root {
  --bg: #0F1E15;
  --card: #12241A;
  --green: #2D6A4F;
  --mint: #52B788;
  --gold: #B5883A;
  --text: #F0F4F1;
  --muted: #A8C5B0;
  --hair: #7C8C80;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.rule { height: 5px; background: var(--gold); }

.wrap { max-width: 860px; margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 680px; }

header.brand { padding: 26px 0 8px; text-align: center; }
header.brand img { height: 54px; width: auto; }

h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 6.4vw, 60px);
  line-height: 1.12;
  font-weight: 700;
  margin: 20px 0 14px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.4vw, 38px);
  line-height: 1.2;
  margin: 44px 0 14px;
}
.sub { color: var(--muted); font-size: clamp(17px, 2.4vw, 21px); margin: 0 0 26px; }

/* ---- video ---- */
.vsl {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 3px solid var(--green);
  border-radius: 14px;
  display: block;
}
.vsl-note { color: var(--muted); font-size: 16px; text-align: center; margin: 12px 0 30px; }

/* ---- the only gold thing on the page is the thing you click ---- */
.cta {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: clamp(19px, 3.2vw, 25px);
  text-align: center;
  text-decoration: none;
  padding: 22px 26px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(181, 136, 58, 0.28);
}
.cta:hover { filter: brightness(1.07); }
.cta-sub { text-align: center; color: var(--muted); font-size: 15px; margin: 12px 0 34px; }

.cta--ghost {
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--hair);
  box-shadow: none;
  font-weight: 400;
  font-size: 17px;
  padding: 15px 20px;
}

.decline { display: block; text-align: center; color: var(--hair); font-size: 15px; margin-top: 22px; }

/* ---- content blocks ---- */
ul.bullets { list-style: none; padding: 0; margin: 0 0 12px; }
ul.bullets li {
  padding: 15px 0 15px 38px;
  position: relative;
  border-bottom: 1px solid rgba(124, 140, 128, 0.22);
}
ul.bullets li::before {
  content: "";
  position: absolute; left: 4px; top: 24px;
  width: 13px; height: 13px; border-radius: 999px;
  border: 3px solid var(--gold);
}
ul.bullets strong { color: var(--text); }
ul.bullets { color: var(--muted); }

.card {
  background: var(--card);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 26px 0;
}
.card--gold { border-color: var(--gold); }

.price { font-family: var(--serif); font-size: clamp(56px, 12vw, 104px); font-weight: 700; color: var(--gold); line-height: 1; }
.price-note { color: var(--muted); letter-spacing: 4px; font-size: 15px; text-transform: uppercase; }

.stack { list-style: none; padding: 0; margin: 18px 0; }
.stack li { padding: 11px 0 11px 32px; position: relative; color: var(--muted); }
.stack li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.faq dt { font-weight: 700; margin-top: 22px; }
.faq dd { margin: 6px 0 0; color: var(--muted); }

.guarantee {
  border-left: 4px solid var(--mint);
  padding: 6px 0 6px 20px;
  margin: 30px 0;
  color: var(--muted);
}
.guarantee strong { color: var(--mint); }

/* ---- disclosure: mandatory, present on every page ---- */
footer.disclosure {
  margin-top: 64px;
  padding: 30px 0 60px;
  border-top: 1px solid rgba(124, 140, 128, 0.28);
  color: var(--hair);
  font-size: 13.5px;
  line-height: 1.65;
}
footer.disclosure p { margin: 0 0 12px; }
footer.disclosure a { color: var(--hair); }

.embed {
  width: 100%; min-height: 760px; border: 2px solid var(--green);
  border-radius: 14px; background: var(--card);
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .cta { padding: 19px 18px; }
}
