/* ===== The PM Prism — 1920px design canvas ===== */
:root {
  --bg: #faf6ed;
  --red: #f82f1b;
  --orange: #fe7e11;
  --yellow: #fdda2a;
  --green: #6dc82d;
  --blue: #2285da;
  --ink: #230207;
  --black60: rgba(0, 0, 0, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #000;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

.canvas-wrap { overflow: hidden; }
.canvas {
  position: relative;
  width: 1920px;
  height: 12531px;
  background: var(--bg);
  overflow: hidden;
  transform-origin: top left;
  letter-spacing: -0.08em;
}

.serif {
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
  font-weight: 400;
}

/* dashed divider: 16px dash / 16px gap, black 20% */
.dash {
  height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.2) 0 16px, transparent 16px 32px);
}

.abs { position: absolute; }

/* ===== Hero decor ===== */
/* ~1.1x wider than the visible span so the widest cross-section clears the 1920px
   canvas edge by only ~76px: enough to push the mask's soft fade off-screen (edge
   colours stay full opacity) while keeping almost the whole rainbow on screen. Tip
   stays pinned on the prism star (1161, 562). */
.big-star { left: 1153px; top: -281px; width: 1686px; height: 1686px; }
.hero-glow { left: 1002px; top: 403px; width: 318px; height: 318px; }
.hero-star { left: 1079px; top: 480px; width: 164px; height: 164px; }

/* ===== Header ===== */
.header {
  left: 260px; top: 80px; width: 1400px; height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 10;
}
.logo { width: 161px; height: 40px; }
.nav { display: flex; gap: 48px; align-items: center; }
.nav-item { display: flex; gap: 8px; align-items: center; font-size: 24px; line-height: 1; transition: color 0.15s ease; }
.nav-item:nth-child(1):hover { color: var(--red); }
.nav-item:nth-child(2):hover { color: var(--blue); }
.nav-item:nth-child(3):hover { color: var(--green); }
.nav-item svg { width: 24px; height: 24px; }
.btn {
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px; font-size: 24px; line-height: 1; letter-spacing: -0.08em;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-red { background: var(--red); color: #fff; padding: 12px 24px; }
.btn-red:hover {
  background: #d92310;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(248, 47, 27, 0.35);
}

/* ===== Hero ===== */
.hero-copy { left: 260px; top: 250px; width: 813px; z-index: 5; }
.hero-title {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start;
  font-size: 56px; line-height: 1;
}
.hero-title p { white-space: nowrap; }
.pill {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid; border-radius: 999px;
  padding: 3px 15px 11px;
  white-space: nowrap;
}
.pill-red    { color: var(--red);    border-color: var(--red); }
.pill-orange { color: var(--orange); border-color: var(--orange); }
.pill-yellow { color: var(--yellow); border-color: var(--yellow); }
.pill-green  { color: var(--green);  border-color: var(--green); }
.pill-blue   { color: var(--blue);   border-color: var(--blue); }

.hero-sub {
  margin-top: 80px; white-space: nowrap;
  font-size: 40px; line-height: 1; color: var(--black60);
}
.hero-btn {
  margin-top: 40px;
  display: inline-flex;
  background: #fff; border: 4px solid var(--green); color: #000;
  padding: 12px 44px;
}
.hero-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(109, 200, 45, 0.4);
}

/* ===== Why ===== */
.why { left: calc(50% - 500px); top: 1033px; width: 1000px; text-align: center; }
.why h2 { font-size: 80px; line-height: 1; color: #000; }
.why-intro { margin: 32px auto 0; width: 788px; font-size: 32px; line-height: 1; }
.why-card {
  margin-top: 96px;
  background: #fff; border-radius: 16px;
  padding: 64px 80px;
  box-shadow: 0 0 100px #d92310;
;
}
.why-item h3 { font-size: 56px; line-height: 1; color: var(--ink); }
.why-item p { margin-top: 24px; font-size: 32px; line-height: 1; color: var(--ink); }
.why-card .dash { margin: 48px 0; }

/* ===== Program ===== */
.program { left: 260px; top: 2886px; width: 1400px; display: flex; gap: 64px; align-items: flex-start; }
.program-copy { position: relative; width: 650px; flex: 0 0 650px; }
.program-blob {
  position: absolute; left: -180px; top: -20px; width: 520px; height: 440px;
  background: linear-gradient(135deg, var(--orange), #fc854c);
  border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0;
}
.program-copy h2, .program-intro { position: relative; z-index: 1; }
.program-copy h2 { font-size: 80px; line-height: 1; color: #000; }
.program-intro { margin-top: 32px; font-size: 28px; line-height: 1.3; color: var(--black60); }
.program-list { width: 686px; flex: 0 0 686px; z-index: 10; }
.program-list .faq-q { padding: 36px 0; font-size: 32px; font-weight: 500; min-height: 44px; }
.program-list .faq-plus { font-size: 48px; }
.program-list .faq-a p { padding: 4px 0 36px; font-size: 24px; line-height: 1.4; }

/* ===== Audience ===== */
.aud-bg { left: 0; top: 3140.5px; width: 1920px; height: 2356px; pointer-events: none; }
.aud-title { left: 50%; transform: translateX(-50%); top: 4279px; white-space: nowrap; text-align: center; font-size: 80px; line-height: 1; }

.note {
  background: #fff; border-radius: 8px;
  padding: 40px 44px 40px 88px;
  box-shadow: 0 12px 44px rgba(0, 16, 90, 0.2);
}
.note h3 { font-size: 40px; line-height: 1; color: var(--ink); }
.note p { margin-top: 24px; font-size: 32px; line-height: 1; color: var(--black60); }
.note .clip { position: absolute; top: -52px; left: -38px; width: 164px; height: 163px; }
.note-pm       { left: 293px;  top: 3899px; width: 554px; transform: rotate(-3.4deg); }
.note-it       { left: 1116px; top: 3973px; width: 554px; transform: rotate(3.4deg); }
.note-neit     { left: 294px;  top: 4487px; width: 554px; transform: rotate(-3.4deg); }
.note-beginner { left: 1136px; top: 4524px; width: 554px; transform: rotate(3.4deg); }

/* ===== Schedule ===== */
.schedule {
  left: 260px; top: 5406px; width: 1400px; height: 3544px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ea 100%);
  border-radius: 24px;
  box-shadow: 0 0 74px #cde49e;
}
.clip-schedule { left: 122px; top: -52px; width: 164px; height: 163px; }
.sched-star-top { left: 621px; top: 64px; width: 158px; height: 158px; }
.sched-star-bottom { display: block; margin: 56px auto 8px; width: 158px; height: 158px; }
.sched-title { left: 80px; top: 270px; width: 1240px; text-align: center; font-size: 56px; line-height: 1; color: var(--ink); }
.sched-list { position: absolute; left: 80px; top: 374px; width: 1240px; }
.sched-row { display: flex; padding: 44px 0 52px;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.2) 0 16px, transparent 16px 32px);
  background-repeat: no-repeat; background-position: top left; background-size: 100% 1px; }
.sched-date { width: 272px; flex: 0 0 272px; }
.sched-date .d { font-size: 48px; line-height: 1.1667; color: var(--ink); }
.sched-date .t { margin-top: 8px; font-size: 32px; line-height: 1.25; color: var(--black60); }
.sched-body { margin-left: 40px; width: 928px; }
.sched-body h3 { font-size: 56px; line-height: 1; color: var(--ink); }
.sched-body p { margin-top: 24px; font-size: 32px; line-height: 1.25; color: var(--black60); }

/* ===== About ===== */
.about-blue {
  left: -168px; top: 9410px; width: 2256px; height: 1156px;
  border-radius: 50%;
  background: rgba(34,133,218,0.85);
  filter: blur(110px);
}
.about-t1 { left: 878px; top: 9468px; font-size: 80px; line-height: 1; color: #fff; }
.about-t2 { left: 1015px; top: 9556px; font-size: 80px; line-height: 1; color: #fff; }
.photo { left: 366px; top: 9686px; width: 558px; height: 652px; }
.photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.photo .photo-star { position: absolute; left: 24px; top: 523px; width: 105px; height: 105px; }
.role-note { left: 420px; top: 9661px; width: max-content; transform: rotate(-2.5deg); padding: 32px 40px 32px 88px; }
.role-note h3 { font-size: 40px; line-height: 1.35; white-space: nowrap; }
.role-note .clip { top: -52px; left: -38px; width: 164px; height: 163px; }
.about-text {
  left: 1059px; top: 9731px; width: 600px;
  font-size: 28px; line-height: 1.25; color: #fff;
}
.about-text p + p { margin-top: 0; }

/* ===== Pricing ===== */
.pricing-title { left: 835px; top: 10874px; width: 249px; text-align: center; font-size: 80px; line-height: 1; }
.cards { left: 225px; top: 11042px; width: 1469px; height: 696px; }
.card {
  position: absolute;
  width: 468.33px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 28px rgba(120,100,40,0.08);
}
.card-1 { left: 0; top: 32px; height: 600px; }
.card-2 {
  left: 500.33px; top: 0; height: 696px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue)) border-box;
}
.card-3 { left: 1000.67px; top: 32px; height: 600px; }
.card-label { font-size: 24px; line-height: 1; color: var(--red); }
.card-label + .card-name { margin-top: 40px; }
.card-name { font-size: 48px; line-height: 1; }
.price-row { margin-top: 40px; display: flex; align-items: flex-start; }
.price-now { font-size: 80px; line-height: 1; }
.price-old {
  margin-left: 24px; margin-top: 20px;
  font-size: 40px; line-height: 1;
  color: rgba(0,0,0,0.4); text-decoration: line-through;
}
.features { margin-top: 40px; list-style: none; }
.features li { display: flex; gap: 16px; margin-bottom: 16px; font-size: 24px; line-height: 1; }
.features li:last-child { margin-bottom: 0; }
.features svg { width: 24px; height: 24px; flex: 0 0 24px; }
.card-btn {
  margin-top: 40px;
  width: 100%;
  background: #fff; border: 1px solid #000; color: #000;
  padding: 15px 0;
}
.card-btn:hover {
  background: #000;
  color: #fff;
}
.card-2 .card-btn:hover {
  background: linear-gradient(120deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
  border-color: transparent;
  color: #fff;
}


/* ===== Payment ===== */
.pay-note { left: 260px; top: 11798px; width: 1400px; text-align: center;
  font-size: 24px; line-height: 1; color: var(--black60); }
.pay-title { left: 260px; top: 11878px; width: 1400px; text-align: center;
  font-size: 80px; line-height: 1; }
.pay-cols { left: 260px; top: 12046px; width: 1400px; display: flex; gap: 64px; }
.pay-col { flex: 1; text-align: center; }
.pay-col h3 { display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 40px; line-height: 1; color: var(--ink); }
.pay-star { width: 24px; height: 24px; flex: 0 0 24px; }
.pay-col p { margin-top: 28px; font-size: 24px; line-height: 1.4; color: var(--black60); }
.pay-col strong { font-weight: 600; color: #000; }


/* ===== FAQ ===== */
.faq-item::after { content: ''; display: block; height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.2) 0 16px, transparent 16px 32px); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; font-family: inherit; letter-spacing: inherit;
  text-align: left; color: #000; }
.faq-plus { line-height: 1; font-weight: 300; color: var(--ink);
  transition: transform 0.35s ease, color 0.2s ease; }
.faq-q:hover .faq-plus { color: var(--green); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p { color: var(--black60); }

/* desktop canvas scope */
.faq { left: 260px; top: 12531px; width: 1400px; }
.faq h2 { font-size: 80px; line-height: 1; text-align: center; }
.faq .faq-list { margin-top: 64px; }
.faq .faq-q { padding: 36px 0; font-size: 32px; font-weight: 500; min-height: 44px; }
.faq .faq-plus { font-size: 48px; }
.faq .faq-a p { padding: 4px 120px 36px 0; font-size: 24px; line-height: 1.4; }


/* ===== Footer ===== */
.faq .footer { width: 1920px; margin: 140px 0 0 -260px; background: var(--ink);
  padding: 88px 260px; display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.04em; }
.f-logo { width: 129px; height: 32px; filter: brightness(0) invert(1); margin-bottom: 28px; }
.f-name { font-size: 48px; line-height: 1; font-weight: 300; color: #fff; }
.f-role { margin-top: 14px; font-size: 24px; color: rgba(255,255,255,0.7); }
.f-links { display: flex; gap: 48px; }
.f-links a { font-size: 24px; line-height: 1; color: #fff; padding: 10px 0; transition: color 0.2s ease; }
.f-links a:hover { color: var(--yellow); }

/* paperclip */
.clip { position: absolute; }

/* ===== Animations ===== */
@keyframes rise {
  from { opacity: 0; translate: 0 28px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes breathe {
  0%, 100% { scale: 1; opacity: 0.82; }
  50%      { scale: 1.13; opacity: 1; }
}
@keyframes beam-reveal {
  from { scale: 0.1 0.6; }
  to   { scale: 1 1; }
}
@keyframes beam-fade {
  /* opacity ramps in on ease-in (see usage) so the rainbow appears dim and
     brightens to full only as it grows into its final position */
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spectral {
  /* subtle continuous hue drift: colours gently cycle back and forth across a
     small range, paired with a soft breathing scale/opacity pulse */
  0%, 100% { scale: 1 1;    filter: hue-rotate(-14deg) saturate(1);    opacity: 1; }
  25%      { scale: 1.02 1; filter: hue-rotate(6deg)   saturate(1.05); opacity: 0.93; }
  50%      { scale: 1.03 1; filter: hue-rotate(16deg)  saturate(1.1);  opacity: 0.88; }
  75%      { scale: 1.02 1; filter: hue-rotate(4deg)   saturate(1.05); opacity: 0.93; }
}

/* hero entrance cascade */
.hero-title > * { animation: rise 0.6s ease backwards; }
.hero-title > *:nth-child(1)  { animation-delay: 0.05s; }
.hero-title > *:nth-child(2)  { animation-delay: 0.1s; }
.hero-title > *:nth-child(3)  { animation-delay: 0.15s; }
.hero-title > *:nth-child(4)  { animation-delay: 0.2s; }
.hero-title > *:nth-child(5)  { animation-delay: 0.25s; }
.hero-title > *:nth-child(6)  { animation-delay: 0.3s; }
.hero-title > *:nth-child(7)  { animation-delay: 0.35s; }
.hero-title > *:nth-child(8)  { animation-delay: 0.4s; }
.hero-title > *:nth-child(9)  { animation-delay: 0.45s; }
.hero-title > *:nth-child(10) { animation-delay: 0.5s; }
.hero-sub { animation: rise 0.6s 0.6s ease backwards; }
.hero-btn { animation: rise 0.6s 0.7s ease backwards; }

/* idle motion */
.hero-star, .hero-glow { animation: breathe 5s ease-in-out infinite; }
.big-star {
  /* keep only the widening half (tip -> widest cross-section); the converging
     far half is what reads as a 4-point "diamond", so drop it permanently. The
     cut sits on the widest point, which rests on the canvas edge, so it stays a
     clean triangle at every scale of the entrance animation (not just at rest).
     The radial mask keeps the on-screen span (edge ~45.5%) fully opaque (solid to
     46%) so the resting rainbow is unchanged - vibrant right to the edge. Past the
     edge (off-screen at rest) it fades out along a rounded arc, giving a long, soft,
     ROUNDED end that only shows during the entrance, when the shrunk beam pulls that
     off-screen tail into view. clip-path is the hard-cut fallback; it now keeps a
     little of the star's natural taper (to 60%) then drops the far spike. */
  clip-path: inset(0 40% 0 0);
  -webkit-mask-image: radial-gradient(120% 78% at 0.5% 50%, #000 46%, transparent 60%);
          mask-image: radial-gradient(120% 78% at 0.5% 50%, #000 46%, transparent 60%);
  transform-origin: 0.5% 50%; /* the beam's thin tip, where the white prism star sits */
  animation: beam-reveal 1.1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards,
             beam-fade 1.1s 0.4s ease-in backwards,
             spectral 9s 1.6s ease-in-out infinite;
}
.sched-star-top { animation: breathe 6s ease-in-out infinite; }
.sched-star-bottom { animation: breathe 6s 3s ease-in-out infinite; }
.photo-star { animation: breathe 5s ease-in-out infinite; }

/* scroll reveal (class added by JS; no-JS users see everything) */
.reveal { opacity: 0; translate: 0 32px; transition: opacity 0.65s ease, translate 0.65s ease; }
.reveal.in { opacity: 1; translate: 0 0; }

/* micro-interactions */
.note { transition: scale 0.25s ease, box-shadow 0.25s ease; }
.note:hover { scale: 1.03; box-shadow: 0 16px 52px rgba(0, 16, 90, 0.28); }
.card { transition: translate 0.25s ease, box-shadow 0.25s ease; }
.card:hover { translate: 0 -6px; box-shadow: 0 20px 48px rgba(120, 100, 40, 0.14); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; translate: 0 0; }
}

/* ============ Responsive layouts (mobile-first, shown <=1024px) ============ */
.m-page { display: none; }

@media (max-width: 1024px) {
  .canvas-wrap { display: none; }
  .m-page { display: block; overflow-x: clip; background: var(--bg); }
}

.m-page { letter-spacing: -0.03em; }
.m-page .serif { letter-spacing: -0.06em; }

.m-star { display: inline-block; width: 15px; height: 15px; flex: 0 0 15px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C12 0 12.66 6.18 15.24 8.76C17.82 11.34 24 12 24 12C24 12 17.82 12.66 15.24 15.24C12.66 17.82 12 24 12 24C12 24 11.34 17.82 8.76 15.24C6.18 12.66 0 12 0 12C0 12 6.18 11.34 8.76 8.76C11.34 6.18 12 0 12 0Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C12 0 12.66 6.18 15.24 8.76C17.82 11.34 24 12 24 12C24 12 17.82 12.66 15.24 15.24C12.66 17.82 12 24 12 24C12 24 11.34 17.82 8.76 15.24C6.18 12.66 0 12 0 12C0 12 6.18 11.34 8.76 8.76C11.34 6.18 12 0 12 0Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.m-star-red { background: var(--red); }
.m-star-blue { background: var(--blue); }
.m-star-green { background: var(--green); }

.m-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 12px 28px;
  border-radius: 999px; font-size: 16px; letter-spacing: -0.03em;
  cursor: pointer; transition: background-color 0.18s ease, color 0.18s ease,
  border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

/* --- header --- */
.m-header {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 4px; padding: 12px 20px;
}
.m-header .m-logo { height: 28px; width: 113px; }
.m-header .m-cta { background: var(--red); color: #fff; padding: 10px 22px; }
.m-header .m-cta:hover { background: #d92310; }
.m-nav { width: 100%; display: flex; justify-content: center; gap: 6px; }
.m-nav a { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  min-height: 44px; padding: 6px 4px; font-size: 13px; }
.m-nav .m-star { width: 12px; height: 12px; flex-basis: 12px; }
@media (min-width: 768px) {
  .m-header { padding: 20px 32px; }
  .m-nav { width: auto; gap: 24px; order: 2; }
  .m-nav a { font-size: 16px; }
  .m-header .m-cta { order: 3; }
}

/* --- hero --- */
.m-hero { padding: 24px 20px 40px; animation: rise 0.6s ease backwards; }
.m-hero-title { display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: 6px; font-size: clamp(27px, 7vw, 44px); line-height: 1.18; }
.m-hero-title p { white-space: nowrap; padding-top: 2px; }
.m-hero-title .pill { padding: 1px 12px 6px; border-width: 1px; }
.m-hero-sub { margin-top: 24px; max-width: 24ch;
  font-size: clamp(18px, 4.6vw, 26px); line-height: 1.2; color: var(--black60); }
.m-hero-btn { margin-top: 24px; background: #fff; border: 3px solid var(--green); color: #000; padding: 12px 40px; }
.m-hero-btn:hover { background: var(--green); color: #fff; }
/* prism + light beam, composed like desktop: white star as prism, rainbow shoots right off-screen */
.m-hero { position: relative; }
.m-hero-art { position: relative; height: 280px; margin-top: 4px; pointer-events: none; z-index: 0; }
/* Triangle beam, same as desktop: tip pinned on the prism (left:18%, the star's
   center). Edge width = 165.7% of the art box + the 20px right-padding term (widest
   exactly on the viewport edge); x1.1 so the widest clears the edge by ~10% and the
   mask feather lands off-screen while almost the whole rainbow stays on screen.
   tip sits 0.5% in from the element's left, so translate(-0.5%) drops it onto 18%. */
.m-hero-art .m-big { position: absolute; max-width: none;
  left: 18%; top: 50%; width: calc(182.3% + 44px); height: auto;
  clip-path: inset(0 40% 0 0); /* keep a little of the natural taper (to 60%), drop the far spike */
  -webkit-mask-image: radial-gradient(120% 78% at 0.5% 50%, #000 46%, transparent 60%);
          mask-image: radial-gradient(120% 78% at 0.5% 50%, #000 46%, transparent 60%); /* vibrant to edge at rest; long soft rounded end shows only during entrance */
  transform: translate(-0.5%, -50%);
  transform-origin: 0.5% 50%;
  animation: beam-reveal 1.1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) backwards,
             beam-fade 1.1s 0.3s ease-in backwards,
             spectral 9s 1.5s ease-in-out infinite; }
.m-hero-art .m-prism { position: absolute; width: 224px; height: 224px; left: 18%; top: 50%;
  translate: -50% -50%; animation: breathe 5s ease-in-out infinite; }
/* keep following sections painting above the beam bleed */
.m-why, .m-aud { position: relative; z-index: 1; }
@media (min-width: 768px) {
  .m-hero { padding: 48px 32px 56px; }
  .m-hero-art { height: 360px; margin-top: 12px; }
  /* prism moves to 25% and padding grows to 32px; re-derived edge width x1.1 overshoot */
  .m-hero-art .m-big { left: 25%; width: calc(166.7% + 71px); transform: translate(-0.5%, -50%); }
  .m-hero-art .m-prism { width: 284px; height: 284px; left: 25%; }
}

/* --- shared --- */
.m-section-title { font-size: clamp(30px, 6.5vw, 48px); line-height: 1.1; text-align: center; }

/* --- why --- */
.m-why { padding: 48px 20px 64px; text-align: center; }
.m-why-intro { margin: 14px auto 0; max-width: 560px; font-size: clamp(16px, 4vw, 20px); line-height: 1.35; }
.m-why-card { margin: 32px auto 0; max-width: 640px; background: #fff; border-radius: 16px;
  padding: 32px 22px; box-shadow: 0 0 46px rgba(252, 133, 76, 0.55); }
.m-why-item h3 { font-size: clamp(23px, 5.4vw, 32px); line-height: 1.15; color: var(--ink); }
.m-why-item p { margin-top: 10px; font-size: 15px; line-height: 1.4; color: var(--ink); }
.m-why-card .m-dash { height: 1px; margin: 24px 0;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.2) 0 10px, transparent 10px 20px); }

/* --- program --- */
.m-program { padding: 0 20px 64px; text-align: center; }
.m-program-intro { margin: 14px auto 0; max-width: 480px; font-size: clamp(16px, 4vw, 20px); line-height: 1.35; color: var(--black60); }
.m-program-list { margin: 32px auto 0; max-width: 640px; text-align: left; }
.m-program-list .faq-q { padding: 20px 0; font-size: clamp(16px, 4.2vw, 20px); font-weight: 500; min-height: 44px; }
.m-program-list .faq-plus { font-size: 30px; }
.m-program-list .faq-a p { padding: 2px 0 20px; font-size: 15px; line-height: 1.45; }
@media (min-width: 768px) {
  .m-program-list .faq-q { font-size: 20px; padding: 22px 0; }
  .m-program-list .faq-a p { font-size: 16px; }
}

/* --- audience --- */
.m-aud { position: relative; padding: 72px 20px 88px;
  background:
    radial-gradient(75% 34% at 50% 47%, #fff0f2 0%, rgba(255,240,242,0) 55%),
    radial-gradient(95% 50% at 50% 50%, #fce8a6 0%, #f7dd80 42%, #f2e39b 68%, rgba(250,246,237,0) 94%);
}
.m-notes { margin: 30px auto 0; max-width: 860px; display: grid; grid-template-columns: 1fr; gap: 26px; }
.m-note { position: relative; background: #fff; border-radius: 10px;
  padding: 52px 22px 22px; box-shadow: 0 10px 32px rgba(0, 16, 90, 0.16); }
.m-note h3 { font-size: 22px; color: var(--ink); }
.m-note p { margin-top: 8px; font-size: 15px; line-height: 1.4; color: var(--black60); }
.m-note .m-clip { position: absolute; top: -26px; left: 6px; width: 84px; height: 83px; }
@media (min-width: 560px) {
  .m-notes { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .m-note:nth-child(odd) { rotate: -1.5deg; }
  .m-note:nth-child(even) { rotate: 1.5deg; }
}

/* --- schedule --- */
.m-sched { padding: 40px 14px 64px; }
.m-sched-card { position: relative; max-width: 720px; margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #f3f9ea 100%);
  border-radius: 20px; padding: 44px 20px 56px;
  box-shadow: 0 0 40px rgba(205, 228, 158, 0.9); }
.m-sched-card .m-clip { position: absolute; top: -20px; left: 22px; width: 84px; height: 83px; }
.m-sched-star { display: block; width: 56px; height: 56px; margin: 0 auto 14px;
  animation: breathe 6s ease-in-out infinite; }
.m-sched-star-end { margin: 28px auto 0; }
.m-sched-title { font-size: clamp(26px, 6vw, 36px); text-align: center; color: var(--ink);
  padding-bottom: 18px; border-bottom: 1px dashed rgba(0,0,0,0.25); }
.m-sched-row { padding: 18px 2px; border-bottom: 1px dashed rgba(0,0,0,0.25); }
.m-when { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.m-when .d { font-size: 20px; color: var(--ink); }
.m-when .t { font-size: 13px; color: var(--black60); }
.m-sched-row h3 { margin-top: 6px; font-size: 22px; color: var(--ink); }
.m-sched-row p { margin-top: 6px; font-size: 14px; line-height: 1.45; color: var(--black60); }
@media (min-width: 768px) {
  .m-sched-card { padding: 52px 40px 64px; }
  .m-sched-row { display: grid; grid-template-columns: 170px 1fr; gap: 4px 24px; }
  .m-when { display: block; }
  .m-when .t { display: block; margin-top: 4px; }
  .m-sched-row h3 { margin-top: 0; grid-column: 2; grid-row: 1; }
  .m-sched-row p { grid-column: 2; }
}

/* --- about --- */
.m-about { position: relative; padding: 110px 20px 200px; text-align: center;
  background: linear-gradient(180deg,
    rgba(35,133,217,0) 0%, rgba(35,133,217,0.55) 16%, #2385d9 30%,
    #2385d9 70%, rgba(35,133,217,0.55) 84%, rgba(35,133,217,0) 100%); }
.m-about-title { font-size: clamp(28px, 6.8vw, 44px); line-height: 1.15; color: #fff; }
.m-about-photo { position: relative; width: min(320px, 82%); aspect-ratio: 558 / 652; margin: 28px auto 0; }
.m-about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.m-about-photo .m-photo-star { position: absolute; left: 12px; bottom: 12px; width: 58px; height: 58px;
  animation: breathe 5s ease-in-out infinite; }
.m-role { position: relative; display: inline-block; background: #fff; border-radius: 8px;
  padding: 34px 24px 16px; margin-top: -26px; rotate: -2deg;
  box-shadow: 0 10px 32px rgba(0, 16, 90, 0.16); }
.m-role h3 { font-size: 18px; color: var(--ink); }
.m-role .m-clip { position: absolute; top: -18px; left: -4px; width: 72px; height: 71px; }
.m-about-text { margin: 28px auto 0; max-width: 560px; text-align: left;
  font-size: 16px; line-height: 1.5; color: #fff; }

/* --- pricing --- */
.m-pricing { padding: 48px 20px 80px; max-width: 1000px; margin: 0 auto; }
.m-cards { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 22px; }
.m-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 20px;
  padding: 28px 24px; box-shadow: 0 8px 28px rgba(120,100,40,0.08); }
.m-card.featured { border: 3px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue)) border-box; }
.m-card-label { font-size: 14px; color: var(--red); margin-bottom: 10px; }
.m-card-name { font-size: 24px; }
.m-price { margin-top: 14px; display: flex; align-items: flex-start; gap: 14px; }
.m-price-now { font-size: 46px; line-height: 1; }
.m-price-old { margin-top: 6px; font-size: 22px; color: rgba(0,0,0,0.4); text-decoration: line-through; }
.m-features { margin-top: 20px; list-style: none; padding: 0; }
.m-features li { display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; font-size: 15px; line-height: 1.35; }
.m-features .m-star { margin-top: 2px; }
.m-card .m-btn { margin-top: 20px; width: 100%; background: #fff; border: 1px solid #000; color: #000; }
.m-card .m-btn:hover { background: #000; color: #fff; }
.m-card.featured .m-btn:hover {
  background: linear-gradient(120deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue));
  border-color: transparent; color: #fff; }
@media (min-width: 700px) {
  .m-cards { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); align-items: start; }
}

/* --- payment --- */
.m-pay { padding: 0 20px 88px; max-width: 1000px; margin: 0 auto; text-align: center; }
.m-pay-note { font-size: 14px; color: var(--black60); margin-bottom: 48px; }
.m-pay-cols { margin-top: 30px; display: grid; grid-template-columns: 1fr; gap: 30px; }
.m-pay-col h3 { display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 24px; line-height: 1.1; color: var(--ink); }
.m-pay-col p { margin-top: 10px; font-size: 15px; line-height: 1.45; color: var(--black60); }
.m-pay-col strong { font-weight: 600; color: #000; }
@media (min-width: 700px) {
  .m-pay-cols { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
}

/* --- faq --- */
.m-faq { padding: 0 20px 96px; max-width: 860px; margin: 0 auto; }
.m-faq h2 { margin-bottom: 8px; }
.m-faq .faq-q { padding: 18px 0; font-size: 17px; font-weight: 500; min-height: 44px; letter-spacing: -0.03em; }
.m-faq .faq-plus { font-size: 30px; }
.m-faq .faq-a p { padding: 2px 36px 18px 0; font-size: 15px; line-height: 1.45; }
@media (min-width: 768px) {
  .m-faq .faq-q { font-size: 20px; padding: 22px 0; }
  .m-faq .faq-a p { font-size: 16px; }
}

/* --- footer --- */
.m-footer { background: var(--ink); padding: 48px 24px 56px; text-align: center; }
.m-footer .f-logo { width: 100px; height: 25px; margin: 0 auto 22px; transform: translateX(19px); }
.m-footer .f-name { font-size: 30px; }
.m-footer .f-role { margin-top: 8px; font-size: 15px; }
.m-footer .f-links { margin-top: 28px; flex-direction: column; gap: 4px; align-items: center; }
.m-footer .f-links a { font-size: 16px; min-height: 44px; display: inline-flex; align-items: center; }
@media (min-width: 768px) {
  .m-footer { display: flex; justify-content: space-between; align-items: center;
    text-align: left; padding: 56px 32px; }
  .m-footer .f-logo { margin: 0 0 20px; }
  .m-footer .f-links { margin-top: 0; flex-direction: row; gap: 28px; }
}




