/* ========== Reset & base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #f5f1eb;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 56px; /* sticky bar */
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  color: #f5f1eb;
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 680px;
}

.section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
}

.center {
  text-align: center;
}

.divider {
  width: 40px;
  height: 2px;
  background: #e63946;
  margin: 32px auto 0;
}

/* ========== Typography ========== */
.display {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0 0 24px;
  color: #f5f1eb;
}

.display--xl {
  font-size: clamp(38px, 8vw, 64px);
}

.display--xxl {
  font-size: clamp(46px, 11vw, 96px);
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #e63946;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.eyebrow--on-red {
  color: #0a0a0a;
}

.lede {
  font-size: 18px;
  line-height: 1.5;
  color: #f5f1eb;
  margin: 0 0 28px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .lede {
    font-size: 20px;
  }
}

.prose {
  font-size: 17px;
  line-height: 1.65;
  color: #f5f1eb;
  margin: 0 0 18px;
  max-width: 640px;
}

.prose--strong {
  font-weight: 600;
  color: #ffffff;
  border-left: 2px solid #e63946;
  padding-left: 16px;
}

.prose--on-red {
  color: #fff5ef;
}

.disclaimer {
  font-size: 13px;
  color: #9a9a9a;
  margin-top: 16px;
}

.disclaimer--on-red {
  color: rgba(10, 10, 10, 0.78);
}

/* ========== Sticky countdown bar ========== */
.countdown-bar {
  position: fixed;
  inset: 0 0 auto 0;
  background: #000;
  border-bottom: 1px solid #1f1f1f;
  z-index: 50;
  height: 56px;
  display: flex;
  align-items: center;
}

.countdown-bar__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-bar__label {
  font-size: 11px;
  color: #f5f1eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.countdown-bar__timer {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: #e63946;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .countdown-bar__label {
    font-size: 13px;
  }
  .countdown-bar__timer {
    font-size: 22px;
  }
}

/* ========== Hero ========== */
.hero {
  background: #0a0a0a;
  padding: 48px 0 0;
}

.hero__inner {
  text-align: left;
}

.hero__logo {
  width: 180px;
  height: auto;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero {
    padding: 96px 0 0;
  }
  .hero__logo {
    width: 220px;
  }
}

/* ========== CTA / buttons ========== */
.cta-block {
  margin: 32px 0 16px;
}

.cta-block--center {
  text-align: center;
}

.cta-block--center .waitlist {
  text-align: left;
}

.cta-sub {
  font-size: 13px;
  color: #9a9a9a;
  margin: 14px 0 0;
}

.btn {
  display: inline-block;
  width: 100%;
  border: 0;
  background: #e63946;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 16px;
  padding: 18px 22px;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  transition: background 120ms ease, transform 80ms ease;
}

.btn:hover {
  background: #c92d39;
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: #e63946;
  color: #fff;
}

.btn--giant {
  font-size: 18px;
  padding: 22px 24px;
}

@media (min-width: 768px) {
  .btn {
    width: auto;
    min-width: 320px;
    font-size: 17px;
  }
  .btn--giant {
    min-width: 380px;
    font-size: 20px;
    padding: 26px 36px;
  }
}

/* ========== Waitlist form ========== */
.waitlist {
  margin: 16px 0 0;
}

.waitlist__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
  font-weight: 600;
}

.waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist__row input[type="email"] {
  width: 100%;
  background: #141414;
  border: 1px solid #2a2a2a;
  color: #f5f1eb;
  padding: 16px 16px;
  font-size: 16px;
  font-family: inherit;
  border-radius: 0;
  outline: none;
}

.waitlist__row input[type="email"]:focus {
  border-color: #e63946;
}

.waitlist__msg {
  margin: 10px 0 0;
  font-size: 13px;
  color: #9a9a9a;
  min-height: 1em;
}

.waitlist__msg.is-ok {
  color: #7bd389;
}

.waitlist__msg.is-error {
  color: #e63946;
}

@media (min-width: 640px) {
  .waitlist__row {
    flex-direction: row;
    align-items: stretch;
  }
  .waitlist__row .btn {
    width: auto;
    min-width: 0;
    white-space: nowrap;
    padding: 16px 22px;
  }
}

/* ========== Proof image bar ========== */
.proof {
  background: #000;
  position: relative;
}

.proof__media {
  width: 100%;
  height: 90vw;
  max-height: 720px;
  min-height: 360px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.proof__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 768px) {
  .proof__media {
    height: 70vw;
    max-height: 820px;
  }
  .proof__img {
    object-position: center 20%;
  }
}

.jay-portrait {
  margin: 24px 0 32px;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  background: #0a0a0a;
}

.jay-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Checkout page ========== */
.checkout-body {
  background: #0a0a0a;
  color: #f5f1eb;
  font-family: "Inter", system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
}

.checkout-header {
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 10;
}
.checkout-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.checkout-back {
  color: #cfcac3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
}
.checkout-back:hover { color: #e63946; }
.checkout-header__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f1eb;
}

.checkout {
  padding: 32px 0 64px;
}
.checkout__title {
  margin: 0 0 24px;
}

.order-summary {
  background: #141414;
  border: 1px solid #222;
  border-left: 4px solid #e63946;
  padding: 20px;
  margin: 0 0 28px;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.order-summary__name {
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #f5f1eb;
}
.order-summary__sub {
  margin: 0;
  font-size: 13px;
  color: #cfcac3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-summary__price {
  font-family: "Anton", Impact, sans-serif;
  font-size: 32px;
  margin: 0;
  color: #e63946;
}
.order-summary__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: #cfcac3;
  font-size: 14px;
}
.order-summary__list li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.order-summary__list li::before {
  content: "✓";
  color: #e63946;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 6px;
}
.order-summary__total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #222;
  padding-top: 14px;
  margin-top: 8px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-form {
  display: block;
}
.payment-form__group {
  border: 1px solid #222;
  background: #141414;
  padding: 20px;
  margin: 0 0 20px;
}

.express-checkout-wrapper {
  margin: 0 0 20px;
}
.express-checkout-wrapper[hidden] { display: none; }
#express-checkout-element {
  min-height: 48px;
}
.express-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 4px;
  color: #7a7670;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.express-divider::before,
.express-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2a2a2a;
}
.payment-form__legend {
  font-family: "Anton", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 8px;
  margin-left: -8px;
  color: #f5f1eb;
}

.field {
  display: block;
  margin: 0 0 14px;
}
.field:last-child { margin-bottom: 0; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}
.field-row .field { margin: 0; }
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin: 0 0 14px; }
  .field-row .field:last-child { margin-bottom: 0; }
}
.field__label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cfcac3;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  color: #f5f1eb;
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
}
.field input:focus {
  outline: none;
  border-color: #e63946;
}

.payment-element {
  min-height: 64px;
}
.payment-element__loading {
  color: #7a7670;
  font-size: 14px;
  margin: 0;
}

.payment-message {
  margin: 0 0 16px;
  font-size: 14px;
  min-height: 1em;
  color: #cfcac3;
}
.payment-message.is-error {
  color: #ff6b6b;
}
.payment-message.is-info {
  color: #cfcac3;
}

.payment-form__submit {
  width: 100%;
}
.payment-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-form__reassure {
  text-align: center;
  font-size: 13px;
  color: #7a7670;
  margin: 16px 0 0;
}

.proof__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.proof__overlay-text {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(22px, 5.5vw, 38px);
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  color: #f5f1eb;
}

/* ========== Offer stack ========== */
.stack {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.stack__item {
  background: #141414;
  border: 1px solid #222;
  border-left: 4px solid #e63946;
  padding: 18px 18px 16px;
  margin-bottom: 14px;
}

.stack__title {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #ffffff;
}

.stack__item p {
  margin: 0;
  color: #cfcac3;
  font-size: 15.5px;
}

.value-line {
  margin: 28px 0 0;
  font-size: 18px;
  color: #f5f1eb;
}

.value-line__price {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  color: #e63946;
  margin-left: 4px;
}

.strike {
  text-decoration: line-through;
  color: #9a9a9a;
  text-decoration-color: #e63946;
  text-decoration-thickness: 2px;
}

/* ========== Accent (red) section ========== */
.section--accent {
  background: #e63946;
  color: #0a0a0a;
}

.section--accent .display {
  color: #0a0a0a;
}

/* ========== Gallery ========== */
.gallery {
  margin: 32px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.gallery__item {
  margin: 0;
  background: #000;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pull-quote {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(22px, 4.5vw, 32px);
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  color: #f5f1eb;
  border-left: 0;
  padding: 24px 8px 0;
  margin: 8px auto 0;
  max-width: 720px;
}

/* ========== SPARTA ========== */
.sparta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .sparta {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.sparta__cell {
  background: #141414;
  border: 1px solid #222;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 14px;
}

.sparta__letter {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-size: 56px;
  line-height: 0.85;
  color: #e63946;
  display: block;
}

.sparta__title {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #ffffff;
}

.sparta__cell p {
  grid-column: 2;
  margin: 0;
  color: #cfcac3;
  font-size: 15px;
}

/* ========== Testimonials ========== */
.testimonials {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.testimonial {
  background: #141414;
  border: 1px solid #222;
  padding: 18px;
  margin: 0;
}

.testimonial p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #f5f1eb;
}

.testimonial cite {
  font-style: normal;
  color: #e63946;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== FAQ ========== */
.faq {
  margin-top: 28px;
  border-top: 1px solid #222;
}

.faq__item {
  border-bottom: 1px solid #222;
}

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  color: #f5f1eb;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.01em;
}

.faq__q:hover {
  color: #ffffff;
}

.faq__icon {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #e63946;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 250ms ease;
}

.faq__a p {
  margin: 0 0 18px;
  color: #cfcac3;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ========== Final ========== */
.section--final {
  background: #0a0a0a;
  border-top: 2px solid #e63946;
}

.reassure {
  margin: 18px 0 0;
  font-size: 13px;
  color: #9a9a9a;
}

/* ========== Footer ========== */
.footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 32px 0 48px;
}

.footer__brand {
  margin: 0 0 8px;
  font-size: 13px;
  color: #9a9a9a;
}

.footer__nav {
  display: flex;
  gap: 18px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}

.footer__nav a {
  color: #f5f1eb;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__nav a:hover {
  color: #e63946;
}

.footer__small {
  font-size: 12px;
  color: #6c6c6c;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
 * SUMMER SHRED — REBUILD ADDITIONS (sections, sticky bars, video,
 * comparison, promise, exit modal). Older rules above remain valid;
 * unused legacy rules are harmless.
 * ============================================================ */

/* Reset for added body padding so topbar doesn't cover content.
 * Scoped to .has-topbar so /checkout.html (which has no fixed topbar) is unaffected. */
body.has-topbar { padding-top: 110px; }
@media (max-width: 768px) {
  body.has-topbar { padding-top: 106px; padding-bottom: 76px; }
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f5f1eb;
  text-decoration: none;
  font-family: "Anton", "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-transform: uppercase;
}
.topbar__brand img { height: 44px; width: auto; display: block; }
.topbar__countdown {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.topbar__cd-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #c2c2c2;
  text-transform: uppercase;
}
.topbar__cd-timer {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: #e63946;
  white-space: nowrap;
}
.topbar__cta { white-space: nowrap; }
.topbar__banner {
  background: #140607;
  color: #fff;
  text-align: center;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  text-transform: uppercase;
  border-top: 1px solid #e63946;
  border-bottom: 1px solid #e63946;
  line-height: 1.4;
}
.topbar__banner strong { color: #ff5562; font-weight: inherit; }
@media (max-width: 768px) {
  .topbar__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand cta"
      "cd cd";
    gap: 8px;
    padding: 8px 14px;
  }
  .topbar__brand { grid-area: brand; }
  .topbar__cta { grid-area: cta; }
  .topbar__countdown { grid-area: cd; align-items: flex-start; }
  .topbar__brand span { display: none; }
  .topbar__brand img { height: 40px; }
  .topbar__cd-timer { font-size: 16px; }
  .topbar__banner { font-size: 10.5px; padding: 4px 10px; letter-spacing: 0.08em; }
}

/* Hide legacy countdown bar (the old one) so it doesn't double up */
.countdown-bar { display: none !important; }

/* ===== Buttons (small variant) ===== */
.btn--small {
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ===== HERO TWO-COLUMN ===== */
.hero--two-col {
  padding: 40px 0 56px;
  background: #0a0a0a;
}
.hero--two-col .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero__copy { min-width: 0; }
.hero__media { min-width: 0; }
.hero__h2 {
  color: #e63946;
  margin: 8px 0 18px;
}
.hero__countdown {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  display: inline-block;
}
/* Inline variant: sits inside the CTA block right under the join button. */
.hero__countdown--inline {
  margin-top: 14px;
  padding: 12px 16px;
  border-color: #2a0d10;
  background: #140609;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__countdown--inline .hero__countdown-label { margin: 0; }
.hero__countdown--inline .hero__countdown-timer { font-size: 26px; }
@media (max-width: 768px) {
  .hero__countdown--inline { padding: 12px 14px; gap: 8px; }
  .hero__countdown--inline .hero__countdown-timer { font-size: 24px; }
}
.hero__countdown-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #c2c2c2;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.hero__countdown-timer {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #e63946;
  margin: 0;
  white-space: nowrap;
}

/* Trust row under CTA + trust bar */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #8a8a8a;
  text-transform: uppercase;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
}
.trust-row li + li::before {
  content: "·";
  padding-right: 14px;
  color: #5a5a5a;
}
.trust-row--big {
  font-size: 12px;
  color: #c2c2c2;
  letter-spacing: 0.2em;
  margin-top: 16px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  color: #d4d4d4;
  text-transform: none;
  letter-spacing: 0;
}
.trust-bar li strong {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #f5f1eb;
  font-size: 18px;
  letter-spacing: 0.04em;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}
.trust-bar__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #e63946;
  stroke: currentColor;
}
@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .trust-bar li {
    font-size: 13px;
    padding: 14px;
  }
  .trust-bar li strong { font-size: 16px; }
  .trust-bar__icon { width: 26px; height: 26px; }
}
@media (max-width: 480px) {
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .trust-bar li { font-size: 15px; padding: 14px 16px; }
  .trust-bar li strong { font-size: 19px; }
  .trust-bar__icon { width: 30px; height: 30px; }
}

/* ===== HERO VIDEO PLAYER ===== */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000 center/cover no-repeat;
  border: 1px solid #1f1f1f;
  overflow: hidden;
}
.hero-video__el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-family: "Anton", "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: 14px;
  transition: background 0.18s ease;
}
.hero-video__overlay:hover { background: rgba(0, 0, 0, 0.45); }
.hero-video__overlay--muted { background: rgba(0, 0, 0, 0.18); }
.hero-video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  padding-left: 6px;
  box-shadow: 0 4px 24px rgba(230, 57, 70, 0.5);
}
.hero-video__overlay-text { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.hero-video__caption {
  margin: 12px 0 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #8a8a8a;
  text-transform: uppercase;
  text-align: center;
}
.hero-video--no-file .hero-video__el { display: none; }
.hero-video--no-file { background-image: url("/images/jay-studio.jpg"); }

@media (max-width: 900px) {
  .hero--two-col .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__media { order: -1; }
  .hero__countdown-timer { font-size: 26px; }
}

/* ===== Dark block sections ===== */
.section--dark-block {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 72px 0;
}

/* ===== Numbered offer stack ===== */
.stack--numbered {
  list-style: none;
  padding: 0;
  margin: 32px 0 24px;
  counter-reset: shred-stack;
  display: grid;
  gap: 18px;
}
.stack--numbered .stack__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  border-left: 4px solid #e63946;
  align-items: start;
}
.stack__num {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 38px;
  color: #e63946;
  line-height: 1;
  letter-spacing: 0.04em;
}
.stack__body { min-width: 0; }
.stack__body .stack__title {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: #f5f1eb;
}
.stack__body p {
  margin: 0 0 10px;
  color: #c2c2c2;
  font-size: 15px;
  line-height: 1.6;
}
.stack__value {
  display: inline-block;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #e63946;
  border: 1px solid #e63946;
  padding: 4px 10px;
}
@media (max-width: 540px) {
  .stack--numbered .stack__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
  .stack__num { font-size: 30px; }
}

.value-box {
  margin: 32px 0;
  padding: 24px;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  text-align: center;
}
.value-box__total {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #c2c2c2;
  margin: 0 0 8px;
}
.value-box__total strong { color: #f5f1eb; }
.value-box__price {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #f5f1eb;
  margin: 0;
}
.value-box__price-num { color: #e63946; }

/* ===== Hero results (3 transformations) ===== */
.hero-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 32px 0 24px;
}
.hero-result {
  margin: 0;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  display: flex;
  flex-direction: column;
}
.hero-result img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
.hero-result figcaption {
  padding: 16px 18px 18px;
}
.hero-result__quote {
  font-style: italic;
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.hero-result cite {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #e63946;
}
@media (max-width: 900px) {
  .hero-results { grid-template-columns: 1fr; }
}

.carousel-title { margin: 36px 0 16px; }
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel__item {
  flex: 0 0 220px;
  margin: 0;
  scroll-snap-align: start;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
}
.carousel__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Video testimonials placeholder ===== */
.vid-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 32px 0 0;
}
.vid-card {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
}
.vid-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vid-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, #1c1c1c 0%, #050505 80%);
}
.vid-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.vid-card__play {
  width: 56px; height: 56px; border-radius: 50%;
  background: #e63946; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; padding-left: 4px;
}
.vid-card__soon {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #8a8a8a;
}
.vid-card__quote {
  margin: 16px 18px 6px;
  color: #d4d4d4;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
}
.vid-card__cite {
  margin: 0 18px;
  font-family: "Anton", "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: #e63946;
}
@media (max-width: 900px) {
  .vid-testimonials { grid-template-columns: 1fr; }
}

/* ===== Testimonial cards with initials avatars ===== */
.testi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 0;
}
.testi-card {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.testi-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #e63946;
  color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.testi-card blockquote {
  margin: 0;
}
.testi-card blockquote p {
  margin: 0 0 10px;
  color: #d4d4d4;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}
.testi-card cite {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: #e63946;
}
@media (max-width: 700px) {
  .testi-cards { grid-template-columns: 1fr; }
}

/* ===== Don't list ===== */
.dont-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.dont-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  color: #d4d4d4;
  line-height: 1.5;
}
.dont-list__x {
  color: #e63946;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

/* ===== Week 1 day cards ===== */
.week-timeline {
  list-style: none;
  margin: 32px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.week-timeline__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 18px;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 18px 20px;
}
.week-timeline__day {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #e63946;
  line-height: 1;
  padding-top: 2px;
}
.week-timeline__row p {
  margin: 0;
  color: #d4d4d4;
  font-size: 16px;
  line-height: 1.55;
}
.week-timeline__summary {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 480px) {
  .week-timeline__row {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .week-timeline__day { font-size: 24px; }
  .week-timeline__row p { font-size: 15px; }
}

/* ===== Comparison table ===== */
.compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 0;
}
.compare__col {
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.compare__col--shred {
  border-color: #e63946;
  border-width: 2px;
  background: #100808;
  position: relative;
}
.compare__col--shred::before {
  content: "BEST";
  position: absolute;
  top: -12px;
  right: 12px;
  background: #e63946;
  color: #0a0a0a;
  font-family: "Anton", "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding: 4px 8px;
}
.compare__head {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: #f5f1eb;
  margin: 0;
}
.compare__price {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #e63946;
  margin: 4px 0 16px;
}
.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.compare__col li {
  font-size: 13px;
  line-height: 1.4;
  color: #c2c2c2;
  padding-left: 24px;
  position: relative;
}
.compare__col li::before {
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 14px;
}
.compare__col li.yes::before { content: "✓"; color: #4ade80; }
.compare__col li.no::before { content: "✕"; color: #6c6c6c; }
.compare__col li.maybe::before { content: "—"; color: #9a9a9a; }
.compare__col li.no { color: #6c6c6c; text-decoration: line-through; }
@media (max-width: 980px) {
  .compare { grid-template-columns: repeat(2, 1fr); }
  .compare__col--shred { order: -1; grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .compare { grid-template-columns: 1fr; }
  .compare__col--shred { grid-column: auto; }
}

/* ===== My Promise ===== */
.section--promise {
  background: #050505;
  padding: 72px 0;
}
.promise {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.promise__photo {
  margin: 0;
  border: 1px solid #1f1f1f;
  background: #000;
}
.promise__photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.1) contrast(1.05);
}
.promise__copy h2 { margin-top: 0; }
@media (max-width: 800px) {
  .promise { grid-template-columns: 1fr; }
}

/* ===== Final close section ===== */
.section--final {
  background: #0a0a0a;
  padding: 80px 0;
  border-top: 1px solid #1a1a1a;
}
.prose--final {
  font-size: 17px;
  line-height: 1.65;
  color: #d4d4d4;
}
.final-countdown {
  margin: 32px auto 24px;
  padding: 18px 22px;
  border: 1px solid #1f1f1f;
  background: #0d0d0d;
  display: inline-block;
}
.final-countdown .hero__countdown-timer {
  font-size: 36px;
}

/* ===== PS ===== */
.section--ps {
  padding: 40px 0 80px;
  background: #0a0a0a;
}
.ps {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #c2c2c2;
  border-left: 3px solid #e63946;
  padding: 8px 0 8px 18px;
}
.ps strong {
  color: #e63946;
  font-style: normal;
  letter-spacing: 0.08em;
}

/* ===== Footer extras ===== */
.footer__contact {
  font-size: 13px;
  color: #c2c2c2;
  margin: 8px 0 0;
}
.footer__contact a {
  color: #e63946;
  text-decoration: none;
  border-bottom: 1px solid #e63946;
}

/* ===== Sticky mobile CTA ===== */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}
.mobile-cta__timer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-cta__timer-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #c2c2c2;
  text-transform: uppercase;
}
.mobile-cta__timer-val {
  font-family: "Anton", "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #e63946;
}
@media (min-width: 768px) {
  .mobile-cta { display: none !important; }
}

/* ============================================================
 * MOBILE TYPOGRAPHY UPGRADE
 * Bumps body text + secondary labels on small screens
 * so everything is comfortably readable on a phone.
 * ============================================================ */
@media (max-width: 768px) {
  /* Base body & all paragraph copy */
  html, body { font-size: 18px; }
  .prose, .prose p { font-size: 18px; line-height: 1.55; }
  .hero__copy p { font-size: 19px; line-height: 1.5; }
  .hero__eyebrow { font-size: 13px; }

  /* Topbar / sticky urgency band */
  .topbar__cd-label { font-size: 11px; }
  .topbar__cd-timer { font-size: 17px; }
  .topbar__banner { font-size: 13px; padding: 7px 12px; }

  /* Hero countdown card */
  .hero__countdown-label { font-size: 13px; }
  .hero__countdown-timer { font-size: 28px; }

  /* Pattern interrupt + "bit no one talks about" + wobble copy */
  .pi__body, .pi__body p { font-size: 18px; line-height: 1.55; }
  .pi__cite { font-size: 16px; }

  /* Offer stack — the 8 numbered items */
  .stack__title { font-size: 22px; }
  .stack__body { font-size: 17px; line-height: 1.5; }
  .stack__value { font-size: 14px; }
  .stack__total-label { font-size: 14px; }
  .stack__total-num { font-size: 36px; }

  /* RM Live highlight box */
  .rmlive__body { font-size: 17px; }

  /* Testimonial cards */
  .testi__quote, .testi__body { font-size: 17px; line-height: 1.5; }
  .testi__name { font-size: 16px; }
  .testi__meta { font-size: 13px; }

  /* "Don't buy if" anti-list */
  .dontbuy__item { font-size: 17px; }

  /* Week 1 day cards */
  .week1__day-num { font-size: 14px; }
  .week1__day-name { font-size: 17px; }
  .week1__day-desc { font-size: 15px; }

  /* Comparison table */
  .compare__col h3 { font-size: 19px; }
  .compare__col li { font-size: 15px; line-height: 1.45; }
  .compare__col__price { font-size: 16px; }

  /* FAQ */
  .faq__q { font-size: 18px; padding: 18px 16px; }
  .faq__a, .faq__a p { font-size: 17px; line-height: 1.55; }

  /* Promise / final close */
  .promise__body, .promise__body p { font-size: 18px; line-height: 1.55; }
  .prose--final, .prose--final p { font-size: 19px; line-height: 1.5; }
  .final-countdown .hero__countdown-timer { font-size: 32px; }
  .ps__body { font-size: 17px; }

  /* Footer */
  .footer__links a { font-size: 15px; }
  .footer__contact { font-size: 15px; }
  .footer__small { font-size: 13px; }

  /* Sticky mobile CTA */
  .mobile-cta__timer-label { font-size: 11px; }
  .mobile-cta__timer { font-size: 18px; }
  .mobile-cta .btn { font-size: 16px; }

  /* Trust row chips under hero CTA */
  .trust-row, .trust-row--big { font-size: 13px; }

  /* Anything explicitly small/meta — give it a floor of 13px */
  .eyebrow, .section__eyebrow { font-size: 13px; }
}

/* ===== RM LIVE BANNER POSTER ===== */
.rmlive__poster {
  margin: 0 0 24px;
  border: 2px solid #0A0A0A;
  background: #0A0A0A;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
}
.rmlive__poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .rmlive__poster { margin: 0 0 18px; }
}

/* ============================================================
 * PREMIUM POLISH + SCROLL ANIMATIONS
 * Subtle film grain, refined depth, choreographed reveals.
 * ============================================================ */

/* ---- Subtle film grain over the whole page (premium dark feel) ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---- Faint red glow behind the hero copy (depth without distraction) ---- */
.hero--two-col {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(230, 57, 70, 0.08) 0%, rgba(10, 10, 10, 0) 60%),
    #0a0a0a;
}

/* ---- Refined topbar shadow ---- */
.topbar {
  background: linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* ---- Tabular numerals on countdown timers (no width jitter) ---- */
.topbar__cd-timer,
.hero__countdown-timer,
.mobile-cta__timer-val,
.final-countdown .hero__countdown-timer {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ---- Pulsing live dot on countdown labels ---- */
.topbar__cd-label::before,
.hero__countdown-label::before,
.mobile-cta__timer-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e63946;
  margin-right: 8px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  animation: shred-pulse 1.8s ease-out infinite;
}
@keyframes shred-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* ---- Premium gradient CTA with ambient shadow + shimmer sweep ---- */
.btn--primary {
  background: linear-gradient(180deg, #ec4753 0%, #e63946 50%, #cc2934 100%);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 220ms ease,
              background 220ms ease;
}
.btn--primary:hover {
  background: linear-gradient(180deg, #f04a55 0%, #e63946 50%, #c0212d 100%);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.42),
              inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn--giant {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--giant::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shred-shimmer 5.5s ease-in-out 2s infinite;
}
@keyframes shred-shimmer {
  0%, 70% { left: -120%; }
  92%     { left: 220%; }
  100%    { left: 220%; }
}

/* ---- Premium card depth + lift on hover ---- */
.stack__item,
.sparta__cell,
.vid-card,
.week-timeline__row,
.testi-card,
.compare__col,
.hero-result,
.trust-bar li,
.faq__item {
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 280ms ease,
              box-shadow 280ms ease,
              background-color 280ms ease;
}
.stack__item:hover,
.sparta__cell:hover,
.vid-card:hover,
.testi-card:hover,
.hero-result:hover,
.trust-bar li:hover {
  transform: translateY(-3px);
  border-color: #2c2c2c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55),
              inset 0 0 0 1px rgba(230, 57, 70, 0.10);
}
.compare__col:hover {
  transform: translateY(-3px);
  border-color: #2c2c2c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}
.compare__col--shred:hover {
  border-color: #e63946;
  box-shadow: 0 14px 36px rgba(230, 57, 70, 0.22);
}
.week-timeline__row:hover {
  transform: translateX(2px);
  border-color: #2c2c2c;
  background: linear-gradient(90deg, #100808 0%, #0d0d0d 40%);
}

/* ---- Numbered offer stack: subtle gradient depth ---- */
.stack--numbered .stack__item {
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

/* ---- Section-edge accent line on dark blocks ---- */
.section--dark-block,
.section--promise,
.section--final {
  position: relative;
}
.section--dark-block::before,
.section--promise::before,
.section--final::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
  pointer-events: none;
}

/* ---- FAQ refinement: smoother panel + nudge on hover ---- */
.faq__q {
  transition: color 200ms ease,
              padding-left 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
              background 240ms ease;
}
.faq__q:hover {
  color: #ffffff;
  padding-left: 8px;
}
.faq__q[aria-expanded="true"] {
  color: #ffffff;
}
.faq__a {
  transition: max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---- Trust bar: icon micro-interaction ---- */
.trust-bar__icon {
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trust-bar li:hover .trust-bar__icon {
  transform: scale(1.10);
}

/* ---- Image treatments: subtle inner border + gentle scale on hover ---- */
.gallery__item,
.proof__media,
.hero-result,
.jay-portrait,
.promise__photo,
.rmlive__poster {
  overflow: hidden;
}
.gallery__item img,
.hero-result img,
.jay-portrait img,
.promise__photo img,
.rmlive__poster img {
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__item:hover img,
.hero-result:hover img {
  transform: scale(1.04);
}

/* ---- Email inputs: smoother focus ---- */
.waitlist__row input[type="email"],
.field input {
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.waitlist__row input[type="email"]:focus,
.field input:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
}

/* ============================================================
 * SCROLL REVEAL — items that get the .reveal class via main.js
 * fade up into view when entering the viewport.
 * Above-the-fold elements are skipped at init time (no flash).
 * ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* Drop the layer hint once the reveal has completed —
   * keeping `will-change` permanently across many nodes wastes memory. */
  will-change: auto;
}

/* Stagger inside multi-item containers */
.stack--numbered > .reveal:nth-child(1) { transition-delay: 0ms; }
.stack--numbered > .reveal:nth-child(2) { transition-delay: 60ms; }
.stack--numbered > .reveal:nth-child(3) { transition-delay: 120ms; }
.stack--numbered > .reveal:nth-child(4) { transition-delay: 180ms; }
.stack--numbered > .reveal:nth-child(5) { transition-delay: 240ms; }
.stack--numbered > .reveal:nth-child(6) { transition-delay: 300ms; }
.stack--numbered > .reveal:nth-child(7) { transition-delay: 360ms; }
.stack--numbered > .reveal:nth-child(8) { transition-delay: 420ms; }

.week-timeline > .reveal:nth-child(1) { transition-delay: 0ms; }
.week-timeline > .reveal:nth-child(2) { transition-delay: 70ms; }
.week-timeline > .reveal:nth-child(3) { transition-delay: 140ms; }
.week-timeline > .reveal:nth-child(4) { transition-delay: 210ms; }
.week-timeline > .reveal:nth-child(5) { transition-delay: 280ms; }
.week-timeline > .reveal:nth-child(6) { transition-delay: 350ms; }
.week-timeline > .reveal:nth-child(7) { transition-delay: 420ms; }

.trust-bar > .reveal:nth-child(1) { transition-delay: 0ms; }
.trust-bar > .reveal:nth-child(2) { transition-delay: 80ms; }
.trust-bar > .reveal:nth-child(3) { transition-delay: 160ms; }
.trust-bar > .reveal:nth-child(4) { transition-delay: 240ms; }

.vid-testimonials > .reveal:nth-child(1) { transition-delay: 0ms; }
.vid-testimonials > .reveal:nth-child(2) { transition-delay: 100ms; }
.vid-testimonials > .reveal:nth-child(3) { transition-delay: 200ms; }
.vid-testimonials > .reveal:nth-child(4) { transition-delay: 300ms; }

.testi-cards > .reveal:nth-child(1) { transition-delay: 0ms; }
.testi-cards > .reveal:nth-child(2) { transition-delay: 100ms; }
.testi-cards > .reveal:nth-child(3) { transition-delay: 200ms; }
.testi-cards > .reveal:nth-child(4) { transition-delay: 300ms; }

.sparta > .reveal:nth-child(1) { transition-delay: 0ms; }
.sparta > .reveal:nth-child(2) { transition-delay: 70ms; }
.sparta > .reveal:nth-child(3) { transition-delay: 140ms; }
.sparta > .reveal:nth-child(4) { transition-delay: 210ms; }
.sparta > .reveal:nth-child(5) { transition-delay: 280ms; }
.sparta > .reveal:nth-child(6) { transition-delay: 350ms; }

.compare > .reveal:nth-child(1) { transition-delay: 0ms; }
.compare > .reveal:nth-child(2) { transition-delay: 80ms; }
.compare > .reveal:nth-child(3) { transition-delay: 160ms; }
.compare > .reveal:nth-child(4) { transition-delay: 240ms; }

.hero-results > .reveal:nth-child(1) { transition-delay: 0ms; }
.hero-results > .reveal:nth-child(2) { transition-delay: 100ms; }
.hero-results > .reveal:nth-child(3) { transition-delay: 200ms; }

.gallery > .reveal:nth-child(n+1) { transition-delay: 0ms; }
.gallery > .reveal:nth-child(n+2) { transition-delay: 60ms; }
.gallery > .reveal:nth-child(n+3) { transition-delay: 120ms; }
.gallery > .reveal:nth-child(n+4) { transition-delay: 180ms; }
.gallery > .reveal:nth-child(n+5) { transition-delay: 240ms; }
.gallery > .reveal:nth-child(n+6) { transition-delay: 300ms; }

/* ---- Reduced motion: kill animations + transitions ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; will-change: auto; }
  .btn--giant::after { display: none; animation: none; }
  .topbar__cd-label::before,
  .hero__countdown-label::before,
  .mobile-cta__timer-label::before { animation: none; }
  body::after { display: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
