/* ==========================================================================
   Components — derived from gemini.html reference (cards, CTA button)
   ========================================================================== */

/* --- CTA Button (green satiny, from gemini.html) --- */
.cta-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: radial-gradient(circle, var(--green-dark) 0%, var(--green-mid) 100%);
  border: 1px solid var(--green);
  border-radius: 12px;
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 20px 54px;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  box-shadow: 0 0 45px rgba(0, 143, 65, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(18deg);
  filter: blur(6px);
  animation: cta-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shimmer {
  0% {
    left: -60%;
  }
  55% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

.cta-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 55px rgba(0, 188, 84, 0.8);
  transform: scale(1.02);
}

.cta-btn:active {
  transform: scale(0.98);
}

.cta-btn--secondary {
  background: transparent;
  border: 1px solid var(--border-hover);
  box-shadow: none;
}

.cta-btn--secondary:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(0, 188, 84, 0.35);
}

.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* --- Image Card (Problem section — gemini.html card pattern) --- */
.img-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s ease, transform 0.3s ease;
  flex: 1 1 320px;
  max-width: 360px;
}

.img-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.img-card .image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-top: 20px;
}

.img-card .card-sub {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-grey);
  line-height: 1.5;
}

.card-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

/* --- Checklist Card (What's Inside) --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 3rem auto 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  transition: border-color 0.3s ease;
}

.checklist-item:hover {
  border-color: var(--border-hover);
}

.checklist-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist-item .check svg {
  width: 13px;
  height: 13px;
}

.checklist-item span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  text-align: left;
}

/* --- What's Inside: full-bleed image with edge fades --- */
.whats-inside.section {
  padding-top: 0;
}

.whats-inside-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(220px, 32vw, 440px);
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.whats-inside-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.whats-inside-bleed .fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
}

.whats-inside-bleed .fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-grey) 0%, transparent 100%);
}

.whats-inside-bleed .fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-grey) 0%, transparent 100%);
}

/* --- The Choice Is Yours: full-bleed image with edge fades --- */
.ultimatum.section {
  padding-top: 0;
}

.ultimatum-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(220px, 32vw, 440px);
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.ultimatum-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ultimatum-bleed .fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
}

.ultimatum-bleed .fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-grey) 0%, transparent 100%);
}

.ultimatum-bleed .fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-grey) 0%, transparent 100%);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 0.98rem;
  font-weight: 500;
  color: #d9d9d9;
  line-height: 1.55;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- Pricing Cards (Product Section) --- */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  flex: 1 1 340px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: #ffffff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
  position: relative;
}

.price-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.price-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-grey);
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.price-current {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.price-was {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-grey-dim);
  text-decoration: line-through;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 0.98rem;
  color: var(--text-grey);
  padding-left: 26px;
  position: relative;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background-color: var(--green);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.price-card .cta-btn {
  text-align: center;
  padding: 16px 32px;
  font-size: 1rem;
  margin-top: auto;
}

/* --- Payment Method Badges --- */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.5;
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-badge img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* --- Torn Paper Section Divider --- */
.tear-flap {
  position: relative;
  height: 90px;
  margin-top: -45px;
  margin-bottom: -45px;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}

.tear-flap svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .tear-flap {
    height: 50px;
    margin-top: -25px;
    margin-bottom: -25px;
  }
}

/* --- Brick texture: shared by full brick sections and brick-aware dividers.
   Both use identical background-image/size/position/attachment so the
   masked divider reads as a continuous window onto the same fixed sheet
   as the section it's tearing into — no seam to keep in sync. --- */
.section--brick,
.tear-flap--brick {
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.4)),
    url("/assets/book/images/brickwall.webp");
  background-repeat: repeat, repeat;
  background-size: 600px auto, 600px auto;
  background-position: top center, top center;
  background-attachment: scroll, scroll;
}

.section--brick {
  background-color: var(--bg-black);
}

.tear-flap--brick {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.tear-flap--brick.tear-flap--down {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M600,0v81.63c-1.48,0.09-2.97,0.4-4.46,1.04c-4.57-1.7-9.17,2.48-13.79,1.35c-4.61,0.15-9.22,2.08-13.81,2.93c-4.59-0.3-9.17,4.24-13.7,2.63c-3.92,1.99-8.03,2.07-12.08,1.09c-4.07-0.68-8.1,0.56-11.9,2.22c-2.65,3.06-5.29,2.85-7.96,1.3c-2.69,0.08-5.39-0.06-8.19-0.06c-4.98-2.24-10.01-0.53-15.04,0.23c-5.03,1.06-10.05-2.11-15.01-0.44c-3.41-0.84-6.78-1.24-10.12-1.79c-3.37,0.26-6.71-0.8-10.11-1.85c-2.22,1.07-4.43-1.24-6.65-0.67c-2.2-1.18-4.42-1.82-6.66-0.73c-2.35,0.39-4.75,1.1-7.16-0.98c-2.4-0.69-4.83-1.41-7.21-0.19c-2.7-0.03-5.28-1.4-7.85,0.8c-2.58,2.06-5.17,1.6-7.92,0.44c-3.28,0.05-6.52,0.56-9.74,1.19c-3.22,0.24-6.42,0.47-9.64,1.83c-2.8,0.6-7.76,2.66-10.68,0.99c-0.63-1.13-1.68-1.4-1.94-1.08c-2.36,0.53-3.97-1.32-6.16-1.53c-1.75,0.95-2.45-0.39-4.54-2.64c-1.75-1.47-3.91-0.24-6.06-0.26c-2.16-1-4.32-1.03-6.09,0.32c-4.01,0-7.92-1.54-11.79,0.02c-3.88-0.76-7.71-0.6-11.59,1.09c-4.49,2.71-9,0.39-13.5,2.1c-4.51-0.28-9.03-0.41-13.57,1.61c-5.81,2.38-11.78,2.8-17.78,0.82c-6.01,1.57-12.07-1.23-18.06-0.94c-5.99-1.17-11.91-0.61-17.67-1.83c-3.86,1.41-7.71,0.83-11.59-1.31c-3.86-0.54-7.74-1.83-11.63-0.32c-3.56-0.4-5.25,1.68-8.81,2.58c-4.92,2.85-9.81-0.87-14.74-0.9c-4.91,0.85-9.82-2.68-14.79-0.41c-1.9,2.31-3.2,2.64-5.05,1.37c-2,0.65-4.25-0.8-6.52,0.26c-2.27-0.15-4.55,0.63-6.63-0.37c-4.81,1.66-9.91,1.4-15.01,2.14c-5.11,0.92-10.22,1.82-15.02,0.21c-2.16-0.39-4.18-2.82-6.2-2.53c-2.02,1.18-4.04-3.92-6.16-2.38c-2.12-2.01-4.51-0.42-6.89-0.29c-2.38,0.13-4.78-0.31-6.98,0.35c-2.32-1.7-4.88-2.01-7.42-0.27c-2.54,1-5.07,0.03-7.36,0.5c-2.06,2.7-4.15,2.56-6.26,1.75c-2.1,1.77-4.21,1.57-6.3,1.87c-2.34,1.19-4.67-0.35-7.01,1.21c-2.33,1.98-4.68-1.18-7.03,0.96c-2.75,0.6-5.49,1.32-8.16,1.82c-2.65,0.71-5.26,3.77-7.74,3c-2.81,3.54-5.28,1.27-7.79,1.72c-2.52-0.77-5.12-2-8.21-0.98c-3.05-1.63-5.31,1.51-7.88-1.08c-2.04,3.04-3.35-1.72-5.1-2.83c-1.85,0.74-3.3-4.85-5.07-5.2c-2.17-0.5-4.43-2.67-7.28-1.19c-2.04,0.43-4.52-2-6.98,0.38c-2.46-1.2-4.89-0.92-6.86-0.5c-1.98,1.07-2.64-3.34-4.81-1.19c-2.89-0.14-5.5,0-8.29,0.55V0H600z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M600,0v81.63c-1.48,0.09-2.97,0.4-4.46,1.04c-4.57-1.7-9.17,2.48-13.79,1.35c-4.61,0.15-9.22,2.08-13.81,2.93c-4.59-0.3-9.17,4.24-13.7,2.63c-3.92,1.99-8.03,2.07-12.08,1.09c-4.07-0.68-8.1,0.56-11.9,2.22c-2.65,3.06-5.29,2.85-7.96,1.3c-2.69,0.08-5.39-0.06-8.19-0.06c-4.98-2.24-10.01-0.53-15.04,0.23c-5.03,1.06-10.05-2.11-15.01-0.44c-3.41-0.84-6.78-1.24-10.12-1.79c-3.37,0.26-6.71-0.8-10.11-1.85c-2.22,1.07-4.43-1.24-6.65-0.67c-2.2-1.18-4.42-1.82-6.66-0.73c-2.35,0.39-4.75,1.1-7.16-0.98c-2.4-0.69-4.83-1.41-7.21-0.19c-2.7-0.03-5.28-1.4-7.85,0.8c-2.58,2.06-5.17,1.6-7.92,0.44c-3.28,0.05-6.52,0.56-9.74,1.19c-3.22,0.24-6.42,0.47-9.64,1.83c-2.8,0.6-7.76,2.66-10.68,0.99c-0.63-1.13-1.68-1.4-1.94-1.08c-2.36,0.53-3.97-1.32-6.16-1.53c-1.75,0.95-2.45-0.39-4.54-2.64c-1.75-1.47-3.91-0.24-6.06-0.26c-2.16-1-4.32-1.03-6.09,0.32c-4.01,0-7.92-1.54-11.79,0.02c-3.88-0.76-7.71-0.6-11.59,1.09c-4.49,2.71-9,0.39-13.5,2.1c-4.51-0.28-9.03-0.41-13.57,1.61c-5.81,2.38-11.78,2.8-17.78,0.82c-6.01,1.57-12.07-1.23-18.06-0.94c-5.99-1.17-11.91-0.61-17.67-1.83c-3.86,1.41-7.71,0.83-11.59-1.31c-3.86-0.54-7.74-1.83-11.63-0.32c-3.56-0.4-5.25,1.68-8.81,2.58c-4.92,2.85-9.81-0.87-14.74-0.9c-4.91,0.85-9.82-2.68-14.79-0.41c-1.9,2.31-3.2,2.64-5.05,1.37c-2,0.65-4.25-0.8-6.52,0.26c-2.27-0.15-4.55,0.63-6.63-0.37c-4.81,1.66-9.91,1.4-15.01,2.14c-5.11,0.92-10.22,1.82-15.02,0.21c-2.16-0.39-4.18-2.82-6.2-2.53c-2.02,1.18-4.04-3.92-6.16-2.38c-2.12-2.01-4.51-0.42-6.89-0.29c-2.38,0.13-4.78-0.31-6.98,0.35c-2.32-1.7-4.88-2.01-7.42-0.27c-2.54,1-5.07,0.03-7.36,0.5c-2.06,2.7-4.15,2.56-6.26,1.75c-2.1,1.77-4.21,1.57-6.3,1.87c-2.34,1.19-4.67-0.35-7.01,1.21c-2.33,1.98-4.68-1.18-7.03,0.96c-2.75,0.6-5.49,1.32-8.16,1.82c-2.65,0.71-5.26,3.77-7.74,3c-2.81,3.54-5.28,1.27-7.79,1.72c-2.52-0.77-5.12-2-8.21-0.98c-3.05-1.63-5.31,1.51-7.88-1.08c-2.04,3.04-3.35-1.72-5.1-2.83c-1.85,0.74-3.3-4.85-5.07-5.2c-2.17-0.5-4.43-2.67-7.28-1.19c-2.04,0.43-4.52-2-6.98,0.38c-2.46-1.2-4.89-0.92-6.86-0.5c-1.98,1.07-2.64-3.34-4.81-1.19c-2.89-0.14-5.5,0-8.29,0.55V0H600z'/%3E%3C/svg%3E");
}

.tear-flap--brick.tear-flap--up {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 300 600 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M600,314.68V400H0v-89.11c1.22-0.27,2.4-1.15,3.77-2.14c2.8-1.16,5.58,1.92,8.42-0.21c3.84,1.47,7.88-4.41,11.89-1.37c4.02,0.02,8.03-2.35,11.83-2.09c4.41-2.09,8.7-5.6,13.02-1.4c4.31,0.63,8.66-1.3,13.13-0.18c5.17-0.24,10.38-0.64,15.51,1.16c5.15,1.29,10.24-2.19,15.13,3.82c4.78-2.43,9.59,0.42,14.45,2.39c4.86-0.22,9.76,0.36,14.73,0.73c2.46,1,4.87,2.46,7.29,0.43c2.43,1.63,4.84,0.05,7.32,0.12c2.8-1.26,5.55-1.76,8.32,0.75c2.75-0.4,5.52-3.94,8.34,0.6c4.46-1.14,8.9-0.31,13.34-0.07c4.46,0.21,8.9,0.07,13.34,0.05c4.89,4.17,9.8,0.9,14.73-0.32c4.9,2.46,9.83-0.87,14.74-1c4.92-1.56,9.8-3.67,14.64-1.53c2.56-3.68,5.02,1.45,7.49-0.69c2.44,5.8,4.92-3.06,7.46-0.21c1.84,3.01,3.91,2.13,5.7-0.11c3.46-2.11,7.07,1.58,10.7-2.3c3.64-0.9,7.31-1.68,10.93-1.37c3.72-0.22,7.37,3.11,11.04-1.22c3.65-0.31,7.31-3.93,11.01-1.27c4.47-1.24,8.9-0.34,13.32-0.7c4.43,0.37,8.85-1.14,13.34-0.51c4.49,3.96,9-3.65,13.49,0.03c4.49-1.43,8.98-0.4,13.47-0.03c2.45,0.42,4.39,0.9,6.26,1.3c1.87,1.77,3.64,1.47,5.7,3.32c2.03-0.28,4.09,5.12,6.18,3.91c2.07-1.13,4.18,1.4,6.31,3.68c2.62,0.63,5.36,2.26,8.14,2.95c2.78-0.45,5.63,0.85,8.48,1.82c2.74-1.47,5.89,1.27,9.08,2.28c3.17,1,6.39-1.93,9.27,0.73c2.09-0.68,3.78-1.19,5.89-1.36c2.96-2.33,3.18-1.81,5.04,3.09c1.51-1.49,3.1,1.89,4.69,4.69c1.58,0.59,3.16,7.13,4.61,4.83c1.48,1.61,2.8,6.03,4.25,5.71c1.43,3.35,2.97,1.16,4.89,5.02c1.99,4.38,4.49,1.64,7.03,1.83c2.54,3.29,5.15,2.31,7.32-0.88c3.11,2.49,6.12-1.9,9.14-2.01c3.03,0.69,6.07-0.29,9.21-1.82c2.96,3.01,5.94-3.51,8.9-1.38c2.96,0.41,5.92-1.34,8.85-1.58c4.33-2.77,8.68-2.91,13.02-2.64c4.33,3.22,8.64-1.26,12.89-3.04c4.28,2.44,8.55-5.72,12.7-4.57c4.17,0.88,8.24-1.5,12.15-5.97c3.11,2.02,3.99-3.88,7.55-2.43c2.68,1.57,5.32,2.25,7.98-0.71c2.65,2.24,5.31,3.99,8.05-0.58c4.05,4.2,7.98-1.63,11.89-0.79c3.89-0.39,7.77,2.35,11.73-1.85c3.48,3.62,6.89-5.02,10.32-0.95c3.42,4.6,6.85-3.44,10.39-0.14C599.87,314.7,599.93,314.69,600,314.68z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 300 600 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M600,314.68V400H0v-89.11c1.22-0.27,2.4-1.15,3.77-2.14c2.8-1.16,5.58,1.92,8.42-0.21c3.84,1.47,7.88-4.41,11.89-1.37c4.02,0.02,8.03-2.35,11.83-2.09c4.41-2.09,8.7-5.6,13.02-1.4c4.31,0.63,8.66-1.3,13.13-0.18c5.17-0.24,10.38-0.64,15.51,1.16c5.15,1.29,10.24-2.19,15.13,3.82c4.78-2.43,9.59,0.42,14.45,2.39c4.86-0.22,9.76,0.36,14.73,0.73c2.46,1,4.87,2.46,7.29,0.43c2.43,1.63,4.84,0.05,7.32,0.12c2.8-1.26,5.55-1.76,8.32,0.75c2.75-0.4,5.52-3.94,8.34,0.6c4.46-1.14,8.9-0.31,13.34-0.07c4.46,0.21,8.9,0.07,13.34,0.05c4.89,4.17,9.8,0.9,14.73-0.32c4.9,2.46,9.83-0.87,14.74-1c4.92-1.56,9.8-3.67,14.64-1.53c2.56-3.68,5.02,1.45,7.49-0.69c2.44,5.8,4.92-3.06,7.46-0.21c1.84,3.01,3.91,2.13,5.7-0.11c3.46-2.11,7.07,1.58,10.7-2.3c3.64-0.9,7.31-1.68,10.93-1.37c3.72-0.22,7.37,3.11,11.04-1.22c3.65-0.31,7.31-3.93,11.01-1.27c4.47-1.24,8.9-0.34,13.32-0.7c4.43,0.37,8.85-1.14,13.34-0.51c4.49,3.96,9-3.65,13.49,0.03c4.49-1.43,8.98-0.4,13.47-0.03c2.45,0.42,4.39,0.9,6.26,1.3c1.87,1.77,3.64,1.47,5.7,3.32c2.03-0.28,4.09,5.12,6.18,3.91c2.07-1.13,4.18,1.4,6.31,3.68c2.62,0.63,5.36,2.26,8.14,2.95c2.78-0.45,5.63,0.85,8.48,1.82c2.74-1.47,5.89,1.27,9.08,2.28c3.17,1,6.39-1.93,9.27,0.73c2.09-0.68,3.78-1.19,5.89-1.36c2.96-2.33,3.18-1.81,5.04,3.09c1.51-1.49,3.1,1.89,4.69,4.69c1.58,0.59,3.16,7.13,4.61,4.83c1.48,1.61,2.8,6.03,4.25,5.71c1.43,3.35,2.97,1.16,4.89,5.02c1.99,4.38,4.49,1.64,7.03,1.83c2.54,3.29,5.15,2.31,7.32-0.88c3.11,2.49,6.12-1.9,9.14-2.01c3.03,0.69,6.07-0.29,9.21-1.82c2.96,3.01,5.94-3.51,8.9-1.38c2.96,0.41,5.92-1.34,8.85-1.58c4.33-2.77,8.68-2.91,13.02-2.64c4.33,3.22,8.64-1.26,12.89-3.04c4.28,2.44,8.55-5.72,12.7-4.57c4.17,0.88,8.24-1.5,12.15-5.97c3.11,2.02,3.99-3.88,7.55-2.43c2.68,1.57,5.32,2.25,7.98-0.71c2.65,2.24,5.31,3.99,8.05-0.58c4.05,4.2,7.98-1.63,11.89-0.79c3.89-0.39,7.77,2.35,11.73-1.85c3.48,3.62,6.89-5.02,10.32-0.95c3.42,4.6,6.85-3.44,10.39-0.14C599.87,314.7,599.93,314.69,600,314.68z'/%3E%3C/svg%3E");
}

/* Brick background now scrolls normally at every screen size — see
   .section--brick / .tear-flap--brick above for the shared rule. */
/* --- Safe Buy Badge --- */
.safe-buy-badge {
  max-width: 150px;
  width: 100%;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

/* --- Author Photo --- */
.author-photo {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 1px solid var(--border);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

/* --- VSL Video Placeholder --- */
.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-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.vsl-placeholder .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 760px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--text-white);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-grey);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* --- Ultimatum Section --- */
.ultimatum-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ultimatum-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.x-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e0342b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-mark svg {
  width: 13px;
  height: 13px;
}

.ultimatum-list span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-grey);
  letter-spacing: -0.01em;
}

.or-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-grey);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto 2.5rem;
}

.reveal-quote {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.reveal-quote .word {
  color: var(--text-grey-dim);
  transition: color 0.4s ease;
}

.reveal-quote .word.is-lit {
  color: var(--text-white);
}

.reveal-line {
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

.reveal-line .word {
  color: var(--text-grey-dim);
  transition: color 0.4s ease;
}

.reveal-line .word.is-lit {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .ultimatum-list {
    gap: 16px;
    flex-direction: column;
  }
  .reveal-quote {
    font-size: 2.1rem;
  }
  .reveal-line {
    font-size: 1.65rem;
  }
}