﻿:root {
  --bg: #07090a;
  --bg-soft: #0f1416;
  --card: #131a1d;
  --text: #f3f4f5;
  --muted: #b5bdc1;
  --primary: #ff8a1f;
  --primary-dark: #e16910;
  --accent: #ff3c96;
  --gold: #b25a1f;
  --stroke: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(980px 360px at 50% -12%, rgba(138, 51, 255, 0.22) 0%, transparent 56%),
    radial-gradient(760px 280px at 18% -8%, rgba(255, 60, 150, 0.16) 0%, transparent 58%),
    var(--bg);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  background: linear-gradient(90deg, rgba(95, 23, 83, 0.96) 0%, rgba(132, 41, 141, 0.95) 48%, rgba(255, 128, 33, 0.92) 100%);
  color: #ffe7d3;
  border-bottom: 1px solid rgba(255, 136, 64, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(7, 9, 10, 0.94) 0%, rgba(7, 9, 10, 0.78) 45%, rgba(7, 9, 10, 0.5) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 60, 150, 0.28), transparent 42%),
    radial-gradient(circle at 26% 8%, rgba(138, 51, 255, 0.18), transparent 36%),
    radial-gradient(circle at 50% -4%, rgba(255, 138, 31, 0.16), transparent 34%);
}

.hero__wrap {
  padding: 5.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.hero__copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__copy h1 span {
  color: var(--accent);
}

.hero__sub {
  color: var(--muted);
  margin: 1.35rem 0 1.8rem;
  font-size: 1.02rem;
  max-width: 60ch;
}

.hero__media {
  justify-self: end;
  width: 100%;
  max-width: 560px;
  min-width: 280px;
  height: 315px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: block;
}

.hero__media--pagcap {
  background-image:
    url("/workshop/inputs/mockups-workshop/hero-pagcap-desk.webp"),
    url("inputs/mockups-workshop/hero-pagcap-desk.webp"),
    url("/inputs/mockups-workshop/hero-pagcap-desk.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, center top;
  background-size: cover, cover, cover;
  background-color: rgba(255, 255, 255, 0.92);
}

.hero__media::after {
  content: none;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #ffd2b0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow--accent {
  color: #ffc3e2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.55rem;
  min-height: 48px;
  border-radius: 12px;
  border: 0;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7f24, var(--primary));
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.32);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #ff8732, var(--primary-dark));
  transform: translateY(-1px);
}

.btn--cta21 {
  position: relative;
  overflow: hidden;
  gap: 0.45rem;
}

.btn--cta21::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -30%;
  width: 38%;
  height: 320%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: cta-sheen 3.8s linear infinite;
}

.btn__spark {
  font-size: 0.9rem;
  line-height: 1;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.micro {
  margin: 0;
  font-size: 0.76rem;
  color: #c8d0d4;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: linear-gradient(180deg, #0b1012 0%, var(--bg-soft) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section--striped {
  position: relative;
  overflow: hidden;
}

.section--striped::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 60, 150, 0.12) 0,
    rgba(255, 60, 150, 0.12) 1px,
    transparent 1px,
    transparent 24px
  );
  opacity: 0.38;
}

.title {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.points-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.15rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.points-copy {
  min-width: 0;
  align-self: start;
}

.points-intro,
.points-note {
  margin: 0;
  color: var(--muted);
}

.points-note {
  margin-top: 0.95rem;
  font-size: 0.92rem;
}

.points-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.point-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(19, 26, 29, 0.92), rgba(13, 19, 21, 0.92));
}

.point-item::marker {
  content: "";
}

.point-item__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 127, 36, 0.2), rgba(255, 107, 0, 0.12));
  border: 1px solid rgba(255, 145, 82, 0.35);
  color: #ffd6bc;
  font-weight: 700;
  font-size: 0.85rem;
}

.point-item h3 {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.2;
}

.point-item p {
  margin: 0.32rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

.points-mockup {
  position: sticky;
  top: 72px;
}

.points-mockup__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(16, 23, 26, 0.95), rgba(12, 17, 19, 0.95));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.points-mockup__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: rgba(8, 12, 14, 0.94);
}

.points-mockup__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 10, 0.05) 0%, rgba(7, 9, 10, 0.42) 100%),
    radial-gradient(circle at 82% 12%, rgba(255, 60, 150, 0.22), transparent 42%),
    radial-gradient(circle at 18% 76%, rgba(138, 51, 255, 0.12), transparent 44%);
  pointer-events: none;
}

.points-tags {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.45rem;
}

.points-tags li {
  position: relative;
  padding: 0.38rem 0.55rem 0.38rem 1.45rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #d5dde1;
  font-size: 0.72rem;
  line-height: 1.2;
}

.points-tags li::before {
  content: "✓";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff8cc3;
  font-weight: 700;
}

.master-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.master-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 26, 29, 0.95), rgba(14, 19, 22, 0.95));
  backdrop-filter: blur(1.5px);
}

.master-card__photo {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.9rem;
}

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

.master-card h3 {
  margin: 0;
  font-size: 1rem;
}

.master-card p {
  margin: 0.45rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.master-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #d3dbe0;
  font-size: 0.84rem;
}

.master-card li + li {
  margin-top: 0.34rem;
}

.section--results {
  background:
    radial-gradient(520px 240px at 18% -18%, rgba(255, 60, 150, 0.14), transparent 70%),
    radial-gradient(420px 180px at 84% 8%, rgba(138, 51, 255, 0.12), transparent 70%),
    var(--bg);
}

.results-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 720px;
}

.results-grid img {
  height: auto;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.proof-social-img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
}

.bonus-cards {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #11181b;
}

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

.bonus-card__body {
  padding: 1rem;
}

.bonus-card h3 {
  margin: 0;
  font-size: 1rem;
}

.bonus-card p {
  margin: 0.48rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mid-cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 137, 52, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(400px 180px at 85% 90%, rgba(255, 107, 0, 0.16), transparent 70%),
    linear-gradient(180deg, #141b1f 0%, #101518 100%);
}

.mid-cta__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.mid-cta__copy p {
  color: var(--muted);
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

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

.list {
  margin: 0;
  list-style: none;
  padding: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card);
}

.list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.list li + li {
  margin-top: 0.6rem;
}

.list--ok li::before,
.list--no li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.list--ok li::before {
  content: "✓";
  color: #ff8cc3;
}

.list--no li::before {
  content: "✕";
  color: #ff8c7f;
}

.bio {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 340px 1fr;
  align-items: center;
}

.bio img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.bio p {
  color: var(--muted);
}

.faq {
  margin-top: 1.4rem;
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--card);
  padding: 0.9rem 1rem;
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding-right: 1.4rem;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.05rem;
  color: #fdd9bf;
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.section--warning {
  background: #0b0f10;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.warning-box {
  border-radius: 12px;
  border: 1px solid rgba(255, 157, 79, 0.35);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.13), rgba(255, 107, 0, 0.05));
  padding: 1rem 1.2rem;
}

.warning-box p {
  margin: 0;
  color: #ffe2cf;
  font-size: 0.9rem;
}

.cta-final {
  background:
    radial-gradient(500px 260px at 15% 10%, rgba(255, 60, 150, 0.17), transparent 60%),
    radial-gradient(420px 210px at 42% 0%, rgba(138, 51, 255, 0.13), transparent 62%),
    radial-gradient(520px 280px at 85% 10%, rgba(255, 107, 0, 0.18), transparent 65%),
    #090f11;
}

.enroll-relief {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(340px 180px at 50% -10%, rgba(80, 231, 160, 0.12), transparent 65%),
    linear-gradient(180deg, #1a2226 0%, #0d1114 58%, #0b0f11 100%);
  box-shadow:
    0 36px 60px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -24px 40px rgba(0, 0, 0, 0.28);
  overflow: visible;
}

.enroll-relief__decor {
  position: absolute;
  top: 76%;
  width: 62px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(182, 189, 194, 0.7));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 14px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.enroll-relief__decor--left {
  left: -20px;
}

.enroll-relief__decor--right {
  right: -20px;
}

.enroll-relief::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%);
}

.enroll-relief__ticket {
  position: absolute;
  top: -74px;
  left: 50%;
  width: min(540px, calc(100% - 2.8rem));
  transform: translateX(-50%) rotate(-6deg);
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  z-index: 2;
}

.enroll-relief__ticket img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(2.15) translateY(2px);
  transform-origin: center center;
}

.enroll-relief__ticket::after {
  content: none;
}

.enroll-relief__body {
  padding: 7.95rem 2rem 1.8rem;
  text-align: center;
}

.enroll-relief__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 2.65rem);
  line-height: 1.08;
}

.enroll-relief__date {
  margin: 0.9rem 0 1rem;
  font-size: 1rem;
  color: #dce7eb;
  font-weight: 500;
}

.enroll-relief__list {
  margin: 0 auto 1.25rem;
  padding: 0;
  max-width: 620px;
  list-style: none;
}

.enroll-relief__list li {
  color: #c4d0d5;
  font-size: 0.94rem;
}

.enroll-relief__list li + li {
  margin-top: 0.45rem;
}

.enroll-relief__body .btn {
  margin-top: 0.6rem;
  min-width: min(490px, 100%);
}

.enroll-relief__payments {
  margin: 0.7rem 0 0.8rem;
  color: #a8b5bb;
  font-size: 0.78rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.enroll-relief__progress {
  width: min(500px, 100%);
  height: 19px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.enroll-relief__progress-fill {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #ff3232, #ff7a27);
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.enroll-relief__progress strong {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff5f5;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.enroll-relief__progress em {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.enroll-relief__micro {
  margin: 0.5rem 0 0;
  color: #ffd9d9;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.5rem;
  color: #95a2a8;
  font-size: 0.8rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.6rem;
  background: rgba(7, 9, 10, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: none;
}

.sticky-cta .btn {
  width: 100%;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.signup-modal.is-open {
  display: block;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 6, 0.78);
  backdrop-filter: blur(4px);
}

.signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 1rem));
  margin: 5vh auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(500px 240px at 80% -10%, rgba(73, 214, 148, 0.14), transparent 70%),
    linear-gradient(180deg, #151d21 0%, #0d1215 70%, #0a0f11 100%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.signup-modal__close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.signup-modal__sub {
  margin: 0.35rem 0 0.85rem;
  color: #b5c0c5;
  font-size: 0.88rem;
}

.signup-form {
  display: grid;
  gap: 0.58rem;
}

.signup-form label {
  font-size: 0.8rem;
  color: #dce5e9;
  font-weight: 600;
}

.signup-form input {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7f8;
  font-size: 0.92rem;
  padding: 0.72rem 0.75rem;
}

.signup-form input::placeholder {
  color: #96a5ad;
}

.signup-form input:focus {
  outline: 0;
  border-color: rgba(255, 140, 60, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

.signup-modal__note {
  margin: 0.25rem 0 0;
  color: #93a3aa;
  font-size: 0.74rem;
  text-align: center;
}

.signup-form__error {
  margin: 0.2rem 0 0;
  color: #ffb8b8;
  font-size: 0.75rem;
  text-align: center;
}

#signupSubmit[aria-busy="true"] {
  opacity: 0.74;
  pointer-events: none;
}

@keyframes cta-sheen {
  0% {
    transform: translateX(-140%) rotate(18deg);
  }
  100% {
    transform: translateX(460%) rotate(18deg);
  }
}

@media (max-width: 980px) {
  .hero__wrap,
  .points-layout,
  .master-grid,
  .results-grid,
  .bonus-cards,
  .mid-cta,
  .split,
  .bio {
    grid-template-columns: 1fr;
  }

  .results-grid img {
    height: auto;
  }

  .points-mockup {
    position: static;
  }

  .points-mockup__frame img {
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
  }

  .hero__media {
    justify-self: start;
    max-width: 360px;
    min-width: 0;
    height: 202px;
  }

  .hero__wrap {
    padding-top: 4.3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.3rem));
  }

  .section--results .results-grid {
    width: min(720px, calc(100% - 0.6rem));
  }

  body {
    line-height: 1.62;
  }

  .topbar {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0.5rem 0.65rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .btn {
    width: 100%;
  }

  .hero__cta-row {
    align-items: stretch;
  }

  .hero__media {
    max-width: 100%;
    min-width: 0;
    height: min(72vh, 520px);
    background-image:
      url("/workshop/inputs/mockups-workshop/hero-pagcap-mob.webp"),
      url("inputs/mockups-workshop/hero-pagcap-mob.webp"),
      url("/inputs/mockups-workshop/hero-pagcap-mob.webp");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center top, center top, center top;
  }

  .hero__wrap {
    padding: 3.25rem 0 2.4rem;
    gap: 1.1rem;
  }

  .hero__copy h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.5rem);
    line-height: 1.06;
  }

  .hero__sub {
    font-size: 0.92rem;
    margin: 0.85rem 0 1.05rem;
  }

  .points-intro {
    font-size: 0.92rem;
  }

  .points-list {
    gap: 0.55rem;
  }

  .point-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.72rem 0.72rem;
    border-radius: 12px;
  }

  .point-item__num {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .point-item h3 {
    font-size: 0.9rem;
  }

  .point-item p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .points-note {
    font-size: 0.83rem;
    margin-top: 0.75rem;
  }

  .points-tags {
    grid-template-columns: 1fr;
  }

  .points-tags li {
    font-size: 0.7rem;
    padding-left: 1.35rem;
  }

  .master-card__photo {
    height: 152px;
  }

  .results-grid img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .proof-social-img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .bonus-card img {
    height: 165px;
  }

  .enroll-relief__ticket {
    top: -66px;
    width: calc(100% - 1.2rem);
    transform: translateX(-50%) rotate(-4.2deg);
    box-shadow: none;
  }

  .enroll-relief__decor {
    display: none;
  }

  .enroll-relief__ticket img {
    height: 168px;
    object-fit: contain;
    object-position: center;
    transform: scale(2.45) translateY(3px);
  }

  .enroll-relief__body {
    padding: 7rem 0.9rem 1.2rem;
  }

  .enroll-relief__date {
    font-size: 0.92rem;
  }

  .enroll-relief__list li {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .enroll-relief__title {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.12;
  }

  .enroll-relief__payments {
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .enroll-relief__progress {
    height: 18px;
  }

  .enroll-relief__progress strong {
    font-size: 0.58rem;
    left: 0.55rem;
  }

  .enroll-relief__progress em {
    font-size: 0.64rem;
  }

  .cta-final {
    padding-top: 2.2rem;
  }

  .sticky-cta {
    display: block;
  }

  .signup-modal__dialog {
    margin: 3.5vh auto;
    padding: 0.9rem 0.75rem 0.8rem;
    max-height: 92vh;
    overflow: auto;
  }

  .footer {
    padding-bottom: 5rem;
  }
}

/* Light theme color override (logo-friendly) */
:root {
  --bg: #f7f5f8;
  --bg-soft: #f1edf4;
  --card: #ffffff;
  --text: #17131d;
  --muted: #5f586d;
  --primary: #ff8a1f;
  --primary-dark: #e36e11;
  --accent: #ef2f8f;
  --stroke: rgba(23, 19, 29, 0.1);
  --shadow: 0 16px 34px rgba(35, 22, 53, 0.08);
}

body {
  background:
    radial-gradient(900px 320px at 10% -8%, rgba(239, 47, 143, 0.08), transparent 60%),
    radial-gradient(900px 320px at 92% 0%, rgba(131, 56, 236, 0.09), transparent 62%),
    linear-gradient(180deg, #fbf9fc 0%, #f4f1f7 100%);
}

.topbar {
  color: #fff4ea;
  background: linear-gradient(90deg, #a11e6f 0%, #7a38d6 42%, #ff8a1f 100%);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.hero__bg {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.78) 100%),
    radial-gradient(circle at 78% 24%, rgba(239, 47, 143, 0.14), transparent 44%),
    radial-gradient(circle at 24% 10%, rgba(131, 56, 236, 0.12), transparent 40%),
    radial-gradient(circle at 52% -6%, rgba(255, 138, 31, 0.1), transparent 36%);
}

.hero__media {
  border-color: rgba(23, 19, 29, 0.12);
}

.eyebrow {
  color: #9b3069;
}

.eyebrow--accent {
  color: #7a38d6;
}

.btn--primary {
  background: linear-gradient(135deg, #f03191 0%, #ff8a1f 100%);
  box-shadow: 0 12px 28px rgba(240, 49, 145, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #db2d84 0%, #ef7e1f 100%);
}

.section--dark {
  background: linear-gradient(180deg, #faf8fc 0%, #f2eef6 100%);
  border-top: 1px solid rgba(23, 19, 29, 0.05);
  border-bottom: 1px solid rgba(23, 19, 29, 0.05);
}

.section--striped::before {
  background: repeating-linear-gradient(
    90deg,
    rgba(239, 47, 143, 0.07) 0,
    rgba(239, 47, 143, 0.07) 1px,
    transparent 1px,
    transparent 24px
  );
  opacity: 1;
}

.point-item {
  border-color: rgba(23, 19, 29, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 250, 0.96));
}

.point-item__num {
  background: linear-gradient(180deg, rgba(240, 49, 145, 0.13), rgba(255, 138, 31, 0.12));
  border-color: rgba(240, 49, 145, 0.2);
  color: #8f215e;
}

.points-mockup__frame {
  border-color: rgba(23, 19, 29, 0.08);
  background: linear-gradient(180deg, #ffffff, #f5f2f8);
  box-shadow: 0 14px 30px rgba(39, 23, 59, 0.08);
}

.points-mockup__frame img {
  background: #fbf9fc;
}

.points-mockup__frame::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(23, 19, 29, 0.02) 100%),
    radial-gradient(circle at 82% 12%, rgba(239, 47, 143, 0.08), transparent 42%),
    radial-gradient(circle at 18% 76%, rgba(131, 56, 236, 0.06), transparent 44%);
}

.section--results {
  background:
    radial-gradient(520px 240px at 18% -18%, rgba(239, 47, 143, 0.08), transparent 70%),
    radial-gradient(420px 180px at 84% 8%, rgba(131, 56, 236, 0.07), transparent 70%),
    #f8f5fa;
}

.results-grid img {
  border-color: rgba(23, 19, 29, 0.08);
  box-shadow: 0 10px 20px rgba(39, 23, 59, 0.07);
}

.bonus-card {
  border-color: rgba(23, 19, 29, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(39, 23, 59, 0.05);
}

.mid-cta {
  border-color: rgba(240, 49, 145, 0.18);
  background:
    radial-gradient(420px 180px at 85% 90%, rgba(255, 138, 31, 0.08), transparent 70%),
    radial-gradient(420px 180px at 12% 10%, rgba(131, 56, 236, 0.06), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f4f0f7 100%);
}

.mid-cta__media {
  border-color: rgba(23, 19, 29, 0.08);
}

.list {
  border-color: rgba(23, 19, 29, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(39, 23, 59, 0.04);
}

.list--ok li::before {
  color: #ef2f8f;
}

.bio img {
  border-color: rgba(23, 19, 29, 0.08);
}

.faq details {
  border-color: rgba(23, 19, 29, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(39, 23, 59, 0.04);
}

.faq summary::after {
  color: #b13067;
}

.section--warning {
  background: #f5f1f7;
}

.warning-box {
  border-color: rgba(240, 49, 145, 0.22);
  background: linear-gradient(180deg, rgba(240, 49, 145, 0.06), rgba(255, 138, 31, 0.05));
}

.warning-box p {
  color: #512d42;
}

.cta-final {
  background:
    radial-gradient(500px 260px at 15% 10%, rgba(239, 47, 143, 0.08), transparent 60%),
    radial-gradient(420px 210px at 42% 0%, rgba(131, 56, 236, 0.07), transparent 62%),
    radial-gradient(520px 280px at 85% 10%, rgba(255, 138, 31, 0.08), transparent 65%),
    #f7f4fa;
}

.enroll-relief {
  border-color: rgba(23, 19, 29, 0.1);
  background:
    radial-gradient(340px 180px at 50% -10%, rgba(239, 47, 143, 0.07), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f6f2f8 58%, #f1edf4 100%);
  box-shadow:
    0 26px 38px rgba(39, 23, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.enroll-relief::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 24%);
}

.enroll-relief__decor {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(222, 216, 231, 0.9));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 14px rgba(39, 23, 59, 0.12);
}

.enroll-relief__title {
  color: #1a1422;
}

.enroll-relief__date {
  color: #3a2e49;
}

.enroll-relief__list li {
  color: #5e546d;
}

.enroll-relief__payments {
  color: #6f647f;
}

.enroll-relief__progress {
  border-color: rgba(23, 19, 29, 0.1);
  background: rgba(23, 19, 29, 0.05);
}

.enroll-relief__micro {
  color: #9b3069;
}

.sticky-cta {
  background: rgba(255, 255, 255, 0.92);
  border-top-color: rgba(23, 19, 29, 0.1);
}

.signup-modal__dialog {
  border-color: rgba(23, 19, 29, 0.1);
  background:
    radial-gradient(500px 240px at 80% -10%, rgba(239, 47, 143, 0.08), transparent 70%),
    radial-gradient(500px 240px at 10% 0%, rgba(131, 56, 236, 0.06), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f6f2f8 70%, #f2edf5 100%);
  box-shadow: 0 28px 54px rgba(39, 23, 59, 0.16);
}

.signup-modal__close {
  border-color: rgba(23, 19, 29, 0.12);
  background: rgba(23, 19, 29, 0.04);
  color: #2a1f36;
}

.signup-modal__sub {
  color: #6a6078;
}

.signup-form label {
  color: #2f253d;
}

.signup-form input {
  border-color: rgba(23, 19, 29, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #1b1524;
}

.signup-form input::placeholder {
  color: #8e869a;
}

.signup-modal__note {
  color: #7b7188;
}

.footer {
  color: #73687f;
}

/* Hero background mode (replace lateral image) */
.hero__wrap {
  grid-template-columns: 1fr;
  min-height: 580px;
  align-items: center;
}

.hero__copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero__media {
  display: none !important;
}

.hero__bg {
  background-image:
    linear-gradient(100deg, rgba(7, 8, 12, 0.9) 0%, rgba(7, 8, 12, 0.76) 42%, rgba(7, 8, 12, 0.32) 100%),
    radial-gradient(circle at 70% 14%, rgba(239, 47, 143, 0.2), transparent 44%),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 31, 0.14), transparent 38%),
    url("/workshop/inputs/mockups-workshop/hero-pagcap-desk.webp"),
    url("inputs/mockups-workshop/hero-pagcap-desk.webp"),
    url("/inputs/mockups-workshop/hero-pagcap-desk.webp");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center center, 70% 14%, 82% 18%, center center, center center, center center;
  background-size: cover, 100% 100%, 100% 100%, cover, cover, cover;
}

.hero .eyebrow {
  color: #ffd7c0;
}

.hero__copy h1 {
  color: #ffffff;
}

.hero__copy h1 span {
  color: #ff4aa2;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

.hero .micro {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .hero__wrap {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero__wrap {
    min-height: 680px;
    padding: 3rem 0 2.4rem;
  }

  .hero__bg {
    background-image:
      linear-gradient(180deg, rgba(7, 8, 12, 0.88) 0%, rgba(7, 8, 12, 0.72) 44%, rgba(7, 8, 12, 0.46) 100%),
      radial-gradient(circle at 70% 10%, rgba(239, 47, 143, 0.2), transparent 44%),
      radial-gradient(circle at 84% 14%, rgba(255, 138, 31, 0.12), transparent 40%),
      url("/workshop/inputs/mockups-workshop/hero-pagcap-mob.webp"),
      url("inputs/mockups-workshop/hero-pagcap-mob.webp"),
      url("/inputs/mockups-workshop/hero-pagcap-mob.webp");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center top, 70% 10%, 84% 14%, center top, center top, center top;
    background-size: cover, 100% 100%, 100% 100%, cover, cover, cover;
  }

  .hero__copy h1 {
    max-width: 12ch;
  }

  .hero__sub {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.92);
  }
}

/* Disable sticky CTA footer (mobile) */
.sticky-cta {
  display: none !important;
}

@media (max-width: 640px) {
  .footer {
    padding-bottom: 1.5rem !important;
  }
}
