/* BUTTONS */
.btn-coral { background: var(--coral); color: var(--white); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.btn-coral:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-plum { background: var(--plum); color: var(--white); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: transform 0.2s, background 0.2s; display: inline-block; }
.btn-plum:hover { background: var(--mauve); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.btn-teal:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-ghost { color: var(--plum); border: 2px solid var(--plum); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn-outline-white { color: var(--white); border: 2px solid rgba(255,255,255,0.5); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: all 0.2s; display: inline-block; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--plum); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; transition: transform 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); }
.btn-coming { background: rgba(92,45,94,0.08); color: var(--muted); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 0.92rem; border: 2px dashed rgba(92,45,94,0.2); cursor: default; display: inline-block; }

/* LAYOUT */
section { padding: 5.5rem 2.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.s-title { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--plum); line-height: 1.17; letter-spacing: -0.022em; }
.s-sub { color: var(--muted); font-size: 1.04rem; max-width: 580px; margin-top: 0.9rem; line-height: 1.72; }

/* PAGE HERO */
.page-hero {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--blush) 0%, #fce8ef 50%, var(--cream) 100%);
  padding: 5rem 2.5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(196,136,154,0.14) 1px, transparent 1px);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--coral); }
.page-hero p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 560px; margin: 0 auto 2rem;
  line-height: 1.72;
}
.jump-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center;
}
.jump-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--plum);
  background: var(--white);
  border: 1.5px solid rgba(92,45,94,0.2);
  padding: 0.4rem 1rem; border-radius: 50px;
  transition: all 0.2s;
}
.jump-link:hover { background: var(--plum); color: var(--white); border-color: var(--plum); }

/* FREE RESOURCES */
.free-section { background: var(--white); }
.free-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.free-card {
  background: var(--cream);
  border-radius: var(--r-lg); padding: 2rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 14px rgba(92,45,94,0.07);
  display: flex; flex-direction: column;
}
.free-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--coral);
}
.free-card:nth-child(2)::before { background: var(--teal); }
.free-card:nth-child(3)::before { background: var(--rose); }
.free-card:nth-child(4)::before { background: var(--mauve); }
.free-card:nth-child(5)::before { background: var(--plum); }
.free-card:nth-child(6)::before { background: rgba(92,45,94,0.3); border-top: 2px dashed rgba(92,45,94,0.25); }
.free-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(92,45,94,0.12); }
.free-card.coming { opacity: 0.75; }
.free-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.free-icon svg { width: 22px; height: 22px; stroke: var(--plum); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.free-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 0.5rem;
}
.free-card:nth-child(6) .free-tag { color: var(--muted); }
.free-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.5rem; line-height: 1.25;
}
.free-desc {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 1.3rem;
}
.coming-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(92,45,94,0.08);
  border: 1.5px dashed rgba(92,45,94,0.2);
  padding: 0.28rem 0.7rem; border-radius: 50px;
  margin-bottom: 1rem;
}

/* FREEBIE SIGNUP STRIP */
.freebie-strip {
  background: var(--plum);
  padding: 4rem 2.5rem;
  position: relative; overflow: hidden;
}
.freebie-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.freebie-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: center;
}
.freebie-text .s-label { color: var(--coral); }
.freebie-text .s-title { color: var(--white); }
.freebie-text .s-sub { color: rgba(255,255,255,0.68); max-width: 100%; }
.freebie-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 2rem;
}
.freebie-form p {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.2rem; text-align: center;
}
/* POWERZONE EMBED ZONE */
.powerzone-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: var(--r);
  padding: 1.8rem; text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem; line-height: 1.6;
}

/* SHOP */
.shop-section { background: var(--cream); }
.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.shop-card {
  background: var(--white);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 3px 18px rgba(92,45,94,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(92,45,94,0.14); }
.shop-card.coming-soon { opacity: 0.8; }
.shop-img {
  height: 260px; overflow: hidden;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.shop-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.shop-img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 0.8rem; padding: 2rem;
  text-align: center;
}
.shop-img-placeholder svg { width: 48px; height: 48px; stroke: rgba(92,45,94,0.3); fill: none; stroke-width: 1.5; }
.shop-img-placeholder span {
  font-family: var(--ff-display); font-size: 1rem;
  color: rgba(92,45,94,0.4); font-style: italic;
}
.shop-body {
  padding: 1.5rem 1.7rem 2rem;
  flex: 1; display: flex; flex-direction: column;
}
.shop-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.5rem;
}
.shop-coming-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  background: rgba(92,45,94,0.07);
  border: 1.5px dashed rgba(92,45,94,0.2);
  padding: 0.2rem 0.6rem; border-radius: 50px;
  display: inline-block; margin-bottom: 0.7rem;
}
.shop-name {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.5rem; line-height: 1.2;
}
.shop-price {
  font-size: 1.1rem; font-weight: 700;
  color: var(--coral); margin-bottom: 0.6rem;
}
.shop-desc {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.65; flex: 1; margin-bottom: 1.3rem;
}

/* WORKBOOK FEATURE */
.workbook-feature {
  background: var(--dark);
  padding: 5.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.workbook-feature::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(232,137,106,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.workbook-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 480px 1fr;
  gap: 5rem; align-items: center;
}
.workbook-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/5;
}
.workbook-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
}
.workbook-text .s-label { color: var(--coral); }
.workbook-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; letter-spacing: -0.022em;
  margin-bottom: 1.2rem;
}
.workbook-text h2 em { color: var(--coral); font-style: italic; }
.workbook-text p {
  color: rgba(255,255,255,0.68); font-size: 1.04rem;
  line-height: 1.75; margin-bottom: 1rem;
}
.workbook-includes {
  list-style: none; margin: 1.5rem 0 2rem;
}
.workbook-includes li {
  font-size: 0.92rem; color: rgba(255,255,255,0.72);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 0.65rem; align-items: flex-start;
}
.workbook-includes li:last-child { border-bottom: none; }
.workbook-includes li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 0.42rem;
}
.price-row {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem;
}
.price-big {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 700; color: var(--coral); line-height: 1;
}
.price-note {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.4;
}

/* COMMUNITY */
.community-section {
  background: linear-gradient(135deg, var(--blush) 0%, #fce4ec 50%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.community-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(92,45,94,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.community-section .container { position: relative; z-index: 1; }
.community-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.comm-card {
  background: var(--white);
  border-radius: var(--r-lg); padding: 2rem 1.8rem;
  box-shadow: 0 2px 14px rgba(92,45,94,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.comm-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(92,45,94,0.12); }
.comm-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blush); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.comm-icon svg { width: 20px; height: 20px; stroke: var(--plum); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.comm-name {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.4rem;
}
.comm-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .free-grid { grid-template-columns: 1fr 1fr; }
  .freebie-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .shop-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .workbook-inner { grid-template-columns: 1fr; gap: 3rem; }
  .workbook-photo { max-width: 380px; aspect-ratio: unset; height: 440px; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .free-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   MOBILE WIDTH GUARD
   Keeps grid/flex content inside the viewport.
   ========================================================= */
.hero,
.hero-wrap,
.page-hero,
.page-wrap,
.hero-left,
.hero-right,
.hero-content,
.container {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left,
  .hero-content,
  .form-side {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title,
  .page-title,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-btns,
  .about-btns,
  .jump-links,
  .jump-pills,
  .pod-links {
    max-width: 100%;
  }
}
