/* =========================================================
   SnapReview Review LP — showcase styles
   Layered on top of tokens.css (design system v2.0)
   Visual system: clean AI-SaaS, deep-blue identity,
   geometric circular motif.
   ========================================================= */

:root {
  /* Deep brand blues (saturated extension, blue identity kept) */
  --brand-ink:   #07203B;   /* deepest navy-blue for dark sections */
  --brand-deep:  #0B2C52;
  --brand-mid:   #133E6B;
  --brand-glow:  #2699FB;   /* = primary-500 accent */
  --brand-cta:   #1664A9;   /* = primary-700, AA filled buttons */

  --lp-max: 1200px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body { margin: 0; background: var(--bg-surface); color: var(--text-secondary); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(38,153,251,0.22); }

.wrap { width: 100%; max-width: var(--lp-max); margin: 0 auto; padding: 0 32px; }

/* ---------- shared section rhythm ---------- */
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--tint   { background: var(--color-primary-50); }
.section--subtle { background: var(--bg-page); }
.section--ink {
  background:
    radial-gradient(1100px 560px at 78% -8%, rgba(38,153,251,0.28), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(38,153,251,0.16), transparent 55%),
    linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-ink) 100%);
  color: #fff;
}

/* ---------- eyebrow / heading kit ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--brand-glow); text-transform: none;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: var(--brand-glow);
}
.eyebrow--center { justify-content: center; }
.eyebrow--pill {
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--color-primary-100); border: 1px solid #D5E9FF;
}
.eyebrow--pill::before { display: none; }
.eyebrow--on-ink { color: #8FCBFF; }
.eyebrow--on-ink.eyebrow--pill {
  background: rgba(38,153,251,0.14); border-color: rgba(143,203,255,0.32);
}

.h-sec {
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.18;
  letter-spacing: -0.03em; color: var(--text-primary); margin: 16px 0 0;
  text-wrap: balance;
}
.h-sec--on-ink { color: #fff; }
.sub-sec {
  font-size: clamp(16px, 1.4vw, 19px); font-weight: 400; line-height: 1.65;
  color: var(--text-tertiary); margin: 18px 0 0; max-width: 620px;
}
.sub-sec--on-ink { color: rgba(255,255,255,0.74); }
/* 한 줄 처리용 — 데스크탑에선 줄바꿈 없이, 모바일에선 자연스럽게 wrap */
.sub-sec--wide { max-width: none; word-break: keep-all; }
.center { text-align: center; }
.center .sub-sec { margin-left: auto; margin-right: auto; }
.sec-head { margin-bottom: clamp(40px, 5vw, 64px); }

/* highlight token used inside headlines */
.hl { color: var(--brand-glow); }
.hl-ink { color: var(--text-primary); position: relative; white-space: nowrap; }
.hl-ink::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.08em; height: 0.34em;
  background: linear-gradient(90deg, rgba(38,153,251,0.30), rgba(38,153,251,0.14));
  border-radius: 3px; z-index: -1;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 26px; border-radius: var(--radius-2);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent; transition: all 0.18s var(--ease); white-space: nowrap;
}
.btn i { font-size: 19px; }
.btn--primary { background: var(--brand-cta); color: #fff; box-shadow: 0 8px 22px -8px rgba(22,100,169,0.6); }
.btn--primary:hover { background: var(--interactive-hover); transform: translateY(-1px); box-shadow: 0 12px 26px -8px rgba(22,100,169,0.65); }
.btn--ghost { background: var(--bg-surface); color: var(--text-secondary); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--brand-glow); color: var(--brand-cta); background: var(--color-primary-50); }
.btn--on-ink-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.26); }
.btn--on-ink-ghost:hover { background: rgba(255,255,255,0.16); }
.btn--white { background: #fff; color: var(--brand-cta); }
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 17px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  background: transparent; border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(255,255,255,0.86); backdrop-filter: blur(14px); border-bottom-color: var(--border-default); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
.nav .wrap { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: 30px; }
.brand .wordmark { font-size: 19px; font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); transition: color 0.25s; }
.nav:not(.solid) .brand .wordmark { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 12px; }
.nav-links a {
  font-size: 15px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-2);
  color: var(--text-tertiary); transition: all 0.18s;
}
.nav:not(.solid) .nav-links a { color: rgba(255,255,255,0.78); }
.nav-links a:hover { color: var(--brand-cta); background: var(--color-primary-50); }
.nav:not(.solid) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: var(--radius-2); border: 1px solid var(--border-default); background: #fff; align-items: center; justify-content: center; font-size: 22px; color: var(--text-secondary); margin-left: auto; }

/* mobile drawer */
.mnav { position: fixed; inset: 0; z-index: 200; display: none; }
.mnav.open { display: block; }
.mnav-scrim { position: absolute; inset: 0; background: rgba(7,32,59,0.45); backdrop-filter: blur(2px); }
.mnav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: #fff; padding: 20px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-xl); transform: translateX(100%); transition: transform 0.3s var(--ease); }
.mnav.open .mnav-panel { transform: translateX(0); }
.mnav-panel a { font-size: 17px; font-weight: 500; padding: 14px 12px; border-radius: var(--radius-2); color: var(--text-secondary); }
.mnav-panel a:hover { background: var(--color-primary-50); }
.mnav-close { align-self: flex-end; width: 44px; height: 44px; border: none; background: var(--bg-subtle); border-radius: var(--radius-2); font-size: 22px; color: var(--text-secondary); margin-bottom: 8px; }

/* ---------- generic card ---------- */
.card {
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-4); box-shadow: var(--shadow-md);
}

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (max-width: 0) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- geometric motif helpers ---------- */
.rings { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); pointer-events: none; }

/* =========================================================
   S1 · HERO
   ========================================================= */
.hero { padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 96px)); padding-bottom: clamp(64px, 8vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.hero-copy { text-align: left; }
.hero-h1 { font-size: clamp(38px, 5.4vw, 72px); font-weight: 700; line-height: 1.08; letter-spacing: -0.04em; margin: 18px 0 0; color: #fff; }
.hero-accent { background: linear-gradient(90deg, #7CC0FF 0%, #2699FB 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: rgba(255,255,255,0.78); margin: 22px 0 0; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.hero-trust p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.62); }
.hero-trust b { color: #fff; font-weight: 700; }
.hero-faces { display: flex; }
.hero-faces span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--brand-deep);
  background: linear-gradient(135deg, #2699FB, #1664A9);
}
.hero-faces span:first-child { margin-left: 0; }
.hero-faces span:nth-child(2) { background: linear-gradient(135deg, #33C4AC, #18B55F); }
.hero-faces span:nth-child(3) { background: linear-gradient(135deg, #A553E5, #6B46C1); }
.hero-faces span:nth-child(4) { background: linear-gradient(135deg, #FFB02E, #FF8139); }

/* ring motif */
.hero-rings { position: absolute; top: 50%; right: -6%; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.hero-rings .rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.orbit-dot { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-glow); box-shadow: 0 0 18px 2px rgba(38,153,251,0.7); }
.orbit-dot.d-a { transform: translate(180px,-260px); }
.orbit-dot.d-b { width: 7px; height: 7px; transform: translate(-300px,200px); background: #7CC0FF; }
.orbit-dot.d-c { width: 6px; height: 6px; transform: translate(380px,120px); }

/* hero floating preview */
.hero-visual { position: relative; min-height: 380px; }
.hv-card { background: #fff; border-radius: var(--radius-3); box-shadow: 0 30px 60px -24px rgba(4,18,40,0.55); }
.hv-main { padding: 22px; border: 1px solid rgba(255,255,255,0.6); position: relative; z-index: 2; }
.hv-head { display: flex; align-items: center; gap: 9px; }
.hv-spark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg,#EBF5FF,#D5E9FF); color: var(--brand-glow); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.hv-title { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.hv-live { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--brand-glow); }
.hv-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-progress-500); box-shadow: 0 0 0 3px rgba(24,181,95,0.18); }
.hv-summary { font-size: 13.5px; line-height: 1.62; color: var(--text-tertiary); margin: 14px 0 16px; padding: 12px 14px; background: var(--color-primary-50); border-radius: 10px; border-left: 3px solid var(--brand-glow); }
.hv-summary b { color: var(--text-primary); font-weight: 700; }
.hv-kw { display: flex; flex-direction: column; gap: 9px; }
.hv-kw-row { display: flex; align-items: center; gap: 10px; }
.hv-kw-rank { width: 20px; height: 20px; border-radius: 6px; background: var(--color-progress-50); color: var(--color-progress-500); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hv-kw-name { font-size: 13px; font-weight: 600; color: var(--text-secondary); width: 64px; }
.hv-kw-bar { flex: 1; height: 7px; background: var(--bg-subtle); border-radius: 999px; overflow: hidden; }
.hv-kw-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg,#33C4AC,#18B55F); }
.hv-alert { position: absolute; left: -28px; bottom: 36px; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid #FFE0B8; }
.hv-alert-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--color-yellow-100); color: var(--color-orange-500); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hv-alert-t { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.hv-alert-s { font-size: 12px; color: var(--text-tertiary); margin-top: 1px; }
.hv-alert-s b { color: var(--color-danger-500); font-weight: 700; }
.hv-kpi { position: absolute; right: -24px; top: -28px; z-index: 3; padding: 16px 20px; }
.hv-kpi-label { font-size: 12px; color: var(--text-subtle); font-weight: 500; }
.hv-kpi-val { font-size: 30px; font-weight: 700; color: var(--text-primary); line-height: 1.1; letter-spacing: -0.02em; margin-top: 2px; }
.hv-kpi-val span { font-size: 14px; font-weight: 500; color: var(--text-subtle); margin-left: 2px; }
.hv-kpi-up { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: var(--color-progress-500); margin-top: 4px; }
.float-y { animation: floatY 6s var(--ease) infinite; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   S2 · TRUST
   ========================================================= */
.trust { padding: clamp(48px, 6vw, 80px) 0; }
.trust-eyebrow { text-align: center; font-size: 14px; font-weight: 600; color: var(--text-subtle); margin: 0 0 clamp(40px, 5.5vw, 64px); }
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px clamp(34px, 5vw, 62px); margin-bottom: clamp(40px, 5vw, 64px); }
/* uniform mid-gray via alpha mask → identical tone regardless of source color; hover restores brand color */
.brand-logo { position: relative; display: inline-block; background-color: #98A1AE; -webkit-mask: var(--m) no-repeat center / contain; mask: var(--m) no-repeat center / contain; transition: transform 0.22s var(--ease); }
.brand-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.25s var(--ease); }
.brand-logo:hover { transform: translateY(-2px); }
.brand-logo:hover img { opacity: 1; }
/* optical-size normalization per logo (w = h × processed aspect ratio) */
.brand-medicube  { width: 99px;  height: 23px; --m: url('brands/medicube.png'); }
.brand-66girls   { width: 130px; height: 34px; --m: url('brands/66girls.png'); }
.brand-drblet    { width: 151px; height: 27px; --m: url('brands/drblet.png'); }
.brand-okane     { width: 58px;  height: 42px; --m: url('brands/okane.png'); }
.brand-hackedeuk { width: 150px; height: 30px; --m: url('brands/hackedeuk.png'); }
.brand-2359      { width: 72px;  height: 22px; --m: url('brands/2359.png'); }
@media (max-width: 560px) {
  .logo-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); place-items: center; gap: 24px 12px; }
  .logo-strip .brand-logo { max-width: 100%; }
  .brand-medicube  { width: 86px;  height: 20px; }
  .brand-66girls   { width: 111px; height: 29px; }
  .brand-drblet    { width: 129px; height: 23px; }
  .brand-okane     { width: 50px;  height: 36px; }
  .brand-hackedeuk { width: 125px; height: 25px; }
  .brand-2359      { width: 65px;  height: 20px; }
}
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.metric { text-align: center; padding: 28px 16px; border-radius: var(--radius-4); background: var(--bg-page); border: 1px solid var(--border-default); display: flex; flex-direction: column; justify-content: center; }
.metric-val { font-size: clamp(32px, 3.4vw, 44px); font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); line-height: 1; }
.metric-val span { color: var(--brand-glow); }
.metric-val--sm { font-size: clamp(26px, 2.6vw, 34px); }
/* 다국어 지원 — language glyph chips + clarifying caption */
.lang-pills { display: flex; justify-content: center; gap: 7px; height: clamp(38px, 3.8vw, 46px); align-items: center; }
.lang-pills span { min-width: 42px; height: 42px; padding: 0 9px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.01em; background: linear-gradient(140deg, #5FB0FF, #1F7ED4); box-shadow: 0 5px 13px -4px rgba(22,100,169,0.45); transition: transform 0.22s var(--ease); }
.lang-pills span:nth-child(2) { background: linear-gradient(140deg, #2699FB, #114E84); }
.lang-pills span:nth-child(3) { background: linear-gradient(140deg, #1F7ED4, #0B2C52); }
.metric:hover .lang-pills span { transform: translateY(-3px); }
.metric:hover .lang-pills span:nth-child(2) { transition-delay: 0.04s; }
.metric:hover .lang-pills span:nth-child(3) { transition-delay: 0.08s; }
.lang-caption { font-size: 11.5px; font-weight: 500; color: var(--text-subtle); margin-top: 5px; letter-spacing: -0.01em; }
.metric-label { font-size: 14px; font-weight: 500; color: var(--text-tertiary); margin-top: 10px; }
.trust-note { text-align: center; font-size: 12px; color: var(--text-inactive); margin-top: 24px; }

/* S2 · metric 숫자 카운트업 — 너비 jitter 방지 + 본문 다크 색상 유지
   (.metric-val span 의 brand-glow 가 숫자까지 칠하는 걸 막음) */
.metric-val .metric-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
}

/* =========================================================
   S3 · PROBLEM — buyer journey
   ========================================================= */
.journey { display: flex; align-items: stretch; justify-content: center; gap: 0; margin-top: 56px; flex-wrap: nowrap; }
.jn { flex: 0 1 220px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 8px 10px; position: relative; }
.jn-ico { position: relative; width: 64px; height: 64px; border-radius: var(--radius-3); background: var(--bg-surface); border: 1px solid var(--border-default); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--text-subtle); }
.jn-label { font-size: 17px; font-weight: 700; color: var(--text-secondary); margin-top: 14px; letter-spacing: -0.01em; }
.jn-cap { font-size: 13px; line-height: 1.45; color: var(--text-subtle); margin-top: 6px; }
.jn-link { flex: 0 1 80px; align-self: flex-start; margin-top: 39px; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px); min-width: 28px; }
/* pivot (리뷰 확인) */
.jn--pivot .jn-ico { width: 84px; height: 84px; font-size: 38px; background: linear-gradient(165deg, var(--color-primary-500), var(--brand-cta)); border-color: transparent; color: #fff; box-shadow: 0 16px 34px -10px rgba(38,153,251,0.55); }
.jn--pivot { transform: translateY(-12px); }
.jn--pivot .jn-label { font-size: 19px; color: var(--text-primary); }
.jn--pivot .jn-cap { color: var(--text-tertiary); font-weight: 500; }
.jn-flag { order: -1; display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; color: var(--brand-cta); background: var(--color-primary-100); border-radius: var(--radius-full); padding: 5px 13px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.jn-pulse { position: absolute; inset: -8px; border-radius: inherit; border: 2.5px solid var(--color-primary-500); opacity: 0; animation: jnpulse 2.4s var(--ease) infinite; pointer-events: none; }
.jn-pulse::before, .jn-pulse::after { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--color-primary-500); opacity: 0; animation: jnpulse 2.4s var(--ease) infinite; pointer-events: none; }
.jn-pulse::before { animation-delay: 0.8s; }
.jn-pulse::after { animation-delay: 1.6s; }
@keyframes jnpulse { 0% { transform: scale(1); opacity: 0.85; } 70%,100% { transform: scale(1.6); opacity: 0; } }
.problem-quotes { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 52px; }
.pq { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text-tertiary); background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-full); padding: 11px 18px; box-shadow: var(--shadow-sm); }
.pq i { color: var(--color-primary-300, #9DCBFB); font-size: 16px; }
.journey-dots { display: none; }
.pq-title { display: none; }
.d-br { display: inline; }
.why-cols { display: contents; }
.why-voices { display: contents; }
.hero-sub-sig { display: inline; }

/* =========================================================
   S4 · FOUR PILLARS
   ========================================================= */
.pillar-flow { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; }
.pillar-flow i { color: var(--border-strong); font-size: 14px; }
.pfl-chip { font-size: 14px; font-weight: 600; color: var(--brand-cta); background: var(--color-primary-50); border: 1px solid #D5E9FF; border-radius: var(--radius-full); padding: 7px 16px; }
@keyframes arpRail { to { background-position-y: 14px; } }
@keyframes pflGlow {
  0% { background: var(--color-primary-50); color: var(--brand-cta); border-color: #D5E9FF; box-shadow: none; }
  8%, 18% { background: var(--brand-cta); color: #fff; border-color: var(--brand-cta); box-shadow: 0 6px 16px -6px rgba(22,100,169,0.5); }
  26%, 100% { background: var(--color-primary-50); color: var(--brand-cta); border-color: #D5E9FF; box-shadow: none; }
}
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 30px 26px 26px; background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-4); box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s; overflow: hidden; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: #D5E9FF; }
.pillar-num { position: absolute; top: 22px; right: 24px; font-size: 13px; font-weight: 700; color: var(--color-gray-300); letter-spacing: 0.02em; }
.pillar-ico { width: 56px; height: 56px; border-radius: var(--radius-3); display: inline-flex; align-items: center; justify-content: center; font-size: 28px; color: var(--pc); background: var(--pcb); margin-bottom: 20px; }
.pillar-title { font-size: 20px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; margin: 0 0 10px; }
.pillar-desc { font-size: 14.5px; line-height: 1.62; color: var(--text-tertiary); margin: 0 0 20px; flex: 1; }
.pillar-desc__note { display: inline-block; margin-top: 6px; font-size: 12.5px; color: var(--text-quaternary, #98A2B3); letter-spacing: -0.01em; }
.pillar-go { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand-cta); }
.pillar-go i { transition: transform 0.2s var(--ease); }
.pillar-card:hover .pillar-go i { transform: translateX(4px); }
.pillar-card--feature { background: linear-gradient(165deg, var(--brand-mid) 0%, var(--brand-ink) 100%); border-color: transparent; box-shadow: 0 20px 40px -16px rgba(7,32,59,0.5); }
.pillar-card--feature .pillar-title { color: #fff; }
.pillar-card--feature .pillar-desc { color: rgba(255,255,255,0.74); }
.pillar-card--feature .pillar-num { color: rgba(255,255,255,0.32); }
.pillar-card--feature .pillar-go { color: #8FCBFF; }
.pillar-badge { position: absolute; top: 20px; left: 24px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--radius-full); background: rgba(38,153,251,0.22); color: #BFE0FF; font-size: 11px; font-weight: 700; }
.pillar-card--feature .pillar-ico { margin-top: 26px; }

/* =========================================================
   FEATURE ROW (S5/S6/S8 shared)
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.feature-copy .h-sec { margin-top: 14px; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.feature-list li i { color: var(--color-progress-500); font-size: 22px; flex-shrink: 0; }
.feature-visual { position: relative; }

/* S5 collection visual */
.collect-stage { position: relative; background: linear-gradient(165deg, var(--bg-surface), var(--color-primary-50)); border: 1px solid var(--border-default); border-radius: var(--radius-4); box-shadow: var(--shadow-md); padding: 30px; min-height: 392px; overflow: hidden; }
.cs-channels { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 13px; z-index: 2; }
.cs-chan { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; color: var(--text-secondary); background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-3); padding: 12px 16px; box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.cs-chan:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.cs-logo { width: 30px; height: 30px; border-radius: 8px; background: var(--lg); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: -0.03em; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-logo--pay { font-size: 16px; }
.cs-logo--etc { font-size: 17px; }
.cs-chan--etc { align-items: center; }
.cs-chan-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.cs-chan-title { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.cs-chan-cap { font-size: 11.5px; font-weight: 500; color: var(--text-subtle); }
.cs-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.cs-lines path { fill: none; stroke: var(--color-primary-500); stroke-width: 2; stroke-dasharray: 5 6; opacity: 0.55; animation: dashflow 1.2s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -22; } }
.cs-hub { position: absolute; right: 58px; top: 50%; transform: translateY(-50%); z-index: 2; }
.cs-hub-core { position: relative; width: 92px; height: 92px; border-radius: var(--radius-4); background: linear-gradient(160deg, var(--brand-mid), var(--brand-ink)); display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 38px -12px rgba(7,32,59,0.6); }
.cs-hub-core img { width: 48px; height: 48px; position: relative; z-index: 2; }
.cs-hub-pulse { position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--color-primary-500); opacity: 0; animation: hubpulse 2.4s var(--ease) infinite; }
@keyframes hubpulse { 0% { transform: scale(1); opacity: 0.7; } 70%,100% { transform: scale(1.45); opacity: 0; } }
.cs-hub-label { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); font-size: 13px; font-weight: 700; color: var(--brand-cta); background: var(--color-primary-100); border: 1px solid #D5E9FF; border-radius: var(--radius-full); padding: 6px 14px; white-space: nowrap; }
.collect-msg { margin-top: 18px; padding: 18px 20px; }
.cm-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-subtle); }
.cm-dot { width: 7px; height: 7px; border-radius: 50%; background: #FAE100; box-shadow: 0 0 0 3px rgba(250,225,0,0.25); }
.cm-body { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 12px 0 14px; }
.cm-cta { text-align: center; font-size: 13px; font-weight: 600; color: #3C1E1E; background: #FAE100; border-radius: var(--radius-2); padding: 11px; }
/* mobile collection convergence motion */
@keyframes csCollect {
  0%, 70%, 100% { border-color: var(--border-default); box-shadow: var(--shadow-sm); transform: translateX(0); }
  35% { border-color: var(--brand-glow); box-shadow: 0 8px 20px -7px rgba(38,153,251,0.55); transform: translateX(4px); }
}
@keyframes csChevronFlow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* feature note */
.feature-note { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; font-size: 13px; font-weight: 500; color: var(--text-subtle); }
.feature-note i { color: var(--brand-glow); font-size: 16px; }
.fl-tag { font-size: 11px; font-weight: 700; color: var(--text-subtle); background: var(--bg-subtle); border-radius: var(--radius-1); padding: 2px 8px; margin-left: 2px; }
.fl-tag--pro { color: var(--brand-cta); background: var(--color-primary-100); }

/* S5 channel logo tiles */
.cs-chan { display: flex; align-items: center; gap: 9px; }
.cs-logo { width: 26px; height: 26px; border-radius: 7px; background: var(--lg); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: -0.03em; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-logo--pay { font-size: 14px; }

/* =========================================================
   S6 · WIDGET CONCIERGE
   ========================================================= */
.concierge { padding: 24px; }
.cc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cc-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--brand-cta); background: var(--color-primary-100); padding: 6px 12px; border-radius: var(--radius-full); }
.cc-tag { margin-left: auto; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--color-teal-500); background: var(--color-teal-100); padding: 5px 10px; border-radius: var(--radius-1); }
.cc-steps { display: flex; flex-direction: column; gap: 10px; }
.cc-step { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-3); background: var(--bg-page); }
.cc-step--live { border-color: var(--brand-glow); background: var(--color-primary-50); }
.cc-step-n { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-cta); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-step--live .cc-step-n { background: var(--brand-glow); }
.cc-step-t { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.cc-step-s { font-size: 12.5px; color: var(--text-subtle); margin-top: 1px; }
.cc-done { margin-left: auto; color: var(--color-progress-500); font-size: 22px; }
.cc-spin { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--color-primary-100); border-top-color: var(--brand-glow); animation: spin 0.8s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.cc-code { margin-top: 16px; background: #0E2236; border-radius: var(--radius-2); padding: 14px 16px; position: relative; }
.cc-code-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); margin-right: 6px; }
.cc-code pre { margin: 10px 0 0; font-family: 'SFMono-Regular', Menlo, Consolas, monospace; font-size: 12px; line-height: 1.7; color: #BFE0FF; white-space: pre-wrap; }
.ct-c { color: #5B7A9A; } .ct-p { color: #7CC0FF; } .ct-v { color: #82C01C; }

/* =========================================================
   S7 · AI INSIGHT (centerpiece)
   ========================================================= */
.insight { overflow: hidden; }
.insight-rings { position: absolute; top: 14%; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; }
.insight-rings .rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(124,192,255,0.10); }
.insight .wrap { position: relative; z-index: 2; }

/* loop rail */
.loop-rail { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.loop-step { display: flex; align-items: center; gap: 11px; padding: 12px 18px; border-radius: var(--radius-3); border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); cursor: pointer; transition: all 0.3s var(--ease); }
.loop-step .ls-ico { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 19px; color: rgba(255,255,255,0.55); transition: all 0.3s var(--ease); }
.loop-step .ls-txt { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.loop-step .ls-txt b { font-size: 15px; font-weight: 700; color: #fff; }
.loop-step .ls-txt small { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.loop-step.done { border-color: rgba(124,192,255,0.3); }
.loop-step.done .ls-ico { background: rgba(38,153,251,0.2); color: #8FCBFF; }
.loop-step.active { background: linear-gradient(135deg, #2699FB, #1664A9); border-color: #2699FB; box-shadow: 0 12px 30px -8px rgba(38,153,251,0.6); transform: translateY(-2px); }
.loop-step.active .ls-ico { background: rgba(255,255,255,0.22); color: #fff; }
.loop-step.active .ls-txt small { color: rgba(255,255,255,0.82); }
.loop-arrow { color: rgba(255,255,255,0.28); font-size: 17px; }

/* browser window */
.win { background: #fff; border-radius: var(--radius-3); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
.win-bar { display: flex; align-items: center; gap: 8px; padding: 0 16px; height: 44px; background: #EDF1F5; border-bottom: 1px solid #E0E5EA; }
.win-dot { width: 12px; height: 12px; border-radius: 50%; }
.win-url { margin: 0 auto 0 16px; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-subtle); background: #fff; border: 1px solid #E0E5EA; border-radius: var(--radius-full); padding: 5px 16px; }
.win-live { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--color-progress-500); }
.wl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-progress-500); box-shadow: 0 0 0 3px rgba(24,181,95,0.18); animation: pulse 1.6s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(24,181,95,0.18); } 50% { box-shadow: 0 0 0 6px rgba(24,181,95,0.05); } }
.win-body { background: var(--bg-page); padding: 22px; }

.dash-head { margin-bottom: 16px; }
.dash-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: var(--text-primary); }
.dash-sec-badge { width: 24px; height: 24px; border-radius: 7px; background: var(--brand-cta); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dash-period { font-size: 12px; font-weight: 500; color: var(--text-subtle); background: var(--bg-subtle); padding: 4px 10px; border-radius: var(--radius-full); }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }

/* spotlight system */
[data-spot] { position: relative; transition: opacity 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.dash-card[data-spot], .alert-actions[data-spot], .drow[data-spot] { opacity: 0.62; }
[data-spot].spot-on { opacity: 1; }
.dash-card.spot-on { box-shadow: 0 0 0 2px var(--brand-glow), 0 16px 40px -12px rgba(38,153,251,0.4); transform: translateY(-2px); z-index: 3; }
.dash-card--alert.spot-on { box-shadow: 0 0 0 2px var(--color-orange-500), 0 16px 40px -12px rgba(255,129,57,0.4); }
.alert-actions.spot-on { box-shadow: 0 0 0 2px var(--color-danger-500); border-radius: var(--radius-2); }
.drow.spot-on { box-shadow: 0 0 0 2px var(--color-progress-500); }
.spot-tag { position: absolute; top: -11px; left: 14px; font-size: 11px; font-weight: 700; color: #fff; background: var(--brand-glow); padding: 3px 10px; border-radius: var(--radius-full); opacity: 0; transform: translateY(4px); transition: all 0.3s var(--ease); pointer-events: none; z-index: 4; }
.spot-tag--warn { background: var(--color-orange-500); }
.spot-tag--alert { top: -10px; left: auto; right: 8px; background: var(--color-progress-500); }
.spot-tag--respond { background: var(--color-danger-500); left: 10px; }
[data-spot].spot-on > .spot-tag { opacity: 1; transform: none; }

.dash-card { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-3); box-shadow: var(--shadow-sm); padding: 18px; }
.dash-card--alert { border-color: #FFE0B8; }
.dc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.dc-ico { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.dc-ico.ai { background: var(--color-primary-100); color: var(--brand-glow); }
.dc-ico.warn { background: var(--color-yellow-100); color: var(--color-orange-500); }
.dc-t { font-size: 14.5px; font-weight: 700; color: var(--text-primary); }
.dc-sub { font-size: 11.5px; color: var(--text-subtle); margin-top: 1px; }
.dc-ai-pill { font-size: 10px; font-weight: 700; color: var(--brand-glow); border: 1px solid var(--brand-glow); border-radius: var(--radius-1); padding: 1px 5px; }
.dc-live { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--brand-glow); }
.dc-status { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--color-orange-500); background: var(--color-yellow-100); padding: 3px 9px; border-radius: var(--radius-full); }

.ai-box { background: var(--color-primary-50); border-left: 3px solid var(--brand-glow); border-radius: 0 8px 8px 0; padding: 12px 14px; margin-bottom: 16px; }
.ai-box-h { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--brand-cta); margin-bottom: 7px; }
.ai-box p { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--text-tertiary); }
.ai-box b { color: var(--text-primary); font-weight: 700; }

.kw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kw-col-h { display: flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; color: var(--text-secondary); margin-bottom: 9px; flex-wrap: wrap; }
.kw-pos-dot, .kw-neg-dot { width: 7px; height: 7px; border-radius: 50%; }
.kw-pos-dot { background: var(--color-progress-500); }
.kw-neg-dot { background: var(--color-danger-500); }
.kw-top { font-size: 9px; font-weight: 700; color: var(--text-subtle); background: var(--bg-subtle); padding: 1px 5px; border-radius: var(--radius-1); }
.kw-delta { margin-left: auto; font-weight: 700; }
.kw-delta.up { color: var(--color-progress-500); }
.kw-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; padding: 7px 10px; border-radius: 6px; margin-bottom: 5px; }
.kw-item span { width: 16px; height: 16px; border-radius: 4px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.kw-item.pos { background: var(--color-progress-50); color: #157a45; }
.kw-item.pos span { background: rgba(24,181,95,0.16); color: var(--color-progress-500); }
.kw-item.neg { background: var(--color-danger-50); color: #b13030; }
.kw-item.neg span { background: rgba(255,79,79,0.14); color: var(--color-danger-500); }

.alert-callout { font-size: 12.5px; line-height: 1.6; color: var(--text-secondary); background: var(--color-yellow-100); border: 1px solid #FFE0B8; border-radius: var(--radius-2); padding: 12px 14px; margin-bottom: 14px; }
.alert-callout b { color: var(--color-danger-500); }
.ac-badge { display: inline-flex; align-items: center; margin-top: 9px; font-size: 11px; font-weight: 700; color: var(--color-danger-500); background: #fff; border: 1px solid #FFD0D0; border-radius: var(--radius-1); padding: 3px 9px; }
.detail-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.drow { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-tertiary); background: var(--bg-page); border-radius: 6px; padding: 9px 11px; }
.drow i { color: var(--text-subtle); font-size: 15px; }
.drow b { color: var(--text-primary); font-weight: 600; margin-left: auto; text-align: right; }
.drow--danger { background: var(--color-danger-50); } .drow--danger i { color: var(--color-danger-500); } .drow--danger b { color: var(--color-danger-500); }
.drow--ai { background: var(--color-purple-100); } .drow--ai i { color: var(--color-purple-500); } .drow--ai b { color: var(--text-secondary); }
.drow--ok { background: var(--color-progress-50); color: #157a45; } .drow--ok i { color: var(--color-progress-500); }
.drow-check { margin-left: auto; }
.alert-actions { display: flex; gap: 8px; padding: 4px; }
.da-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 40px; border-radius: var(--radius-2); font-size: 13px; font-weight: 600; border: 1px solid transparent; }
.da-btn--ghost { background: #fff; border-color: var(--border-default); color: var(--text-secondary); }
.da-btn--danger { background: var(--state-danger-filled); color: #fff; }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 16px; }
.kpi-card { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-3); box-shadow: var(--shadow-sm); padding: 16px 18px; }
.kpi-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--kcb); color: var(--kc); display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 12px; }
.kpi-label { font-size: 12px; font-weight: 500; color: var(--text-subtle); }
.kpi-val { font-size: 30px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.1; margin-top: 3px; }
.kpi-val span { font-size: 13px; font-weight: 500; color: var(--text-subtle); margin-left: 2px; }
.kpi-delta { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; margin-top: 6px; }
.kpi-delta.up { color: var(--color-progress-500); }
.kpi-delta.down { color: var(--color-danger-500); }

.insight-disclaimer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 28px; }

/* =========================================================
   S8 · OPS / REWARDS
   ========================================================= */
.ops-panel { padding: 22px; }
.op-head { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.op-head i { color: var(--color-yellow-500); font-size: 20px; }
.op-row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--border-default); border-radius: var(--radius-2); margin-bottom: 9px; }
.op-label { font-size: 13.5px; font-weight: 600; color: var(--text-secondary); }
.op-amt { margin-left: auto; font-size: 16px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.op-amt span { font-size: 12px; font-weight: 500; color: var(--text-subtle); margin-left: 1px; }
.op-tog { width: 38px; height: 22px; border-radius: 999px; background: var(--color-progress-500); position: relative; flex-shrink: 0; transition: background 0.2s; }
.op-tog span { position: absolute; top: 2px; left: 18px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: left 0.2s; }
.op-tog:not(.on) { background: var(--color-gray-300); }
.op-tog:not(.on) span { left: 2px; }
.op-row--muted { opacity: 0.7; }
.op-divider { height: 1px; background: var(--border-default); margin: 14px 0; }
.op-filter-h { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 11px; }
.op-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.op-chip { font-size: 13px; font-weight: 500; color: var(--text-tertiary); background: var(--bg-page); border: 1px solid var(--border-default); border-radius: var(--radius-full); padding: 7px 14px; }
.op-chip.active { background: var(--color-primary-100); color: var(--brand-cta); border-color: var(--brand-glow); font-weight: 600; }

/* feature-list inline tag */
.fl-tag { font-style: normal; font-size: 11px; font-weight: 700; color: var(--brand-cta); background: var(--color-primary-100); padding: 2px 8px; border-radius: var(--radius-full); margin-left: 2px; }
.fl-tag--auto { color: var(--color-progress-500); background: var(--color-progress-50); }

/* --- S8 적립금 전환형 그래픽 (basic ↔ auto) --- */
.reward-switcher { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-4); box-shadow: var(--shadow-md); padding: 16px; }
.rs-tabs { display: flex; gap: 6px; background: var(--bg-subtle); padding: 5px; border-radius: var(--radius-3); margin-bottom: 16px; }
.rs-tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 42px; border: none; background: transparent; border-radius: var(--radius-2); font-size: 14.5px; font-weight: 600; color: var(--text-subtle); transition: all 0.18s var(--ease); }
.rs-tab i { font-size: 17px; }
.rs-tab.active { background: var(--bg-surface); color: var(--brand-cta); box-shadow: var(--shadow-sm); }
.rs-tab:not(.active):hover { color: var(--text-secondary); }
.rs-panel { animation: rsFade 0.32s var(--ease); }
.rs-panel[hidden] { display: none; }
@keyframes rsFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 0) { .rs-panel { animation: none; } }
.reward-switcher .ops-panel,
.reward-switcher .ar-panel { padding: 6px 6px 2px; }

/* =========================================================
   S9 · GLOBAL
   ========================================================= */
.arp-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--border-default); margin-bottom: 18px; }
.arp-title { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text-primary); }
.arp-title i { color: var(--text-subtle); font-size: 18px; }
.arp-state { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--color-progress-500); }
.arp-tog { width: 38px; height: 22px; border-radius: 999px; background: var(--color-progress-500); position: relative; flex-shrink: 0; }
.arp-tog span { position: absolute; top: 2px; left: 18px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.arp-config { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.arp-cfg { display: flex; align-items: center; gap: 11px; padding: 13px 14px; background: var(--bg-page); border: 1px solid var(--border-default); border-radius: var(--radius-3); }
.arp-cfg-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--color-primary-100); color: var(--brand-glow); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.arp-cfg div { display: flex; flex-direction: column; min-width: 0; }
.arp-cfg-l { font-size: 12px; color: var(--text-subtle); }
.arp-cfg-v { font-size: 15px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; margin-top: 1px; }
.arp-cond { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 13px 14px; background: var(--bg-page); border: 1px solid var(--border-default); border-radius: var(--radius-3); margin-bottom: 18px; }
.arp-cond-l { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.arp-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.arp-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-full); border: 1px solid var(--border-default); color: var(--text-tertiary); background: var(--bg-surface); }
.arp-chip i { font-size: 15px; }
.arp-chip.on { background: var(--color-primary-100); color: var(--brand-cta); border-color: var(--brand-glow); }
.arp-flow { display: flex; align-items: center; gap: 8px; padding: 16px 12px; background: linear-gradient(135deg, var(--color-primary-50), var(--bg-page)); border: 1px dashed #B6D8FA; border-radius: var(--radius-3); }
.arp-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.arp-step-ico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.arp-step-ico.ok { background: var(--color-progress-50); color: var(--color-progress-500); }
.arp-step-ico.pay { background: var(--brand-cta); color: #fff; box-shadow: 0 8px 18px -6px rgba(22,100,169,0.6); }
.arp-step-ico.log { background: var(--color-purple-100); color: var(--color-purple-500); }
.arp-step-t { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); line-height: 1.3; }
.arp-step--pay .arp-step-t { color: var(--brand-cta); font-weight: 700; }
.arp-arrow { display: inline-flex; flex-direction: column; align-items: center; color: var(--brand-glow); font-size: 18px; }
.arp-arrow small { font-size: 9px; font-weight: 700; color: var(--brand-cta); letter-spacing: 0.02em; margin-bottom: 1px; }
.arp-receipt { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding: 12px 14px; background: var(--color-progress-50); border: 1px solid rgba(24,181,95,0.2); border-radius: var(--radius-3); }
.arp-receipt > i { color: var(--color-progress-500); font-size: 19px; }
.arp-receipt-t { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.arp-receipt-amt { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--color-progress-500); }

/* =========================================================
   S9 · GLOBAL
   ========================================================= */
.global-stage { max-width: 620px; margin: 0 auto; }
.lang-tabs { display: flex; gap: 6px; justify-content: center; margin-bottom: 20px; background: var(--bg-subtle); padding: 5px; border-radius: var(--radius-full); width: fit-content; margin-left: auto; margin-right: auto; }
.lang-tab { padding: 10px 26px; border-radius: var(--radius-full); border: none; background: transparent; font-size: 14px; font-weight: 600; color: var(--text-subtle); transition: all 0.2s; }
.lang-tab.active { background: #fff; color: var(--brand-cta); box-shadow: var(--shadow-sm); }
/* localized widget */
.gwidget { padding: 28px; }
.gw-summary { display: flex; align-items: center; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border-default); margin-bottom: 16px; }
.gw-score { font-size: 44px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.gw-star { font-size: 22px; color: var(--color-yellow-500); }
.gw-meta { display: flex; flex-direction: column; gap: 4px; }
.gw-stars { color: var(--color-yellow-500); font-size: 18px; letter-spacing: 2px; }
.gw-stars.sm { font-size: 13px; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.gw-vf { color: var(--color-progress-500); font-size: 11.5px; font-weight: 600; letter-spacing: 0; }
.gw-count { font-size: 13px; color: var(--text-subtle); }
.gw-write { margin-left: auto; height: 42px; padding: 0 20px; border-radius: var(--radius-2); border: 1px solid var(--brand-glow); background: var(--color-primary-50); color: var(--brand-cta); font-size: 14px; font-weight: 600; white-space: nowrap; }
.gw-bars { display: flex; flex-direction: column; gap: 7px; padding: 4px 0 18px; border-bottom: 1px solid var(--border-default); margin-bottom: 18px; }
.gw-bar { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-subtle); }
.gw-bar > span { width: 12px; font-weight: 600; color: var(--text-tertiary); }
.gw-bar i { flex: 1; height: 8px; background: var(--bg-subtle); border-radius: 999px; overflow: hidden; }
.gw-bar i b { display: block; height: 100%; background: var(--color-yellow-500); border-radius: 999px; }
.gw-bar em { width: 42px; text-align: right; font-style: normal; }
.gw-rev { display: flex; gap: 13px; padding: 14px 0; }
.gw-rev + .gw-rev { border-top: 1px solid var(--border-default); }
.gw-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#2699FB,#1664A9); color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gw-av--b { background: linear-gradient(135deg,#A553E5,#6B46C1); }
.gw-body { flex: 1; }
.gw-body p { font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); margin: 9px 0 9px; }
.gw-foot { font-size: 12px; color: var(--text-subtle); display: inline-flex; align-items: center; gap: 5px; }
.gw-foot i { font-size: 14px; }

/* =========================================================
   S10 · CASES
   ========================================================= */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { position: relative; display: flex; flex-direction: column; padding: 28px 26px; background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-4); box-shadow: var(--shadow-sm); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); margin: 0; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.case-badge { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; color: var(--cbf); background: var(--cb); padding: 5px 12px; border-radius: var(--radius-full); }
.case-tag { font-size: 12px; font-weight: 500; color: var(--text-subtle); }
.case-quote { font-size: 16.5px; line-height: 1.6; font-weight: 500; color: var(--text-primary); margin: 0 0 24px; letter-spacing: -0.01em; flex: 1; }
.case-metric { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border-default); }
.cm-num { font-size: 38px; font-weight: 700; color: var(--brand-cta); letter-spacing: -0.03em; line-height: 1; }
.cm-num span { font-size: 18px; margin-left: 1px; }
.cm-lab { font-size: 13px; line-height: 1.35; color: var(--text-tertiary); font-weight: 600; }
.case-foot { text-align: center; font-size: 12px; color: var(--text-inactive); margin-top: 28px; }

/* =========================================================
   S10.5 · LIVE DEMO
   ========================================================= */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.demo-card { display: flex; flex-direction: column; background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-4); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s; }
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: #D5E9FF; }
.demo-card--feature { border-color: #CFE5FF; box-shadow: 0 18px 42px -22px rgba(22,100,169,0.4); }
.demo-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; background: var(--bg-page); border-bottom: 1px solid var(--border-default); }
.demo-badge { font-size: 12.5px; font-weight: 700; color: var(--text-secondary); background: var(--bg-subtle); border-radius: var(--radius-full); padding: 5px 13px; }
.demo-badge--accent { display: inline-flex; align-items: center; gap: 5px; color: var(--brand-cta); background: var(--color-primary-100); }
.demo-dots { display: flex; gap: 5px; }
.demo-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.demo-preview { height: 192px; padding: 20px; background: linear-gradient(165deg, var(--bg-surface), var(--color-primary-50)); display: flex; align-items: center; justify-content: center; }
/* basic = list widget mock */
.dp-card { width: 100%; background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-3); box-shadow: var(--shadow-sm); padding: 14px 16px; }
.dp-summary { display: flex; align-items: center; gap: 9px; padding-bottom: 11px; border-bottom: 1px solid var(--border-default); margin-bottom: 11px; }
.dp-score { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.dp-stars { color: var(--color-yellow-500); font-size: 13px; letter-spacing: 1px; }
.dp-count { margin-left: auto; font-size: 11.5px; color: var(--text-subtle); }
.dp-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.dp-row:last-child { margin-bottom: 0; }
.dp-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #2699FB, #1664A9); flex-shrink: 0; }
.dp-av--b { background: linear-gradient(135deg, #A553E5, #6B46C1); }
.dp-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 1px; }
.dp-st { color: var(--color-yellow-500); font-size: 10px; letter-spacing: 1px; }
.dp-l { height: 7px; border-radius: 4px; background: var(--bg-subtle); }
.dp-l.s { width: 64%; }
/* custom = gallery widget mock */
.demo-preview--custom { background: linear-gradient(165deg, var(--bg-surface), #EEF1FF); }
.dp-gallery { width: 100%; height: 100%; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; }
.dp-tile { position: relative; border-radius: 10px; box-shadow: var(--shadow-sm); min-height: 0; }
.dp-tile--1 { background: linear-gradient(140deg, #5FB0FF, #1664A9); }
.dp-tile--2 { background: linear-gradient(140deg, #33C4AC, #18B55F); }
.dp-tile--3 { background: linear-gradient(140deg, #A553E5, #6B46C1); }
.dp-tile--4 { background: linear-gradient(140deg, #FFB02E, #FF8139); }
.dp-tile--5 { background: linear-gradient(140deg, #2699FB, #114E84); }
.dp-tile--6 { background: linear-gradient(140deg, #E3529D, #A5318B); }
.dp-tile-star { position: absolute; left: 6px; bottom: 6px; font-size: 10px; font-weight: 700; color: #fff; background: rgba(7,32,59,0.42); border-radius: var(--radius-full); padding: 2px 7px; backdrop-filter: blur(2px); }
.demo-body { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.demo-title { font-size: 19px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.demo-desc { font-size: 14px; line-height: 1.6; color: var(--text-tertiary); flex: 1; }
.demo-btn { margin-top: 6px; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; height: 46px; padding: 0 22px; border-radius: var(--radius-2); font-size: 15px; font-weight: 600; background: var(--bg-surface); color: var(--text-secondary); border: 1px solid var(--border-strong); transition: all 0.18s var(--ease); }
.demo-card:hover .demo-btn { border-color: var(--brand-glow); color: var(--brand-cta); background: var(--color-primary-50); }
.demo-btn i { font-size: 17px; }
.demo-btn--accent { background: var(--brand-cta); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -8px rgba(22,100,169,0.55); }
.demo-card:hover .demo-btn--accent { background: var(--interactive-hover); color: #fff; border-color: transparent; }

/* =========================================================
   S11 · CLOSING + FORM
   ========================================================= */
.closing {
  overflow: hidden;
  /* distinct from the AI-insight ink section above: brighter brand-blue panel + seam */
  background:
    radial-gradient(900px 520px at 85% 0%, rgba(38,153,251,0.34), transparent 60%),
    linear-gradient(168deg, #16487F 0%, #0C2E56 100%);
  border-top: 1px solid rgba(124,192,255,0.16);
  box-shadow: inset 0 18px 40px -28px rgba(0,0,0,0.55);
}
.closing-rings { position: absolute; top: 50%; right: -8%; transform: translateY(-50%); pointer-events: none; z-index: 0; }
.closing-rings .rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.closing-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.closing-points { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 13px; }
.closing-points li { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); }
.closing-points i { color: #8FCBFF; font-size: 21px; }
.closing-form { padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text-primary); background: var(--bg-page); border: 1px solid var(--border-default); border-radius: var(--radius-2); padding: 12px 14px; transition: border-color 0.15s, box-shadow 0.15s; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-disabled); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-glow); box-shadow: 0 0 0 3px rgba(38,153,251,0.12); background: #fff; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-subtle); pointer-events: none; }
.form-note { font-size: 11.5px; color: var(--text-inactive); margin: 14px 0 0; text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border-default); padding: 56px 0 36px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid var(--border-default); }
.footer-brand p { font-size: 14px; color: var(--text-subtle); margin: 14px 0 0; max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-links a { font-size: 14px; font-weight: 500; color: var(--text-tertiary); }
.footer-links a:hover { color: var(--brand-cta); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 22px; font-size: 12px; color: var(--text-inactive); }

/* =========================================================
   responsive
   ========================================================= */
.m-br { display: none; }
@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-cta .btn--ghost { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-sub { max-width: none; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .hero-rings { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-visual { max-width: 480px; }
  .dash-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .loop-arrow { transform: rotate(90deg); }
  .loop-step { flex: 1; min-width: 0; }
  .feature--reverse .feature-visual { order: 2; }
  .case-grid { grid-template-columns: 1fr; gap: 16px; }
  .demo-grid { grid-template-columns: 1fr; gap: 18px; }
  .closing-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing-rings { display: none; }
  .wstage-view { height: 300px; }
  .gw-summary { flex-wrap: wrap; }
  .gw-write { margin-left: 0; width: 100%; order: 3; }
}
@media (max-width: 680px) {
  .journey { flex-direction: column; align-items: center; gap: 0; }
  .jn { flex: none; }
  .jn--pivot { transform: none; margin: 4px 0; }
  .jn-link { width: 2px; height: 30px; min-width: 0; background: repeating-linear-gradient(180deg, var(--border-strong) 0 6px, transparent 6px 12px); margin: 0; align-self: center; }
  .jn-flag { order: 0; margin: 8px 0 0; }
  .jn--pivot { display: flex; flex-direction: column; }

  /* 모바일에서 솔루션 hero 우측 mockup/visual 숨김 — 카피만 노출해 가독성 ↑.
     specificity 0,2,0 (.hero-visual.reveal) 으로 안정적 우선 적용 보장. */
  .hero-visual.reveal { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hv-kpi { right: 0; top: -18px; padding: 12px 16px; }
  .hv-alert { left: 0; bottom: 18px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nav-cta .btn--primary { display: none; }
  .m-br { display: inline; }

  /* [4] 4기둥 2×2 그리드 + 핵심 배지 여백 */
  .pillar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pillar-card { padding: 22px 18px; }
  .pillar-title { font-size: 17px; word-break: keep-all; }
  .pillar-desc { font-size: 12.5px; line-height: 1.55; word-break: keep-all; }
  .pillar-ico { width: 48px; height: 48px; font-size: 24px; margin-bottom: 16px; }
  .pillar-card--feature .pillar-ico { margin-top: 40px; }
  .pillar-num { top: 18px; right: 16px; }

  /* [1] 왜 리뷰인가 — 모바일 상하: 위=구매 여정 흐름 / 아래=소비자 목소리 */
  .d-br { display: none; }
  .problem .sub-sec { word-break: keep-all; }
  .why-cols { display: flex; flex-direction: column; align-items: stretch; gap: 0; text-align: center; margin-top: 28px; }
  /* 위: 구매 여정 흐름 (세로 + 연결선) */
  .journey { width: 100%; flex-direction: column; align-items: center; justify-content: flex-start; flex-wrap: nowrap; gap: 0; margin: 0; overflow: visible; padding: 0; scroll-snap-type: none; }
  .jn { flex: none; width: 100%; max-width: 340px; margin: 0 auto; flex-direction: column; align-items: center; background: none; border: none; box-shadow: none; padding: 4px 0; scroll-snap-align: none; }
  .jn-ico { width: 52px; height: 52px; font-size: 25px; }
  .jn--pivot { transform: none; margin: 0; border: none; box-shadow: none; }
  .jn--pivot .jn-ico { width: 62px; height: 62px; font-size: 30px; }
  .jn-label { margin-top: 8px; font-size: 16px; }
  .jn-cap { display: block; margin-top: 4px; font-size: 12.5px; line-height: 1.55; }
  .jn-flag { display: inline-flex; order: -1; margin: 0 0 8px; font-size: 11px; }
  .jn-link { display: block; flex: none; width: 100%; height: 64px; min-width: 0; margin: 0; position: relative; background: none; }
  .jn-link::before { content: ""; position: absolute; left: 50%; top: 6px; bottom: 6px; width: 2px; transform: translateX(-50%); background: repeating-linear-gradient(180deg, var(--brand-glow) 0 4px, transparent 4px 8px); opacity: 0.55; }
  .journey-dots { display: none; }
  /* 아래: 소비자 목소리 (흐름과 분리된 별도 블록) */
  .why-voices { width: 100%; max-width: 420px; margin: 32px auto 0; padding-top: 26px; border-top: 1px solid var(--border-default); display: block; text-align: left; }
  .pq-title { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; margin: 0 0 16px; }
  .pq-title b { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; color: var(--brand-cta); }
  .problem-quotes { display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; gap: 8px; margin-top: 0; overflow: visible; padding: 0; }
  .pq { flex: none; width: 100%; align-items: flex-start; justify-content: flex-start; font-size: 13.5px; line-height: 1.45; padding: 12px 15px; gap: 9px; color: var(--text-tertiary); background: var(--bg-surface); border: 1px solid var(--border-default); box-shadow: var(--shadow-sm); }
  .pq i { font-size: 15px; }

  /* [2] 핵심 가치 흐름 칩 — 순차 점등 (느린 좌→우 스윕) */
  .pillar-flow { margin-top: 18px; }
  .pfl-chip { animation: pflGlow 7s ease-in-out infinite; }
  .pfl-chip:nth-of-type(1) { animation-delay: 0s; }
  .pfl-chip:nth-of-type(2) { animation-delay: 1.75s; }
  .pfl-chip:nth-of-type(3) { animation-delay: 3.5s; }
  .pfl-chip:nth-of-type(4) { animation-delay: 5.25s; }

  /* S5 수집 다이어그램 — 모바일 세로 스택 + 하향 화살표 */
  .collect-stage { min-height: 0; padding: 22px 18px; display: flex; flex-direction: column; align-items: stretch; overflow: visible; }
  .cs-lines { display: none; }
  .cs-channels { position: static; transform: none; left: auto; top: auto; width: 100%; gap: 10px; }
  .cs-chan { width: 100%; font-size: 13.5px; padding: 12px 14px; animation: csCollect 4.2s ease-in-out infinite; }
  .cs-chan:nth-child(1) { animation-delay: 0s; }
  .cs-chan:nth-child(2) { animation-delay: 0.3s; }
  .cs-chan:nth-child(3) { animation-delay: 0.6s; }
  .cs-chan:nth-child(4) { animation-delay: 0.9s; }
  .cs-chan:nth-child(5) { animation-delay: 1.2s; }
  .cs-chan:hover { transform: none; }
  .cs-channels::after { content: ""; align-self: center; width: 13px; height: 13px; border-right: 2.5px solid var(--brand-glow); border-bottom: 2.5px solid var(--brand-glow); transform: rotate(45deg); margin-top: 12px; animation: csChevronFlow 1.6s ease-in-out infinite; }
  .cs-hub { position: static; transform: none; right: auto; top: auto; align-self: center; margin-top: 18px; display: flex; flex-direction: column; align-items: center; }
  .cs-hub-core { width: 76px; height: 76px; }
  .cs-hub-core img { width: 40px; height: 40px; }
  .cs-hub-label { position: static; transform: none; top: auto; left: auto; margin-top: 12px; }
  /* [4] AI 대시보드 상단 4단계 — 2×2 그리드 + 번호 */
  .loop-rail { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; counter-reset: loopn; }
  .loop-arrow { display: none; }
  .loop-step { width: 100%; position: relative; counter-increment: loopn; flex-direction: column; align-items: flex-start; gap: 9px; padding: 15px 14px; }
  .loop-step .ls-txt { text-align: left; }
  .loop-step::after { content: counter(loopn); position: absolute; top: 11px; right: 12px; width: 19px; height: 19px; border-radius: 50%; background: rgba(255,255,255,0.16); color: #CFE6FF; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
  .loop-step.active::after { background: rgba(255,255,255,0.28); color: #fff; }
  .alert-actions { flex-direction: column; }
  .arp-config { grid-template-columns: 1fr; }

  /* [3] 자동 적립금 흐름 — 모바일 전용 타임라인 (아래로 흐르는 레일=자동) */
  .arp-flow { flex-direction: column; align-items: stretch; gap: 26px; position: relative; padding: 22px 8px; }
  .arp-flow::before { content: ""; position: absolute; left: 38px; top: 32px; bottom: 32px; width: 2px; transform: translateX(-50%); background: repeating-linear-gradient(180deg, var(--brand-glow) 0 6px, transparent 6px 14px); background-size: 2px 14px; opacity: 0.5; animation: arpRail 0.9s linear infinite; }
  .arp-arrow { display: none; }
  .arp-step { flex-direction: row; align-items: center; gap: 14px; width: 100%; justify-content: flex-start; position: relative; z-index: 1; padding: 0; }
  .arp-step-ico { width: 44px; height: 44px; font-size: 21px; margin-left: 8px; flex-shrink: 0; box-shadow: 0 0 0 5px var(--bg-surface); }
  .arp-step-t { font-size: 15px; }
  .arp-step .arp-step-ico.ok { background: var(--color-progress-50); color: var(--color-progress-500); }
  .arp-step .arp-step-ico.log { background: var(--color-purple-100); color: var(--color-purple-500); }
  .arp-step--pay .arp-step-ico.pay { width: 50px; height: 50px; font-size: 24px; margin-left: 5px; background: linear-gradient(150deg, var(--color-primary-500), var(--brand-cta)); color: #fff; box-shadow: 0 0 0 5px var(--bg-surface), 0 10px 22px -8px rgba(22,100,169,0.7); }
  .arp-step--pay .arp-step-t { font-size: 16px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand-mid), var(--brand-ink)); padding: 12px 16px; border-radius: var(--radius-3); box-shadow: 0 10px 24px -12px rgba(7,32,59,0.5); }
  .arp-receipt { margin-top: 18px; }
  .reward-switcher .ar-panel { padding: 12px 12px 8px; }

  /* 모바일 공통 밀도·타이포 보정 */
  .section { padding: 60px 0; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .hero-h1 { font-size: 33px; }
  .hero-grid { gap: 44px; }
  .sec-head { margin-bottom: 32px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric { padding: 26px 14px; }
  .metric-val { font-size: 30px; }
  .metric-val--sm { font-size: 22px; }
  .pillar-card { padding: 24px 22px; }
  .gwidget { padding: 20px; }
  .gw-score { font-size: 36px; }
  .lang-tab { padding: 9px 18px; font-size: 13.5px; }
  .dash-card { padding: 15px; }
  .kw-cols { grid-template-columns: 1fr; gap: 12px; }
  .closing-form { padding: 22px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer { padding: 40px 0 28px; }
  .footer-links { display: none; }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding-bottom: 22px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { margin-top: 10px; max-width: 280px; font-size: 13px; }
  .reward-switcher { padding: 12px; }
  .rs-tab { font-size: 13.5px; }

  /* [6] 운영·관리 — 체크 항목/배지 줄바꿈 정리 */
  .feature-list li { align-items: flex-start; flex-wrap: wrap; gap: 8px 10px; font-size: 14.5px; line-height: 1.45; }
  .feature-list li i { margin-top: 1px; }
  .fl-tag { margin-left: 0; }
  .rs-tabs { gap: 5px; }

  /* [7] AI 인사이트 대시보드 — 모바일 전용: 핵심만 세로로 크게 */
  .win-body { padding: 14px; }
  .win-bar { height: 40px; }
  .win-url { font-size: 11px; padding: 4px 10px; margin-left: 8px; }
  .win-live { display: none; }
  .dash-title { font-size: 14px; flex-wrap: wrap; gap: 7px; }
  .dash-grid { gap: 12px; }
  /* loop rail compact */
  .loop-step { padding: 12px 14px; }
  .loop-step .ls-ico { width: 34px; height: 34px; }
  /* 감성 요약: AI 요약은 키우고, TOP5 작은 나열은 생략 */
  .ai-box { padding: 14px 15px; }
  .ai-box-h { font-size: 13px; }
  .ai-box p { font-size: 14.5px; line-height: 1.6; }
  .kw-cols { display: none; }
  /* 이상 탐지: 경고 콜아웃 강조, 작은 상세 수치 행은 생략 */
  .alert-callout { font-size: 14px; line-height: 1.6; padding: 14px 15px; }
  .ac-badge { font-size: 12px; }
  .detail-rows .drow:nth-child(1),
  .detail-rows .drow:nth-child(2) { display: none; }
  .drow { font-size: 13px; padding: 10px 12px; }
  .da-btn { height: 52px; font-size: 14.5px; flex: none; }
  .alert-actions { flex-direction: column; gap: 10px; }
  /* KPI 크게 */
  .kpi-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kpi-card { padding: 16px; }
  .kpi-val { font-size: 28px; }
  .kpi-ico { width: 32px; height: 32px; font-size: 16px; margin-bottom: 10px; }
}
@media (max-width: 0) {
  .cs-chan, .cs-channels::after, .pfl-chip, .arp-flow::before { animation: none; }
}

/* ============================================================
   INLINE → CLASS EXTRACTIONS (review LP)
   각 섹션 mockup 에서 반복되는 인라인 style 패턴을 클래스로 추출.
   ============================================================ */

/* S3 problem — 가운데 정렬된 h-sec / lead 사이즈 sub-sec */
.h-sec--center { max-width: 840px; margin-left: auto; margin-right: auto; }
.sub-sec--lead { font-size: clamp(17px, 1.5vw, 20px); }

/* S4 pillar-ico — 색 토큰 변형 */
.pillar-ico--primary { --pc: var(--color-primary-500); --pcb: var(--color-primary-100); }
.pillar-ico--teal    { --pc: var(--color-teal-500);    --pcb: var(--color-teal-100); }
.pillar-ico--purple  { --pc: var(--color-purple-500);  --pcb: var(--color-purple-100); }
.pillar-ico--on-navy { --pc: #fff; --pcb: rgba(255,255,255,0.16); }

/* S5 cs-logo — 채널 컬러 */
.cs-logo--cafe24     { --lg: #0B4DDB; }
.cs-logo--makeshop   { --lg: #FF6F32; }
.cs-logo--smartstore { --lg: #03C75A; }
.cs-logo--naverpay   { --lg: #03C75A; }
.cs-logo--neutral    { --lg: #5A6B82; }

/* S7 kpi-ico — 상태 토큰 변형 */
.kpi-ico--primary  { --kc: var(--color-primary-500);  --kcb: var(--color-primary-100); }
.kpi-ico--yellow   { --kc: var(--color-yellow-500);   --kcb: var(--color-yellow-100); }
.kpi-ico--progress { --kc: var(--color-progress-500); --kcb: var(--color-progress-50); }
.kpi-ico--danger   { --kc: var(--color-danger-500);   --kcb: var(--color-danger-50); }

/* S10 case-badge — 업종별 색 */
.case-badge--beauty  { --cb: var(--color-primary-100); --cbf: var(--brand-cta); }
.case-badge--health  { --cb: var(--color-teal-100);    --cbf: #1c8e7d; }
.case-badge--fashion { --cb: var(--color-purple-100);  --cbf: var(--color-purple-500); }

/* S7 win-dot — macOS 트래픽 라이트 */
.win-dot--r { background: #FF5F57; }
.win-dot--y { background: #FEBC2E; }
.win-dot--g { background: #28C840; }

/* rings — 고정 사이즈 변형 (decorative concentric circles) */
.rings--w520  { width: 520px;  height: 520px; }
.rings--w560  { width: 560px;  height: 560px; }
.rings--w640  { width: 640px;  height: 640px; }
.rings--w760  { width: 760px;  height: 760px; }
.rings--w860  { width: 860px;  height: 860px; }
.rings--w980  { width: 980px;  height: 980px; }
.rings--w1040 { width: 1040px; height: 1040px; }
