/* ============================================
   Re:Stage — Landing Page Styles
   Mobile-first. Audience: 중장년.
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-cream: #f9f6f0;
  --ink: #18191b;          /* near-black (was deep green) */
  --ink-2: #2a2b2e;
  --ink-soft: #5a5a5a;
  --amber: #d4a843;
  --amber-soft: #e8c87a;
  --cta: #e8500a;
  --cta-dark: #c8400a;
  --kakao: #fee500;
  --line: #e8e2d6;
  --line-dark: rgba(255,255,255,0.14);
  --radius: 20px;
  --shadow: 0 10px 40px rgba(24, 25, 27, 0.08);
  --shadow-hover: 0 18px 50px rgba(24, 25, 27, 0.16);
  --maxw: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  word-break: keep-all;       /* 한국어 단어 단위 줄바꿈 */
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
.accent { color: var(--cta); }

/* full-viewport section helper */
.section--full {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* dark sections */
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section-title { color: #fff; }
.section--dark .section-desc { color: rgba(255,255,255,0.72); }

/* section emoji label */
.section-emoji {
  display: inline-block;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  min-height: 52px; padding: 0 28px;
  border: none; border-radius: 50px; cursor: pointer; text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn--lg { min-height: 58px; padding: 0 34px; font-size: 1.08rem; }
.btn--cta { background: var(--cta); color: #fff; box-shadow: 0 8px 24px rgba(232, 80, 10, 0.3); }
.btn--cta:hover { background: var(--cta-dark); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(232, 80, 10, 0.4); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--kakao { background: var(--kakao); color: #3c1e1e; margin-top: 26px; box-shadow: 0 8px 24px rgba(254,229,0,0.4); }
.btn--kakao:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(254,229,0,0.5); }

/* ---------- Section titles ---------- */
.section-title {
  font-size: clamp(1.9rem, 6.5vw, 3.2rem);
  font-weight: 900; line-height: 1.3; text-align: center; letter-spacing: -0.02em;
}
.section-desc { text-align: center; color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }

/* ============================================
   NAV
   ============================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, box-shadow 0.3s, padding 0.3s; padding: 18px 0; }
.nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 12px 0; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.6rem; font-weight: 900; color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.nav__logo span { color: var(--cta); font-weight: 700; }
.nav__links { display: none; gap: 26px; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.96rem; transition: color 0.2s; }
.nav__links a:hover { color: var(--cta); }
.nav__cta { min-height: 44px; padding: 0 20px; font-size: 0.95rem; }
@media (min-width: 920px) { .nav__links { display: flex; } }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 110px 20px 90px;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(212,168,67,0.22), transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg-cream) 100%);
}
.hero__spotlight {
  position: absolute; top: -12%; left: 50%; transform: translateX(-50%);
  width: 60%; max-width: 700px; height: 80%;
  background: linear-gradient(180deg, rgba(255,250,235,0.9), rgba(212,168,67,0.05) 70%, transparent);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(8px); z-index: 0; pointer-events: none; opacity: 0.8;
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; }
.hero__tag { display: inline-block; background: rgba(24,25,27,0.06); color: var(--ink); font-weight: 700; font-size: 0.92rem; padding: 9px 20px; border-radius: 50px; margin-bottom: 28px; }
.hero__title { font-size: clamp(2.7rem, 12vw, 5.2rem); font-weight: 900; line-height: 1.16; letter-spacing: -0.03em; margin-bottom: 28px; }
.hero__title span { display: block; }
.hero__sub { font-size: clamp(1.05rem, 3.5vw, 1.45rem); color: var(--ink-soft); margin-bottom: 36px; line-height: 1.7; }
.hero__sub strong { color: var(--ink); font-weight: 800; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.badge { background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 9px 18px; font-size: 0.92rem; font-weight: 500; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-hint span { display: block; width: 26px; height: 42px; border: 2px solid var(--ink); border-radius: 16px; position: relative; opacity: 0.4; }
.hero__scroll-hint span::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--ink); border-radius: 4px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ============================================
   PROBLEM  (full viewport, pain points)
   - Hero(라이트) → 문제(다크) 진입부에만 감정 그라디언트
   ============================================ */
.problem {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #1f1b15 16%, var(--ink) 48%, #141214 100%);
  color: #fff; padding: 100px 22px;
}
.problem__inner { max-width: 760px; }
.problem .section-emoji { filter: drop-shadow(0 6px 18px rgba(255,255,255,0.15)); opacity: 0.85; }
.problem__lead { font-size: clamp(1.05rem, 4vw, 1.4rem); color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 24px; font-style: italic; }
.problem__title { font-size: clamp(1.9rem, 7.5vw, 3.4rem); font-weight: 900; line-height: 1.35; letter-spacing: -0.02em; margin-bottom: 44px; }
.problem__title .dim { color: rgba(255,255,255,0.5); }
.problem__list { list-style: none; max-width: 600px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.problem__list li { position: relative; padding: 16px 18px 16px 46px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 14px; font-size: clamp(0.98rem, 3.4vw, 1.12rem); color: rgba(255,255,255,0.78); line-height: 1.55; }
.problem__list li::before { content: '·'; position: absolute; left: 20px; top: 12px; color: var(--amber); font-size: 1.8rem; line-height: 1; }
.problem__list strong { color: #fff; font-weight: 700; }

/* ============================================
   SOLUTION  (full viewport, the answer)
   ============================================ */
.solution {
  background: radial-gradient(ellipse 80% 60% at 50% 38%, rgba(212,168,67,0.16), transparent 62%), #141214;
  color: #fff; padding: 100px 22px;
}
.solution__inner { max-width: 820px; }
.solution .section-emoji { filter: drop-shadow(0 6px 18px rgba(212,168,67,0.45)); }
.solution__lead { font-size: clamp(1.05rem, 4vw, 1.45rem); color: var(--amber); font-weight: 700; margin-bottom: 26px; }
.solution__title { font-size: clamp(1.9rem, 7vw, 3.4rem); font-weight: 900; line-height: 1.5; letter-spacing: -0.02em; margin-bottom: 34px; }
.solution__title .accent { color: var(--amber); }
.solution__close { font-size: clamp(1.2rem, 4.5vw, 2rem); font-weight: 700; line-height: 1.6; color: rgba(255,255,255,0.92); margin-bottom: 40px; }
.solution__close .accent { color: var(--amber); }
.solution__cta { color: #fff; border-color: rgba(255,255,255,0.3); }
.solution__cta:hover { border-color: var(--amber); color: var(--amber); }

/* ============================================
   KPI (photo rain background)
   ============================================ */
.kpi {
  position: relative; overflow: hidden;
  background: var(--ink);   /* 단색 — 앞뒤 섹션과 그라디언트 없음 */
  color: #fff; padding: 90px 20px;
}
.kpi__rain { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.kpi__rain img {
  position: absolute; top: -220px; width: 110px; border-radius: 10px;
  opacity: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  will-change: transform, opacity;
}
.kpi__inner { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; }
.kpi .section-title { color: #fff; margin-bottom: 50px; }
.kpi__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
.kpi__item { text-align: center; }
.kpi__num { font-size: clamp(2.6rem, 11vw, 4.6rem); font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -0.03em; }
.kpi__num small { font-size: 0.36em; color: rgba(255,255,255,0.5); font-weight: 500; }
.kpi__label { margin-top: 12px; font-weight: 500; color: rgba(255,255,255,0.78); font-size: 1rem; }
.kpi__label small { font-size: 0.85em; }
.kpi__caption { text-align: center; margin-top: 46px; color: rgba(255,255,255,0.45); font-size: 0.85rem; }
@media (min-width: 720px) { .kpi__grid { grid-template-columns: repeat(4, 1fr); } .kpi__rain img { width: 150px; } }

/* ============================================
   VOICES (testimonials)
   ============================================ */
.voices { padding: clamp(90px, 14vw, 150px) 20px; background: var(--bg-cream); text-align: center; }
.voices__inner { max-width: var(--maxw); margin: 0 auto; }
.voices .section-desc { margin-bottom: clamp(40px, 6vw, 60px); }
.voices__grid { display: grid; grid-template-columns: 1fr; gap: 22px; text-align: left; }
.voice {
  background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-top: 4px solid var(--amber-soft);
}
.voice:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.voice__quote { font-size: 1.18rem; font-weight: 700; line-height: 1.6; color: var(--ink); letter-spacing: -0.01em; }
.voice__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.voice__avatar { font-size: 2.4rem; line-height: 1; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--bg-cream); border-radius: 50%; flex-shrink: 0; }
.voice__meta { font-size: 0.95rem; line-height: 1.4; }
.voice__meta strong { font-weight: 800; font-size: 1.05rem; }
.voice__meta small { color: var(--ink-soft); }
.voices__note { margin-top: 34px; color: var(--ink-soft); font-size: 0.82rem; }
@media (min-width: 680px) { .voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .voices__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   PROGRAM
   ============================================ */
.program { padding: clamp(90px, 14vw, 150px) 20px; text-align: center; }
.program__head { max-width: 760px; margin: 0 auto clamp(50px, 8vw, 90px); }
.program__scenes { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: clamp(60px, 10vw, 110px); }
.scene { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.scene__visual { width: 100%; max-width: 420px; aspect-ratio: 4 / 3; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); overflow: hidden; }
.scene__visual--script { background: linear-gradient(135deg, #fef8ec, #f5ead0); }
.scene__visual--group { background: linear-gradient(135deg, #f0efe9, #ddd9cf); }
.scene__visual--stage { background: linear-gradient(160deg, #1d1e20, #2a2b2e); }
.scene__text { width: 100%; max-width: 460px; text-align: center; }
.scene__step { display: inline-block; font-size: 0.9rem; font-weight: 800; color: var(--cta); letter-spacing: 0.1em; margin-bottom: 12px; }
.scene__text h3 { font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.scene__text p { color: var(--ink-soft); font-size: 1.05rem; }
.scene__text strong { color: var(--ink); font-weight: 700; }
.script-card { width: 60%; background: #fff; border-radius: 10px; padding: 22px 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); transform: rotate(-4deg); }
.script-card__title { display: block; font-weight: 800; color: var(--ink); margin-bottom: 16px; font-size: 0.95rem; }
.script-card__line { display: block; height: 8px; background: #e8e2d6; border-radius: 4px; margin-bottom: 10px; }
.script-card__line.short { width: 55%; } .script-card__line.medium { width: 75%; }
.group-dots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.group-dots span { width: 28px; height: 28px; border-radius: 50%; background: var(--ink-2); opacity: 0.85; }
.group-dots span:nth-child(odd) { background: var(--amber); }
.stage-mini { position: relative; width: 70%; height: 70%; }
.stage-mini__light { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 130px solid rgba(212,168,67,0.4); filter: blur(4px); }
.stage-mini__floor { position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); width: 80%; height: 14px; background: var(--amber); border-radius: 50%; opacity: 0.9; }
@media (min-width: 800px) {
  .scene { flex-direction: row; gap: 60px; justify-content: space-between; }
  .scene--reverse { flex-direction: row-reverse; }
  .scene__text { text-align: left; }
}

/* ============================================
   FOR WHOM
   ============================================ */
.whom { padding: clamp(90px, 14vw, 150px) 20px; background: var(--bg-cream); text-align: center; }
.whom__inner { max-width: var(--maxw); margin: 0 auto; }
.whom__grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: clamp(40px, 6vw, 60px); text-align: left; }
.whom__card { display: flex; align-items: center; gap: 18px; background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.whom__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.whom__check { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--amber); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; }
.whom__card p { font-size: 1.05rem; line-height: 1.5; }
.whom__card strong { color: var(--ink); font-weight: 700; }
@media (min-width: 720px) { .whom__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   CURRICULUM (marquee)
   ============================================ */
.curriculum { padding: clamp(90px, 14vw, 150px) 0; overflow: hidden; text-align: center; }
.curriculum__head { max-width: 760px; margin: 0 auto clamp(44px, 6vw, 70px); padding: 0 20px; }
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); cursor: grab; }
.marquee.dragging { cursor: grabbing; }
.marquee__track { display: flex; gap: 18px; width: max-content; padding: 10px 9px; animation: marqueeScroll 60s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee.dragging .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.week { flex: 0 0 240px; width: 240px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); user-select: none; }
.week__num { display: inline-block; font-size: 0.82rem; font-weight: 800; color: var(--cta); background: rgba(232,80,10,0.08); padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.week h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.week p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }
.week--final { background: linear-gradient(160deg, var(--ink), var(--ink-2)); border: none; }
.week--final .week__num { color: var(--ink); background: var(--amber); }
.week--final h4, .week--final p { color: #fff; }
.curriculum__hint { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: 0.88rem; padding: 0 20px; }

/* ============================================
   BENEFITS (dark)
   ============================================ */
.benefits { padding: clamp(90px, 14vw, 150px) 20px; text-align: center; }
.benefits__inner { max-width: var(--maxw); margin: 0 auto; }
.benefits__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: clamp(40px, 6vw, 60px); }
.benefit { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 36px 28px; text-align: center; color: #fff; transition: transform 0.3s var(--ease), background 0.3s; }
.benefit:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.benefit__icon { font-size: 2.6rem; display: block; margin-bottom: 16px; }
.benefit h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.benefit h3 small { color: var(--amber); }
.benefit p { color: rgba(255,255,255,0.74); font-size: 0.98rem; }
.benefit p small { display: block; font-size: 0.78rem; color: var(--amber-soft); margin-top: 4px; }
@media (min-width: 720px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   PRICE (dark, 경기청년 갭이어)
   ============================================ */
.price { padding: clamp(90px, 14vw, 150px) 20px; text-align: center; }
.price__inner { max-width: 640px; margin: 0 auto; }
.price__badge { display: inline-block; background: rgba(212,168,67,0.16); color: var(--amber); font-weight: 700; font-size: 0.92rem; padding: 9px 20px; border-radius: 50px; margin-bottom: 22px; border: 1px solid rgba(212,168,67,0.3); }
.price__desc { color: rgba(255,255,255,0.74); margin: 18px auto 40px; max-width: 480px; }
.price__card { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 24px; padding: clamp(28px, 5vw, 44px); text-align: left; }
.price__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.price__label { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.price__old { font-size: 1.1rem; color: rgba(255,255,255,0.6); }
.price__old s { color: rgba(255,255,255,0.4); }
.price__arrow { text-align: center; font-size: 1.8rem; color: var(--cta); margin: 14px 0; font-weight: 900; }
.price__row--now { padding-bottom: 24px; border-bottom: 1px dashed var(--line-dark); }
.price__new { font-size: clamp(1.2rem, 4.5vw, 1.6rem); color: #fff; }
.price__new strong { color: var(--amber); font-weight: 900; font-size: 1.2em; }
.price__refund { display: flex; gap: 16px; align-items: flex-start; margin-top: 24px; }
.price__refund-icon { font-size: 2rem; line-height: 1.2; flex-shrink: 0; }
.price__refund p { color: rgba(255,255,255,0.9); font-size: 1.02rem; line-height: 1.6; }
.price__refund strong { color: #fff; font-weight: 800; }
.price__notes { list-style: none; margin-top: 30px; }
.price__notes li { color: rgba(255,255,255,0.55); font-size: 0.9rem; padding: 4px 0; }
.price__notes li::before { content: '✓ '; color: var(--amber); font-weight: 900; }

/* ============================================
   INFO (schedule)
   ============================================ */
.info { padding: clamp(90px, 14vw, 150px) 20px; text-align: center; }
.info__inner { max-width: 640px; margin: 0 auto; }
.info__head { margin-bottom: clamp(36px, 5vw, 50px); }
.info__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 32px; box-shadow: var(--shadow); text-align: left; }
.info__card ul { list-style: none; }
.info__card ul li { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.info__card ul li:last-child { border-bottom: none; }
.info__card ul li span { display: inline-block; width: 92px; color: var(--ink-soft); font-weight: 700; font-size: 0.92rem; }

/* ============================================
   TEAM
   ============================================ */
.team { padding: clamp(90px, 14vw, 150px) 20px; background: var(--bg-cream); text-align: center; }
.team__inner { max-width: 820px; margin: 0 auto; }
.team__grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: clamp(40px, 6vw, 60px); }
.member { background: #fff; border-radius: var(--radius); padding: 38px 30px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s var(--ease); }
.member:hover { transform: translateY(-6px); }
.member__photo { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px; border: 4px solid var(--amber-soft); object-fit: cover; }
.member__name { font-size: 1.5rem; font-weight: 900; }
.member__role { color: var(--cta); font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; }
.member__career { list-style: none; text-align: left; display: inline-block; }
.member__career li { padding: 5px 0 5px 20px; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.member__career li::before { content: '•'; position: absolute; left: 4px; color: var(--amber); font-weight: 900; }
.team__todo { margin-top: 30px; color: var(--ink-soft); font-size: 0.82rem; }
@media (min-width: 680px) { .team__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: clamp(90px, 14vw, 150px) 20px; text-align: center; }
.faq__inner { max-width: 780px; margin: 0 auto; }
.faq__list { margin-top: clamp(40px, 6vw, 56px); display: flex; flex-direction: column; gap: 14px; text-align: left; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--amber-soft); }
.faq__item summary { cursor: pointer; list-style: none; padding: 22px 56px 22px 24px; position: relative; font-weight: 700; font-size: 1.05rem; line-height: 1.5; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--cta); transition: transform 0.3s; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 24px 24px; color: var(--ink-soft); font-size: 1rem; }

/* ============================================
   APPLY FORM (dark)
   ============================================ */
.apply { padding: clamp(90px, 14vw, 150px) 20px; }
.apply__inner { max-width: 680px; margin: 0 auto; }
.apply__head { margin-bottom: 40px; text-align: center; }
.form { background: #fff; border-radius: 24px; padding: clamp(28px, 5vw, 44px); box-shadow: 0 30px 70px rgba(0,0,0,0.3); color: var(--ink); }
.form__progress { margin-bottom: 34px; }
.form__progress-bar { height: 6px; background: var(--line); border-radius: 4px; transition: background 0.4s var(--ease); }
.form__steps { display: flex; justify-content: space-between; margin-top: 14px; }
.form__step { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; flex: 1; text-align: center; }
.form__step.active { color: var(--cta); font-weight: 800; }
.form__step.done { color: var(--ink); }
.form__panel { border: none; display: none; animation: panelIn 0.4s var(--ease); }
.form__panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.form__panel-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; color: var(--ink); }
.field { display: block; margin-bottom: 22px; }
.field > span, .field legend { display: block; font-weight: 700; font-size: 0.98rem; margin-bottom: 10px; }
.field em { color: var(--cta); font-style: normal; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea { width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink); padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px; background: #fcfbf8; transition: border-color 0.2s, background 0.2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cta); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.field--radio { margin-bottom: 26px; border: none; padding: 0; min-inline-size: 0; }
.field--radio legend { display: block; width: 100%; padding: 0; margin-bottom: 14px; }
.field--radio label { display: flex; align-items: center; gap: 10px; padding: 13px 16px; margin-bottom: 10px; border: 2px solid var(--line); border-radius: 12px; cursor: pointer; font-weight: 500; transition: border-color 0.2s, background 0.2s; font-size: 0.98rem; }
.field--radio label:hover { border-color: var(--amber-soft); }
.field--radio input { width: 20px; height: 20px; accent-color: var(--cta); flex-shrink: 0; }
.field--radio label:has(input:checked) { border-color: var(--cta); background: rgba(232,80,10,0.04); }
.agree { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.agree summary { cursor: pointer; list-style: none; padding: 16px 44px 16px 18px; position: relative; font-weight: 700; font-size: 0.95rem; }
.agree summary::-webkit-details-marker { display: none; }
.agree summary::after { content: '▾'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); transition: transform 0.3s; }
.agree[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.agree__body { padding: 0 18px 18px; font-size: 0.88rem; color: var(--ink-soft); }
.agree__body ul { margin: 8px 0 0 18px; }
.agree__body li { margin-bottom: 4px; }
.agree__check { display: flex; align-items: flex-start; gap: 10px; padding: 6px 4px 18px; cursor: pointer; font-weight: 600; font-size: 0.96rem; }
.agree__check input { width: 20px; height: 20px; accent-color: var(--cta); flex-shrink: 0; margin-top: 2px; }
.agree__check em { color: var(--cta); font-style: normal; }
.form__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.form__nav .btn { flex: 1; max-width: 200px; }
.form__nav .btn--cta { margin-left: auto; }
.field.invalid input, .field.invalid textarea { border-color: #e03030; background: #fff5f5; }
.field--radio.invalid legend, .agree__check.invalid { color: #e03030; }
.form__success { background: #fff; border-radius: 24px; padding: 60px 40px; text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.3); color: var(--ink); }
.form__success-icon { font-size: 4rem; margin-bottom: 20px; }
.form__success h3 { font-size: 1.6rem; font-weight: 900; color: var(--ink); margin-bottom: 16px; }
.form__success p { color: var(--ink-soft); font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0e0f10; color: rgba(255,255,255,0.7); padding: 64px 20px; text-align: center; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer .nav__logo { color: #fff; font-size: 1.8rem; }
.footer__tagline { margin-top: 12px; font-size: 0.98rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0; }
.footer__social a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; border: 1px solid var(--line-dark); padding: 8px 18px; border-radius: 50px; transition: all 0.25s; }
.footer__social a:hover { color: #fff; border-color: var(--amber); background: rgba(212,168,67,0.1); }
.footer__small { margin-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ============================================
   KAKAO FLOATING BUTTON
   ============================================ */
.kakao-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kakao); color: #3c1e1e; text-decoration: none;
  font-weight: 700; font-size: 0.98rem; padding: 14px 20px; border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.kakao-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 38px rgba(0,0,0,0.28); }
.kakao-fab__icon { font-size: 1.2rem; }
@media (max-width: 520px) {
  .kakao-fab { bottom: 16px; right: 16px; padding: 14px; }
  .kakao-fab__text { display: none; }
  .kakao-fab__icon { font-size: 1.4rem; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
.reveal, .reveal-up, .reveal-word { will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-up, .reveal-word { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}
