:root {
  --bg: #0c0c0c;
  --bg-elevated: #111111;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --red: #dc2626;
  --border: #27272a;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max: 700px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.ocont {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.red { color: var(--red); }

/* ─── Nav ─── */
.onav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.35rem;
  background: rgba(12, 12, 12, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.onav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.onav__btn {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ─── Buttons ─── */
.obtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(220, 38, 38, 0.38);
  transition: filter 0.15s, transform 0.12s;
  text-align: center;
}

.obtn:hover { filter: brightness(1.1); color: #fff; }
.obtn:active { transform: scale(0.985); }
.obtn--full { width: 100%; max-width: 360px; }
.obtn--xl   { max-width: 400px; padding: 1.15rem 2rem; font-size: 1.1rem; }

/* Secondary / ghost button (DM HELP) */
.obtn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
}
.obtn--ghost:hover { filter: none; color: #fff; border-color: var(--red); background: rgba(220, 38, 38, 0.08); }

/* CTA row (stacked primary + ghost) */
.octa-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
}
.octa-row--center { margin-top: 1.5rem; }

/* ─── Shared section label ─── */
.osec-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.osec-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.0;
  margin: 0 0 1.1rem;
}

/* ─── Hero ─── */
.ohero {
  padding: clamp(2.5rem, 9vw, 5.5rem) 0 clamp(2.5rem, 8vw, 4.5rem);
  text-align: center;
}

.ohero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0.65rem auto 1.35rem;
  max-width: 16ch;
}

.ohero__sub {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

.ohero__fine {
  margin: 0.85rem auto 0;
  font-size: 0.74rem;
  color: var(--text-muted);
  max-width: 36ch;
}

/* ─── Gap / Agitation ─── */
.ogap {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.ogap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ogap__list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: clamp(0.97rem, 2.2vw, 1.05rem);
  line-height: 1.55;
}

.ogap__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 1px;
}

/* ─── Source / Credibility ─── */
.osource {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.osource__inner {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.75rem;
  align-items: center;
}

@media (max-width: 480px) {
  .osource__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .osource__img-wrap { margin: 0 auto; }
}

.osource__img-wrap {
  width: 130px;
  height: 162px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.osource__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.osource__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.65rem;
}

.osource__bio {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Video Testimonial ─── */
.ovideo {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  text-align: center;
}

.ovideo__wrap {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 480px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 90px -20px rgba(228, 56, 56, 0.18);
  background: #000;
}

.ovideo__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}

.ovideo__sound {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(228, 56, 56, 0.95);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(228, 56, 56, 0.45);
  animation: ovideoBlink 1.6s ease-in-out infinite;
  transition: opacity 0.25s ease, transform 0.2s ease;
}
.ovideo__sound:hover { transform: scale(1.05); }
.ovideo__sound.is-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.ovideo__sound-icon { font-size: 0.95rem; line-height: 1; }
@keyframes ovideoBlink {
  0%, 100% { box-shadow: 0 6px 18px rgba(228, 56, 56, 0.45); }
  50%      { box-shadow: 0 6px 28px rgba(228, 56, 56, 0.85), 0 0 0 6px rgba(228, 56, 56, 0.18); }
}

/* ─── Core Mechanism ─── */
.omech {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.omech__sub {
  color: var(--text-muted);
  font-size: clamp(0.97rem, 2.2vw, 1.05rem);
  line-height: 1.6;
  margin: -0.5rem 0 2rem;
  max-width: 54ch;
}

.omech__points { gap: 1.25rem; }

.omech__line {
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.omech__line strong { color: var(--red); }

/* ─── What You Get ─── */
.owhat {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.owhat__sub {
  color: var(--text-muted);
  margin: -0.6rem 0 1.75rem;
  font-size: 0.97rem;
  font-weight: 500;
}

.ocard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .ocard-grid { grid-template-columns: 1fr; }
}

.ocard--wide { grid-column: 1 / -1; }

.ocard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ocard__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.ocard__num--sm { font-size: 1.5rem; }

.ocard__label {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.ocard__desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Why Now ─── */
.owhy {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.owhy__body {
  color: var(--text-muted);
  font-size: clamp(0.97rem, 2.2vw, 1.05rem);
  line-height: 1.6;
  margin: -0.5rem 0 2rem;
  max-width: 54ch;
}

.owhy__points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.owhy__point {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.owhy__point-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 0.05rem;
}

.owhy__point strong {
  display: block;
  font-size: 0.97rem;
  margin-bottom: 0.35rem;
}

.owhy__point p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Price ─── */
.oprice {
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.oprice__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.25rem 0 1.25rem;
}

@media (max-width: 460px) {
  .oprice__compare { grid-template-columns: 1fr; }
  .oprice__col--future { border-right: none; border-bottom: 1px solid var(--border); }
}

.oprice__col {
  padding: 1.5rem 1.25rem;
}

.oprice__col--future {
  background: #0e0e0e;
  border-right: 1px solid var(--border);
  opacity: 0.65;
}

.oprice__col--now {
  background: rgba(220, 38, 38, 0.06);
}

.oprice__badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.oprice__tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.3rem;
}

.oprice__amount {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3rem);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.oprice__amount--struck {
  text-decoration: line-through;
  color: var(--text-muted);
}

.oprice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.83rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-muted);
}

.oprice__col--now .oprice__list {
  color: var(--text);
}

/* Live-webinar discount banner */
.oprice__live-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 10px;
  font-size: 0.97rem;
  line-height: 1.45;
  text-align: center;
  color: var(--text);
  max-width: 52ch;
}
.oprice__live-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.08); }
}

/* Strikethrough was-price */
.oprice__was {
  font-size: 0.72em;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.oprice__note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 auto;
}

.oprice__direct {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}
.oprice__direct a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.oprice__direct a:hover { color: var(--red); }

/* ─── Close / Final CTA ─── */
.oclose {
  padding: clamp(3rem, 10vw, 5.5rem) 0;
  padding-bottom: calc(clamp(3rem, 10vw, 5.5rem) + 76px);
  background: #080808;
  border-top: 1px solid var(--border);
  text-align: center;
}

.oclose__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oclose__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.0;
  margin: 0.5rem auto 1rem;
  max-width: 20ch;
}

.oclose__sub {
  color: var(--text-muted);
  font-size: clamp(0.88rem, 2vw, 0.97rem);
  max-width: 42ch;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.oclose__fine {
  margin: 1rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── Sticky bottom bar ─── */
.osticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.35rem;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(14px);
}

.osticky.is-visible { transform: translateY(0); }

.osticky__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.osticky__copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.osticky__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.osticky__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.osticky__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1.25rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(220, 38, 38, 0.35);
  letter-spacing: 0.01em;
}

/* ---- Value stack (price section) ---- */

.ostack {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
}

.ostack__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 1rem;
}

.ostack__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ostack__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}

.ostack__val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ostack__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0 0.5rem;
  font-weight: 700;
}

.ostack__total .ostack__val {
  color: var(--text);
  font-size: 1.4rem;
}

.ostack__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--red);
  font-weight: 700;
}

.ostack__price .ostack__val {
  color: var(--red);
  font-size: 1.7rem;
}

/* ---- Limited-time sale strikethroughs ---- */
.obtn__was,
.ostack__was {
  opacity: 0.55;
  font-weight: 500;
  margin-right: 0.25em;
}

.ostack__was {
  font-size: 1.1rem;
  color: var(--text);
}

/* ---- Embedded checkout modal ---- */
.ocheckout {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.ocheckout.is-open { display: block; }

.ocheckout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.ocheckout__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 480px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem 0.75rem 0.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.ocheckout__close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  border: none;
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.ocheckout__close:hover { color: #000; }

.ocheckout__loading {
  text-align: center;
  color: #666;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
}
