/* ==========================================================================
   Section-specific layout
   ========================================================================== */

/* --- Barbed Wire Strip: full-bleed, overlays a section transition --- */
.barbed-strip {
  display: none;
  position: relative;
  left: 50%;
  width: 100vw;
  height: 0;
  overflow: visible;
  z-index: 6;
  pointer-events: none;
  top: -50px;    /* ← add this line */

}

.barbed-wire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center center;
}

.barbed-wire img {
  display: block;
  position: relative;
  left: 0%;
  width: 120%;
  height: auto;
}

/* Bump these two numbers together (keep left at roughly half of
   (width - 100%), negative) if you need the wire bigger on mobile —
   e.g. width: 170%; left: -35%; gives more overhang/size on phones. */
@media (max-width: 600px) {
  .barbed-wire img {
    left:  0%;
    width: 500%;
  }
}

/* --- Marquee --- */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-strip {
  display: none;
  width: 100%;
  padding: 0.9375rem 0;
  background-color: var(--bg-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  width: max-content;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: marquee-scroll 60s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none;
  }
}

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 20%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-copy {
  flex: 1 1 480px;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-copy .section-subtext {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cta-wrap--left {
  justify-content: flex-start;
}

.hero-book {
  flex: 0 1 340px;
  max-width: 340px;
}

.hero-book img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: clamp(24px, 6vw, 40px);
    padding-bottom: clamp(24px, 6vw, 40px);
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.92) 55%, rgba(10,10,10,1) 100%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: clamp(24px, 8vw, 40px);
  }
  .hero-copy {
    flex: none;
    max-width: 100%;
    order: 2;
  }
  .hero-book {
    flex: none;
    order: 1;
    width: clamp(200px, 62vw, 300px);
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-copy h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    margin-bottom: clamp(10px, 3vw, 16px);
  }
  .hero-copy .section-subtext {
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    margin-bottom: clamp(6px, 2vw, 10px);
  }
  .hero .cta-wrap {
    margin-top: clamp(0.9rem, 3.5vw, 1.4rem);
  }
  .cta-wrap--left {
    justify-content: center;
  }
}

/* --- VSL --- */
.vsl {
  text-align: center;
  display: none;
}

.vsl-video-wrap {
  max-width: 640px;
  margin: 3rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.vsl-video-wrap wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .vsl.section {
    padding-top: 45px;
  }
}

/* --- Problem --- */
.problem-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.problem-closing {
  text-align: center;
  max-width: 900px;
  margin: 1.75rem auto 0;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-grey);
}

.problem-closing p {
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.problem-closing p:last-child {
  margin-bottom: 0;
}

.problem-closing-emphasis {
  font-weight: 700;
  color: var(--text-white);
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .problem-closing {
    max-width: 100%;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

/* --- What's Inside --- */
.whats-inside-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Ultimatum --- */
.ultimatum {
  text-align: center;
}

.ultimatum .section-title {
  margin-bottom: 3rem;
}

/* --- Product --- */
.product-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.product-reveal {
  margin-top: 4.5rem;
}

/* --- Safe Buy --- */
.safe-buy {
  position: relative;
  text-align: center;
  overflow: visible;
}

.safe-buy-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.safe-buy p.section-subtext {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.email-chip {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  padding: 12px 28px;
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  box-sizing: border-box;
}

.email-chip-text {
  display: inline-block;
  max-width: 100%;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
  background: linear-gradient(110deg, var(--text-white) 30%, rgba(255, 255, 255, 0.35) 50%, var(--text-white) 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: emailShimmer 3s linear infinite;
}

@keyframes emailShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .email-chip-text {
    animation: none;
    background: none;
    color: var(--text-white);
  }
}

@media (max-width: 480px) {
  .email-chip {
    padding: 10px 18px;
  }
  .email-chip-text {
    font-size: 1.05rem;
  }
}

.safety-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.safety-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 110px;
}

@media (max-width: 480px) {
  .safety-badges {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .safety-badge {
    max-width: 92px;
  }
  .safety-badge svg {
    width: 22px;
    height: 22px;
  }
  .safety-badge span {
    font-size: 0.68rem;
  }
}

.safety-badge svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

.safety-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-grey);
  text-align: center;
  line-height: 1.3;
}

/* --- About Author --- */
.about {
  text-align: center;
}

.about-header {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.about-body {
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}

.about-body p {
  color: var(--text-grey);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.about-body p.about-lede {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.about-signoff {
  color: var(--text-white) !important;
  font-weight: 700;
}

/* --- FAQ --- */
.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* --- CTA Band --- */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cta-band h2 {
    font-size: 1.7rem;
  }
}

/* --- Footer --- */
.footer {
  padding: 96px 0 48px;
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .logo {
  height: 48px;
  width: auto;
  display: block;
}

.footer .copyright {
  color: var(--text-grey-dim);
  font-size: 0.85rem;
}