/* =========================================================
   맛집감별사 — 디자인 시스템
   톤: 바나나맛우유처럼 밝고 직관적인 크림/옐로우 베이스 +
       인스타 그라디언트 / 유튜브 레드 / 틱톡 시안·핑크 포인트
   ========================================================= */

:root {
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  /* 베이스 (크림/옐로우) */
  --bg: #FFF8E7;
  --bg-warm: #FFF3D6;
  --bg-alt: #FFE9A8;
  --white: #FFFFFF;

  --ink: #2A2320;
  --ink-soft: #5F564E;
  --ink-faint: #948a7e;

  /* 포인트 컬러 */
  --ig-1: #F58529;
  --ig-2: #DD2A7B;
  --ig-3: #8134AF;
  --ig-grad: linear-gradient(95deg, #F58529 0%, #DD2A7B 52%, #8134AF 100%);
  --yt-red: #FF0000;
  --tk-cyan: #25F4EE;
  --tk-pink: #FE2C55;

  --accent: #DD2A7B;       /* 주요 강조(핑크-마젠타) */
  --accent-deep: #B71E63;
  --gold: #F6B93B;

  --line: rgba(42, 35, 32, 0.10);
  --line-strong: rgba(42, 35, 32, 0.18);
  --shadow-sm: 0 2px 12px rgba(42, 35, 32, 0.07);
  --shadow-md: 0 14px 34px rgba(42, 35, 32, 0.12);
  --shadow-lg: 0 26px 64px rgba(42, 35, 32, 0.18);
  --shadow-pink: 0 12px 30px rgba(221, 42, 123, 0.30);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
/* 장식 요소(글로우/구름 등)가 만드는 가로 넘침을 뿌리에서 차단.
   clip 은 hidden 과 달리 프로그램적 스크롤까지 막아 더 견고하다. */
body { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.hl { color: var(--accent); }
.hl-grad {
  background: var(--ig-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hl-y { color: var(--gold); }
.only-desktop { display: none; }
@media (min-width: 861px) { .only-desktop { display: inline; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--ig-grad);
  z-index: 999;
  transition: width .08s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 9px 22px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 2px;
}
.brand-name { font-size: 17px; letter-spacing: -.01em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), filter .2s var(--ease);
}
.btn-primary { background: var(--ig-grad); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { transform: translateY(-2px); filter: saturate(1.1) brightness(1.03); box-shadow: 0 16px 36px rgba(221,42,123,.4); }
.btn-ghost { background: var(--white); color: var(--ink); border: 2px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ig-3); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-tcl { background: #FF6A1A; color: #fff; box-shadow: 0 12px 30px rgba(255,106,26,.4); }
.btn-tcl:hover { background: #E85D0E; transform: translateY(-2px); }
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-large { padding: 16px 30px; font-size: 16px; }

/* ---------- Side nav ---------- */
.side-nav {
  position: fixed;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.side-nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none; padding: 0;
  position: relative;
  transition: background .25s, transform .25s;
}
.side-nav-dot span {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  white-space: nowrap; color: var(--ink-soft);
  opacity: 0; transition: opacity .2s;
  background: var(--white); padding: 4px 10px;
  border-radius: 999px; box-shadow: var(--shadow-sm);
}
.side-nav-dot:hover span { opacity: 1; }
.side-nav-dot.is-active { background: var(--accent); transform: scale(1.35); }
@media (max-width: 980px) { .side-nav { display: none; } }

/* ---------- Layout helpers ---------- */
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section { padding: 96px 20px; position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  color: var(--accent-deep);
  background: rgba(221, 42, 123, .10);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold); background: rgba(255,255,255,.14); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.28; margin-bottom: 16px;
}
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--ink-soft); max-width: 600px;
  margin-bottom: 44px; font-weight: 500;
}
.section-metrics .section-lead,
.section-contact .section-lead { color: rgba(255,255,255,.72); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.link-btn { background: none; border: none; color: var(--accent); font-weight: 800; text-decoration: underline; font-size: inherit; padding: 0; }

/* =========================================================
   1. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 70px;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% 18%, var(--bg-warm) 0%, rgba(255,243,214,0) 70%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  top: -8%; right: -6%;
  width: min(620px, 78vw); height: min(620px, 78vw);
  background: radial-gradient(circle, rgba(221,42,123,.16) 0%, rgba(129,52,175,.08) 45%, rgba(255,248,231,0) 72%);
  border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700; font-size: 13.5px;
  padding: 9px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.ig-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ig-grad); flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.18; margin-bottom: 22px;
}
.hero-desc {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--ink-soft); font-weight: 500;
  line-height: 1.7; margin-bottom: 34px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 300px;
}
.hero-char-glow {
  position: absolute; left: 50%; bottom: 4%;
  width: 78%; height: 62%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,233,168,.9) 0%, rgba(255,233,168,0) 70%);
  z-index: 0; border-radius: 50%;
}
/* 캐릭터: PC/모바일 브레이크포인트별 고정값으로 명확히 설계 (잘림/치우침 방지) */
.hero-char {
  position: relative; z-index: 1;
  width: auto;
  height: min(70vh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(42,35,32,.22));
  animation: heroFloat 4.8s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-float-chip {
  position: absolute; z-index: 2;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px; font-weight: 800;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.chip-verified { top: 14%; left: -2%; color: var(--ig-3); animation: chipFloatA 5s ease-in-out infinite; }
.chip-region { bottom: 20%; right: -2%; color: var(--tk-pink); animation: chipFloatB 5.6s ease-in-out infinite; }
@keyframes chipFloatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes chipFloatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* =========================================================
   1.5 이달의 이벤트 (대형 독립 섹션)
   ========================================================= */
.section-event {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(221,42,123,.10), rgba(255,248,231,0) 70%),
    linear-gradient(180deg, var(--bg) 0%, #FFF1CE 100%);
}
.event-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.event-card {
  position: relative; text-align: left;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, #2A2320 0%, #3A2233 62%, #4A1E4E 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-lg);
  cursor: pointer; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.event-card::before {
  content: ""; position: absolute; top: -35%; right: -12%;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,42,123,.45) 0%, rgba(221,42,123,0) 68%);
  pointer-events: none;
}
.event-card:hover, .event-card:focus-visible { transform: translateY(-6px) scale(1.02); box-shadow: 0 30px 60px rgba(42,35,32,.32); outline: none; }
.event-card > * { position: relative; z-index: 1; }
.event-card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.event-card-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2.5px solid rgba(255,255,255,.8); flex-shrink: 0; }
.event-card-name { font-size: 19px; font-weight: 800; }
.event-card-handle { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); margin-top: 2px; }
/* 활동 플랫폼: 텍스트 없이 아이콘만, 눈에 띄게 크게 */
.event-card-platforms { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.event-plat { display: inline-flex; }
.event-card-platforms .event-plat { width: 34px; height: 34px; background: rgba(255,255,255,.1); border-radius: 10px; align-items: center; justify-content: center; }
.event-card-platforms .event-plat svg { width: 22px; height: 22px; display: block; }
.event-card-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.event-price-old { color: rgba(255,255,255,.5); text-decoration: line-through; font-size: 15px; font-weight: 600; }
.event-price-new { color: var(--gold); font-size: 26px; font-weight: 800; }
.event-price-off { background: var(--tk-pink); color: #fff; font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.event-card-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.event-badge { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.event-badge-opt { background: rgba(246,185,59,.16); border-color: rgba(246,185,59,.42); color: #FFE0A3; }
.event-card-foot { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; margin-top: auto; }
.event-counter { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.event-counter b { color: var(--gold); font-size: 17px; }
.event-progress { height: 8px; border-radius: 999px; background: rgba(255,255,255,.14); overflow: hidden; }
.event-progress span { display: block; height: 100%; border-radius: 999px; background: var(--ig-grad); width: 0; transition: width 1s var(--ease); }
.event-period { font-size: 12px; color: rgba(255,255,255,.5); }
.event-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; align-self: flex-start;
  background: #fff; color: var(--ig-3); font-weight: 800; font-size: 14px;
  padding: 11px 18px; border-radius: 999px; transition: background .2s, color .2s;
}
.event-card:hover .event-cta { background: var(--gold); color: #2A2320; }

/* =========================================================
   2. 필터 탐색
   ========================================================= */
.section-filter { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); }
.filter-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}
.filter-map {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.filter-map-title { font-weight: 800; font-size: 15px; margin-bottom: 8px; }
.filter-map-hint { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; font-weight: 600; }
.korea-map { width: min(330px, 82vw); height: auto; margin: 0 auto; display: block; }
.korea-map .region {
  fill: var(--bg-alt);
  stroke: var(--white);
  stroke-width: 0.9;
  cursor: pointer;
  transition: fill .18s var(--ease);
}
.korea-map .region:hover,
.korea-map .region.is-hover { fill: #FFD766; }
.korea-map .region.is-active { fill: var(--accent); }
/* 서울은 경기·인천에 둘러싸인 작은 영역이라 포인트 컬러로 구분 */
.korea-map .region-seoul { fill: var(--ig-3); }
.korea-map .region-seoul:hover,
.korea-map .region-seoul.is-hover { fill: var(--ig-2); }
.korea-map .region-seoul.is-active { fill: var(--tk-pink); }
.korea-map .lbl {
  font-size: 15px; font-weight: 800; fill: var(--ink);
  pointer-events: none; text-anchor: middle;
  paint-order: stroke; stroke: rgba(255,255,255,.85); stroke-width: 3px; stroke-linejoin: round;
}
.korea-map .lbl-seoul { fill: #fff; font-size: 11px; stroke: rgba(42,35,32,.35); stroke-width: 2px; }

.filter-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.filter-group { margin-bottom: 20px; }
.filter-label { font-weight: 800; font-size: 14.5px; margin-bottom: 11px; }
.filter-sub { font-weight: 600; font-size: 12px; color: var(--ink-faint); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip {
  border: 2px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700; font-size: 13.5px;
  padding: 9px 15px; border-radius: 999px;
  transition: border-color .18s, background .18s, color .18s, transform .18s;
}
.fchip:hover { border-color: var(--accent); transform: translateY(-1px); }
.fchip.is-on { border-color: var(--accent); background: rgba(221,42,123,.10); color: var(--accent-deep); }
.filter-actions { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.filter-search { flex: 1; min-width: 220px; }
.filter-reset { background: none; border: none; color: var(--ink-faint); font-weight: 700; font-size: 14px; text-decoration: underline; }

/* =========================================================
   3. 결과
   ========================================================= */
.results { position: relative; margin-top: 44px; }
/* 결과를 명확한 패널 안에 담아 "검색 결과 영역"임을 시각적으로 구분.
   섹션의 옅은 크림보다 진한 크림 배경 + 테두리, 그 위에 흰 카드들이 뜬다. */
.results-box {
  position: relative;
  background: #FCEFC7;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  box-shadow: inset 0 2px 12px rgba(42,35,32,.05), var(--shadow-sm);
  overflow: hidden;
}
.results-chip {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  color: #fff; background: var(--accent);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.results-head { text-align: center; margin-bottom: 26px; position: relative; z-index: 1; }
.results-lead { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 800; letter-spacing: -.01em; }
.results-count { margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--ink-faint); }
.cloud-bg {
  position: absolute; top: 60px; left: 50%; transform: translateX(-50%);
  width: 120%; height: 320px;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0)) 10% 20%/220px 120px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.8), rgba(255,255,255,0)) 60% 10%/280px 150px no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.7), rgba(255,255,255,0)) 85% 40%/240px 130px no-repeat;
  pointer-events: none; z-index: 0;
}
.result-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(24px) scale(.98);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
}
.result-card.is-floated { opacity: 1; transform: translateY(0) scale(1); }
.result-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); border-color: rgba(221,42,123,.4); }
.rc-top { display: flex; align-items: center; gap: 14px; }
.rc-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--white); box-shadow: var(--shadow-sm); }
.rc-name { font-size: 17px; font-weight: 800; }
.rc-meta { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; margin-top: 2px; }
.rc-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 800; color: #12864b;
  background: #E4F7ED; border-radius: 999px; padding: 4px 10px;
  width: fit-content;
}
.rc-stats { display: flex; gap: 16px; border-top: 1px dashed var(--line); padding-top: 12px; }
.rc-stat { display: flex; flex-direction: column; }
.rc-stat b { font-size: 15px; font-weight: 800; }
.rc-stat span { font-size: 11px; color: var(--ink-faint); font-weight: 600; }
.rc-platforms { display: flex; gap: 8px; align-items: center; }
.rc-plat { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.rc-plat svg { width: 22px; height: 22px; display: block; }
.rc-open { margin-left: auto; font-size: 13px; font-weight: 800; color: var(--accent); }
.results-empty { text-align: center; margin-top: 24px; color: var(--ink-soft); font-weight: 600; }

/* 사이드 리포트 */
/* .report 는 뷰포트 전체를 덮는 clip 컨테이너 → 닫힌 패널이 화면 밖으로
   나가도 overflow:hidden 으로 잘려 가로 스크롤을 만들지 않는다.
   clicks 는 통과시키고(none), 실제 패널만 auto 로 받는다. */
.report {
  position: fixed; inset: 0;
  z-index: 120;
  overflow: hidden;
  pointer-events: none;
}
.report-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(42,35,32,.2);
  padding: 26px 24px; overflow-y: auto;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  pointer-events: auto;
}
.report.is-open .report-panel { transform: translateX(0); }
.report-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--bg-warm); font-size: 16px; font-weight: 800; color: var(--ink);
}
.report-overlay { position: fixed; inset: 0; background: rgba(42,35,32,.4); z-index: 110; opacity: 0; transition: opacity .3s; }
.report-overlay.is-open { opacity: 1; }
.report-hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 14px 0 20px; border-bottom: 1px solid var(--line); }
.report-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow-md); margin-bottom: 14px; }
.report-name { font-size: 22px; font-weight: 800; }
.report-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.report-tag { font-size: 11.5px; font-weight: 700; color: var(--accent-deep); background: rgba(221,42,123,.10); padding: 4px 11px; border-radius: 999px; }
.report-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 22px 0; }
.report-stat { background: var(--bg-warm); border-radius: var(--radius-sm); padding: 16px 10px; text-align: center; }
.report-stat b { display: block; font-size: 18px; font-weight: 800; }
.report-stat span { font-size: 11px; color: var(--ink-faint); font-weight: 700; }
.report-section-title { font-size: 13px; font-weight: 800; color: var(--ink-faint); margin: 20px 0 12px; letter-spacing: .04em; }
.report-links { display: flex; flex-direction: column; gap: 10px; }
.report-link {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 16px; font-weight: 800; font-size: 14.5px;
  transition: border-color .2s, transform .2s;
}
.report-link:hover { transform: translateY(-2px); }
.report-link svg { width: 24px; height: 24px; flex-shrink: 0; }
.report-link .rl-arrow { margin-left: auto; color: var(--ink-faint); }
.report-link-ig:hover { border-color: var(--ig-2); }
.report-link-yt:hover { border-color: var(--yt-red); }
.report-link-tk:hover { border-color: var(--tk-pink); }
.report-browse {
  display: block; text-align: center; margin-top: 20px;
  background: var(--ig-grad); color: #fff; font-weight: 800; font-size: 15px;
  padding: 15px; border-radius: 999px; box-shadow: var(--shadow-pink);
}
.report-note { margin-top: 16px; font-size: 12px; color: var(--ink-faint); text-align: center; line-height: 1.6; }

/* =========================================================
   4. 지표
   ========================================================= */
.section-metrics { background: linear-gradient(135deg, #2A2320 0%, #3A2233 100%); color: #fff; }
.metric-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.metric-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px; text-align: center;
}
.metric-num { display: block; font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; background: var(--ig-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-num em { font-style: normal; font-size: .4em; color: rgba(255,255,255,.7); margin-left: 4px; -webkit-text-fill-color: rgba(255,255,255,.7); }
.metric-label { display: block; margin-top: 10px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85); }

/* =========================================================
   5. 프로세스 타임라인
   ========================================================= */
.section-process { background: var(--bg); }
.timeline { display: grid; grid-template-columns: 1fr; gap: 16px; counter-reset: step; }
.timeline-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline-step:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.timeline-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ig-grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.timeline-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.timeline-body p { font-size: 14px; color: var(--ink-soft); font-weight: 500; line-height: 1.6; }

/* =========================================================
   6. SNS 영입
   ========================================================= */
.section-recruit { background: var(--bg); padding-top: 40px; }
.recruit-card {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center;
  background: var(--ig-grad);
  border-radius: var(--radius-lg);
  padding: 40px 34px; overflow: hidden;
  box-shadow: var(--shadow-lg); color: #fff;
}
.eyebrow-on-grad { background: rgba(255,255,255,.18); color: #fff; }
.recruit-title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.recruit-desc { font-size: 15px; color: rgba(255,255,255,.9); font-weight: 500; margin-bottom: 26px; }
.recruit-avatars { display: flex; flex-wrap: wrap; gap: 10px; }
.recruit-avatars img {
  width: 58px; height: 58px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.85); object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.recruit-avatars .ra-more {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 3px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}

/* =========================================================
   7. 신뢰 — 대표자
   ========================================================= */
.section-founder { background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%); position: relative; overflow: hidden; }
.founder-inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.founder-visual { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.founder-char-glow {
  position: absolute; left: 50%; bottom: 2%;
  width: 74%; height: 60%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,233,168,.9) 0%, rgba(255,233,168,0) 70%);
  z-index: 0; border-radius: 50%;
}
.founder-visual img { position: relative; z-index: 1; height: min(56vh, 460px); width: auto; object-fit: contain; filter: drop-shadow(0 20px 26px rgba(42,35,32,.2)); }
.founder-desc { font-size: 15.5px; color: var(--ink-soft); font-weight: 500; margin: 16px 0 22px; line-height: 1.75; }
.founder-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.founder-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.fp-ico { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(221,42,123,.12); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.founder-link { width: auto; min-width: fit-content; padding: 13px 24px; font-size: 15px; white-space: nowrap; }

/* =========================================================
   8. 문의폼
   ========================================================= */
.section-contact { background: linear-gradient(135deg, #2A2320 0%, #3A2233 100%); color: #fff; }
.section-contact .eyebrow { }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.contact-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); padding: 32px 26px;
  box-shadow: var(--shadow-lg);
}
.form-two { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-row { margin-bottom: 18px; }
.form-row label, .form-legend { display: block; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.req { color: var(--tk-pink); }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%; border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 13px 15px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  background: var(--bg); transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-row textarea { resize: vertical; }
.radio-group { display: flex; gap: 10px; }
.radio-group-col { flex-direction: column; }
.radio-pill {
  flex: 1; border: 2px solid var(--line-strong); border-radius: 14px;
  padding: 13px 16px; font-weight: 700; font-size: 14.5px; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  display: flex; align-items: center; gap: 10px;
}
.radio-pill input { accent-color: var(--accent); width: 17px; height: 17px; }
.radio-pill:has(input:checked) { border-color: var(--accent); background: rgba(221,42,123,.08); color: var(--accent-deep); }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-weight: 600 !important; font-size: 14px !important; line-height: 1.5; cursor: pointer; }
.check-row input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.form-privacy { display: block; font-size: 12px; font-weight: 500; color: var(--ink-faint); margin-top: 5px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-status { min-height: 20px; margin: 14px 0 0; font-weight: 700; font-size: 14px; text-align: center; }
.form-status.is-success { color: #1E8E3E; }
.form-status.is-error { color: var(--tk-pink); }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.kakao-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #FEE500; color: #191600; font-weight: 800; font-size: 16px;
  padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  transition: transform .2s var(--ease);
}
.kakao-btn:hover { transform: translateY(-2px); }
.contact-info-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 24px; }
.contact-info-title { font-weight: 800; margin-bottom: 14px; color: var(--gold); }
.contact-info-list li { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82); padding-left: 20px; position: relative; margin-bottom: 12px; line-height: 1.5; }
.contact-info-list li::before { content: "•"; position: absolute; left: 2px; color: var(--tk-pink); }
.influencer-cta { text-align: center; margin-top: 26px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); }
.influencer-cta a { color: var(--gold); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.influencer-cta a:hover { color: #fff; }

/* =========================================================
   9. 타이거커머스랩 연결
   ========================================================= */
.section-tcl { background: var(--bg); }
.tcl-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center;
  background: linear-gradient(120deg, #FF6A1A 0%, #FF8A3D 100%);
  border-radius: var(--radius-lg); padding: 40px 34px;
  box-shadow: var(--shadow-lg); color: #fff;
}
.tcl-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.tcl-title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.tcl-desc { font-size: 15px; color: rgba(255,255,255,.92); font-weight: 500; margin-bottom: 26px; }
.tcl-visual { display: none; }
.tcl-visual img { height: 220px; width: auto; margin: 0 auto; filter: drop-shadow(0 16px 20px rgba(0,0,0,.2)); }

/* =========================================================
   10. Footer
   ========================================================= */
.site-footer { background: #1E1815; color: rgba(255,255,255,.6); padding: 48px 20px 34px; }
.footer-inner { text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 18px; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; font-size: 14px; font-weight: 700; }
.footer-links a { color: var(--gold); }
.footer-links a:hover { text-decoration: underline; }
.footer-dot { color: rgba(255,255,255,.3); }
.footer-sns { display: flex; justify-content: center; gap: 14px; margin-bottom: 22px; }
.footer-sns a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.footer-sns a:hover { transform: translateY(-3px); background: rgba(255,255,255,.16); }
.footer-sns svg { width: 20px; height: 20px; }
.footer-biz { font-size: 12.5px; line-height: 1.8; margin-bottom: 16px; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,.35); }

/* =========================================================
   추가 컴포넌트 (2차 개편)
   ========================================================= */
/* 결과/성장 카드 공통: 핸들 + 신규 배지 */
.rc-handle { font-size: 12.5px; font-weight: 600; color: var(--accent); margin-top: 1px; }
.rc-new {
  display: inline-flex; align-items: center; gap: 5px; width: fit-content;
  font-size: 11.5px; font-weight: 800; color: #2f7d32;
  background: #E7F6E7; border-radius: 999px; padding: 4px 10px;
}

/* 상세 리포트: 이 채널로 광고 문의하기 (주요 CTA) */
.report-inquiry {
  display: block; width: 100%; margin-top: 22px;
  background: var(--ig-grad); color: #fff; border: none;
  font-weight: 800; font-size: 15px; padding: 15px; border-radius: 999px;
  box-shadow: var(--shadow-pink); cursor: pointer;
  transition: transform .2s var(--ease), filter .2s;
}
.report-inquiry:hover { transform: translateY(-2px); filter: brightness(1.04); }
.report-browse {
  display: block; text-align: center; margin-top: 10px;
  background: var(--white); color: var(--ink); border: 1.5px solid var(--line-strong);
  font-weight: 800; font-size: 14px; padding: 13px; border-radius: 999px;
}
.report-browse:hover { border-color: var(--accent); color: var(--accent); }

/* 필터: 지도/패널 높이 통일 + 내부 수직 정렬 */
.filter-map { display: flex; flex-direction: column; justify-content: center; }
.filter-panel { display: flex; flex-direction: column; }
.filter-panel .filter-actions { margin-top: auto; }
/* 수도권 등 작은 지역 클릭 편의: 투명 확대 hit area */
.korea-map .region-hit { fill: transparent; cursor: pointer; }

/* GROWING: 신규 성장 계정 */
.recruit-head { max-width: 640px; margin-bottom: 36px; }
.recruit-title { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.28; margin-bottom: 14px; }
.recruit-hl { color: var(--accent); }
.recruit-desc { font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--ink-soft); font-weight: 500; }
.growing-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.growing-card { background: linear-gradient(180deg, #FFFDF5 0%, var(--white) 100%); border-color: rgba(37,244,238,.28); }
.growing-card:hover { border-color: var(--tk-pink); }
.growing-note {
  margin: 30px auto 0; max-width: 640px; text-align: center;
  font-size: clamp(.95rem, 1.5vw, 1.08rem); font-weight: 700; color: var(--accent-deep);
  background: rgba(37,244,238,.10); border: 1px solid rgba(37,244,238,.35);
  border-radius: 999px; padding: 14px 22px; line-height: 1.5;
}

/* 단골/재구매 리워드 */
.section-rewards { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); }
.reward-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.reward-card {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.reward-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-md); }
.reward-ico { font-size: 34px; display: block; margin-bottom: 14px; }
.reward-cond { display: inline-block; font-size: 11.5px; font-weight: 800; color: var(--accent-deep); background: rgba(221,42,123,.10); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.reward-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.reward-desc { font-size: 14px; color: var(--ink-soft); font-weight: 500; line-height: 1.6; }
.reward-card-hl { border: 2px solid var(--accent); box-shadow: var(--shadow-md); background: linear-gradient(160deg, rgba(221,42,123,.06) 0%, var(--white) 60%); }
.reward-note { margin-top: 24px; font-size: 12.5px; color: var(--ink-faint); font-weight: 500; line-height: 1.6; }

/* Footer 패밀리 사이트 */
.footer-family-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-family { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 560px; margin: 0 auto 26px; }
.footer-family-item {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md); padding: 16px 18px;
  transition: background .2s, transform .2s, border-color .2s;
}
.footer-family-item:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); border-color: rgba(246,185,59,.4); }
.ffi-name { font-weight: 800; color: #fff; font-size: 15px; }
.ffi-sub { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 500; }
.footer-legal { margin-bottom: 12px; }
.footer-legal a { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.6); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--gold); }

/* 이벤트 빈 상태 */
.event-empty {
  grid-column: 1 / -1; text-align: center;
  background: var(--white); border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg); padding: 46px 24px;
}
.event-empty-char { height: 150px; width: auto; margin: 0 auto 16px; filter: drop-shadow(0 12px 16px rgba(42,35,32,.18)); }
.event-empty-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.event-empty-desc { color: var(--ink-soft); font-weight: 500; }

/* 타이거커머스랩 — 카피 위계 + 대비 강한 버튼 */
.tcl-headline { font-size: clamp(1.9rem, 4.8vw, 2.9rem); font-weight: 900; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 12px; }
.tcl-headline-hl { color: #2A2320; }
.tcl-sub { font-size: clamp(1.05rem, 2.2vw, 1.4rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.btn-tcl-white { background: #fff; color: #E0560F; box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-tcl-white:hover { background: #FFF1E0; transform: translateY(-2px); }

/* 인플루언서 입점 (독립 섹션, 광고주 톤과 구분되는 딥 네이비-퍼플) */
.section-join { background: linear-gradient(135deg, #14243F 0%, #271140 100%); color: #fff; overflow: hidden; }
.eyebrow-on-dark { background: rgba(255,255,255,.14); color: #fff; }
.join-card { position: relative; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.join-title { font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 800; line-height: 1.32; letter-spacing: -.02em; margin-bottom: 14px; }
.join-desc { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.8); font-weight: 500; margin-bottom: 28px; }
.btn-join { background: var(--ig-grad); color: #fff; box-shadow: var(--shadow-pink); }
.btn-join:hover { transform: translateY(-2px); filter: brightness(1.05) saturate(1.08); }
.join-visual { display: none; }
.join-visual img { height: 280px; width: auto; margin: 0 auto; filter: drop-shadow(0 18px 24px rgba(0,0,0,.4)); }

/* =========================================================
   추가 컴포넌트 (3차 개편: 25–29)
   ========================================================= */
/* 키워드 강조 (헤드라인/카피 내 핵심어) */
.kw { font-weight: 900; color: var(--accent); }
.section-join .kw, .event-card .kw { color: var(--gold); }

/* 이벤트/성장 카드 지역 태그 */
.event-card-region { color: rgba(255,255,255,.7); font-weight: 700; }

/* 신규 성장 카드 (이벤트 카드 셸 재사용) */
.growing-event-card { background: linear-gradient(160deg, #123a3c 0%, #1c2340 60%, #2a1140 100%); }
.growing-event-card::before { background: radial-gradient(circle, rgba(37,244,238,.4) 0%, rgba(37,244,238,0) 68%); }
.badge-new { background: rgba(46,204,113,.18); border-color: rgba(46,204,113,.5); color: #9BEFC0; }
.badge-uploads { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.2); color: #fff; }
/* "1만원~" 가격 강조 — 이벤트 "30%" 배지와 동일한 pill 스타일로 통일 */
.growing-adcost { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.growing-adcost b { background: var(--tk-pink); color: #fff; font-size: 14px; font-weight: 800; padding: 4px 11px; border-radius: 999px; }
.growing-adcost span { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 600; }

/* GROWING 듀얼 혜택(광고주 / 신규 운영자) */
.growing-dual { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 6px 0 36px; }
.growing-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.growing-col-adv { border-top: 3px solid var(--accent); }
.growing-col-creator { border-top: 3px solid #2ecc71; }
.growing-col-title { font-size: 19px; font-weight: 700; margin-bottom: 16px; letter-spacing: -.01em; }
.growing-col-adv .growing-col-title { color: var(--accent-deep); }
.growing-col-creator .growing-col-title { color: #1f9d55; }
.growing-col ul { display: flex; flex-direction: column; gap: 12px; }
.growing-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.6; }
.gb-ico { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; margin-top: 1px; }
/* 컬럼별 체크 아이콘 색상 구분: 광고주=핑크 / 신규운영자=그린 */
.growing-col-adv .gb-ico { background: rgba(221,42,123,.14); color: var(--accent); }
.growing-col-creator .gb-ico { background: rgba(46,204,113,.18); color: #1f9d55; }

/* FOR CREATORS 혜택 (아이콘 + 텍스트) */
.join-benefits { display: flex; flex-direction: column; gap: 14px; margin: 0 0 28px; }
.join-benefits li { display: flex; align-items: flex-start; gap: 12px; }
.jb-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.10); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }
.jb-text { font-size: 14.5px; color: rgba(255,255,255,.82); font-weight: 500; line-height: 1.6; }
.jb-text b { color: #fff; font-weight: 800; }
.section-join .jb-text .kw { color: var(--tk-cyan); }

/* 카드 순차 페이드인 */
.reveal-card { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-card.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 640px) {
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .growing-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .reward-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .form-two { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-family { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 861px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 30px; }
  .filter-layout { grid-template-columns: 360px 1fr; align-items: stretch; }
  .result-grid { grid-template-columns: repeat(3, 1fr); }
  /* 이벤트/성장 카드는 개수(2~4)에 맞춰 채워지고 가운데 정렬 */
  .growing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); justify-content: center; }
  .event-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); justify-content: center; }
  .growing-dual { grid-template-columns: 1fr 1fr; gap: 22px; }
  .founder-inner { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1.3fr 1fr; }
  .tcl-card { grid-template-columns: 1.4fr .6fr; }
  .tcl-visual { display: block; }
  .join-card { grid-template-columns: 1.5fr .5fr; }
  .join-visual { display: block; }
}

/* 태블릿 이하: 히어로 캐릭터 고정 크기 (잘림 방지) */
@media (max-width: 860px) {
  .hero { padding: 108px 20px 48px; text-align: center; }
  .hero-badge, .hero-cta-row { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-visual { order: -1; min-height: auto; margin-bottom: 8px; }
  .hero-char { height: auto; width: auto; max-height: 340px; max-width: 60vw; }
  .founder-visual img { height: auto; max-height: 360px; max-width: 62vw; }
  .founder-inner { text-align: center; }
  .founder-points li { text-align: left; }
  .section { padding: 72px 18px; }
}

/* 모바일: 캐릭터를 문서 흐름 안에서 고정 max값으로 (한쪽 벽에 붙지 않게 중앙) */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-char { max-width: 220px; max-height: 300px; }
  .chip-verified { left: 0; top: 8%; font-size: 11.5px; }
  .chip-region { right: 0; bottom: 12%; font-size: 11.5px; }
  .founder-visual img { max-width: 240px; max-height: 320px; }
  .btn-large { padding: 15px 24px; font-size: 15px; }
  .hero-cta-row .btn { width: 100%; }
  .filter-actions { flex-direction: column; align-items: stretch; }
  .filter-search { width: 100%; }
  .report-panel { width: 100%; }
  .site-header { padding: 12px 16px; }
  .brand-name { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { padding: 9px 14px; font-size: 12.5px; }
  .event-name { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .result-card, .btn, .timeline-step { transition: none !important; }
  .hero-char, .chip-verified, .chip-region, .event-flag .pulse-dot { animation: none !important; }
}
