/* =========================================================
   OO 원데이 세미나 랜딩페이지
   색 흐름: 문제(다크그린) → 해결(민트) → 행동(핑크)
   ========================================================= */

:root {
  --green: #0B2E24;
  --green-deep: #08251D;
  --green-soft: #133E32;
  --mint: #B9F0DC;
  --pink: #FF3D8A;
  --red: #FF2B2B;
  --red-deep: #E31A1A;
  --ink: #0B2E24;
  --ink-soft: #3E5C52;
  --kakao: #FEE500;
  --naver: #03C75A;

  --col: 480px;
  --side: 340px;
  --pad: 24px;
  --cta-h: 76px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui,
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: #051A14;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: background-color .6s var(--ease);
}
body[data-phase="solution"] { background: #DDF6EC; }
body[data-phase="action"]   { background: #FFD9E8; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
[hidden] { display: none !important; }

/* ---------- Top bar ---------- */
.topbar { position: relative; z-index: 40; background: #fff; border-bottom: 1px solid #E9EEEC; }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--col) + var(--side) + 48px);
  height: 56px;
  margin: 0 auto;
  padding: 0 20px;
}
.topbar__logo { font-size: 17px; font-weight: 900; letter-spacing: -.02em; color: var(--ink); text-decoration: none; }
.topbar__logo span { color: var(--red); margin: 0 1px; }
.topbar__cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 959px) { .topbar__inner { max-width: var(--col); } }

/* ---------- Layout ---------- */
.layout { width: 100%; max-width: var(--col); margin: 0 auto; }
.page { background: var(--green); box-shadow: 0 0 80px rgba(0, 0, 0, .18); }
.side-card { display: none; }

@media (min-width: 960px) {
  .layout {
    max-width: none;
    display: grid;
    grid-template-columns: var(--col) var(--side);
    gap: 48px;
    justify-content: center;
    padding: 0 24px;
  }
  .side-card { display: block; }
  .mobile-cta { display: none !important; }
}

/* ---------- Section base ---------- */
.sec {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 96px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.sec > * { position: relative; }
.sec--auto { min-height: auto; }

/* 네온 민트 글로우 (벤치마킹 톤) */
.glow {
  position: absolute !important;
  left: 50%;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(56, 230, 170, .28), rgba(56, 230, 170, .08) 55%, transparent 72%);
}
.glow--top { top: -70%; }
.glow--center { top: 50%; transform: translate(-50%, -50%); opacity: .75; }

/* 분홍 배경 + 흰 글씨 강조 */
.hl-pink {
  display: inline;
  padding: 0 .16em;
  border-radius: .18em;
  background: var(--pink);
  color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.sec--green      { background: var(--green); color: #fff; }
.sec--green-deep { background: var(--green-deep); color: #fff; }
.sec--mint       { background: linear-gradient(180deg, var(--mint), #A3EBD0); color: var(--ink); }
.sec--pink       { background: var(--pink); color: var(--ink); }

/* ---------- Typography ---------- */
.eyebrow {
  align-self: center;
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-bottom: 22px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sec--green .eyebrow, .sec--green-deep .eyebrow { background: var(--mint); color: var(--ink); box-shadow: 0 0 24px rgba(56, 230, 170, .45); }
.sec--mint .eyebrow { background: var(--ink); color: var(--mint); }
.sec--pink .eyebrow { background: #fff; color: var(--pink); }

.display {
  font-size: clamp(32px, 9vw, 44px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.045em;
}
.display--xl {
  font-size: clamp(56px, 16.5vw, 78px);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.display--md { font-size: clamp(27px, 7.6vw, 37px); line-height: 1.3; }
mark { background: none; color: inherit; }
.sec--green mark, .sec--green-deep mark { color: var(--mint); text-shadow: 0 0 28px rgba(56, 230, 170, .55); }
.sec--mint mark {
  background: linear-gradient(transparent 60%, rgba(255, 61, 138, .45) 60%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.sec--pink mark {
  background: #fff;
  padding: 0 .12em;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lead {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -.02em;
  opacity: .82;
}
.caption { margin-top: 16px; font-size: 13px; opacity: .6; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .15s var(--ease), background-color .2s, box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 12px 28px -10px rgba(255, 43, 43, .7); }
.btn--red:hover { background: var(--red-deep); }
.btn--block { width: 100%; }
.btn--lg { height: 64px; font-size: 19px; border-radius: 18px; }
.btn__arrow { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn:focus-visible, .link-btn:focus-visible, .kakao-fab:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3.2s ease-in-out infinite 1.5s;
}
@keyframes shine { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 43, 43, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 43, 43, .55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 43, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 43, 43, 0); }
}

/* ---------- Media + placeholder ---------- */
.media { position: relative; overflow: hidden; border-radius: 14px; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.is-missing {
  aspect-ratio: var(--ar, 4/5);
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg,
    color-mix(in srgb, currentColor 5%, transparent) 0 10px,
    color-mix(in srgb, currentColor 10%, transparent) 10px 20px);
  border: 1.5px dashed color-mix(in srgb, currentColor 35%, transparent);
}
.media.is-missing img { display: none; }
.media.is-missing::after {
  content: attr(data-file);
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  word-break: break-all;
  opacity: .7;
}

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.chip--seat { background: #fff; color: var(--ink); border-color: #fff; letter-spacing: 0; font-size: 13px; }
.chip--seat b { color: var(--red); }

/* =========================================================
   1. Hero
   ========================================================= */
.hero {
  justify-content: flex-start;
  gap: 0;
  min-height: calc(100svh - 56px);
  padding-top: 20px;
  padding-bottom: 48px;
}
.hero__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; }
/* 메인 배너 */
.promo {
  overflow: hidden;
  min-height: 212px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(185, 240, 220, .18);
  background: radial-gradient(120% 100% at 85% 25%, #1B6A51 0%, #0F4535 45%, #092A21 100%);
  text-align: left;
}
.promo__photo {
  position: absolute;
  top: 0;
  right: -4%;
  bottom: 0;
  width: 50%;
  border-radius: 0;
  background: transparent;
}
.promo__photo img {
  object-position: center 6%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%), linear-gradient(0deg, transparent 0%, #000 22%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%), linear-gradient(0deg, transparent 0%, #000 22%);
  mask-composite: intersect;
}
.promo__photo.is-missing { border: 0; aspect-ratio: auto; }
.promo__body { position: relative; z-index: 1; width: 66%; }
.promo__logo { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; }
.promo__logo i {
  width: 16px;
  height: 12px;
  background: linear-gradient(135deg, #fff 50%, var(--mint) 50%);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
}
.promo__date { margin: 12px 0 6px; font-size: clamp(13px, 3.6vw, 16px); font-weight: 600; opacity: .92; }
.promo__title {
  font-size: clamp(20px, 5.7vw, 26px);
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: -.05em;
}
.promo__title em { font-style: normal; color: var(--mint); text-shadow: 0 0 22px rgba(56, 230, 170, .5); }
.promo__by { margin-top: 12px; font-size: 13px; font-weight: 600; opacity: .9; }
.promo__by b { color: var(--pink); font-weight: 800; }

/* 소개 영상 */
.video {
  margin: 12px 0 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(185, 240, 220, .18);
}
.video iframe { display: block; width: 100%; height: 100%; border: 0; }

.hero__meta {
  margin-bottom: 16px;
  padding: 4px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(185, 240, 220, .16);
  text-align: left;
}
.hero__meta div { display: flex; gap: 14px; padding: 10px 0; }
.hero__meta div + div { border-top: 1px solid rgba(255, 255, 255, .1); }
.hero__meta dt { flex: none; width: 36px; font-size: 14px; font-weight: 600; color: var(--mint); }
.hero__meta dd { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.hero__scroll {
  margin: auto auto 0;
  padding-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  opacity: .45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll::after { content: ""; width: 1px; height: 28px; background: currentColor; animation: drip 2s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================
   2. Market — stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 40px; }
.stats li {
  padding: 18px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(185, 240, 220, .14);
}
.stats strong { display: block; font-size: 26px; line-height: 1.1; font-weight: 800; letter-spacing: -.04em; color: var(--mint); }
.stats span { display: block; margin-top: 6px; font-size: 12px; line-height: 1.4; opacity: .7; }
.stats--grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 36px; }
.stats--grid li { padding: 24px 12px 20px; border-radius: 18px; box-shadow: inset 0 0 30px rgba(56, 230, 170, .06); }
.stats--grid strong { font-size: clamp(28px, 8vw, 36px); text-shadow: 0 0 22px rgba(56, 230, 170, .45); }
.stats--grid strong small { font-size: .5em; font-weight: 700; margin: 0 2px; opacity: .85; }
.stats--grid span { margin-top: 8px; font-size: 14px; font-weight: 600; opacity: .8; }
.stats--grid + .caption { margin-top: 14px; }
.stats--ink { margin-top: 32px; }
.stats--ink li { background: rgba(255, 255, 255, .55); border-color: rgba(11, 46, 36, .08); }
.stats--ink strong { color: var(--ink); }

/* =========================================================
   2-2. Desire — questions + 6 cards
   ========================================================= */
.asks { display: grid; gap: 8px; width: 100%; max-width: 340px; margin: 20px auto 0; text-align: left; }
.ask {
  justify-self: start;
  padding: 10px 15px;
  border-radius: 4px 18px 18px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(185, 240, 220, .18);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.ask:nth-child(2) { justify-self: end; border-radius: 18px 4px 18px 18px; background: rgba(185, 240, 220, .14); }
.lead--tight { margin-top: 20px; }
.lead strong { color: #fff; font-weight: 800; }

.desire-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 36px; text-align: left; }
@media (min-width: 960px) { .desire-grid { grid-template-columns: repeat(3, 1fr); } }
.desire {
  padding: 18px 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(185, 240, 220, .14);
  box-shadow: inset 0 0 30px rgba(56, 230, 170, .05);
}
.desire__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(185, 240, 220, .12);
  color: var(--mint);
}
.desire__icon svg { width: 32px; height: 32px; stroke-width: 1.8; filter: drop-shadow(0 0 8px rgba(56, 230, 170, .45)); }
.desire__emoji { font-style: normal; font-size: 32px; line-height: 1; }
.has-lucide .desire__emoji { display: none; }
.desire strong { display: block; margin-top: 12px; font-size: 16px; font-weight: 800; letter-spacing: -.03em; }
.desire__desc { display: block; margin-top: 4px; font-size: 13px; line-height: 1.45; letter-spacing: -.03em; color: rgba(255, 255, 255, .6); }
.desire__close { margin-top: 28px; font-size: 18px; font-weight: 800; line-height: 1.55; letter-spacing: -.03em; }

/* =========================================================
   3. Promise
   ========================================================= */
.promise-list, .nope-list, .career, .worries, .check-list, .info-card, .parking, .seat-meter, .form-card, .footer { text-align: left; }
.promise-list { margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, .14); }
.promise-list li { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.promise-list span { flex: none; font-size: 14px; font-weight: 800; color: var(--mint); padding-top: 3px; font-variant-numeric: tabular-nums; }
.promise-list p { font-size: 17px; line-height: 1.6; font-weight: 500; letter-spacing: -.03em; color: rgba(255, 255, 255, .86); }
.promise-list strong { font-weight: 800; color: #fff; box-shadow: inset 0 -.45em rgba(56, 230, 170, .28); }
.promise-list small { display: block; margin-top: 10px; font-size: 12px; font-weight: 500; opacity: .6; }

/* 입금 캡처 3열 그리드 */
.revenue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 32px; }
.revenue-grid .media {
  aspect-ratio: 1/2;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(185, 240, 220, .22);
  cursor: zoom-in;
  transition: transform .2s var(--ease), border-color .2s;
}
.revenue-grid .media:hover { transform: translateY(-2px); border-color: var(--mint); }
.revenue-grid .media img { object-position: top; }
.revenue-grid .media.is-extra { display: none; }
.revenue-grid.is-open .media.is-extra { display: block; }
.revenue-grid.is-open .media.is-extra.is-missing { display: grid; }
.more-btn {
  align-self: center;
  margin-top: 14px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(185, 240, 220, .35);
  border-radius: 999px;
  background: rgba(185, 240, 220, .08);
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   4. Demand — 3-image grid
   ========================================================= */
/* (입금 캡처 그리드 스타일은 .revenue-grid 참고) */

/* =========================================================
   5. Warning — strike list
   ========================================================= */
.nope-list { margin-top: 40px; }
.nope-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -.03em;
}
.nope-list i {
  flex: none;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 61, 138, .18);
  color: #FF79AE;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.nope-list p { color: #fff; }
.nope-list em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, .5);
}
.strike {
  font-weight: 700;
  background: linear-gradient(var(--pink), var(--pink)) no-repeat 0 58% / 0% 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size .9s var(--ease) .35s;
}
.is-in .strike { background-size: 100% 2px; }
.sec--green-deep .lead mark { font-weight: 700; }

/* =========================================================
   6. Revenue — vertical marquee
   ========================================================= */
.marquee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 72svh;
  max-height: 660px;
  margin-top: 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent);
}
.marquee__col { animation: marquee-up var(--dur, 36s) linear infinite; will-change: transform; }
.marquee__col--down { animation-name: marquee-down; }
.marquee__col > .media {
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(185, 240, 220, .2);
  cursor: zoom-in;
}
.marquee:hover .marquee__col { animation-play-state: paused; }
@keyframes marquee-up   { from { transform: translateY(0); }    to { transform: translateY(-50%); } }
@keyframes marquee-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }

/* =========================================================
   6-2. Insurance income — stats, bar chart, monthly captures
   ========================================================= */
.stats--ins { grid-template-columns: 1fr 1fr; margin-top: 32px; }
.stats--ins li:first-child { grid-column: span 2; padding: 22px 12px; }
.stats--ins li:first-child strong { font-size: clamp(34px, 10vw, 44px); text-shadow: 0 0 26px rgba(56, 230, 170, .5); }
.stats--ins strong { font-size: clamp(22px, 6.4vw, 28px); }
.stats--ins span { font-size: 13px; }

.ins-chart {
  display: grid;
  grid-template-columns: repeat(var(--n, 7), 1fr);
  gap: 6px;
  height: 230px;
  margin-top: 12px;
  padding: 16px 10px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(185, 240, 220, .14);
}
.ins-bar { display: flex; flex-direction: column; gap: 6px; min-width: 0; height: 100%; }
.ins-bar__track { position: relative; flex: 1; margin-top: 18px; }
.ins-bar__fill,
.ins-bar__val { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); }
.ins-bar__fill {
  width: 100%;
  max-width: 34px;
  height: 0;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #7CF5C8, rgba(56, 230, 170, .3));
  box-shadow: 0 0 18px rgba(56, 230, 170, .3);
  transition: height 1.1s var(--ease);
}
.ins-bar__val {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--mint);
  white-space: nowrap;
  transition: bottom 1.1s var(--ease);
}
.ins-bar.is-max .ins-bar__fill { background: linear-gradient(180deg, #FF7AB0, rgba(255, 61, 138, .45)); box-shadow: 0 0 20px rgba(255, 61, 138, .4); }
.ins-bar.is-max .ins-bar__val { color: #FF8DBB; }
.ins-chart.is-in .ins-bar__fill { height: calc(var(--h) * 1%); }
.ins-chart.is-in .ins-bar__val { bottom: calc(var(--h) * 1% + 4px); }
.ins-bar:nth-child(2) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .06s; }
.ins-bar:nth-child(3) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .12s; }
.ins-bar:nth-child(4) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .18s; }
.ins-bar:nth-child(5) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .24s; }
.ins-bar:nth-child(6) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .3s; }
.ins-bar:nth-child(7) :is(.ins-bar__fill, .ins-bar__val) { transition-delay: .36s; }
.ins-bar__m { font-size: 12px; font-weight: 600; opacity: .7; text-align: center; }
.ins-unit { margin-top: 8px; font-size: 12px; opacity: .5; text-align: right; }

.ins-carousel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px calc(var(--pad) * -1) 0;
  padding: 4px var(--pad) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad);
  scrollbar-width: none;
  text-align: left;
}
.ins-carousel::-webkit-scrollbar { display: none; }
.ins-card { flex: 0 0 74%; scroll-snap-align: start; }
.ins-card figcaption { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.ins-card figcaption b {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.ins-card figcaption span { font-size: 15px; font-weight: 800; color: var(--mint); letter-spacing: -.02em; }
.ins-card .media { border-radius: 16px; background: #fff; cursor: zoom-in; box-shadow: 0 16px 32px -18px rgba(0, 0, 0, .6); }
.swipe-hint { margin-top: 10px; font-size: 13px; font-weight: 600; opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  .ins-bar__fill { transition: none; }
}

/* =========================================================
   7. Instructor
   ========================================================= */
.profile { position: relative; border-radius: 22px; overflow: hidden; }
.profile__photo { border-radius: 22px; aspect-ratio: 4/5; background: #7d8285; }
.profile__photo img { object-position: center 12%; }
.profile__name {
  position: absolute !important;
  text-align: left;
  left: 0; right: 0; bottom: 0;
  padding: 64px 22px 22px;
  background: linear-gradient(transparent, rgba(8, 37, 29, .92));
}
.profile__name span { display: block; font-size: 14px; font-weight: 600; color: var(--mint); }
.profile__name strong { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.04em; line-height: 1.2; }
.profile__name em { font-style: normal; white-space: nowrap; }
.profile__sep { font-style: normal; }
@media (max-width: 440px) {
  .profile__sep { display: block; height: 0; overflow: hidden; }
}
.profile__quote {
  margin: 28px 0 8px;
  padding-left: 16px;
  border-left: 3px solid var(--mint);
  font-size: clamp(15px, 4.1vw, 18px);
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: -.04em;
  text-align: left;
}
.career li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 16px;
  font-weight: 600;
}
.career p { flex: 1; min-width: 0; line-height: 1.5; letter-spacing: -.02em; padding-top: 2px; }
.career__sm p { font-size: 14px; font-weight: 500; line-height: 1.55; letter-spacing: -.04em; color: rgba(255, 255, 255, .82); }
.career b {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(185, 240, 220, .14);
  color: var(--mint);
  font-size: 12px;
}

/* =========================================================
   8. Empathy — worry cards
   ========================================================= */
.worries { display: grid; gap: 12px; margin-top: 36px; }
.worry {
  padding: 24px 22px;
  border-radius: 22px;
  background: var(--green-soft);
  border: 1px solid rgba(185, 240, 220, .12);
}
.worry__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(185, 240, 220, .14);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}
.worry__q { margin-top: 12px; font-size: 23px; line-height: 1.35; font-weight: 800; letter-spacing: -.04em; }
.worry__a { margin-top: 12px; font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, .72); }
.worry__a mark { color: var(--mint); font-weight: 700; text-shadow: none; }

/* 사례 그리드 */
.cases { margin-top: 44px; text-align: left; }
.cases__title { margin-bottom: 16px; font-size: 21px; font-weight: 800; letter-spacing: -.04em; text-align: center; }
.cases__grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.case {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(185, 240, 220, .14);
}
.case__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(185, 240, 220, .1);
  font-size: 32px;
  line-height: 1;
}
.case div { min-width: 0; }
.case__from { font-size: 14px; line-height: 1.45; color: rgba(255, 255, 255, .6); letter-spacing: -.02em; }
.case__to { margin-top: 3px; font-size: 16px; font-weight: 600; line-height: 1.45; letter-spacing: -.03em; }
.case__to i { font-style: normal; color: var(--mint); margin-right: 2px; }
.case__to strong { color: var(--mint); font-weight: 800; text-shadow: 0 0 18px rgba(56, 230, 170, .35); }
.nowrap { white-space: nowrap; }
.cases__more { margin-top: 16px; font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, .5); text-align: center; }
.cases__note { margin-top: 6px; font-size: 12px; color: rgba(255, 255, 255, .4); text-align: center; }

@media (min-width: 960px) {
  .cases__grid { grid-template-columns: 1fr 1fr; }
  .cases__grid .case:last-child { grid-column: 1 / -1; }
  .case { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cases__grid .case:last-child { flex-direction: row; align-items: center; gap: 14px; }
}

/* =========================================================
   9. Solution (mint)
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 36px; }
.pillars li { padding: 20px 10px; border-radius: 18px; background: var(--green); color: #fff; text-align: center; }
.pillars strong { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.04em; color: var(--mint); }
.pillars span { display: block; margin-top: 4px; font-size: 13px; opacity: .8; }

/* =========================================================
   10. Reviews — carousel
   ========================================================= */
.carousel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px calc(var(--pad) * -1) 0;
  padding: 4px var(--pad) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad);
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.review { flex: 0 0 76%; scroll-snap-align: start; }
.review .media {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 32px -18px rgba(11, 46, 36, .45);
}
.review .media img { max-height: 520px; object-position: top; }
.review figcaption { margin-top: 12px; font-size: 14px; font-weight: 700; letter-spacing: -.02em; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.verified {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--green);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}
/* 카톡 대화 스타일 후기 카드 */
.kakao {
  overflow: hidden;
  border-radius: 20px;
  background: #B2C7DA;
  color: #111;
  text-align: left;
  box-shadow: 0 16px 32px -18px rgba(11, 46, 36, .45);
}
.kakao__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: #A7BCCF;
  font-size: 15px;
}
.kakao__head b { font-size: 14px; font-weight: 700; }
.kakao__head span { font-size: 18px; line-height: 1; color: #2b3640; }
.kakao__body { display: flex; flex-direction: column; gap: 8px; min-height: 380px; padding: 12px 12px 18px; }
.kakao__date {
  align-self: center;
  margin-bottom: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .13);
  color: #fff;
  font-size: 11px;
}
.kmsg { display: flex; align-items: flex-start; gap: 8px; }
.kmsg__avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: #8BA3B8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.kmsg--cont { margin-top: -4px; }
.kmsg--cont .kmsg__avatar { visibility: hidden; height: 0; }
.kmsg__col { flex: 1; min-width: 0; }
.kmsg__name { display: block; margin-bottom: 3px; font-size: 11px; color: #3b4853; }
.kmsg__row { display: flex; align-items: flex-end; gap: 4px; }
.kmsg__bubble {
  flex: 0 1 auto;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 4px 14px 14px 14px;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}
.kmsg time { flex: none; font-size: 10px; color: #55636f; white-space: nowrap; }
.kmsg--me { justify-content: flex-end; }
.kmsg--me .kmsg__row { max-width: 88%; }
.kmsg--me .kmsg__bubble { background: #FEE500; border-radius: 14px 4px 14px 14px; }

.biz__tel { color: #fff; font-weight: 700; text-decoration: none; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.carousel-dots span { width: 6px; height: 6px; border-radius: 3px; background: rgba(11, 46, 36, .25); transition: width .3s var(--ease), background .3s; }
.carousel-dots span.is-active { width: 20px; background: var(--ink); }

/* =========================================================
   11. Turn (pink)
   ========================================================= */
.turn { color: #fff; }
.turn__sub { margin-top: 32px; font-size: 19px; line-height: 1.6; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.turn__arrow { margin-top: 48px; font-size: 32px; font-weight: 300; color: #fff; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { translate: 0 8px; } }

/* =========================================================
   12. Curriculum — checklist
   ========================================================= */
.check-list { display: grid; gap: 10px; margin-top: 36px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px -16px rgba(11, 46, 36, .5);
}
.check-list p { font-size: 17px; line-height: 1.5; font-weight: 700; letter-spacing: -.03em; }
.check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 8px;
  background: var(--pink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.redact {
  filter: blur(5px);
  user-select: none;
  -webkit-user-select: none;
  background: rgba(255, 61, 138, .18);
  border-radius: 4px;
}
.locked { margin-top: 20px; font-size: 15px; font-weight: 700; text-align: center; }

/* =========================================================
   13. Location
   ========================================================= */
.info-card { margin-top: 32px; padding: 4px 20px; border-radius: 22px; background: #fff; color: var(--ink); }
.info-row { display: grid; grid-template-columns: 52px 1fr; gap: 10px; padding: 18px 0; border-bottom: 1px solid #EDF1EF; }
.info-row:last-child { border-bottom: 0; }
.info-row dt { font-size: 14px; font-weight: 600; color: var(--ink-soft); padding-top: 1px; }
.info-row dd { font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.info-row dd b { color: var(--red); }
.info-row small { display: block; margin-top: 2px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.link-btn {
  margin-top: 8px;
  padding: 5px 10px;
  border: 1px solid #D5DEDA;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.link-btn:hover { background: #F3F7F5; }

.map {
  position: relative;
  margin-top: 12px;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 46, 36, .05) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(11, 46, 36, .05) 1px, transparent 1px) 0 0 / 28px 28px,
    #F6FAF8;
  color: var(--ink);
}
.map__canvas { position: absolute; inset: 0; }
.map__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 24px 64px;
  text-align: center;
  font-size: 15px;
}
.map__fallback span { font-size: 13px; color: var(--ink-soft); }
.map__fallback svg { width: 40px; height: 40px; fill: var(--pink); filter: drop-shadow(0 6px 8px rgba(255, 61, 138, .35)); }
.map.is-loaded .map__fallback { display: none; }
.map__open {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  background: var(--naver);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.parking { margin-top: 12px; padding: 22px 20px; border-radius: 22px; background: #fff; color: var(--ink); }
.parking h3 { font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.parking li { display: flex; gap: 12px; padding: 10px 0; font-size: 15px; line-height: 1.5; border-bottom: 1px solid #EDF1EF; }
.parking li:last-child { border-bottom: 0; }
.parking b { flex: none; width: 48px; font-size: 13px; font-weight: 700; color: var(--pink); padding-top: 1px; }

/* =========================================================
   14. Apply
   ========================================================= */
.apply { padding-bottom: 72px; }
.seat-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
}
.seat-meter .dot { width: 12px; height: 12px; }
.seat-meter p { font-size: 18px; font-weight: 700; line-height: 1.4; }
.seat-meter b { color: var(--mint); font-size: 22px; }
.seat-meter small { font-size: 13px; font-weight: 500; opacity: .7; }

.form-card {
  margin-top: 12px;
  padding: 12px 8px;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 48px -24px rgba(11, 46, 36, .5);
}
/* 신청 폼 */
.apply-form { position: relative; display: grid; gap: 24px; padding: 14px 12px 8px; }
.q { min-width: 0; margin: 0; padding: 0; border: 0; }
.q__label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.03em;
  color: var(--ink);
}
.q__label b { color: var(--red); }
.q__label small { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.q__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 0;
  border-radius: 7px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.q__input {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid #DCE4E0;
  border-radius: 12px;
  background: #F8FAF9;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
textarea.q__input { height: auto; padding: 12px 14px; line-height: 1.5; resize: vertical; }
.q__input::placeholder { color: #9AA8A2; }
.q__input:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 3px rgba(255, 61, 138, .15); }
.q__sub { margin-top: 10px; }
.q__hint { display: block; margin-bottom: 6px; font-size: 13px; color: var(--ink-soft); }

.opts { display: grid; gap: 8px; }
.opts--2 { grid-template-columns: 1fr 1fr; }
.opt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid #DCE4E0;
  border-radius: 12px;
  background: #F8FAF9;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: border-color .15s, background-color .15s, color .15s;
}
.opt input { flex: none; width: 18px; height: 18px; margin: 0; accent-color: var(--pink); }
.opt:hover { border-color: #F7A8C8; }
.opt:has(input:checked) { border-color: var(--pink); background: #FFF1F7; color: #C2185B; }
.opt:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(255, 61, 138, .25); }

.q__err { display: none; margin-top: 6px; font-size: 12px; font-weight: 600; color: #E53935; }
.is-error .q__err { display: block; }
.is-error .q__input, .is-error .opt { border-color: #EF9A9A; }

.consent { display: grid; gap: 10px; padding: 14px; border-radius: 14px; background: #F4F7F6; }
.agree { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; cursor: pointer; }
.agree input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: var(--pink); }
.agree b { color: var(--red); }
.consent__detail { margin: -4px 0 2px 30px; font-size: 12px; color: var(--ink-soft); }
.consent__detail summary { cursor: pointer; text-decoration: underline; width: max-content; }
.consent__detail ul { margin-top: 8px; display: grid; gap: 4px; line-height: 1.5; }
.consent__detail li b { margin-right: 6px; color: var(--ink); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { padding: 10px 12px; border-radius: 10px; background: #FFF2F2; color: #C62828; font-size: 13px; font-weight: 600; line-height: 1.5; }
.apply-form .btn[disabled] { opacity: .7; cursor: progress; }

.apply-done { padding: 40px 20px 36px; text-align: center; }
.apply-done__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}
.apply-done h3 { font-size: 22px; font-weight: 900; letter-spacing: -.04em; }
.apply-done p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.apply-done a { color: var(--pink); font-weight: 700; }
.apply__after { margin-top: 16px; font-size: 14px; font-weight: 600; text-align: center; }

/* =========================================================
   15. Footer
   ========================================================= */
.footer {
  padding: 48px var(--pad) calc(var(--cta-h) + 40px + var(--safe-b));
  background: #06201A;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.7;
}
@media (min-width: 960px) { .footer { padding-bottom: 48px; } }
.disclaimer { padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.disclaimer h3 { margin-bottom: 10px; font-size: 14px; font-weight: 700; color: #fff; }
.disclaimer li { position: relative; padding-left: 12px; margin-bottom: 6px; }
.disclaimer li::before { content: "·"; position: absolute; left: 0; }
.biz { padding-top: 28px; }
.biz strong { display: block; margin-bottom: 8px; font-size: 15px; color: #fff; }
.biz .sep { margin: 0 8px; opacity: .35; }
.biz__links { display: flex; gap: 16px; margin: 16px 0 12px; }
.biz__links a { color: #fff; font-weight: 600; text-decoration: none; }
.biz__links a:first-child { color: var(--mint); }
.biz small { opacity: .6; }

/* =========================================================
   Desktop sticky side card
   ========================================================= */
.side-card {
  position: sticky;
  top: 40px;
  align-self: start;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .45);
}
.side-card__thumb { border-radius: 0; aspect-ratio: 16/9; background: #7d8285; }
.side-card__thumb img { object-position: center 18%; }
.side-card__body { padding: 20px 24px 24px; }
.side-card__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 61, 138, .12);
  color: #D81B60;
  font-size: 12px;
  font-weight: 700;
}
.side-card__title { margin: 12px 0 18px; font-size: 22px; line-height: 1.4; font-weight: 900; letter-spacing: -.045em; }
.side-card__info { margin-bottom: 20px; border-top: 1px solid #EDF1EF; }
.side-card__info div { display: grid; grid-template-columns: 40px 1fr; gap: 8px; padding: 13px 0; border-bottom: 1px solid #EDF1EF; }
.side-card__info dt { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.side-card__info dd { font-size: 15px; font-weight: 700; line-height: 1.45; letter-spacing: -.02em; }
.side-card__seats { display: flex; align-items: center; gap: 8px; }
.side-card__seats b { color: var(--red); }
.side-card__note { margin-top: 12px; font-size: 13px; text-align: center; color: var(--ink-soft); }

/* =========================================================
   Mobile bottom CTA bar
   ========================================================= */
.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 50;
  width: 100%;
  max-width: var(--col);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px calc(10px + var(--safe-b)) 18px;
  background: rgba(8, 37, 29, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(185, 240, 220, .12);
  color: #fff;
  transform: translate(-50%, 0);
  transition: transform .35s var(--ease);
}
.mobile-cta.is-hidden { transform: translate(-50%, 110%); }
.mobile-cta__info { flex: 1; min-width: 0; line-height: 1.35; }
.mobile-cta__seats { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; }
.mobile-cta__seats b { color: var(--mint); }
.mobile-cta__date { display: block; font-size: 12px; opacity: .65; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-cta .btn { flex: none; height: 52px; padding: 0 26px; }

/* =========================================================
   Kakao channel floating button
   ========================================================= */
.kakao-fab {
  position: fixed;
  z-index: 60;
  right: max(16px, calc((100vw - var(--col)) / 2 + 16px));
  bottom: calc(var(--cta-h) + 14px + var(--safe-b));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--kakao);
  color: #191600;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .45);
  transition: bottom .35s var(--ease), transform .2s;
}
.kakao-fab:hover { transform: translateY(-2px); }
.kakao-fab svg { width: 26px; height: 26px; fill: currentColor; }
.kakao-fab__label { display: none; font-size: 14px; font-weight: 700; }
body.cta-hidden .kakao-fab { bottom: calc(16px + var(--safe-b)); }

@media (min-width: 960px) {
  .kakao-fab { right: 28px; bottom: 28px; width: auto; padding: 0 18px 0 14px; border-radius: 999px; }
  .kakao-fab__label { display: inline; }
  body.cta-hidden .kakao-fab { bottom: 28px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 56px 16px 24px;
  background: rgba(3, 16, 12, .92);
  cursor: zoom-out;
}
.lightbox img { max-width: min(100%, 460px); max-height: 100%; border-radius: 14px; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
body.lock { overflow: hidden; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  top: 20px;
  z-index: 70;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity .25s, transform .25s;
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Sold out state ---------- */
.is-soldout .dot { animation: none; background: #999; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .dot, .btn--shine::after, .hero__scroll::after, .turn__arrow { animation: none; }
  .marquee { overflow-y: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee__col { animation: none; }
  .marquee .is-clone { display: none; }
  .strike { transition: none; }
}
