@font-face {
  font-family: Pretendard;
  src: url("./fonts/jip-pretendard-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("./fonts/jip-pretendard-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Pretendard;
  src: url("./fonts/jip-pretendard-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

.jip-detail {
  --jip-accent: #c96442;
  --jip-accent-strong: #c9532f;

  /* Button hover, calendar day states, and the session/date card used to be
     hardcoded to this terracotta family, so they stayed terracotta on every
     course no matter what --jip-accent said. They are tokens now. The defaults
     below are exactly the literals they replaced, so a variant that does not
     override them renders unchanged; brandfilm is currently the only one that
     does. The other variants still inherit terracotta chrome and should get
     their own palettes too. */
  --jip-accent-hover: #b94f30;
  --jip-accent-soft: rgba(201, 100, 66, .08);
  --jip-calendar-session: #f0e5d2;
  --jip-calendar-selected: #df6848;
  --jip-session-border: #df6848;
  --jip-session-bg: #fffaf5;
  --jip-session-chip-bg: #fff0e8;
  --jip-session-chip-text: #d95d3d;
  --jip-sheet-session-bg: rgba(201, 100, 66, .05);
  --jip-sheet-session-text: #6e2a13;

  --jip-ink: #1d1d1f;
  --jip-muted: #6e6e73;
  --jip-line: #e6dfd8;
  --jip-cream: #f5f4ed;
  width: 100%;
  min-width: 320px;
  background: #fff;
  color: var(--jip-ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  word-break: keep-all;
}

.jip-detail *,
.jip-detail *::before,
.jip-detail *::after {
  box-sizing: border-box;
}

.jip-detail a {
  color: inherit;
  text-decoration: none;
}

.jip-detail button {
  font: inherit;
}

.jip-detail .jip-detail__main {
  min-height: 100vh;
  background: #fff;
}

.jip-detail .jip-detail__hero {
  --jip-hero-bg: var(--jip-cream);
  --jip-hero-title: #141413;
  --jip-hero-title-em: var(--jip-accent);
  --jip-hero-text: #5e5d59;
  --jip-hero-rule: rgba(94, 93, 89, .4);
  --jip-hero-badge-bg: var(--jip-accent);
  --jip-hero-badge-text: #fff;
  --jip-hero-cta-bg: var(--jip-accent);
  --jip-hero-cta-text: #fff;
  --jip-hero-cta-hover: var(--jip-accent-hover);
  --jip-hero-cta-outline-text: var(--jip-accent-strong);
  --jip-hero-cta-outline-hover: var(--jip-accent-soft);
  --jip-hero-spec-icon-filter: none;
  position: relative;
  height: 600px;
  overflow: hidden;
  container-type: inline-size;
  background: var(--jip-hero-bg);
}

.jip-detail .jip-detail__hero-stage {
  position: absolute;
  top: 0;
  left: calc(50% + (100vw - 100%) / 2);
  width: 1920px;
  height: 600px;
  transform: translateX(-50%);
  overflow: hidden;
}

.jip-detail .jip-detail__hero-blob,
.jip-detail .jip-detail__hero-mobile-ellipse {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
}

.jip-detail .jip-detail__hero-blob--1 {
  left: 1241px;
  top: -323px;
  width: 835px;
  height: 866px;
}

.jip-detail .jip-detail__hero-blob--2 {
  left: 748px;
  top: 332px;
  width: 559px;
  height: 558px;
}

.jip-detail .jip-detail__hero-blob--3 {
  left: 627px;
  top: -157px;
  width: 432px;
  height: 364px;
}

.jip-detail .jip-detail__hero-blob--4 {
  left: -225px;
  top: 174px;
  width: 596px;
  height: 620px;
}

.jip-detail .jip-detail__hero-mobile-ellipse {
  display: none;
}

.jip-detail .jip-detail__hero-copy {
  position: absolute;
  z-index: 2;
  /* Stage coordinates. The stage is a 1920px canvas centred on the viewport, so
     400px puts the copy's left edge exactly on the 1120px content shell for any
     viewport from 1160px up — the hero and the body column stay aligned instead
     of drifting apart, and the copy never touches the edge at 1280px. */
  left: 400px;
  top: 56px;
  width: 560px;
}

.jip-detail .jip-detail__hero-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.jip-detail .jip-detail__hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--jip-hero-badge-bg);
  color: var(--jip-hero-badge-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.jip-detail .jip-detail__hero h1 {
  width: 560px;
  margin: 20px 0 0;
  color: var(--jip-hero-title);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.2px;
}

.jip-detail .jip-detail__hero h1 em {
  color: var(--jip-hero-title-em);
  font-style: normal;
}

.jip-detail .jip-detail__hero-description {
  width: 540px;
  margin: 22px 0 0;
  color: var(--jip-hero-text);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.3px;
}

.jip-detail .jip-detail__hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.jip-detail .jip-detail__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--jip-accent);
  border-radius: 8px;
  background: var(--jip-accent);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.jip-detail .jip-detail__button:hover {
  background: var(--jip-accent-hover);
  transform: translateY(-1px);
}

.jip-detail .jip-detail__button--outline {
  background: transparent;
  color: var(--jip-accent-strong) !important;
}

.jip-detail .jip-detail__button--outline:hover {
  background: var(--jip-accent-soft);
}

.jip-detail .jip-detail__button--wide {
  width: 100%;
}

.jip-detail .jip-detail__hero .jip-detail__button {
  border-color: var(--jip-hero-cta-bg);
  background: var(--jip-hero-cta-bg);
  color: var(--jip-hero-cta-text) !important;
}

.jip-detail .jip-detail__hero .jip-detail__button:hover {
  background: var(--jip-hero-cta-hover);
}

.jip-detail .jip-detail__hero .jip-detail__button--outline {
  background: transparent;
  color: var(--jip-hero-cta-outline-text) !important;
}

.jip-detail .jip-detail__hero .jip-detail__button--outline:hover {
  background: var(--jip-hero-cta-outline-hover);
}

.jip-detail .jip-detail__hero-specs {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--jip-hero-text);
}

.jip-detail .jip-detail__hero-specs li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-right: 1px solid var(--jip-hero-rule);
  font-size: 14px;
  line-height: 18px;
}

.jip-detail .jip-detail__hero-specs li:first-child {
  padding-left: 0;
}

.jip-detail .jip-detail__hero-specs li:last-child {
  border-right: 0;
}

.jip-detail .jip-detail__hero-specs img {
  width: 18px;
  height: 18px;
  filter: var(--jip-hero-spec-icon-filter, none);
}

.jip-detail .jip-detail__hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jip-detail .jip-detail__hero-node {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: none;
  height: auto;
  animation: jip-hero-float 6s ease-in-out infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-node--chat { left: 909px; top: 358px; width: 125px; animation-delay: -.4s; }
.jip-detail .jip-detail__hero-node--skills { left: 1072px; top: 219px; width: 140px; animation-delay: -1.7s; }
.jip-detail .jip-detail__hero-node--code { left: 1125px; top: 417px; width: 110px; animation-delay: -2.6s; }
.jip-detail .jip-detail__hero-node--connectors { left: 1455px; top: 162px; width: 105px; animation-delay: -1.1s; }
.jip-detail .jip-detail__hero-node--crab { left: 1250px; top: 310px; width: 323px; animation-delay: -3.2s; }

@keyframes jip-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes jip-hero-claude-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, calc(var(--jip-hero-float-y, 12px) * -1), 0); }
  72% { transform: translate3d(0, calc(var(--jip-hero-float-y, 12px) * .18), 0); }
}

/*
 * Between the mobile hero (<=860px) and the full desktop hero (>=1280px) the
 * stage used to collapse to 100% while its contents kept their 1920px canvas
 * coordinates. The art then sat entirely outside the visible box and the 600px
 * hero was left mostly empty. Scale the intact 1280px composition instead.
 * `:has()` keeps this to the stage-based heroes. The admaker video hero and the
 * mkt-agent canvas hero carry their own treatments for this band.
 */
@media (min-width: 861px) and (max-width: 1279px) {
  .jip-detail .jip-detail__hero:has(.jip-detail__hero-stage) {
    height: calc(46.875vw - 15px);
  }

  .jip-detail .jip-detail__hero:has(.jip-detail__hero-stage) .jip-detail__hero-stage {
    left: 50%;
    width: 1920px;
    transform: translateX(-50%) scale(calc((100vw - 32px) / 1280px));
    transform-origin: top center;
  }
}

.jip-detail .jip-detail__hero--mkt-agent {
  --jip-hero-title: #fff;
  --jip-hero-title-em: #6ad1ff;
  --jip-hero-text: rgba(255, 255, 255, .82);
  --jip-hero-rule: rgba(255, 255, 255, .28);
  --jip-hero-badge-bg: #6ad1ff;
  --jip-hero-badge-text: #121212;
  --jip-hero-cta-bg: #387eff;
  --jip-hero-cta-text: #fff;
  --jip-hero-cta-hover: #2b68d8;
  --jip-hero-cta-outline-text: #6ad1ff;
  --jip-hero-cta-outline-hover: rgba(106, 209, 255, .14);
  --jip-hero-spec-icon-filter: brightness(0) invert(1);
}

.jip-detail .jip-detail__hero--mkt-agent {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, #00459a 0%, #001734 100%);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__texture {
  position: absolute;
  inset: 0;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__texture::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1142px;
  height: 2029.533px;
  background: url("./hero/hero-bg-desktop.png") center / 100% 100% no-repeat;
  content: "";
  opacity: .6;
  transform: translate(-50%, -50%) rotate(90deg);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__noise {
  position: absolute;
  top: 302px;
  left: 50%;
  width: 1138px;
  height: 1980px;
  background: url("./hero/hero-noise-desktop.png") center / cover no-repeat;
  mix-blend-mode: overlay;
  opacity: .4;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__content {
  position: absolute;
  z-index: 2;
  top: 90px;
  left: 50%;
  width: 1230px;
  height: 418px;
  transform: translateX(-50%);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badges {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 39px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.5;
  white-space: nowrap;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badge--primary {
  color: #121212;
  background: #6ad1ff;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badge--secondary {
  border: 2px solid rgba(217, 231, 255, .8);
  color: #fff;
  background: linear-gradient(90deg, rgba(164, 196, 255, .4), rgba(86, 133, 255, .32));
  box-shadow: 0 8px 30px rgba(122, 166, 255, .12);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__eyebrow {
  position: absolute;
  top: 55px;
  left: 0;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 30px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__title {
  position: absolute;
  top: 101px;
  left: 0;
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1.25;
  white-space: nowrap;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__title span {
  color: #6ad1ff;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__description {
  position: absolute;
  top: 358px;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 30px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__description strong {
  color: #fff;
  font-weight: 700;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile {
  display: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module {
  position: absolute;
  display: block;
  max-width: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual .jip-hero-mkt__module {
  max-width: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module img {
  position: absolute;
  display: block;
  max-width: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--graph {
  top: 176.315px;
  left: calc(50% + 117px);
  width: 538.579px;
  height: 270px;
  overflow: hidden;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--graph > img {
  top: -40px;
  left: -40px;
  width: 619.5px;
  height: 351.5px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--graph::after {
  position: absolute;
  z-index: 2;
  top: 173.685px;
  left: 247px;
  width: 101px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  content: "";
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--counter {
  top: 143px;
  left: calc(50% + 511px);
  width: 226px;
  height: 60.679px;
  overflow: hidden;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--counter > img {
  top: -4px;
  left: -4px;
  width: 234px;
  height: 69px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--pie {
  top: 294.315px;
  left: calc(50% + 78.041px);
  width: 243.959px;
  height: 191px;
  overflow: hidden;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--pie > img {
  top: -48px;
  left: -47px;
  width: 309.5px;
  height: 263.5px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--claude {
  top: 91px;
  left: calc(50% + 16px);
  width: 162px;
  height: 168px;
  overflow: visible;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--anti {
  top: 330.58px;
  left: calc(50% + 519.01px);
  width: 244.557px;
  height: 242.6px;
  overflow: visible;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__glow,
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__art {
  max-width: none;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__glow {
  z-index: 0;
  opacity: .5;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__art {
  z-index: 1;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__glow--claude {
  top: -30.811px;
  left: -40.5px;
  width: 232.697px;
  height: 231.823px;
  filter: blur(20px);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__art--claude {
  top: 0;
  left: 0;
  width: 162px;
  height: 168px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__glow--anti,
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__art--anti {
  top: 34.676px;
  left: 32.466px;
  width: 179.625px;
  height: 173.248px;
  transform: rotate(-32.47deg);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__glow--anti {
  filter: blur(18.57px);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-top {
  top: 289px;
  left: calc(50% + 701px);
  width: 45px;
  height: 50px;
  overflow: hidden;
  mix-blend-mode: overlay;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-bottom {
  top: 469px;
  left: calc(50% + 27px);
  width: 42px;
  height: 46px;
  overflow: hidden;
  mix-blend-mode: overlay;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__sparkle {
  position: absolute;
  display: block;
  overflow: hidden;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__sparkle--large {
  top: 8.475px;
  left: 0;
  width: 36.441px;
  height: 41.525px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__sparkle--large img {
  top: -54.468px;
  left: 0;
  width: 113.568px;
  height: 96.218px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__sparkle--small {
  top: 0;
  left: 27.12px;
  width: 17.797px;
  height: 22.034px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__sparkle--small img {
  top: 5.344px;
  left: 2.2px;
  width: 80.335px;
  height: 69.479px;
  transform: scaleX(-1);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-bottom .jip-hero-mkt__sparkle--large {
  top: 7.8px;
  left: 7.8px;
  width: 33.525px;
  height: 38.203px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-bottom .jip-hero-mkt__sparkle--large img {
  top: -50.112px;
  left: 0;
  width: 104.481px;
  height: 88.506px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-bottom .jip-hero-mkt__sparkle--small {
  top: 0;
  left: 0;
  width: 16.373px;
  height: 20.271px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__module--accent-bottom .jip-hero-mkt__sparkle--small img {
  top: 4.917px;
  left: 2.024px;
  width: 73.91px;
  height: 63.902px;
  transform: scale(-1);
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 12px 18px;
  border: 2px solid rgba(217, 231, 255, .8);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(270deg, #387eff, rgba(101, 155, 255, .4));
  box-shadow: inset 0 -2px 12px rgba(175, 200, 255, .2), inset 0 2px 8px rgba(255, 255, 255, .7), 0 0 20px rgba(77, 124, 254, .4);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 20px;
  text-shadow: 0 0 20px rgba(77, 124, 254, .4);
  white-space: nowrap;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--crm {
  top: 154px;
  left: calc(50% + 253px);
  width: 116px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--performance {
  top: 264px;
  left: calc(50% + 548px);
  width: 135px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--content {
  top: 462px;
  left: calc(50% + 536px);
  width: 121px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--growth {
  top: 465px;
  left: calc(50% + 222px);
  width: 121px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--solo {
  top: 173.685px;
  left: 247px;
  width: 101px;
}
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__label--brand {
  top: 268px;
  left: calc(50% + 61px);
  width: 121px;
}
@media (max-width: 1279px) {
.jip-detail .jip-detail__hero--mkt-agent {
    width: 100%;
    height: auto;
    min-height: 161cqw;
    margin: 0;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual.jip-hero-mkt__visual--mobile {
    inset: 15cqw auto auto 0;
    width: 375px;
    height: 560px;
    transform: scale(calc(100cqw / 375px));
    transform-origin: top left;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__texture {
    mix-blend-mode: plus-lighter;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__texture::before {
    top: -3.55px;
    left: calc(50% + 1.13px);
    width: 378.75px;
    height: 673.104px;
    background-image: url("./hero/hero-bg-mobile.png");
    opacity: .6;
    transform: translateX(-50%) rotate(180deg);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__noise {
    top: 0;
    left: calc(50% + 269.5px);
    width: 974px;
    height: 560px;
    background: none;
    transform: translateX(-50%);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__noise::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 560px;
    height: 974px;
    background: url("./hero/hero-noise-mobile.png") center / cover no-repeat;
    content: "";
    opacity: .08;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__content {
    top: 27px;
    left: 24px;
    width: 343px;
    height: 226px;
    transform: none;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badges {
    gap: 6px;
    height: 26px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badge {
    height: 26px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: -.01em;
    line-height: 18px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__badge--secondary {
    border-width: 1px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__eyebrow {
    top: 36px;
    font-size: 12px;
    letter-spacing: -.04em;
    line-height: 20px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__title {
    top: 67px;
    font-size: 30px;
    letter-spacing: -.065em;
    line-height: 1.27;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__description {
    top: 192px;
    font-size: 12px;
    letter-spacing: -.045em;
    line-height: 18px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--desktop {
    display: none;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile {
    display: block;
    width: 375px;
    height: 560px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--graph {
    top: 330px;
    left: 19px;
    width: 278.494px;
    height: 139.614px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--graph > img {
    top: -34.5px;
    left: -20.5px;
    width: 347.5px;
    height: 265px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--graph::after {
    top: 107px;
    left: 143px;
    width: 74px;
    height: 30px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--counter {
    top: 308px;
    left: 217px;
    width: 141.74px;
    height: 38.056px;
    overflow: hidden;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--counter > img {
    top: -2.5px;
    left: -2.5px;
    width: 147px;
    height: 43.5px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--pie {
    top: 398.62px;
    left: 19px;
    width: 143px;
    height: 111.957px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--pie > img {
    top: -10.5px;
    left: -10.5px;
    width: 164.5px;
    height: 137px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--claude {
    top: 280px;
    left: 10.35px;
    width: 92.725px;
    height: 96.519px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__art--claude {
    top: 0;
    left: 0;
    width: 92.725px;
    height: 96.519px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__glow--claude {
    top: -17.7px;
    left: -23.181px;
    width: 133.176px;
    height: 133.176px;
    filter: blur(11.469px);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__module--anti {
    top: 408.38px;
    left: 214.62px;
    width: 134.79px;
    height: 133.713px;
    overflow: visible;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile > .jip-hero-mkt__module--anti {
    transform: none;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile > .jip-hero-mkt__module--anti {
    top: 427.492px;
    left: 232.512px;
    width: 99.003px;
    height: 95.489px;
    transform: rotate(-32.47deg);
    transform-origin: center;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__art--anti {
    top: 0;
    left: 0;
    width: 99.003px;
    height: 95.489px;
    transform: none;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__glow--anti {
    top: 0;
    left: 0;
    width: 99.003px;
    height: 95.489px;
    transform: none;
    filter: blur(11.469px);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label {
    height: 28px;
    padding: 6px 8px;
    border-width: 1px;
    box-shadow: inset 0 -1px 6px rgba(175, 200, 255, .2), inset 0 1px 4px rgba(255, 255, 255, .7), 0 0 10px rgba(77, 124, 254, .4);
    font-size: 11px;
    letter-spacing: -.02em;
    line-height: 14px;
    text-shadow: 0 0 9px rgba(77, 124, 254, .4);
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label--crm {
    top: 316px;
    left: 101px;
    width: 75px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label--performance {
    top: 366px;
    left: 281px;
    width: 101px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label--content {
    top: 496px;
    left: 258px;
    width: 101px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label--brand {
    top: 385px;
    left: 29px;
    width: 75px;
  }
.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--mobile .jip-hero-mkt__label--solo {
    top: 108px;
    left: 145px;
    width: 75px;
  }
}

.jip-detail .jip-detail__hero--mkt-agent .jip-hero-mkt__visual--desktop {
  transform: scale(.82);
  transform-origin: 64% 46%;
}

.jip-detail .jip-detail__hero--mkt-agent .jip-detail__hero-copy {
  position: relative;
  z-index: 3;
  left: auto;
  top: auto;
  width: 560px;
  margin: 0 0 0 max(40px, calc(50vw - 640px));
  padding-top: 56px;
}

@media (max-width: 860px) {
  .jip-detail .jip-detail__hero--mkt-agent .jip-detail__hero-copy {
    width: 80cqw;
    margin-left: 6.4cqw;
    padding-top: 7.2cqw;
  }
}

/* The video hero is shared structure with a per-course palette. The scrim that
   the copy sits on is each course's own key colour, so it is a token rather
   than a literal — see the brandfilm block below for the second consumer.
   --jip-hero-scrim-rgb is raw channels because the gradients need both a solid
   and a zero-alpha stop from the same colour. */
.jip-detail .jip-detail__hero--admaker {
  --jip-hero-scrim-rgb: 117, 29, 53;
  --jip-hero-band-bg: #fff8fb;
  --jip-hero-bg: #17191b;
  --jip-hero-title: #fff;
  --jip-hero-title-em: #dcedc7;
  --jip-hero-text: rgba(255, 255, 255, .8);
  --jip-hero-rule: rgba(255, 255, 255, .28);
  --jip-hero-badge-bg: #fff;
  --jip-hero-badge-text: #751d35;
  --jip-hero-cta-bg: #dcedc7;
  --jip-hero-cta-text: #17191b;
  --jip-hero-cta-hover: #c9e0ab;
  --jip-hero-cta-outline-text: #dcedc7;
  --jip-hero-cta-outline-hover: rgba(220, 237, 199, .14);
  --jip-hero-spec-icon-filter: brightness(0) invert(1);
}

/* brandfilm reuses the admaker video-hero structure and overrides only the
   palette: key colour #5832b8, with #b69aff as the on-dark accent the course
   body already uses. The CTA goes white-on-purple because a purple button
   would disappear into the purple scrim. */
.jip-detail .jip-detail__hero--brandfilm {
  /* The scrim is near-black, NOT the key colour. admaker puts its maroon here,
     but this course's own hero fade is #0b0216 (aiers-brandfilm-hero__fade), so
     the key purple belongs on the accents — badge text, buttons, tabs, price —
     and the video sits on black. */
  --jip-hero-scrim-rgb: 11, 2, 22;
  --jip-hero-band-bg: #f7f4ff;
  --jip-hero-bg: #0b0216;
  --jip-hero-title-em: #b69aff;
  --jip-hero-badge-text: #5832b8;
  --jip-hero-cta-bg: #fff;
  --jip-hero-cta-text: #5832b8;
  --jip-hero-cta-hover: #ede7ff;
  --jip-hero-cta-outline-text: #fff;
  --jip-hero-cta-outline-hover: rgba(255, 255, 255, .14);
}

/* acting reuses the same admaker video-hero structure. Palette comes straight
   off the Figma hero (157:11745): the scrim is the near-black #010818 the
   design fades the rice-paddy stillcut into, the key colour is the badge green
   #17a868, and #37cf8c is the on-dark accent the headline emphasis uses. Like
   brandfilm the scrim is NOT the key colour, so the green lives on the accents
   and the CTA goes green-on-black rather than white-on-green. */
.jip-detail .jip-detail__hero--acting {
  --jip-hero-scrim-rgb: 1, 8, 24;
  --jip-hero-band-bg: #f2fbf6;
  --jip-hero-bg: #17191b;
  --jip-hero-title-em: #37cf8c;
  --jip-hero-badge-text: #0f7a4c;
  --jip-hero-cta-bg: #37cf8c;
  --jip-hero-cta-text: #06251a;
  --jip-hero-cta-hover: #2bb87a;
  --jip-hero-cta-outline-text: #37cf8c;
  --jip-hero-cta-outline-hover: rgba(55, 207, 140, .14);
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__media {
  position: absolute;
  inset: 0;
  width: 100%;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(50% + 260px);
  height: 600px;
  background: linear-gradient(268.884deg, rgba(var(--jip-hero-scrim-rgb), 0) 5.9085%, rgb(var(--jip-hero-scrim-rgb)) 22.194%);
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__poster,
.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__video {
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  width: 1068px;
  height: 601px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .2;
  background: url("./hero/noise.webp") center / cover;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  width: min(1280px, calc(100vw - 160px));
  height: 100%;
  margin: 0 0 0 max(40px, calc(50vw - 640px));
  padding-top: 56px;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-copy {
  position: static;
  width: 560px;
}

.jip-detail .jip-detail__hero--admaker h1 {
  width: 560px;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-description {
  width: 560px;
}

.jip-detail[data-jip-variant="vibecoding"] {
  --jip-accent: #c96442;
  --jip-accent-strong: #b8532f;
}

.jip-detail[data-jip-variant="admaker"] {
  --jip-accent: #751d35;
  --jip-accent-strong: #5f1729;
}

.jip-detail[data-jip-variant="brandfilm"] {
  --jip-accent: #5832b8;
  --jip-accent-strong: #472899;
  --jip-accent-hover: #472899;
  --jip-accent-soft: rgba(88, 50, 184, .08);
  --jip-calendar-session: #e2d9f7;
  --jip-calendar-selected: #5832b8;
  --jip-session-border: #5832b8;
  --jip-session-bg: #faf8ff;
  --jip-session-chip-bg: #ede7ff;
  --jip-session-chip-text: #5832b8;
  --jip-sheet-session-bg: rgba(88, 50, 184, .05);
  --jip-sheet-session-text: #2e1a5c;
}

/* acting: key green #17a868 from the Figma hero badge. #17a868 on white is a
   3.4:1 fill, fine for buttons and chips but not for small body text, so the
   text-weight tokens (chip text, sheet text) use the darker steps. */
.jip-detail[data-jip-variant="acting"] {
  --jip-accent: #17a868;
  --jip-accent-strong: #0f7a4c;
  --jip-accent-hover: #128b56;
  --jip-accent-soft: rgba(23, 168, 104, .08);
  --jip-calendar-session: #d6f3e6;
  --jip-calendar-selected: #17a868;
  --jip-session-border: #17a868;
  --jip-session-bg: #f5fdf9;
  --jip-session-chip-bg: #dcf7ea;
  --jip-session-chip-text: #0f7a4c;
  --jip-sheet-session-bg: rgba(23, 168, 104, .05);
  --jip-sheet-session-text: #0c4d34;
}

/* pie: the Figma hero is a magenta field (Figma token `main` = #d30277) with a lime pop on the
   emphasised word. #ff008c is the display magenta the body sections use; it is
   only 3.7:1 on white, so the chrome takes the deeper #d30277 (5.2:1) and the
   text-weight tokens go darker still. */
.jip-detail[data-jip-variant="pie"] {
  --jip-accent: #d30277;
  --jip-accent-strong: #a80059;
  --jip-accent-hover: #b0005f;
  --jip-accent-soft: rgba(211, 2, 119, .08);
  --jip-calendar-session: #fbdcec;
  --jip-calendar-selected: #d30277;
  --jip-session-border: #d30277;
  --jip-session-bg: #fff7fb;
  --jip-session-chip-bg: #ffe4f1;
  --jip-session-chip-text: #a80059;
  --jip-sheet-session-bg: rgba(211, 2, 119, .05);
  --jip-sheet-session-text: #6b0039;
  --jip-tab-underline: #d30277;
}

/* Figma 1678:3980 is a #fff8fb field with a magenta scrim over the top 470 of
   609, so the copy sits on magenta and the photo below emerges out of it. The
   admaker mobile band already has that exact shape — base colour, vertical
   scrim, poster at the bottom — so pie only supplies the values. Desktop has no
   design of its own and keeps admaker's horizontal scrim in the same colours.
   `7관왕` is a lime gradient in Figma; the shell paints <em> flat, so the
   gradient is layered on below. */
.jip-detail .jip-detail__hero--pie {
  --jip-hero-scrim-rgb: 211, 2, 119;
  --jip-hero-band-bg: #fff8fb;
  --jip-hero-bg: #17191b;
  --jip-hero-title: #fff;
  --jip-hero-title-em: #c8ff3d;
  --jip-hero-text: rgba(255, 255, 255, .8);
  --jip-hero-rule: rgba(255, 255, 255, .28);
  --jip-hero-badge-bg: #fff;
  --jip-hero-badge-text: #d10274;
  --jip-hero-cta-bg: #c8ff3d;
  --jip-hero-cta-text: #132200;
  --jip-hero-cta-hover: #b6ed2a;
  --jip-hero-cta-outline-text: #c8ff3d;
  --jip-hero-cta-outline-hover: rgba(200, 255, 61, .14);
  /* 시안 아이콘은 #CCCCCC 다. 검정 소스에 invert(.8) 을 걸면 정확히 그 값이 된다. */
  --jip-hero-spec-icon-filter: brightness(0) invert(.8);
}

/* Figma 는 그라디언트를 텍스트 노드 전체(3줄 박스)에 걸고, `7관왕` 은 그중 첫 줄에
   있어 위쪽 1/3 만 샘플링한다. CSS 는 inline 박스(한 줄)에 걸리므로 그대로 두면
   같은 글자가 전 구간을 훑어 아래가 올리브색으로 죽는다. 3줄분(300%)으로 늘려
   시안과 같은 구간만 보이게 한다. */
/* 아래 두 색은 데스크탑·모바일이 같으므로 밴드 밖에 둔다. */
.jip-detail .jip-detail__hero--pie .jip-detail__hero-eyebrow {
  color: #fff;
}

.jip-detail .jip-detail__hero--pie .jip-detail__hero-description b {
  color: #fff;
  font-weight: 700;
}

.jip-detail .jip-detail__hero--pie h1 em {
  background: linear-gradient(180deg, #c8ff3d 0%, #789925 300%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jip-detail[data-jip-variant="mkt-agent"] {
  --jip-accent: #1e63e9;
  --jip-accent-strong: #1550c4;
}

.jip-detail[data-jip-variant="leader"] {
  --jip-accent: #db6a4b;
  --jip-accent-strong: #c15d42;
}

.jip-detail .jip-detail__hero--leader {
  --jip-hero-bg: #251f19;
  --jip-hero-title: #fff;
  --jip-hero-title-em: #e38b73;
  --jip-hero-text: #cfc7bc;
  --jip-hero-rule: rgba(255, 255, 255, .22);
  --jip-hero-badge-bg: #b8532f;
  --jip-hero-badge-text: #fff;
  --jip-hero-cta-bg: #db6a4b;
  --jip-hero-cta-text: #fff;
  --jip-hero-cta-hover: #c25839;
  --jip-hero-cta-outline-text: #e38b73;
  --jip-hero-cta-outline-hover: rgba(219, 106, 75, .12);
  --jip-hero-spec-icon-filter: brightness(0) invert(1);
}

.jip-detail .jip-detail__hero--leader h1 {
  width: 730px;
  font-size: 44px;
  letter-spacing: -1.1px;
}



.jip-detail .jip-detail__hero--leader .jip-detail__hero-leader-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, 0) 32%, rgba(255, 150, 90, .04) 55%, rgba(66, 46, 30, .4) 80%, rgba(0, 0, 0, .34) 100%);
}

.jip-detail .jip-detail__hero--leader .jip-detail__hero-leader-backdrop::after {
  content: "";
  position: absolute;
  right: 60px;
  top: -200px;
  width: 760px;
  height: 760px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(219, 106, 75, .13), transparent 62%);
}

.jip-detail .jip-detail__hero--leader .jip-detail__hero-blob,
.jip-detail .jip-detail__hero--leader .jip-detail__hero-mobile-ellipse {
  display: none;
}

.jip-detail .jip-detail__hero--vibecoding {
  --jip-hero-bg: #f5f4ed;
  --jip-hero-title: #121212;
  --jip-hero-title-em: #c96442;
  --jip-hero-text: #5e5d59;
  --jip-hero-rule: rgba(94, 93, 89, .4);
  --jip-hero-badge-bg: #b8532f;
  --jip-hero-badge-text: #fff;
  --jip-hero-cta-bg: #b8532f;
  --jip-hero-cta-text: #fff;
  --jip-hero-cta-hover: #9d4227;
  --jip-hero-cta-outline-text: #b34a28;
  --jip-hero-cta-outline-hover: rgba(179, 74, 40, .08);
}

.jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-art-vibecoding {
  --jip-vibe-u: .84px;
  position: absolute;
  left: 960px;
  top: 60px;
  z-index: 2;
  width: calc(817 * var(--jip-vibe-u));
  height: calc(506 * var(--jip-vibe-u));
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.jip-detail .jip-detail__hero-art-vibecoding__window-back {
  position: absolute;
  left: calc(150.86 * var(--jip-vibe-u));
  top: calc(147.66 * var(--jip-vibe-u));
  width: calc(569.32 * var(--jip-vibe-u));
  height: calc(350.17 * var(--jip-vibe-u));
  border-radius: calc(19.27 * var(--jip-vibe-u));
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 calc(22 * var(--jip-vibe-u)) calc(38 * var(--jip-vibe-u)) rgba(72, 59, 49, .16);
  animation: jip-hero-vibe-shadow-float 5.8s ease-in-out infinite;
  will-change: transform, opacity;
}

.jip-detail .jip-detail__hero-art-vibecoding__window {
  position: absolute;
  left: calc(116.44 * var(--jip-vibe-u));
  top: calc(127 * var(--jip-vibe-u));
  z-index: 2;
  overflow: hidden;
  width: calc(590.17 * var(--jip-vibe-u));
  height: calc(354.1 * var(--jip-vibe-u));
  border-radius: calc(19.27 * var(--jip-vibe-u));
  background: #fff;
  animation: jip-hero-vibe-window-float 5.8s ease-in-out infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(49.18 * var(--jip-vibe-u));
  padding: 0 calc(17.7 * var(--jip-vibe-u));
  background: #26221f;
  color: #fff;
}

.jip-detail .jip-detail__hero-art-vibecoding__bar strong {
  font-size: calc(17.705 * var(--jip-vibe-u));
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: calc(-.708 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__lights {
  display: flex;
  gap: calc(7.87 * var(--jip-vibe-u));
  margin-right: calc(6.3 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__lights i {
  width: calc(16.24 * var(--jip-vibe-u));
  height: calc(16.24 * var(--jip-vibe-u));
  border-radius: 50%;
  background: #28c85b;
}

.jip-detail .jip-detail__hero-art-vibecoding__lights i:nth-child(2) { background: #ffc91a; }
.jip-detail .jip-detail__hero-art-vibecoding__lights i:nth-child(3) { background: #ff5962; }

.jip-detail .jip-detail__hero-art-vibecoding__board {
  position: relative;
  height: calc(304.92 * var(--jip-vibe-u));
  background: #fff;
}

.jip-detail .jip-detail__hero-art-vibecoding__tools {
  position: absolute;
  left: calc(23.61 * var(--jip-vibe-u));
  top: calc(22.62 * var(--jip-vibe-u));
  display: grid;
  grid-template-columns: calc(170.165 * var(--jip-vibe-u)) calc(171.148 * var(--jip-vibe-u)) calc(170.165 * var(--jip-vibe-u));
  gap: calc(15.735 * var(--jip-vibe-u));
  height: calc(106.23 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__tool {
  position: relative;
  border-radius: calc(11.803 * var(--jip-vibe-u));
  background: #f3eee8;
  animation: jip-hero-vibe-tool-float 4.2s ease-in-out infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool:nth-child(2) {
  background: #f5f0e9;
  animation-delay: -1.4s;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool:nth-child(3) {
  background: #eee8e1;
  animation-delay: -2.8s;
}

.jip-detail .jip-detail__hero-art-vibecoding__gear {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(59.017 * var(--jip-vibe-u));
  height: calc(59.017 * var(--jip-vibe-u));
  fill: #efdfc8;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: jip-hero-vibe-gear-turn 7s linear infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--check::before,
.jip-detail .jip-detail__hero-art-vibecoding__tool--check::after,
.jip-detail .jip-detail__hero-art-vibecoding__tool--clock::before,
.jip-detail .jip-detail__hero-art-vibecoding__tool--clock::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--check::before,
.jip-detail .jip-detail__hero-art-vibecoding__tool--clock::before {
  width: calc(59.017 * var(--jip-vibe-u));
  height: calc(59.017 * var(--jip-vibe-u));
  border-radius: 50%;
  background: #ead38b;
  transform: translate(-50%, -50%);
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--check::before {
  animation: jip-hero-vibe-check-ring 3.6s ease-in-out infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--check::after {
  width: calc(18 * var(--jip-vibe-u));
  height: calc(10 * var(--jip-vibe-u));
  border-bottom: calc(4 * var(--jip-vibe-u)) solid #fff;
  border-left: calc(4 * var(--jip-vibe-u)) solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
  transform-origin: 50% 50%;
  animation: jip-hero-vibe-check-pop 3.6s cubic-bezier(.34, 1.56, .64, 1) infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--clock::before {
  background: #dac1b6;
  animation: jip-hero-vibe-clock-ring 4.4s ease-in-out infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__tool--clock::after {
  width: calc(14 * var(--jip-vibe-u));
  height: calc(18 * var(--jip-vibe-u));
  border-bottom: calc(4 * var(--jip-vibe-u)) solid #fff;
  border-left: calc(4 * var(--jip-vibe-u)) solid #fff;
  transform: translate(-13%, -62%);
  transform-origin: 0 100%;
  animation: jip-hero-vibe-clock-tick 4.4s ease-in-out infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__detail {
  position: absolute;
  left: calc(23.61 * var(--jip-vibe-u));
  top: calc(146.56 * var(--jip-vibe-u));
  display: grid;
  grid-template-columns: calc(257.706 * var(--jip-vibe-u)) calc(257.706 * var(--jip-vibe-u));
  gap: calc(27.54 * var(--jip-vibe-u));
  height: calc(138.689 * var(--jip-vibe-u));
  margin: 0;
}

.jip-detail .jip-detail__hero-art-vibecoding__tasks,
.jip-detail .jip-detail__hero-art-vibecoding__chart {
  border-radius: calc(11.803 * var(--jip-vibe-u));
  background: #f9f1eb;
}

.jip-detail .jip-detail__hero-art-vibecoding__tasks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(13.1 * var(--jip-vibe-u));
  padding: 0 calc(8.85 * var(--jip-vibe-u)) 0 calc(20.65 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__tasks p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: #3f2418;
  font-size: calc(14 * var(--jip-vibe-u));
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: calc(-.42 * var(--jip-vibe-u));
  white-space: nowrap;
}

.jip-detail .jip-detail__hero-art-vibecoding__tag {
  min-width: calc(51.148 * var(--jip-vibe-u));
  padding: calc(5.902 * var(--jip-vibe-u)) calc(8 * var(--jip-vibe-u));
  border-radius: 999px;
  background: #c96b4a;
  color: #fff;
  font-size: calc(10.134 * var(--jip-vibe-u));
  font-style: normal;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: calc(-.405 * var(--jip-vibe-u));
  text-align: center;
}

.jip-detail .jip-detail__hero-art-vibecoding__tag--progress {
  background: #ebcb8f;
}

.jip-detail .jip-detail__hero-art-vibecoding__chart {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: calc(9.837 * var(--jip-vibe-u));
  padding: 0 0 0 calc(33.443 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__chart i {
  flex: 0 0 calc(43.279 * var(--jip-vibe-u));
  width: calc(43.279 * var(--jip-vibe-u));
  height: calc(42.295 * var(--jip-vibe-u));
  border-radius: calc(5.902 * var(--jip-vibe-u)) calc(5.902 * var(--jip-vibe-u)) 0 0;
  background: #c96b4a;
  transform-origin: bottom;
  animation: jip-hero-vibe-chart-pulse 3.4s ease-in-out infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__chart i:nth-child(2) {
  height: calc(62.951 * var(--jip-vibe-u));
  animation-delay: -2.55s;
}

.jip-detail .jip-detail__hero-art-vibecoding__chart i:nth-child(3) {
  height: calc(105.246 * var(--jip-vibe-u));
  animation-delay: -1.7s;
}

.jip-detail .jip-detail__hero-art-vibecoding__chart i:nth-child(4) {
  animation-delay: -.85s;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble {
  position: absolute;
  z-index: 4;
  width: calc(136.722 * var(--jip-vibe-u));
  height: calc(81.64 * var(--jip-vibe-u));
  padding: calc(13 * var(--jip-vibe-u)) calc(10.6 * var(--jip-vibe-u)) calc(11 * var(--jip-vibe-u));
  border-radius: calc(7.074 * var(--jip-vibe-u));
  background: #c96442;
  box-shadow: 0 calc(8 * var(--jip-vibe-u)) calc(14 * var(--jip-vibe-u)) rgba(63, 36, 24, .2);
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble--send {
  left: calc(14 * var(--jip-vibe-u));
  top: calc(193 * var(--jip-vibe-u));
  animation: jip-hero-vibe-card-float-left 3.9s ease-in-out infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble--file {
  left: calc(666.28 * var(--jip-vibe-u));
  top: calc(354.21 * var(--jip-vibe-u));
  animation: jip-hero-vibe-card-float-right 4.6s ease-in-out -1.4s infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble i {
  position: relative;
  display: block;
  margin-bottom: calc(6 * var(--jip-vibe-u));
  background: #fff;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble--send i {
  width: calc(28 * var(--jip-vibe-u));
  height: calc(25 * var(--jip-vibe-u));
  clip-path: polygon(0 38%, 100% 0, 60% 100%, 42% 59%);
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble--file i {
  width: calc(27.54 * var(--jip-vibe-u));
  height: calc(27.54 * var(--jip-vibe-u));
  border-radius: calc(2 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble--file i::after {
  position: absolute;
  left: calc(5 * var(--jip-vibe-u));
  top: calc(8 * var(--jip-vibe-u));
  width: calc(10 * var(--jip-vibe-u));
  height: calc(2 * var(--jip-vibe-u));
  background: #c96442;
  box-shadow: 0 calc(5 * var(--jip-vibe-u)) 0 #c96442;
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble span {
  display: block;
  height: calc(7.958 * var(--jip-vibe-u));
  border-radius: 999px;
  background: #fff;
}

.jip-detail .jip-detail__hero-art-vibecoding__bubble span + span {
  width: 78.47%;
  margin-top: calc(6.79 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__spark {
  position: absolute;
  z-index: 3;
  width: calc(28.373 * var(--jip-vibe-u));
  height: calc(29.508 * var(--jip-vibe-u));
  background: #fff;
  clip-path: polygon(50% 0, 57% 42%, 100% 50%, 57% 58%, 50% 100%, 43% 58%, 0 50%, 43% 42%);
  filter: drop-shadow(0 0 calc(8 * var(--jip-vibe-u)) rgba(255, 255, 255, .72));
  transform-origin: center;
  animation: jip-hero-vibe-spark-twinkle 2.7s ease-in-out infinite;
  will-change: transform, opacity;
}

.jip-detail .jip-detail__hero-art-vibecoding__spark::after {
  position: absolute;
  inset: calc(8 * var(--jip-vibe-u));
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  filter: blur(calc(3 * var(--jip-vibe-u)));
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__spark--one {
  left: calc(776 * var(--jip-vibe-u));
  top: calc(133 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__spark--two {
  left: calc(67 * var(--jip-vibe-u));
  top: calc(452 * var(--jip-vibe-u));
  animation-delay: -1.35s;
}

.jip-detail .jip-detail__hero-art-vibecoding__code-mark {
  position: absolute;
  z-index: 1;
  color: #e7dfd6;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  line-height: 1;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__code-mark--left {
  left: calc(92 * var(--jip-vibe-u));
  top: calc(52 * var(--jip-vibe-u));
  font-size: calc(25 * var(--jip-vibe-u));
  transform: rotate(-10.58deg);
  animation: jip-hero-vibe-code-drift-left 4.8s ease-in-out infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__code-mark--right {
  left: calc(319 * var(--jip-vibe-u));
  top: calc(84 * var(--jip-vibe-u));
  font-size: calc(20 * var(--jip-vibe-u));
  transform: rotate(11.99deg);
  animation: jip-hero-vibe-code-drift-right 5.2s ease-in-out -1.8s infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark {
  position: absolute;
  left: calc(173 * var(--jip-vibe-u));
  top: calc(75 * var(--jip-vibe-u));
  z-index: 1;
  width: calc(103.54 * var(--jip-vibe-u));
  height: calc(52.32 * var(--jip-vibe-u));
  transform-origin: 50% 100%;
  animation: jip-hero-vibe-claude-hop 2.8s cubic-bezier(.33, 1, .68, 1) infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark::before {
  position: absolute;
  left: calc(13.02 * var(--jip-vibe-u));
  top: 0;
  width: calc(77.51 * var(--jip-vibe-u));
  height: calc(44.77 * var(--jip-vibe-u));
  background: #d87758;
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark::after {
  position: absolute;
  left: 0;
  top: calc(18.34 * var(--jip-vibe-u));
  width: calc(13.01 * var(--jip-vibe-u));
  height: calc(13.49 * var(--jip-vibe-u));
  background: #d87758;
  box-shadow: calc(90.52 * var(--jip-vibe-u)) 0 0 #d87758;
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i {
  position: absolute;
  left: calc(28.29 * var(--jip-vibe-u));
  top: calc(15.47 * var(--jip-vibe-u));
  z-index: 1;
  width: calc(6.79 * var(--jip-vibe-u));
  height: calc(8.09 * var(--jip-vibe-u));
  background: #1a1a1a;
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i + i {
  left: calc(67.89 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i::before,
.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i::after {
  position: absolute;
  top: calc(29.3 * var(--jip-vibe-u));
  width: calc(7.355 * var(--jip-vibe-u));
  height: calc(7.552 * var(--jip-vibe-u));
  background: #d87758;
  content: "";
}

.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i:first-child::before { left: calc(-9.62 * var(--jip-vibe-u)); }
.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i:first-child::after { left: calc(3.39 * var(--jip-vibe-u)); }
.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i:last-child::before { left: calc(-3.4 * var(--jip-vibe-u)); }
.jip-detail .jip-detail__hero-art-vibecoding__claude-mark i:last-child::after { left: calc(9.62 * var(--jip-vibe-u)); }

.jip-detail .jip-detail__hero-art-vibecoding__loader {
  position: absolute;
  left: calc(200 * var(--jip-vibe-u));
  top: calc(44 * var(--jip-vibe-u));
  z-index: 2;
  width: calc(18 * var(--jip-vibe-u));
  height: calc(18 * var(--jip-vibe-u));
  animation: jip-hero-vibe-loader-spin 1.15s steps(8, end) infinite;
}

.jip-detail .jip-detail__hero-art-vibecoding__loader i {
  position: absolute;
  left: calc(8 * var(--jip-vibe-u));
  top: 0;
  width: calc(2 * var(--jip-vibe-u));
  height: calc(6 * var(--jip-vibe-u));
  border-radius: calc(10 * var(--jip-vibe-u));
  background: #141413;
  transform-origin: calc(1 * var(--jip-vibe-u)) calc(9 * var(--jip-vibe-u));
}

.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(1) { transform: rotate(0deg); opacity: 1; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(2) { transform: rotate(45deg); opacity: .88; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(3) { transform: rotate(90deg); opacity: .76; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(4) { transform: rotate(135deg); opacity: .64; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(5) { transform: rotate(180deg); opacity: .52; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(6) { transform: rotate(225deg); opacity: .4; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(7) { transform: rotate(270deg); opacity: .28; }
.jip-detail .jip-detail__hero-art-vibecoding__loader i:nth-child(8) { transform: rotate(315deg); opacity: .16; }

@keyframes jip-hero-vibe-loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes jip-hero-vibe-claude-hop {
  0%, 22%, 100% { transform: translateY(0) scale(1, 1); }
  7% { transform: translateY(calc(2 * var(--jip-vibe-u))) scale(1.04, .94); }
  13% { transform: translateY(calc(-9 * var(--jip-vibe-u))) scale(.97, 1.05); }
  18% { transform: translateY(0) scale(1.03, .96); }
}

@keyframes jip-hero-vibe-window-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-3 * var(--jip-vibe-u))); }
}

@keyframes jip-hero-vibe-shadow-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: .82; }
  50% { transform: translateY(calc(2 * var(--jip-vibe-u))) scale(.992); opacity: .72; }
}

@keyframes jip-hero-vibe-card-float-left {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(calc(-2 * var(--jip-vibe-u)), calc(-6 * var(--jip-vibe-u)), 0) rotate(-1deg); }
}

@keyframes jip-hero-vibe-card-float-right {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(calc(3 * var(--jip-vibe-u)), calc(-5 * var(--jip-vibe-u)), 0) rotate(.8deg); }
}

@keyframes jip-hero-vibe-chart-pulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.88); }
}

@keyframes jip-hero-vibe-spark-twinkle {
  0%, 100% { transform: rotate(0) scale(.82); opacity: .55; }
  50% { transform: rotate(45deg) scale(1.08); opacity: 1; }
}

@keyframes jip-hero-vibe-code-drift-left {
  0%, 100% { transform: translateY(0) rotate(-10.58deg); }
  50% { transform: translateY(calc(-4 * var(--jip-vibe-u))) rotate(-7.5deg); }
}

@keyframes jip-hero-vibe-code-drift-right {
  0%, 100% { transform: translateY(0) rotate(11.99deg); }
  50% { transform: translateY(calc(3 * var(--jip-vibe-u))) rotate(8.5deg); }
}

@keyframes jip-hero-vibe-tool-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-3 * var(--jip-vibe-u))); }
}

@keyframes jip-hero-vibe-gear-turn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes jip-hero-vibe-check-ring {
  0%, 18%, 100% { transform: translate(-50%, -50%) scale(1); }
  8% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes jip-hero-vibe-check-pop {
  0%, 3% { opacity: 0; transform: translate(-50%, -65%) rotate(-45deg) scale(.45); }
  10%, 100% { opacity: 1; transform: translate(-50%, -65%) rotate(-45deg) scale(1); }
}

@keyframes jip-hero-vibe-clock-ring {
  0%, 12%, 100% { transform: translate(-50%, -50%) scale(1); }
  6% { transform: translate(-50%, -50%) scale(1.055); }
}

@keyframes jip-hero-vibe-clock-tick {
  0%, 100% { transform: translate(-13%, -62%) rotate(0); }
  50% { transform: translate(-13%, -62%) rotate(12deg); }
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker {
  position: absolute;
  left: 906px;
  top: 104px;
  z-index: 1;
  width: 672px;
  height: 378px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 26px 64px rgba(35, 12, 20, .22);
  animation: jip-hero-admaker-float 7.4s ease-in-out infinite;
  will-change: transform;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(20, 20, 19, .12);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker__poster,
.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker__poster {
  z-index: 0;
}

.jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker__video {
  z-index: 1;
  background: transparent;
}

@keyframes jip-hero-admaker-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, calc(var(--jip-hero-admaker-float-y, 14px) * -1), 0); }
}






.jip-detail .jip-detail__content-shell {
  display: grid;
  grid-template-columns: minmax(0, 680px) 360px;
  gap: 80px;
  align-items: start;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.jip-detail .jip-detail__content-column {
  min-width: 0;
}

.jip-detail .jip-detail__section-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  width: 680px;
  height: 58px;
  margin: 8px 0 0;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.jip-detail .jip-detail__section-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.jip-detail .jip-detail__section-tabs a.jip-state-active,
.jip-detail .jip-detail__section-tabs a[aria-current="true"] {
  color: #1d1d1f;
}

.jip-detail .jip-detail__section-tabs a.jip-state-active::after,
.jip-detail .jip-detail__section-tabs a[aria-current="true"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  /* Was hardcoded terracotta, so the active tab stayed orange on every course.
     The default below is the literal it replaced, so variants that do not
     override it render unchanged. */
  background: var(--jip-tab-underline, #db6a4b);
}

.jip-detail .jip-detail__body {
  --jip-wrap-max: 640px;
  --aiers-wrap-max: var(--jip-wrap-max);
  min-width: 0;
}

.jip-detail .jip-detail__body [id] {
  scroll-margin-top: 82px;
}

.jip-detail .jip-detail__body > :first-child {
  margin-top: 0;
}

.jip-detail .jip-detail__sticky {
  position: sticky;
  top: 24px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 64px;
}

.jip-detail .jip-detail__sticky-card {
  width: 360px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(33, 26, 21, .12);
}

.jip-detail .jip-detail__sticky h2 {
  margin: 0;
  color: var(--jip-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.5px;
}

.jip-detail .jip-detail__sticky-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
}

.jip-detail .jip-detail__sticky-price strong {
  color: var(--jip-accent-strong);
  font-size: 24px;
  line-height: 1.3;
}

.jip-detail .jip-detail__sticky-price del {
  color: var(--jip-muted);
  font-size: 13px;
}

.jip-detail .jip-detail__sticky-refund {
  margin: 4px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, .14);
  color: var(--jip-muted);
  font-size: 13px;
  line-height: 20px;
}

.jip-detail .jip-detail__sticky-refund b {
  color: #4e5257;
}

.jip-detail .jip-detail__calendar {
  margin-top: 12px;
}

.jip-detail .jip-detail__calendar-head {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  gap: 18px;
  align-items: center;
  width: 190px;
  margin: 0 auto;
}

.jip-detail .jip-detail__calendar-head button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--jip-muted);
  cursor: pointer;
}

.jip-detail .jip-detail__calendar-head button:disabled {
  opacity: .28;
  cursor: default;
}

/* 두 버튼이 같은 caret-right 아이콘을 쓴다. 이전 달만 뒤집는다. */
.jip-detail .jip-detail__calendar-head button[data-jip-calendar-prev] img {
  transform: rotate(180deg);
}

.jip-detail .jip-detail__calendar-head strong {
  font-size: 16px;
  text-align: center;
}

.jip-detail .jip-detail__calendar-weekdays,
.jip-detail .jip-detail__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.jip-detail .jip-detail__calendar-weekdays {
  margin-top: 8px;
}

.jip-detail .jip-detail__calendar-weekdays span,
.jip-detail .jip-detail__calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 38px;
  color: #4e5257;
  font-size: 12px;
  text-align: center;
}

.jip-detail .jip-detail__calendar-day {
  position: relative;
  border: 0;
  background: transparent;
  color: #b9b3ae;
}

.jip-detail button.jip-detail__calendar-day {
  cursor: pointer;
}

.jip-detail .jip-detail__calendar-day.jip-state-session::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jip-calendar-session);
  content: "";
  transform: translate(-50%, -50%);
}

.jip-detail .jip-detail__calendar-day.jip-state-session span {
  position: relative;
  z-index: 1;
}

.jip-detail .jip-detail__calendar-day.jip-state-selected::before {
  background: var(--jip-calendar-selected);
}

.jip-detail .jip-detail__calendar-day.jip-state-selected {
  color: #fff;
  font-weight: 700;
}

@media (min-width: 1280px) {
  .jip-detail .jip-detail__calendar-weekdays {
    height: 28px;
    padding-top: 8px;
  }

  .jip-detail .jip-detail__calendar-weekdays span {
    height: 20px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 20px;
  }

  .jip-detail .jip-detail__calendar-grid {
    margin-top: 8px;
  }

  .jip-detail .jip-detail__calendar-day {
    flex-direction: column;
    justify-content: flex-start;
    height: 44px;
    padding-top: 3px;
    font-size: 13.5px;
    line-height: 21.6px;
  }

  .jip-detail .jip-detail__calendar-day > span {
    display: flex;
    flex: 0 0 33px;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
  }

  .jip-detail .jip-detail__calendar-day.jip-state-session::before {
    top: 3px;
    width: 33px;
    height: 33px;
    transform: translateX(-50%);
  }

  .jip-detail .jip-detail__calendar-day small {
    position: absolute;
    top: 38px;
    left: 50%;
    z-index: 1;
    width: 44px;
    color: currentColor;
    font-size: 10px;
    font-weight: 700;
    line-height: 10px;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .jip-detail .jip-detail__calendar-day.jip-state-selected small {
    color: var(--jip-accent-strong);
  }
}

.jip-detail .jip-detail__session {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--jip-session-border);
  border-radius: 16px;
  background: var(--jip-session-bg);
  color: #4e5257;
}

.jip-detail .jip-detail__session > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jip-detail .jip-detail__session > div strong {
  color: var(--jip-accent-strong);
  font-size: 18px;
}

.jip-detail .jip-detail__session > div span {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--jip-session-chip-bg);
  color: var(--jip-session-chip-text);
  font-size: 12px;
  font-weight: 700;
}

.jip-detail .jip-detail__session p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 9px 0 0;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.jip-detail .jip-detail__session p i {
  width: 1px;
  height: 12px;
  background: #d8cdc4;
}

.jip-detail .jip-detail__session small {
  display: block;
  margin-top: 8px;
  color: #8b8179;
  font-size: 11px;
  line-height: 1.6;
}

.jip-detail .jip-detail__sticky-card > .jip-detail__button {
  margin-top: 12px;
}

.jip-detail .jip-detail__company-link {
  color: var(--jip-muted) !important;
  font-size: 13px;
}

.jip-detail .jip-detail__company-link b {
  color: var(--jip-accent-strong);
}

.jip-detail .jip-detail__application-info,
.jip-detail .jip-detail__mobile-apply,
.jip-detail .jip-detail__mobile-cta {
  display: none;
}

.jip-detail .jip-detail__bottom-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.jip-detail .jip-detail__bottom-sheet[hidden] {
  display: none;
}

.jip-detail .jip-detail__bottom-sheet-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(20, 20, 19, .48);
  cursor: pointer;
}

.jip-detail .jip-detail__bottom-sheet-dialog {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 20px);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -8px 40px rgba(40, 30, 22, .14);
}

.jip-detail .jip-detail__bottom-sheet-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  cursor: pointer;
}

.jip-detail .jip-detail__bottom-sheet-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: min(343px, calc(100% - 32px));
  margin: 0 auto;
  padding: 25px 0 calc(22px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.jip-detail .jip-detail__bottom-sheet-content .jip-detail__calendar,
.jip-detail .jip-detail__bottom-sheet-content .jip-detail__session,
.jip-detail .jip-detail__bottom-sheet-content .jip-detail__button,
.jip-detail .jip-detail__bottom-sheet-content .jip-detail__company-link {
  flex: 0 0 auto;
}

.jip-detail .jip-detail__bottom-sheet-content .jip-detail__company-link {
  align-self: center;
  color: var(--jip-accent) !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.jip-detail .jip-detail__bottom-sheet-content .jip-detail__company-link b {
  font-weight: 400;
}

.jip-detail .jip-detail__body--track-b {
  --jip-track-b-fill: #f6f4f0;
  --jip-track-b-fill-2: #eceae6;
  --jip-track-b-tint: #faece8;
  --jip-track-b-tint-soft: #fdf6f4;
  --jip-track-b-accent-text: #c76044;
  --jip-track-b-accent-deep: #c15d42;
  --jip-track-b-ink-2: #4e5257;
  --jip-track-b-gray-2: #8e8e93;
  --jip-track-b-green: #1f8a4d;
  --jip-track-b-ease: cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jip-detail .jip-detail__body--track-b > section {
  padding: 88px 40px;
}

.jip-detail .jip-detail__body--track-b h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
}

.jip-detail .jip-detail__body--track-b h2 em {
  color: var(--jip-accent);
  font-style: normal;
}

.jip-detail .jip-track-b__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.jip-detail .jip-track-b__cards article {
  padding: 24px;
  border: 1px solid var(--jip-line);
  border-radius: 16px;
  background: #fff;
}

.jip-detail .jip-track-b__cards h3,
.jip-detail .jip-track-b__cards p {
  margin: 8px 0 0;
}

.jip-detail .jip-track-b__curriculum ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.jip-detail .jip-track-b__curriculum li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: #f7f4ef;
}

.jip-detail .jip-track-b__faq [data-jip-faq-list] {
  margin-top: 28px;
}

.jip-detail .jip-track-b__faq article {
  border-bottom: 1px solid var(--jip-line);
}

.jip-detail .jip-track-b__faq button {
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.jip-detail .jip-track-b__faq button span {
  margin-right: 12px;
  color: var(--jip-accent);
}

.jip-detail .jip-track-b__faq article > div {
  display: none;
  padding: 0 0 22px 36px;
}

.jip-detail .jip-track-b__faq article.jip-state-open > div {
  display: block;
}

.jip-detail .jip-track-b__kicker {
  margin: 0 0 8px;
  color: var(--jip-track-b-accent-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.jip-detail .jip-track-b__outcome-headline {
  margin-top: 72px;
}

.jip-detail .jip-track-b__outcomes {
  margin: 26px 0 0;
  padding: 6px 0;
  border-radius: 20px;
  background: var(--jip-track-b-fill);
  list-style: none;
}

.jip-detail .jip-track-b__outcomes li {
  padding: 18px 24px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.jip-detail .jip-track-b__outcomes li:first-child {
  border-top: 0;
}

.jip-detail .jip-track-b__outcome-axis {
  display: block;
  color: var(--jip-track-b-accent-text);
  font-size: 12.5px;
  font-weight: 700;
}

.jip-detail .jip-track-b__outcome-text {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.55;
}

.jip-detail .jip-track-b__results-note {
  margin: 20px 0 0;
  color: var(--jip-track-b-accent-text);
  font-size: 14.5px;
  font-weight: 700;
}

.jip-detail .jip-track-b__cards--results article {
  padding: 14px 14px 22px;
  border: 0;
  background: var(--jip-track-b-fill);
}

.jip-detail .jip-track-b__cards--results article > span {
  display: block;
  margin-top: 16px;
  padding: 0 8px;
  color: var(--jip-track-b-accent-text);
  font-size: 12.5px;
  font-weight: 700;
}

.jip-detail .jip-track-b__cards--results h3 {
  margin: 6px 0 0;
  padding: 0 8px;
  font-size: 16px;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.jip-detail .jip-track-b__cards--results p {
  margin: 6px 0 0;
  padding: 0 8px;
  color: var(--jip-muted);
  font-size: 13px;
  line-height: 1.65;
}

.jip-detail .jip-track-b__visual {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(33, 26, 21, .05);
}

.jip-detail .jip-track-b__visual-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.jip-detail .jip-track-b__visual-bar i {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jip-track-b-fill-2);
}

.jip-detail .jip-track-b__visual-bar span {
  flex: 1;
  min-width: 0;
  margin-left: 5px;
  overflow: hidden;
  color: var(--jip-track-b-gray-2);
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jip-detail .jip-track-b__visual-body {
  height: 106px;
  padding: 13px 14px;
  overflow: hidden;
}

.jip-detail .jip-track-b__visual-line {
  display: block;
  margin-bottom: 7px;
  overflow: hidden;
  color: var(--jip-track-b-ink-2);
  font-size: 10.5px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  animation: jip-track-b-fade 5.2s var(--jip-track-b-ease) var(--jip-viz-delay, 0s) infinite both;
}

.jip-detail .jip-track-b__visual-line--head {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 9px;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--jip-track-b-tint);
  color: var(--jip-track-b-accent-text);
  font-weight: 700;
  vertical-align: top;
}

.jip-detail .jip-track-b__visual-run {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 9px;
  overflow: hidden;
  color: var(--jip-track-b-accent-text);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.jip-detail .jip-track-b__visual-run i {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jip-accent);
  animation: jip-track-b-pulse 1.3s ease-in-out infinite;
}

.jip-detail .jip-track-b__visual-task {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 7px 0;
  color: var(--jip-track-b-ink-2);
  font-size: 11.5px;
  line-height: 1.4;
  animation: jip-track-b-fade 5.2s var(--jip-track-b-ease) var(--jip-viz-delay, 0s) infinite both;
}

.jip-detail .jip-track-b__visual-task b {
  flex: none;
  color: var(--jip-track-b-green);
  font-weight: 700;
}

.jip-detail .jip-track-b__visual-task--done {
  color: var(--jip-track-b-green);
  font-weight: 700;
}

.jip-detail .jip-track-b__visual-msg {
  display: block;
  max-width: 88%;
  margin: 6px 0;
  padding: 7px 10px;
  border-radius: 11px;
  font-size: 10.5px;
  line-height: 1.5;
  animation: jip-track-b-fade 5.6s var(--jip-track-b-ease) var(--jip-viz-delay, 0s) infinite both;
}

.jip-detail .jip-track-b__visual-msg--in {
  border-top-left-radius: 4px;
  background: var(--jip-track-b-fill);
  color: var(--jip-track-b-ink-2);
}

.jip-detail .jip-track-b__visual-msg--out {
  margin-left: auto;
  border-top-right-radius: 4px;
  background: var(--jip-track-b-tint);
  color: var(--jip-track-b-accent-deep);
}

.jip-detail .jip-track-b__visual-msg--tag {
  font-weight: 700;
}

.jip-detail .jip-track-b__visual--dashboard .jip-track-b__visual-body {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}

.jip-detail .jip-track-b__visual-kpi {
  flex: none;
}

.jip-detail .jip-track-b__visual-kpi b {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.jip-detail .jip-track-b__visual-kpi span {
  font-size: 10px;
  color: var(--jip-track-b-gray-2);
}

.jip-detail .jip-track-b__visual-chart {
  display: flex;
  flex: 1;
  gap: 7px;
  align-items: flex-end;
  min-width: 0;
  height: 74px;
}

.jip-detail .jip-track-b__visual-chart i {
  flex: 1;
  height: var(--jip-viz-h, 50%);
  border-radius: 4px 4px 0 0;
  background: #f0bba7;
  transform-origin: bottom;
  animation: jip-track-b-rise 5.2s var(--jip-track-b-ease) var(--jip-viz-delay, 0s) infinite both;
}

.jip-detail .jip-track-b__visual-peak {
  background: var(--jip-accent);
}

.jip-detail .jip-track-b__personas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.jip-detail .jip-track-b__personas article {
  padding: 28px 16px;
  border-radius: 20px;
  background: var(--jip-track-b-fill);
  text-align: center;
}

.jip-detail .jip-track-b__persona-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--jip-track-b-tint);
  color: var(--jip-track-b-accent-text);
  font-size: 17px;
  font-weight: 700;
}

.jip-detail .jip-track-b__personas h3 {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.jip-detail .jip-track-b__personas p {
  margin: 8px 0 0;
  color: var(--jip-muted);
  font-size: 13px;
  line-height: 1.65;
}

.jip-detail .jip-track-b__curriculum-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  margin-top: 28px;
  color: var(--jip-muted);
  font-size: 13px;
}

.jip-detail .jip-track-b__curriculum-total {
  color: var(--jip-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.jip-detail .jip-track-b__curriculum-slot {
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--jip-track-b-fill);
  color: var(--jip-track-b-ink-2);
  font-size: 12.5px;
  font-weight: 700;
}

.jip-detail .jip-track-b__curriculum-note {
  flex: 1 1 100%;
  font-size: 12.5px;
  line-height: 1.7;
}

.jip-detail .jip-track-b__tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.jip-detail .jip-track-b__tiers article {
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--jip-track-b-fill);
}

.jip-detail .jip-track-b__tier-label {
  display: block;
  color: var(--jip-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.jip-detail .jip-track-b__tier-rate {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.4;
}

.jip-detail .jip-track-b__tier-rate em {
  color: var(--jip-track-b-accent-text);
  font-style: normal;
}

.jip-detail .jip-track-b__tier-pay {
  display: block;
  margin-top: 10px;
  color: var(--jip-track-b-ink-2);
  font-size: 13.5px;
}

.jip-detail .jip-track-b__tier-pay b {
  color: var(--jip-ink);
  font-size: 17px;
  letter-spacing: -.02em;
}

.jip-detail .jip-track-b__tier-note {
  display: block;
  margin-top: 8px;
  color: var(--jip-track-b-gray-2);
  font-size: 12.5px;
  line-height: 1.6;
}

.jip-detail .jip-track-b__cost-flow {
  margin: 16px 0 0;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--jip-track-b-tint-soft);
  color: var(--jip-track-b-ink-2);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.6;
}

.jip-detail .jip-track-b__cost-notes {
  margin: 14px 0 0;
  padding: 0 0 0 16px;
}

.jip-detail .jip-track-b__cost-notes li {
  margin-top: 4px;
  color: var(--jip-track-b-gray-2);
  font-size: 12.5px;
  line-height: 1.7;
}

.jip-detail .jip-track-b__profile {
  display: block;
  margin-top: 28px;
  padding: 30px 26px;
  border-radius: 24px;
  background: var(--jip-track-b-fill);
}

.jip-detail .jip-track-b__profile-head {
  display: flex;
  gap: 18px;
  align-items: center;
}

.jip-detail .jip-track-b__profile-avatar {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--jip-accent);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.jip-detail .jip-track-b__profile-name {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.jip-detail .jip-track-b__profile-role {
  margin: 3px 0 0;
  color: var(--jip-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jip-detail .jip-track-b__profile-summary {
  margin: 20px 0 0;
  color: var(--jip-track-b-ink-2);
  font-size: 14.5px;
  line-height: 1.75;
}

.jip-detail .jip-track-b__profile-credentials {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.jip-detail .jip-track-b__profile-credentials li {
  position: relative;
  padding: 3px 0 3px 14px;
  color: var(--jip-muted);
  font-size: 13px;
  line-height: 1.6;
}

.jip-detail .jip-track-b__profile-credentials li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--jip-track-b-gray-2);
}

.jip-detail .jip-track-b__profile-quote {
  margin: 20px 0 0;
  padding: 20px 22px;
  border-radius: 16px;
  background: #fff;
  color: var(--jip-track-b-ink-2);
  font-size: 14px;
  line-height: 1.8;
}

@keyframes jip-track-b-fade {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }

  12%,
  88% {
    opacity: 1;
    transform: none;
  }

  100% {
    opacity: 0;
  }
}

@keyframes jip-track-b-rise {
  0% {
    transform: scaleY(0);
  }

  16%,
  88% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(0);
  }
}

@keyframes jip-track-b-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

/* vibecoding used to pull its copy back toward the edge on wide screens. The
   shared 400px stage position now covers every variant. */

/* The vibecoding-only version of this band now lives with the base hero rules
   and applies to every stage-based hero. */

@media (max-width: 1279px) {
  .jip-detail .jip-detail__hero-stage {
    left: 0;
    width: 100%;
    transform: none;
  }

  .jip-detail .jip-detail__hero-copy {
    left: max(40px, calc((100% - 1120px) / 2));
  }

  .jip-detail .jip-detail__content-shell {
    grid-template-columns: minmax(0, 750px);
    justify-content: center;
    width: 100%;
  }

  .jip-detail .jip-detail__section-tabs {
    width: min(680px, calc(100vw - 40px));
  }

  .jip-detail .jip-detail__sticky {
    display: none;
  }

  .jip-detail .jip-detail__application-info {
    display: block;
    background: #fff;
  }

  .jip-detail .jip-detail__application-info-inner {
    display: flex;
    flex-direction: column;
    width: min(343px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0;
  }

  .jip-detail .jip-detail__application-info h2 {
    margin: 0 0 12px;
    color: #121212;
    font-size: 18px;
    font-weight: 700;
    line-height: 25.5px;
  }

  .jip-detail .jip-detail__mobile-info-card {
    box-sizing: border-box;
    height: 268px;
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: #fafafa;
  }

  .jip-detail .jip-detail__mobile-info-card dl {
    margin: 0;
  }

  .jip-detail .jip-detail__mobile-info-card dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 35px;
    border-bottom: 1px dashed #e6e6e6;
  }

  .jip-detail .jip-detail__mobile-info-card dl > div:last-child {
    min-height: 38px;
    border-bottom: 0;
  }

  .jip-detail .jip-detail__mobile-info-card dt,
  .jip-detail .jip-detail__mobile-info-card dd {
    display: flex;
    align-items: center;
    margin: 0;
    color: #141413;
    font-size: 12px;
    line-height: 19.5px;
  }

  .jip-detail .jip-detail__mobile-info-card dt {
    gap: 8px;
    color: #121212;
    font-weight: 500;
  }

  .jip-detail .jip-detail__mobile-info-card dd {
    font-weight: 600;
    text-align: right;
  }

  /* The shared icon files are baked in the Claude terracotta, so on every other
     course they clashed with the page accent. Paint them from --jip-accent
     instead: the <img> stays in the markup as the icon's source of truth and the
     ::before masks the same file, so each variant gets its own colour with no
     per-course icon copies. */
  .jip-detail .jip-detail__mobile-info-card dt img {
    display: none;
  }

  .jip-detail .jip-detail__mobile-info-card dt::before {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    background-color: var(--jip-accent);
    -webkit-mask: var(--jip-info-icon) center / contain no-repeat;
    mask: var(--jip-info-icon) center / contain no-repeat;
  }

  .jip-detail .jip-detail__mobile-info-card dt:has(img[src$="jip-calendar-check.svg"]) {
    --jip-info-icon: url("./icons/jip-calendar-check.svg");
  }

  .jip-detail .jip-detail__mobile-info-card dt:has(img[src$="jip-users.svg"]) {
    --jip-info-icon: url("./icons/jip-users.svg");
  }

  .jip-detail .jip-detail__mobile-info-card dt:has(img[src$="jip-archive.svg"]) {
    --jip-info-icon: url("./icons/jip-archive.svg");
  }

  .jip-detail .jip-detail__mobile-info-card dt:has(img[src$="jip-house-accent.svg"]) {
    --jip-info-icon: url("./icons/jip-house-accent.svg");
  }

  .jip-detail .jip-detail__mobile-info-price {
    margin-top: 15px;
  }

  .jip-detail .jip-detail__mobile-info-price del {
    display: block;
    color: rgba(20, 20, 19, .7);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
  }

  .jip-detail .jip-detail__mobile-info-price strong {
    display: block;
    margin-top: 4px;
    color: var(--jip-accent);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.78px;
  }

  .jip-detail .jip-detail__mobile-info-price p {
    margin: 6px 0 0;
    color: rgba(20, 20, 19, .7);
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
    letter-spacing: -.26px;
  }

  .jip-detail .jip-detail__mobile-info-price p b {
    color: inherit;
    font-weight: 700;
  }

  .jip-detail .jip-detail__application-info-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }

  .jip-detail .jip-detail__application-info-actions .jip-detail__button {
    min-height: 51px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.5;
  }

  .jip-detail .jip-detail__mobile-apply {
    display: block;
    background: #faf9f5;
  }

  .jip-detail .jip-detail__mobile-apply-inner {
    width: min(343px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__button {
    height: 52px;
    min-height: 52px;
    margin-top: 14px;
    padding: 0 7px;
    font-size: 18px;
    letter-spacing: -.18px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar {
    width: 100%;
    margin-top: 0;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-head,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-head {
    grid-template-columns: 18px max-content 18px;
    gap: 14px;
    width: max-content;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-head button,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-head button {
    display: grid;
    place-items: center;
    width: 18px;
    height: 26px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-head button:first-child img,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-head button:first-child img {
    transform: rotate(180deg);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-head img,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-head img {
    display: block;
    width: 17px;
    height: 17px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-head strong,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-head strong {
    color: #141413;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -.17px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-weekdays,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-weekdays {
    height: 42px;
    margin-top: 10px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-weekdays span,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-weekdays span {
    height: 42px;
    color: #212121;
    font-size: 15px;
    font-weight: 600;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-grid,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-grid {
    row-gap: 11px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day {
    height: 47px;
    color: rgba(33, 33, 33, .4);
    font-size: 15px;
    font-weight: 700;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-session::before,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-session::before {
    display: none;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-open::before,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-open::before,
  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-selected::before,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-selected::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e8e6dc;
    content: "";
    transform: translateX(-50%);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-selected::before,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-selected::before {
    background: var(--jip-accent);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-open,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-open {
    color: #5e5d59;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-closing,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-closing {
    color: var(--jip-accent);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-closed,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-closed {
    color: #5e5d59;
    text-decoration: line-through;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-selected,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-selected {
    color: #fff;
    text-decoration: none;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day small,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day small {
    position: absolute;
    z-index: 1;
    top: 30px;
    left: 50%;
    width: 42px;
    color: currentColor;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.18px;
    text-decoration: none;
    transform: translateX(-50%);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__calendar-day.jip-state-selected small,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__calendar-day.jip-state-selected small {
    display: none;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session {
    min-height: 136px;
    margin-top: 27px;
    padding: 18px;
    border: 1px solid var(--jip-accent);
    border-radius: 10px;
    background: var(--jip-sheet-session-bg);
    color: var(--jip-sheet-session-text);
  }

  .jip-detail .jip-detail__bottom-sheet .jip-detail__session {
    margin-top: 20px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session > div strong,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session > div strong {
    color: var(--jip-accent);
    font-size: 20px;
    line-height: 1.3;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session > div span,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session > div span {
    padding: 4px 7px;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -.24px;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session[data-session-status="open"] > div span,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session[data-session-status="open"] > div span {
    background: rgba(37, 188, 107, .1);
    color: #00803b;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session p,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session p {
    gap: 8px;
    margin-top: 10px;
    color: var(--jip-sheet-session-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session p i,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session p i {
    height: 14px;
    background: rgba(110, 42, 19, .28);
  }

  .jip-detail .jip-detail__mobile-apply .jip-detail__session small,
  .jip-detail .jip-detail__bottom-sheet .jip-detail__session small {
    margin-top: 14px;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
  }
}

@media (max-width: 860px) {
  .jip-detail {
    padding-bottom: 142px;
  }

  .jip-detail .jip-detail__hero {
    height: 125.3333cqw;
    max-height: 470px;
  }

  .jip-detail .jip-detail__hero--claude {
    height: 125.3333cqw;
    min-height: 125.3333cqw;
    max-height: none;
  }

  .jip-detail .jip-detail__hero--leader {
    height: 125.3333cqw;
    min-height: 125.3333cqw;
    max-height: none;
  }

  .jip-detail .jip-detail__hero-stage {
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .jip-detail .jip-detail__hero-blob {
    display: none;
  }

  .jip-detail .jip-detail__hero-mobile-ellipse {
    display: block;
    left: 37.0667cqw;
    top: 52.9333cqw;
    width: 115.2cqw;
    height: 115.2cqw;
  }

  .jip-detail .jip-detail__hero-copy {
    left: 6.4cqw;
    top: 7.2cqw;
    width: 80cqw;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-copy,
  .jip-detail .jip-detail__hero--claude h1,
  .jip-detail .jip-detail__hero--claude .jip-detail__hero-description {
    width: 74.5333cqw;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-description {
    width: 74.5333cqw;
  }

  .jip-detail .jip-detail__hero-badges {
    gap: 1.0667cqw;
  }

  .jip-detail .jip-detail__hero-badges span {
    min-height: 6.9333cqw;
    padding: 1.0667cqw 2.1333cqw;
    border-radius: 1.6cqw;
    font-size: 3.2cqw;
  }

  .jip-detail .jip-detail__hero h1 {
    width: 80cqw;
    margin-top: 2.1333cqw;
    font-size: 8cqw;
    line-height: 1.25;
    letter-spacing: -.12cqw;
  }

  .jip-detail .jip-detail__hero-description {
    width: 80cqw;
    margin-top: 1.6cqw;
    font-size: 3.2cqw;
    line-height: 1.5;
    letter-spacing: -.064cqw;
  }

  .jip-detail .jip-detail__hero-actions {
    display: none;
  }

  .jip-detail .jip-detail__hero-specs {
    gap: 0;
    margin-top: 3.2cqw;
  }

  .jip-detail .jip-detail__hero-specs li {
    gap: 1.0667cqw;
    padding: 0 1.8667cqw;
    font-size: 3.2cqw;
    line-height: 4.2667cqw;
  }

  .jip-detail .jip-detail__hero-specs img {
    width: 4.2667cqw;
    height: 4.2667cqw;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node {
    object-fit: contain;
    animation-name: jip-hero-claude-float;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node {
    object-fit: contain;
    animation-name: jip-hero-claude-float;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node--chat {
    --jip-hero-float-y: 2.2cqw;
    left: -.9333cqw; top: 98cqw; width: 17.7779cqw; height: 12.5707cqw;
    animation-duration: 5.6s; animation-delay: -.4s;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node--chat {
    --jip-hero-float-y: 2.2cqw;
    left: -.9333cqw; top: 98cqw; width: 17.7779cqw; height: 12.5707cqw;
    animation-duration: 5.6s; animation-delay: -.4s;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node--skills {
    --jip-hero-float-y: 2.8cqw;
    left: 20.1333cqw; top: 78.608cqw; width: 19.9027cqw; height: 19.9027cqw;
    animation-duration: 6.4s; animation-delay: -1.7s;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node--skills {
    --jip-hero-float-y: 2.8cqw;
    left: 20.1333cqw; top: 78.608cqw; width: 19.9027cqw; height: 19.9027cqw;
    animation-duration: 6.4s; animation-delay: -1.7s;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node--code {
    --jip-hero-float-y: 2.4cqw;
    left: 34.4cqw; top: 103.2cqw; width: 15.6349cqw; height: 13.9117cqw;
    animation-duration: 5.9s; animation-delay: -2.6s;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node--code {
    --jip-hero-float-y: 2.4cqw;
    left: 34.4cqw; top: 103.2cqw; width: 15.6349cqw; height: 13.9117cqw;
    animation-duration: 5.9s; animation-delay: -2.6s;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node--connectors {
    --jip-hero-float-y: 2.3cqw;
    left: 84cqw; top: 70.6667cqw; width: 14.9293cqw; height: 14.9293cqw;
    animation-duration: 6.8s; animation-delay: -1.1s;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node--connectors {
    --jip-hero-float-y: 2.3cqw;
    left: 84cqw; top: 70.6667cqw; width: 14.9293cqw; height: 14.9293cqw;
    animation-duration: 6.8s; animation-delay: -1.1s;
  }

  .jip-detail .jip-detail__hero--claude .jip-detail__hero-node--crab {
    --jip-hero-float-y: 3.3cqw;
    left: 51.7733cqw; top: 85.84cqw; width: 48.0909cqw; height: 36.0629cqw;
    animation-duration: 7.2s; animation-delay: -3.2s;
  }

  .jip-detail .jip-detail__hero--leader .jip-detail__hero-node--crab {
    --jip-hero-float-y: 3.3cqw;
    left: 51.7733cqw; top: 85.84cqw; width: 48.0909cqw; height: 36.0629cqw;
    animation-duration: 7.2s; animation-delay: -3.2s;
  }

  .jip-detail .jip-detail__hero--vibecoding {
    height: 135cqw;
    min-height: 135cqw;
    max-height: none;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-copy {
    left: 6.4cqw;
    top: 7.2cqw;
    width: 80cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-badges {
    gap: 1.0667cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-badges span {
    min-height: 6.9333cqw;
    padding: .8cqw 2.1333cqw 1.3333cqw;
    border-width: .1333cqw;
    border-radius: 1.0667cqw;
    font-size: 3.2cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding h1 {
    width: 80cqw;
    margin-top: 2.1333cqw;
    font-size: 8cqw;
    letter-spacing: -.12cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-description {
    width: 80cqw;
    margin-top: 3.2cqw;
    font-size: 3.2cqw;
    letter-spacing: -.064cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-specs {
    margin-top: 3.2cqw;
  }

  .jip-detail .jip-detail__hero--vibecoding .jip-detail__hero-art-vibecoding {
    --jip-vibe-u: .1158711cqw;
    left: 2.6667cqw;
    top: 72.5cqw;
  }

  .jip-detail .jip-detail__hero--admaker {
    height: 136cqw;
    min-height: 136cqw;
    max-height: none;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-art-admaker {
    --jip-hero-admaker-float-y: 2.2cqw;
    left: 6.4cqw;
    top: 82cqw;
    width: 87.2cqw;
    height: 49.05cqw;
    border-radius: 3.2cqw;
    box-shadow: 0 3.2cqw 8cqw rgba(35, 12, 20, .2);
    animation-duration: 8s;
  }

  
  
  
  
  
  .jip-detail .jip-detail__section-tabs {
    width: 100%;
    height: 56px;
    margin-top: 0;
    overflow-x: auto;
  }

  .jip-detail .jip-detail__section-tabs a {
    min-width: max-content;
    padding: 0 12px;
    font-size: 14px;
  }

  .jip-detail .jip-detail__content-shell,
  .jip-detail .jip-detail__body {
    width: 100%;
  }

  .jip-detail .jip-detail__body--track-b > section {
    padding: 64px 20px;
  }

  .jip-detail .jip-detail__body--track-b h2 {
    font-size: 30px;
  }

  .jip-detail .jip-track-b__cards,
  .jip-detail .jip-track-b__personas,
  .jip-detail .jip-track-b__tiers {
    grid-template-columns: 1fr;
  }

  .jip-detail .jip-track-b__outcome-headline {
    margin-top: 52px;
  }

  .jip-detail .jip-track-b__profile {
    padding: 26px 20px;
  }

  .jip-detail .jip-track-b__profile-head {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .jip-detail .jip-detail__mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    min-height: calc(109px + env(safe-area-inset-bottom));
    padding: 0 16px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .08);
    contain: layout paint;
  }

  .jip-detail .jip-detail__mobile-cta > p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 32px);
    min-height: 35px;
    margin: 0 -16px 12px;
    padding: 7px 16px;
    background: var(--jip-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }

  .jip-detail .jip-detail__mobile-cta > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    padding: 10px 8px;
    border: 0;
    border-radius: 8px;
    background: var(--jip-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    cursor: pointer;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jip-detail .jip-detail__hero-node,
  .jip-detail .jip-detail__bottom-sheet-backdrop,
  .jip-detail .jip-detail__bottom-sheet-dialog {
    animation: none;
    transition: none;
  }

  .jip-detail .jip-track-b__visual-line,
  .jip-detail .jip-track-b__visual-task,
  .jip-detail .jip-track-b__visual-msg,
  .jip-detail .jip-track-b__visual-run i,
  .jip-detail .jip-track-b__visual-chart i {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .jip-detail .jip-detail__hero-art-vibecoding__window,
  .jip-detail .jip-detail__hero-art-vibecoding__window-back,
  .jip-detail .jip-detail__hero-art-vibecoding__bubble,
  .jip-detail .jip-detail__hero-art-vibecoding__tool,
  .jip-detail .jip-detail__hero-art-vibecoding__gear,
  .jip-detail .jip-detail__hero-art-vibecoding__tool--check::before,
  .jip-detail .jip-detail__hero-art-vibecoding__tool--check::after,
  .jip-detail .jip-detail__hero-art-vibecoding__tool--clock::before,
  .jip-detail .jip-detail__hero-art-vibecoding__tool--clock::after,
  .jip-detail .jip-detail__hero-art-vibecoding__chart i,
  .jip-detail .jip-detail__hero-art-vibecoding__spark,
  .jip-detail .jip-detail__hero-art-vibecoding__code-mark,
  .jip-detail .jip-detail__hero-art-vibecoding__claude-mark,
  .jip-detail .jip-detail__hero-art-vibecoding__loader {
    animation: none;
  }

  .jip-detail .jip-detail__hero-art-vibecoding__tool--check::after {
    opacity: 1;
  }

  .jip-detail .jip-detail__hero-art-admaker {
    animation: none;
  }

  .jip-detail .jip-detail__hero-art-admaker__video {
    display: none;
  }
}

@media (max-width: 860px) {
  .jip-detail .jip-detail__hero--admaker {
    --jip-hero-bg: var(--jip-hero-band-bg);
    height: 136cqw;
    min-height: 136cqw;
    max-height: none;
  }

  .jip-detail .jip-detail__hero--admaker::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0 0 auto;
    height: 97.8667cqw;
    background: linear-gradient(180deg, rgb(var(--jip-hero-scrim-rgb)) 0%, rgb(var(--jip-hero-scrim-rgb)) 72%, rgba(var(--jip-hero-scrim-rgb), 0) 100%);
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    height: 136cqw;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__media::before {
    display: none;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__poster,
  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__video {
    top: 69.6cqw;
    bottom: auto;
    left: 50%;
    width: 118cqw;
    height: 66.3763cqw;
    transform: translateX(-50%);
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__noise {
    display: none;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-admaker__inner {
    position: relative;
    z-index: 2;
    width: min(86.1333cqw, calc(100% - 12.8cqw));
    height: 136cqw;
    margin: 0 0 0 6.4cqw;
    padding-top: 7.2cqw;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-copy,
  .jip-detail .jip-detail__hero--admaker h1,
  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-description {
    width: 100%;
  }

  .jip-detail .jip-detail__hero--admaker h1 {
    margin-top: 2.1333cqw;
    font-size: 8cqw;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .jip-detail .jip-detail__hero--admaker .jip-detail__hero-description {
    margin-top: 3.2cqw;
    font-size: 3.2cqw;
    line-height: 1.5;
  }
}

@media (max-width: 860px) {
  /* "업무 리뷰부터 대시보드까지" 는 한 줄로 떨어져야 한다. 기본값(80cqw / 8cqw)
     에서는 폭이 18px 모자라 마지막 줄이 접혔다. 상자를 조금 넓히고 글자를 조금
     줄여 넉넉하게 한 줄로 만든다. */
  .jip-detail .jip-detail__hero--leader h1 {
    width: 84cqw;
    font-size: 7.6cqw;
    letter-spacing: -.12cqw;
  }
}

/* ── pie 히어로 밴드 ─────────────────────────────────────────────────────
   셸의 admaker 밴드보다 뒤에 와야 순서로 이긴다. 데스크탑 원본은 1690:8919,
   모바일 원본은 1678:3980 이다. */

@media (min-width: 861px) {
  /* 1690:8921 은 마젠타 스크림을 어두운 스크림 위에 겹쳐 깐다. admaker 는 한 겹이라
     여기서 두 겹으로 덮어쓴다. 각도와 정지점은 admaker 와 같다. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__media::before {
    background:
      linear-gradient(268.884deg, rgba(180, 2, 102, 0) 5.9085%, rgb(var(--jip-hero-scrim-rgb)) 22.194%),
      linear-gradient(268.884deg, rgba(117, 29, 53, 0) 5.9085%, rgb(23, 10, 0) 22.194%);
  }

  /* 인물 컷 1072x603 @ left 900 (1920 기준 = 50% - 60). */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__poster,
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__video {
    top: 50%;
    left: calc(50% - 60px);
    width: 1072px;
    height: 603px;
    transform: translateY(-50%);
  }

  /* 시안의 실효 불투명도는 0.2 x 0.4 = 0.08 이다. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__noise {
    opacity: .08;
  }

  /* 카피 블록은 시안에서 세로 중앙이다(admaker 는 위 56px 고정).
     가로는 시안 320 을 따르지 않는다. admaker 셸의 max(40px, 50vw - 640px) 는
     1280 셸을 가운데 정렬한 값이라 카피가 본문보다 80px(1440 기준) 왼쪽에서
     시작한다. `projects/jip/AGENTS.md` 의 "히어로 카피는 1120 콘텐츠 셸에
     얹힌다" 불변식대로 1120 셸 기준(50vw - 560px)으로 되돌린다. 1440 에서 160,
     1920 에서 400 — .jip-detail__content-shell 의 왼쪽 모서리와 같은 값이다.
     이 히어로에는 우측 아트가 없어 카피만 움직인다. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__inner {
    align-items: center;
    width: min(1120px, calc(100vw - 80px));
    margin-left: max(40px, calc(50vw - 560px));
    padding-top: 0;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-copy {
    width: 528px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-badges span {
    min-height: 39px;
    padding: 6px 14px;
    font-size: 18px;
    letter-spacing: -0.54px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-eyebrow {
    margin: 16px 0 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }

  .jip-detail .jip-detail__hero--pie h1 {
    width: 528px;
    margin-top: 16px;
    letter-spacing: -0.96px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-description {
    width: 607px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.36px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  /* 시안 버튼: padding 17/32, radius 8, 18px, 외곽선은 2px. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-actions .jip-detail__button {
    min-height: 54px;
    padding: 17px 32px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 18px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-actions .jip-detail__button--outline {
    border-width: 2px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-specs {
    margin-top: 24px;
    gap: 10px;
    color: #ccc;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-specs li {
    gap: 4px;
    padding: 0;
    border-right: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-specs li + li::before {
    content: "";
    width: 1.5px;
    height: 16px;
    margin-right: 6px;
    background: #ccc;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-specs img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 860px) {
  /* 609 / 375 = 162.4cqw */
  .jip-detail .jip-detail__hero--pie {
    height: 162.4cqw;
    min-height: 162.4cqw;
  }

  /*
   * 시안 스크림(1678:3982)은 470px 박스이고 솔리드가 333 에서 끝나 인물 컷이
   * 시작되는 지점과 정확히 맞는다. 609 전체 기준으로 환산하면 54.68% / 71.59%.
   * 카피는 323 에서 끝나므로 흰 글씨가 밝은 베이스로 내려앉지 않는다.
   * 투명 끝색이 스크림 색이 아니라 #b0005f 인 것도 시안 그대로다.
   */
  .jip-detail .jip-detail__hero--pie::before {
    height: 100%;
    background: linear-gradient(180deg,
      #d30277 0%,
      #d30277 54.68%,
      rgba(176, 0, 95, 0) 71.59%,
      rgba(176, 0, 95, 0) 100%);
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__media,
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__inner {
    height: 162.4cqw;
  }

  /* 인물 컷 495x278 @ top 331, 가로 중앙. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__poster,
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__video {
    top: 88.2667cqw;
    left: 50%;
    width: 132cqw;
    height: 74.1333cqw;
    transform: translateX(-50%);
  }

  /* 시안은 이 히어로에도 noise 를 얹는다(overlay, 실효 0.08). */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__noise {
    display: block;
    z-index: 1;
    opacity: .08;
  }

  /* 카피 블록 left 24 / top 30 / w 343. 시안은 좌우 여백이 대칭이 아니라
     왼쪽 24 / 오른쪽 8 이므로 가드도 한쪽 몫(6.4cqw)만 뺀다. 대칭으로 빼면
     343 이 327 로 잘린다. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-admaker__inner {
    align-items: flex-start;
    width: min(91.4667cqw, calc(100% - 6.4cqw));
    margin-left: 6.4cqw;
    padding-top: 8cqw;
  }

  /* 1678:3984 의 값을 그대로 쓰되 단위는 375 캔버스 기준 cqw 다. 히어로 높이가
     162.4cqw 라 폭에 따라 줄어드는데 타이포를 px 로 박으면 320 같은 좁은 화면에서
     카피만 안 줄어 히어로를 넘긴다. 3.75px = 1cqw 이므로 375 에서는 시안 px 과
     정확히 같은 값이 된다. */
  .jip-detail .jip-detail__hero--pie .jip-detail__hero-badges {
    gap: 1.6cqw;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-badges span {
    min-height: 6.9333cqw;
    padding: 1.0667cqw 2.1333cqw;
    border-radius: 1.0667cqw;
    font-size: 3.2cqw;
    letter-spacing: -0.032cqw;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-eyebrow {
    margin-top: 2.6667cqw;
    font-size: 3.4667cqw;
    font-weight: 600;
    line-height: 1.5;
  }

  .jip-detail .jip-detail__hero--pie h1 {
    width: 100%;
    margin-top: 2.1333cqw;
    font-size: 8cqw;
    line-height: 1.25;
    letter-spacing: -0.16cqw;
  }

  .jip-detail .jip-detail__hero--pie .jip-detail__hero-description {
    width: 100%;
    margin-top: 3.2cqw;
    font-size: 3.2cqw;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.064cqw;
  }
}
