/* Level 1: Physique Essentials — page-specific styles
   Imports: /assets/css/j3.css (tokens) + /xframe/page.css (components)
   This file adds only what is unique to Level 1. */

/* ---- enrollment state toggle (pre-paint — applied by inline script) ---- */
html:not([data-enroll="open"])  .when-open  { display: none !important; }
html:not([data-enroll="closed"]) .when-closed { display: none !important; }
/* preview badge — only shows when ?state=open|closed forces a state (review aid, not a real visitor) */
html[data-enroll-preview] body::after {
  content: 'Preview \00b7 ' attr(data-enroll-preview);
  position: fixed; bottom: 14px; left: 14px; z-index: 9999;
  background: #131316; color: #fff; font-family: var(--font-head);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; box-shadow: 0 4px 16px rgba(0,0,0,.32);
  pointer-events: none;
}

/* ---- announcement bar ---- */
.announce-bar {
  background: #131316;
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  padding: 11px 20px;
}
.announce-bar .ab-open  { color: #fff; font-weight: 700; letter-spacing: .03em; }
.announce-bar .ab-open::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-right: 9px; vertical-align: middle; }
.announce-bar .ab-closed { color: #fff; font-weight: 700; }
.announce-bar .ab-notify { display: inline-block; margin-left: 14px; color: rgba(255,255,255,.88); font-size: .78rem; text-decoration: underline; cursor: pointer; font-weight: 500; }

/* ---- hero (split: copy left / image right) ---- */
.hero-l1 {
  padding: clamp(36px,5vw,72px) 0 clamp(28px,4vw,56px);
  background: #fff;
}
.hero-l1 .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,64px); align-items: center; }
.hero-l1 .hero-copy { }
.hero-l1 .hero-copy .eyebrow { margin-bottom: 16px; }
.hero-l1 .hero-copy h1 {
  font-size: clamp(1.8rem, 1.1rem + 2.6vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-l1 .hero-copy .hero-lead { font-size: 1.05rem; color: #34373d; line-height: 1.65; margin-bottom: 18px; }
.hero-l1 .hero-copy .hero-opens {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-l1 .cta-cluster { align-items: flex-start; margin-top: 0; }
.hero-l1 .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-l1 .trust-row img { height: 42px; width: auto; opacity: .85; }
.hero-l1 .trust-row .trust-label {
  font-size: .72rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
}
/* trust badges: static wrapped row on desktop, auto-scroll marquee on mobile */
.hero-l1 .trust-marquee { width: 100%; }
.hero-l1 .trust-track { display: flex; }
.hero-l1 .trust-set { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.hero-l1 .trust-dup { display: none; }
@keyframes trust-scroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
/* hero image side */
.hero-l1 .hero-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 860px) {
  /* flatten so the image can sit right under the eyebrow, before the rest of the copy */
  .hero-l1 { padding-top: 22px; }
  .hero-l1 .wrap { display: flex; flex-direction: column; }
  .hero-l1 .hero-copy { display: contents; }
  .hero-l1 .hero-copy .eyebrow { order: 1; margin-bottom: 10px; }
  .hero-l1 .hero-img-col { order: 2; margin: 0 0 14px; }
  .hero-l1 .hero-copy h1 { order: 3; margin-bottom: 10px; }
  .hero-l1 .hero-copy .hero-lead { order: 4; margin-bottom: 12px; }
  .hero-l1 .hero-copy .hero-opens { order: 5; margin: 0 0 14px; }
  .hero-l1 .hero-copy .cta-cluster { order: 6; margin-top: 0; gap: 12px; }
  .hero-l1 .hero-copy .trust-row { order: 7; margin-top: 22px; padding-top: 18px; justify-content: center; text-align: center; }
  .hero-l1 .hero-img-wrap { max-width: 460px; margin: 0 auto; }
  .hero-l1 .cta-cluster { align-items: center; }
  /* trust badges → centered auto-scroll marquee, ~30% bigger */
  .hero-l1 .trust-row { width: 100%; min-width: 0; }
  .hero-l1 .trust-label { width: 100%; text-align: center; }
  .hero-l1 .trust-marquee { width: 100%; min-width: 0; max-width: 100%; overflow: hidden; flex: 0 1 100%; }
  .hero-l1 .trust-track { width: max-content; flex-wrap: nowrap; animation: trust-scroll 16s linear infinite; }
  .hero-l1 .trust-set { flex-wrap: nowrap; gap: 0; }
  .hero-l1 .trust-set img { margin: 0 16px; }
  .hero-l1 .trust-dup { display: flex; }
  .hero-l1 .trust-row img { height: 55px; }
}

/* ---- Master the Foundations: 2-part layout ---- */
/* Part A: header band */
.foundations-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
  margin-bottom: clamp(32px,4vw,52px);
}
.foundations-header h2 {
  font-size: clamp(1.65rem,1rem+2.2vw,2.5rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.foundations-header p {
  font-size: 1rem;
  color: #34373d;
  line-height: 1.7;
  margin: 0;
}
/* Part B: white card */
.foundations-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px,3.5vw,52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,56px);
  align-items: start;
}
.foundations-vsl {
  border-radius: 12px;
  overflow: hidden;
  background: #0b0b0d;
  aspect-ratio: 16/9;
  position: relative;
  align-self: center;   /* vertically center the video against the taller skills list */
}
.foundations-vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.foundations-skills h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.skill-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.skill-item--full { grid-column: span 2; }
.skill-item svg { flex-shrink: 0; margin-top: 2px; }
.skill-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.skill-item p { font-size: .82rem; color: #4a5260; line-height: 1.45; margin: 0; }
@media (max-width: 860px) {
  .foundations-header { grid-template-columns: 1fr; }
  .foundations-card { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-item--full { grid-column: span 1; }
}

/* ---- accordion ---- */
.accordion { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:last-child { border-bottom: 0; }
.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.acc-trigger:hover { background: var(--bg-soft); }
.acc-trigger .acc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s, background .2s;
}
.acc-item.open .acc-trigger .acc-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.acc-body { display: none; padding: 0 24px 18px; }
.acc-item.open .acc-body { display: block; }
.acc-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.acc-body ul li { font-size: .93rem; color: #4a5260; padding-left: 18px; position: relative; line-height: 1.5; }
.acc-body ul li::before { content: '·'; position: absolute; left: 4px; color: var(--red); font-weight: 700; }

/* ---- feature cards grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-card img { width: 36px; height: 36px; }
.feat-card h3 { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.feat-card p { font-size: .85rem; color: #4a5260; line-height: 1.5; flex: 1; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ---- who is this for: image + dark card ---- */
.who-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px,3vw,48px);
  align-items: stretch;
}
.who-grid .who-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; display: block; }
.who-grid .darkbox { border-radius: 18px; }
.persona-list { display: grid; gap: 20px; margin-top: 20px; }
.persona-item { display: flex; gap: 12px; align-items: flex-start; }
.persona-item .p-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 0; color: var(--red); }
.persona-item h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.25; }
.persona-item p { font-size: .9rem; color: #c2c6cc; line-height: 1.5; }
@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-grid .who-img { max-height: 320px; overflow: hidden; border-radius: 16px; }
  .who-grid .who-img img { max-height: 320px; }
}

/* ---- video testimonials carousel — 7-card left-scroll marquee ---- */
.vid-test-section { overflow: hidden; }
.vt-marquee-outer {
  overflow: hidden;          /* clean hard cut on both edges (no fade) */
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.vt-marquee-track {
  display: flex;
  width: max-content;
  animation: vt-scroll 28s linear infinite;
}
.vt-marquee-outer:hover .vt-marquee-track { animation-play-state: paused; }
/* mobile: auto-scrolls (JS-driven) AND the user can swipe with their finger */
@media (max-width: 760px) {
  .vt-marquee-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vt-marquee-outer::-webkit-scrollbar { display: none; }
  .vt-marquee-track { animation: none; }   /* JS drives scrollLeft instead, so drag works */
}
@keyframes vt-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vid-card {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 360px);
  margin-right: 20px; /* per-card margin — NOT flex gap — so duplicated halves are identical */
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vid-card .vc-thumb {
  position: relative;
  aspect-ratio: 4/5;
  background: #0b0b0d;
  cursor: pointer;
  overflow: hidden;
}
.vid-card .vc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .3s; }
.vid-card .vc-thumb:hover img { transform: scale(1.03); }
.vid-card .vc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .2s;
}
.vid-card .vc-thumb:hover .vc-play { background: rgba(0,0,0,.38); }
.vid-card .vc-play svg { width: 52px; height: 52px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.vid-card .vc-body { padding: 18px; }
.vid-card .vc-body h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.vid-card .vc-body .vc-title { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.vid-card .vc-body p { font-size: .88rem; color: #4a5260; line-height: 1.55; font-style: italic; }
/* modal overlay for video */
.vid-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 9000; align-items: center; justify-content: center; }
.vid-modal.open { display: flex; }
.vid-modal .vm-inner { position: relative; width: min(860px, 94vw); aspect-ratio: 16/9; }
.vid-modal iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; }
.vid-modal .vm-close { position: absolute; top: -38px; right: 0; background: none; border: 0; color: #fff; font-size: 1.7rem; cursor: pointer; line-height: 1; padding: 4px 8px; }
@media (max-width: 600px) { .vid-card { width: clamp(240px, 72vw, 300px); } }

/* ---- What Makes J3U Different: 2×2 alternating card grid ---- */
.j3diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;   /* columns flow independently → staggered masonry like the original */
}
.j3diff-col { display: flex; flex-direction: column; gap: 20px; }
.j3diff-card {
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 52px);
}
/* dark cards */
.j3diff-dark {
  background: var(--box-dark, #1b1b1f);
  color: #c9ccd2;
}
.j3diff-dark h2 {
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.j3diff-dark .accent-bright { color: #ff5540; }
.j3diff-dark p {
  font-size: 1rem;
  color: #c2c6cc;
  line-height: 1.65;
}
/* light cards */
.j3diff-light {
  background: var(--bg-soft, #eef0f3);
  border: 1px solid var(--line);
}
.j3diff-light h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
/* shared points list */
.j3diff-points { display: grid; gap: 18px; }
.j3dp { display: flex; gap: 12px; align-items: flex-start; }
.j3dp svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.j3dp strong { display: block; font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.j3dp p { font-size: .88rem; color: #4a5260; line-height: 1.5; margin: 0; }
/* bottom-right dark card: blueprint quote + image */
.j3diff-img-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 40px);
}
.j3diff-img-card { background: #18181b; }
.j3diff-img-card { min-height: 240px; }
.j3diff-img-card .j3diff-bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* keep the head — don't crop the top */
  opacity: .5;
  /* fade the image into the dark card on its left edge */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 55%);
  mask-image: linear-gradient(to right, transparent 0, #000 55%);
}
.j3diff-img-card .j3diff-quote { text-align: left; }
.j3diff-img-card .j3diff-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, .8rem + .8vw, 1.3rem);
  color: #fff;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
@media (max-width: 760px) {
  .j3diff-grid { grid-template-columns: 1fr; }
  .j3diff-img-card { min-height: 180px; }
}

/* ---- instructors — sleeker (65% copy / 35% photo) ---- */
.instructor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr .52fr;  /* ~65/35 split — more compact photo */
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
}
.instructor-card:last-child { margin-bottom: 0; }
.instructor-card .ic-copy { padding: clamp(24px, 3vw, 44px); }
.instructor-card .ic-copy h3 { font-size: clamp(1.2rem, .9rem + 1vw, 1.6rem); margin-bottom: 12px; }
.instructor-card .ic-copy p { font-size: .97rem; color: #34373d; line-height: 1.68; margin-bottom: 14px; }
.instructor-card .ic-creds {
  font-size: .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.instructor-card .ic-creds .cred-label { font-size: .72rem; color: var(--muted); display: block; margin-bottom: 4px; }
.instructor-card .ic-creds .cred-vals { color: var(--red); font-size: .85rem; }
.instructor-card .ic-photo { overflow: hidden; }
.instructor-card .ic-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
@media (max-width: 760px) {
  .instructor-card { grid-template-columns: 1fr; }
  .instructor-card .ic-photo { max-height: 260px; }
}

/* ---- student testimonials — two-row motion marquee ---- */
.ttest-section { overflow: hidden; }
.ttest-marquee-outer {
  overflow: hidden;          /* clean hard cut on both edges (no fade) */
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto 16px;
}
.ttest-marquee-outer--r { margin-bottom: 0; }
.ttest-track {
  display: flex;
  width: max-content;
}
.ttest-track--left  { animation: tt-left  32s linear infinite; }
.ttest-track--right { animation: tt-right 32s linear infinite; }
.ttest-marquee-outer:hover .ttest-track { animation-play-state: paused; }
@keyframes tt-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tt-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.ttest-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 400px);
  margin-right: 18px; /* per-card margin for seamless loop */
  background: #fff;
  border: 1px solid #EDA59A;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.ttest-card .tt-head { display: flex; gap: 12px; align-items: center; }
.ttest-card .tt-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ttest-card .tt-head .tt-name { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink); }
.ttest-card .tt-head .tt-role { font-size: .78rem; color: var(--muted); margin-top: 2px; line-height: 1.3; }
.ttest-card .tt-body { font-size: .88rem; color: #4a5260; line-height: 1.6; font-style: italic; flex: 1; }
@media (max-width: 600px) {
  .ttest-card { width: clamp(260px, 80vw, 340px); }
}

/* ---- Reasons to Join (dark section) ---- */
.reasons-dark {
  background: var(--box-dark);
  border-radius: 26px;
  padding: clamp(32px,4vw,60px);
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: clamp(28px,4vw,56px);
  align-items: center;
}
.reasons-dark h2 { color: #fff; font-size: clamp(1.6rem,1rem+1.8vw,2.4rem); margin-bottom: 28px; }
.reasons-dark h2 .accent { color: var(--red-bright); }
.reason-list { display: grid; gap: 22px; }
.reason-item { display: flex; gap: 14px; align-items: flex-start; }
.reason-item .ri-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--red-bright);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.reason-item .ri-dot svg { width: 14px; height: 14px; color: var(--red-bright); }
.reason-item h4 { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.reason-item p { font-size: .88rem; color: #b5b9c2; line-height: 1.5; }
.reasons-imgs { display: grid; gap: 14px; }
.reasons-imgs img { width: 100%; border-radius: 14px; display: block; }
@media (max-width: 860px) {
  .reasons-dark { grid-template-columns: 1fr; }
  .reasons-imgs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reasons-imgs { grid-template-columns: 1fr; }
}

/* ---- pricing / checkout section ---- */
#pricing { scroll-margin-top: 90px; }
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  border: 1.5px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px,3vw,40px);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.price-card.best-val {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,30,3,.12), var(--shadow);
}
.price-card .pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .pc-label { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.price-card .pc-price { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.price-card .pc-price .cur { color: var(--red); font-size: .5em; vertical-align: super; }
.price-card .pc-sub { font-size: .88rem; color: var(--muted); margin-top: -8px; }
.price-card .pc-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
/* text flows inline (check is absolutely positioned) so inline <strong> doesn't split into its own flex item */
.price-card .pc-features li { font-size: .9rem; color: #34373d; line-height: 1.45; padding-left: 26px; position: relative; }
.price-card .pc-features li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10.6' fill='none' stroke='%23e02817' stroke-width='1.5'/%3E%3Cpath d='M7.4 12.3l3 3 6.2-6.4' fill='none' stroke='%23e02817' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
/* nested course sub-list (All-Access) */
.price-card .pc-sublist { list-style: none; margin: 6px 0 2px; padding: 0 0 0 26px; display: grid; gap: 4px; }
.price-card .pc-sublist li { font-size: .82rem; color: #5a626e; padding-left: 14px; position: relative; line-height: 1.35; }
.price-card .pc-sublist li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.price-card .btn { margin-top: auto; justify-content: center; font-size: .92rem; white-space: nowrap; }
@media (max-width: 640px) { .price-cards { grid-template-columns: 1fr; max-width: 400px; } }

/* "Enroll Now For Instant Access" 2-col value checklist */
.ia-head { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.2rem,1rem+.7vw,1.6rem); color: var(--ink); margin-bottom: 22px; }
.ia-head .accent { color: var(--red); }
.ia-card {
  max-width: 860px;
  margin: 0 auto 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: clamp(24px,3vw,40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px clamp(28px,4vw,56px);
}
.ia-item { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: #34373d; line-height: 1.4; }
.ia-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--red); }
.ia-item strong { color: var(--ink); font-weight: 700; }
.ia-item .ia-val { color: var(--red); font-weight: 700; }
.ia-item .ia-free { color: #15803d; font-weight: 700; }
.ia-bonuses { max-width: 1080px; grid-template-columns: repeat(3, 1fr); column-gap: 36px; }
@media (max-width: 760px) { .ia-bonuses { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .ia-card { grid-template-columns: 1fr; gap: 12px; } }

/* 3-up price cards (Payment plan / One-time / All-Access) */
.price-cards--3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; gap: 20px; }
.price-cards--3 .pc-price { font-size: 2.2rem; }
.price-card .pc-features li strong { font-weight: 700; color: var(--ink); }
.pc-badge--alt { background: #18181b !important; }
.price-card.all-access { border-color: #18181b; box-shadow: 0 0 0 2px rgba(24,24,27,.08), var(--shadow-sm); }
@media (max-width: 900px) { .price-cards--3 { grid-template-columns: 1fr; max-width: 440px; } }

/* ---- guarantee (dashed card style) ---- */
.gtee-card {
  border: 2px dashed var(--line-2);
  border-radius: 20px;
  padding: clamp(28px,3vw,48px);
  background: #fff;
}
.gtee-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.gtee-card .gtee-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 20px;
}
.gtee-card .gtee-day small { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.guarantee-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px,3vw,40px);
  align-items: stretch;   /* both columns same height */
}
.gtee-card { display: flex; flex-direction: column; }
.gtee-benefits { display: grid; grid-auto-rows: 1fr; gap: 18px; }
.gtee-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gtee-benefit svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.gtee-benefit h4 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.gtee-benefit p { font-size: .85rem; color: #4a5260; line-height: 1.5; }
@media (max-width: 740px) { .guarantee-section-grid { grid-template-columns: 1fr; } }

/* ---- FAQ accordion (matches curriculum accordion style) ---- */
.faq-wrap .acc-item { background: #fff; }
.faq-wrap .acc-item:first-child { border-radius: 18px 18px 0 0; }
.faq-wrap .acc-item:last-child { border-radius: 0 0 18px 18px; }
.faq-wrap .acc-body p { font-size: .93rem; color: #4a5260; line-height: 1.6; }

/* ---- Still Have Questions CTA dark box (John cutout breaks above the top border, X-Frame gbox style) ---- */
.questions-dark {
  background: var(--box-dark);
  border-radius: 26px;
  padding: clamp(36px,5vw,64px) clamp(28px,4vw,56px);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: visible;   /* let John's head/shoulders extend above the top border */
}
.questions-dark .qdark-copy { max-width: 64%; }
.questions-dark h2 { color: #fff; font-size: clamp(1.5rem,1rem+1.6vw,2.1rem); margin-bottom: 16px; }
.questions-dark h2 .accent { color: var(--red-bright); }
.questions-dark p { color: #c2c6cc; font-size: 1.02rem; line-height: 1.65; margin-bottom: 24px; }
.questions-dark .qdark-img {
  position: absolute;
  right: clamp(12px,4vw,56px);
  bottom: 0;
  width: clamp(210px, 30%, 320px);
  pointer-events: none;
}
.questions-dark .qdark-img img { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .questions-dark .qdark-copy { max-width: 100%; }
  .questions-dark .qdark-img { display: none; }
}

/* ---- hero closed-state note ---- */
.hero-l1 .hero-copy .hero-closed-note {
  background: #fff4f2;
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #34373d;
  line-height: 1.6;
  margin-bottom: 22px;
}
.hero-l1 .hero-copy .hero-closed-note strong { color: var(--red); font-weight: 700; }

/* ---- monthly masterclass registration (closed state) ---- */
.mc-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px,3vw,44px);
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.mc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px,3vw,36px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.mc-session { display: grid; gap: 14px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.mc-session-row { display: flex; gap: 12px; align-items: flex-start; }
.mc-session-row svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.mc-session-row span { font-size: .95rem; color: #34373d; line-height: 1.4; }
.mc-session-row strong { font-family: var(--font-head); color: var(--ink); }
.mc-form { display: grid; gap: 12px; }
.mc-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.mc-form input:focus { border-color: var(--red); }
.mc-form .btn { justify-content: center; margin-top: 2px; }
.mc-micro { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 12px; }
.mc-thankyou { display: none; text-align: center; padding: 8px 0; }
.mc-thankyou .mc-ty-check { width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.mc-thankyou .mc-ty-check svg { width: 28px; height: 28px; }
.mc-thankyou h3 { font-size: 1.3rem; margin-bottom: 6px; }
.mc-thankyou p { color: #4a5260; font-size: .95rem; line-height: 1.5; }
.mc-thankyou .mc-ty-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.mc-thankyou .mc-ty-btns .btn { gap: 8px; }
.mc-thankyou .cal-ico { height: 18px; width: auto; flex: 0 0 auto; display: block; }
/* free J3U Hub cross-sell card (thank-you state, below Add-to-Calendar) */
.mc-hub-card {
  text-align: left; margin-top: 22px; padding: 20px 22px;
  background: var(--bg-tint); border: 1px solid var(--line);
  border-left: 3px solid var(--red); border-radius: 14px;
}
.mc-hub-card .mc-hub-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.mc-hub-card h4 { font-family: var(--font-head); font-size: 1.12rem; color: var(--ink); margin: 0 0 8px; line-height: 1.25; }
.mc-hub-card p { color: #4a5260; font-size: .93rem; line-height: 1.55; margin: 0 0 16px; }
.mc-hub-card .btn { width: 100%; justify-content: center; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
/* aside: what you'll learn + hosts */
.mc-aside { display: flex; flex-direction: column; }
.mc-aside h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.mc-learn { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 14px; }
.mc-learn li { position: relative; padding-left: 30px; font-size: .95rem; color: #34373d; line-height: 1.5; }
.mc-learn li::before { content: ''; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10.6' fill='none' stroke='%23e02817' stroke-width='1.5'/%3E%3Cpath d='M7.4 12.3l3 3 6.2-6.4' fill='none' stroke='%23e02817' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.mc-host { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.mc-host-imgs { display: flex; flex-shrink: 0; }
.mc-host-imgs img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.mc-host-imgs img:last-child { margin-left: -16px; }
.mc-host strong { font-family: var(--font-head); font-size: .95rem; color: var(--ink); display: block; margin-bottom: 2px; }
.mc-host p { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.mc-note { font-size: .9rem; color: #4a5260; line-height: 1.6; margin: 0; padding: 13px 15px; background: #f6f7f9; border-radius: 10px; border-left: 3px solid var(--red); }
.mc-community { text-align: center; max-width: 640px; margin: 28px auto 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
@media (max-width: 760px) {
  .mc-grid { grid-template-columns: 1fr; }
  .mc-aside { margin-top: 4px; }
}

/* ---- general helpers ---- */
.section-eyebrow-wrap { text-align: center; margin-bottom: 12px; }
.mt-cta { margin-top: clamp(36px,4vw,52px); text-align: center; }

/* ---- dark-section accent override (contrast fix: #e02817 on #141417 = 3.93 < 4.5; use #ff5540 = 5.8 on dark) ---- */
.reasons-dark .accent,
.questions-dark .accent,
.j3u-diff h2 [style*="red"],
.j3u-strip { --accent-on-dark: #ff5540; }
.reasons-dark h2 .accent,
.questions-dark h2 .accent { color: #ff5540; }
/* inline-style in j3u-diff h2 can't be overridden via class — handled by explicit inline below */
