@charset "utf-8";

/*
 * style.css — aisearch(2026-09) 이벤트 고유 스타일
 * ─ :root 변수 블록만 하네스 제어 영역
 * ─ 나머지는 이벤트 고유 스타일
 * ─ Figma : 1920px 캔버스 / 콘텐츠 폭 1280px (x:320~1600)
 */

/* ── 하네스 제어 영역 (매 이벤트 교체) ── */
:root {
  /* 색상 — Figma 추출값 */
  --color-primary:      #3344ff;  /* 포인트 컬러 (제목 강조, 그래프) */
  --color-cta:          #4369ff;  /* CTA 버튼 배경 */
  --color-navy:         #010f45;  /* 섹션 제목 다크 네이비 */
  --color-text:         #111827;  /* 카드 제목 */
  --color-sub:          #5d6881;  /* 본문 보조 텍스트 */
  --color-gray:         #84879a;  /* 카드 설명 */
  --color-source:       #8592ae;  /* 출처 */

  --color-bg-hero-from: #30a2ff;  /* 히어로 그라디언트 시작 */
  --color-bg-hero-to:   #002feb;  /* 히어로 그라디언트 끝 */
  --color-bg-light:     #f0f8ff;  /* 밝은 섹션 배경 (trend / price) */
  --color-bg-dark:      #000f40;  /* 다크 섹션 배경 (feature) */
  --color-bg-notice:    #eff1f9;  /* 유의사항 배경 */
  --color-card-dark:    #132256;  /* 다크 카드 배경 */
  --color-card-line:    #e5e6ea;  /* 라이트 카드 테두리 */

  /* 콘텐츠 */
  --wrap-width: 1280px;
  --font-base: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;

  /* 타이포 — clamp 중간값은 max/1920*100 (vw) */
  --fs-hero-main: clamp(30px, 4.85vw, 74px);
  --fs-hero-sub:  clamp(22px, 3.71vw, 52px);
  --fs-sec-tit:   clamp(26px, 2.50vw, 48px);
  --fs-card-tit:  clamp(18px, 1.15vw, 22px);
  --fs-body:      clamp(14px, 0.83vw, 16px);
  --fs-lead:      clamp(15px, 0.94vw, 18px);
  --fs-btn:       clamp(16px, 1.04vw, 20px);

  --padding-section: clamp(60px, 6.25vw, 120px);
}

/* common ------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box;}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  cursor: default;
}

img,
video { max-width: 100%; height: auto; }

ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
em{font-weight: inherit !important;}
/* 커서 — 텍스트 위 I빔 제거, 조작 요소만 예외 */
a,
button { cursor: pointer; }
input,
textarea,
select { cursor: auto; }

.blind { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.wrap { width: var(--wrap-width); margin: 0 auto; }

.aisearch * {line-height: normal;}
.aisearch ul::after{display:none;}
.pc_con { display: block; }
.t_con  { display: none; }
.m_con  { display: none; }

/* 아이콘 공통 — i 태그 베이스 */
i {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

/* CTA 버튼 공통 */
.btn_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 44px;
  border-radius: 10px;
  background-color: var(--color-cta);
  box-shadow: 0 4px 12px rgba(67, 105, 255, .18);
  overflow: hidden;
  color: #fff;
  font-size: var(--fs-btn);
  font-weight: 700;
  line-height: 1.4;
  transition: transform .28s cubic-bezier(.22, .68, .35, 1), box-shadow .28s, filter .28s;
}
/* 광택 스윕 — hover 시 좌 → 우로 지나간다 */
.btn_cta::after {
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .45) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: left .6s ease;
  content: '';
}
.btn_cta:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(67, 105, 255, .38);
}
.btn_cta:hover::after { left: 130%; }
.btn_cta:active { transform: translateY(-1px); }

/* 유의사항 점 리스트 */
.list_dot > li { position: relative; padding-left: 16px; line-height: inherit; }
.list_dot > li::before { position: absolute; left: 0; content: '·'; }

/* 스크롤 진입 순차 애니메이션
   ─ 이동값은 transform이 아닌 translate 속성으로 준다.
     hover 리프트(transform)와 프로퍼티가 겹치지 않아 서로 덮어쓰지 않는다. */
.interactive section { opacity: 0; transition: opacity .5s; }
.interactive section.is-active { opacity: 1; }
.interactive section .wrap > * {
  --reveal-delay: 0s;
  opacity: 0;
  transform: none;
  translate: 0 12px;
  transition:
    opacity .5s ease var(--reveal-delay),
    translate .5s ease var(--reveal-delay),
    transform var(--tf-dur, .38s) var(--tf-ease, cubic-bezier(.22, .68, .35, 1)),
    box-shadow .38s ease;
}
.interactive section.is-active .wrap > * { opacity: 1; translate: 0 0; }
/* 지연은 transition-delay가 아닌 변수로 준다.
   transition-delay를 쓰면 hover용 transform까지 같이 늦어져서 툭툭 끊긴다. */
.interactive section.is-active .wrap > *:nth-child(1) { --reveal-delay: .1s; }
.interactive section.is-active .wrap > *:nth-child(2) { --reveal-delay: .3s; }
.interactive section.is-active .wrap > *:nth-child(3) { --reveal-delay: .5s; }
.interactive section.is-active .wrap > *:nth-child(4) { --reveal-delay: .7s; }
/* common// ---------------------------------------------- */


/* header_event -------------- */
.header_event {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}
.header_event .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(52px, 3.65vw, 70px);
}
.header_event .logo_event a {
  display: block;
  color: #fff;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 800;
  letter-spacing: -.5px;
}
.header_event .txt_event {
  color: rgba(255, 255, 255, .78);
  font-size: var(--fs-body);
  font-weight: 500;
}
.header_event .txt_event em { font-style: normal; font-weight: 700; color: #96f4ff; }
/* header_event// -------------- */


/* header_sticky -------------- */
/* Figma GNB : 1920×80 / bg rgba(19,34,86,.8) + blur 5px / 로고 120×21.6 / 버튼 148×42 r100 */
.header_sticky {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(19, 34, 86, .8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: translateY(-100%);
  transition: transform .35s;
}
.header_sticky.is-active { transform: translateY(0); }
.header_sticky .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: clamp(56px, 4.17vw, 80px);
}
.header_sticky .logo_sticky a { display: block; }
.header_sticky .logo_sticky img {
  display: block;
  width: clamp(96px, 6.25vw, 120px);
  filter: invert(1) brightness(5);
}
.header_sticky .btn_cta {
  width: clamp(120px, 7.71vw, 148px);
  height: clamp(38px, 2.19vw, 42px);
  min-height: 0;
  border-radius: 100px;
  font-size: var(--fs-body);
}
/* backdrop-filter 미지원 브라우저 — 불투명도만 높여 가독성 확보 */
@supports not ((backdrop-filter: blur(5px)) or (-webkit-backdrop-filter: blur(5px))) {
  .header_sticky { background-color: rgba(19, 34, 86, .95); }
}
/* header_sticky// -------------- */


/* hero -------------- */
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* 배경 — bg_hero.svg (1921x800). background-color는 SVG 로드 전/실패 시 대비. */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #030a28;
  background-image: url(/images/event/aisearch/bg_hero.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* 배경 장식 — 동심원 링 + 점 */
.hero .bg_wrap {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.hero .hero_ring {
  position: absolute;
  left: 50.5%;
  display: block;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: translateX(-50%);
}
/* Figma : Ellipse5 1620 / Ellipse6 1360 / Ellipse7 1112 (중심 = 캔버스 하단 +260px) */
.hero_ring_1 { top: 58%; width: 84.4vw; aspect-ratio: 1; }
.hero_ring_2 { top: 73%; width: 70.8vw; aspect-ratio: 1; }

.hero .hero_dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .85);
  animation: floatY 3s ease-in-out infinite;
}
.hero .hero_dot.hero_dot_1 { left:22.4%; bottom:35.2%; width:6px; height:6px; animation-delay:0s; border: 1px solid #fff; background-color: transparent; }
.hero .hero_dot.hero_dot_2 { left:78.5%; bottom:31.1%; width:6px; height:6px; animation-delay:.4s; border: 1px solid #fff; background-color: transparent; }
.hero .hero_dot.hero_dot_3 { left:14.1%; bottom:12.8%; width:4px; height:4px; animation-delay:.8s; }
.hero .hero_dot.hero_dot_4 { left:26.7%; bottom:6.4%; width:10px; height:10px; animation-delay:1.2s; filter: drop-shadow(0 0 6px #73FFFF);}
.hero .hero_dot.hero_dot_5 { left:72.5%; bottom:9.8%; width:4px; height:4px; animation-delay:1.6s; }
.hero .hero_dot.hero_dot_6 { left:84.7%; bottom:12.8%; width:6px; height:6px; animation-delay:2s; }
.hero .hero_dot.hero_dot_7 { left:71.4%; bottom:31.1%; width:12px; height:12px; animation-delay:2.4s; filter: drop-shadow(0 0 6px #73FFFF);}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  height: calc(100dvh - 60px);
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero .tit_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3.5vw, 30px);
  text-align: center;
}
.hero .badge_hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: clamp(240px, 16.8vw, 322px);
  height: clamp(38px, 2.5vw, 48px);
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 100px;
  background-color: #1c4df0;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 22px);
  font-weight: 600;
}
.hero .badge_hero span { font-weight: 400; }

.hero .tit_hero h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: -1px;
  font-weight: 700;
}
.hero .tit_hero em {
  color: #96f4ff;
  font-size: var(--fs-hero-sub);
  font-style: normal;
  line-height: normal;
}
.hero .tit_hero strong {
  color: #fff;
  font-size: var(--fs-hero-main);
  font-weight: 800;
  line-height: normal;
}

/* 히어로 타이틀 — 글자 등장(chFocus) + 답변줄 글로우 웨이브(chWave)
   등장은 .is-active 하나로만 판단한다. 별도 클래스에 걸면 그 클래스가 늦게 붙는 순간
   animation 목록이 바뀌면서 등장이 다시 트리거돼 한꺼번에 나타난 것처럼 보인다.
   두 규칙의 chFocus 인자는 반드시 동일해야 한다. */
@keyframes chFocus { 0% { opacity: 0; color: #96f4ff; transform: translateY(.28em) scale(1.12); filter: blur(10px); } 100% { opacity: 1; color: #96f4ff; transform: none; filter: blur(0); } }
@keyframes chFocus2 { 0% { opacity: 0; color: #96f4ff; transform: translateY(.28em) scale(1.12); filter: blur(10px); } 100% { opacity: 1; color: #fff; transform: none; filter: blur(0); } }
@keyframes chWave { 0%, 43%, 55%, 100% { color: #fff; text-shadow: none; } 49% { color: #cffcff; text-shadow: 0 0 24px rgba(150, 244, 255, .85); } }

.hero .tit_hero .ch { display: inline-block; opacity: 0; transition: scale .3s cubic-bezier(.34, 1.56, .64, 1); }
.interactive section.is-active .tit_hero .ch { animation: chFocus .7s cubic-bezier(.16, 1, .3, 1) calc(.2s + var(--ci, 0) * .05s) both; }
.interactive section.is-active .tit_hero strong .ch { animation: chFocus2 .7s cubic-bezier(.16, 1, .3, 1) calc(.2s + var(--ci, 0) * .05s) both, chWave var(--wave-dur, 8s) ease-in-out calc(2.4s + var(--ci, 0) * .05s) infinite; }

.hero .hero_kv {
  display: block;
  align-self: center;
  aspect-ratio: 985 / 552;
}
.hero_lottie {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero_lottie.is-loaded { opacity: 1; }
/* 로띠가 심은 svg는 어떤 경우에도 숨기지 않는다 */
.hero_lottie > svg { opacity: 1 !important; visibility: visible !important; }
/* lottie가 심는 svg/canvas를 컨테이너에 꽉 맞춘다 */
.hero_lottie > svg,
.hero_lottie > canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
/* hero// -------------- */


/* 섹션 공통 타이틀 -------------- */
.tit_sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.tit_sec h2 {
  color: var(--color-navy);
  font-size: var(--fs-sec-tit);
  font-weight: 800;
  line-height: 1.3;
}
.tit_sec h2 em { color: var(--color-primary); font-style: normal; }
.tit_sec p {
  color: #6b718f;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
}
/* 섹션 공통 타이틀// -------------- */


/* trend -------------- */
.trend {
  position: relative;
  overflow: hidden;
  padding: var(--padding-section) 0;
  background-color: var(--color-bg-light);
}
/* 배경 — bg_trend.svg (1921x904). 섹션 실측 높이가 설계값과 비슷해 cover가 잘 맞는다. */
.trend .bg_wrap {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url(/images/event/aisearch/bg_trend.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}
.trend .wrap { position: relative; z-index: 1; }

.trend_list {
  display: flex;
  gap: 19px;
  margin-top: clamp(40px, 4.17vw, 80px);
}
.trend_list:after{display: none;}
/* height 고정 — 세 카드 높이를 강제로 맞춰 .trend_desc의 margin-top:auto가
   먹을 여백을 만든다(구분선 정렬). 세로로 쌓이는 1024px 이하에서는 해제. */
.trend_card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  height: 482px;
  padding: clamp(24px, 1.88vw, 36px) clamp(20px, 2.08vw, 40px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, .6);
  text-align: center;
}
.trend_card > h3 {
  color: var(--color-text);
  font-size: var(--fs-lead);
  font-weight: 500;
}
/* margin-top:auto — 차트 높이가 달라도 설명 블록이 카드 하단으로 밀려
   세 카드의 구분선이 같은 높이에 놓인다(카드별 수동 보정 불필요).
   .trend_card가 flex column, .trend_list가 stretch라 카드 높이가 같은 것이 전제. */
.trend_desc {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid #e3e6f2;
  color: var(--color-text);
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  line-height: 140%;
}
.trend_source {
  margin-top: 8px;
  color: var(--color-source);
  font-size: clamp(11px, 0.68vw, 13px);
  line-height: 1.4;
}

/* 카드1 — 가로 막대 그래프 */
.chart_bar { margin-top: 32px; }
.chart_bar > li + li { margin-top: 16px; }
.chart_bar_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8a8fb7;
  font-size: var(--fs-body);
  font-weight: 500;
}
.chart_bar_head b { font-weight: 500; }
.chart_bar_track {
  overflow: hidden;
  margin-top: 8px;
  height: clamp(28px, 2.08vw, 40px);
  border-radius: 100px;
  background-color: #e6e8f4;
}
.chart_bar_track i {
  display: block;
  height: 100%;
  border-radius: 100px;
  background-color: #d5d9f0;
}
.chart_bar > li + li .chart_bar_head { color: var(--color-primary); }
.chart_bar > li + li .chart_bar_track i { background-color: var(--color-primary); }
.chart_bar small {
  display: block;
  margin-top: 8px;
  color: #8a8fb7;
  font-size: clamp(12px, 0.73vw, 14px);
}
.chart_bar > li + li small { color: var(--color-primary); font-weight: 600; }
.chart_bar_base { margin-top: 10px !important; color: #8c90a9 !important; font-weight: 500 !important; }

/* 카드2 — 세로 막대 그래프 */
.chart_col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(20px, 1.88vw, 36px);
  margin-top: 34px;
  height: clamp(120px, 9.01vw, 173px);
}
.chart_col > li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: clamp(40px, 3.13vw, 60px);
  height: 100%;
}
.chart_col > li i {
  display: block;
  width: 100%;
  border-radius: 15px 15px 0 0;
  background-color: #e6e8f4;
}
.chart_col > li span {
  margin-top: 10px;
  color: #8a8fb7;
  font-size: var(--fs-body);
  font-weight: 500;
}
.chart_col_2025 i { background-color: #00aed5 !important; }
.chart_col_2025 span { color: #00aed5 !important; font-weight: 600 !important; }
.chart_col_value {
  margin-top: 10px;
  color: #00aed5;
  font-weight: 700;
  line-height: 1.4;
}
.chart_col_value strong { font-size: clamp(26px, 1.88vw, 36px); font-weight: 700; }
.chart_col_value span   { font-size: clamp(19px, 1.35vw, 26px); }

/* 카드3 — 도넛 그래프 (인라인 SVG : stroke-dashoffset 애니메이션용) */
.chart_donut {
  --donut: clamp(150px, 11.35vw, 218px);
  position: relative;
  width: var(--donut);
  height: var(--donut);
  margin: 36px auto 0;
}
.chart_donut svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* 12시 방향에서 시작 */
}
.chart_donut circle { fill: none; stroke-width: 24; }
.chart_donut_track { stroke: #e6e8f4; }
.chart_donut_gauge {
  stroke: #565eff;
  stroke-linecap: round;
  stroke-dasharray: 609.5;  /* 2πr, r=97 */
  stroke-dashoffset: 609.5; /* 100% 숨김 → is-chart에서 68%까지 그림 */
}
.chart_donut p {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #565eff;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.chart_donut p strong { font-size: clamp(34px, 2.5vw, 48px); font-weight: 700; }
.chart_donut p span   { font-size: clamp(26px, 1.88vw, 36px); }
.trend_desc + .trend_source { margin-top: 8px; }

/* ── 차트 진입 애니메이션 ──
   script.js가 .trend에 .is-chart를 부여할 때 1회 재생된다.
   기본값은 0(막대 폭·높이 0 / 도넛 미노출), 최종값은 아래 .is-chart 블록에서만 지정. */
.chart_bar_track i {
  width: 0;
  transition: width 1.2s cubic-bezier(.22, .68, .35, 1) .15s;
}
.chart_col > li i {
  height: 0;
  transition: height 1s cubic-bezier(.22, .68, .35, 1) .25s;
}
.chart_donut_gauge {
  transition: stroke-dashoffset 1.4s cubic-bezier(.22, .68, .35, 1) .25s;
}

.trend.is-chart .chart_bar > li:first-child .chart_bar_track i { width: 35.3%; }
.trend.is-chart .chart_bar > li + li .chart_bar_track i { width: 70.7%; }
.trend.is-chart .chart_col_2024 i { height: 19.4%; }
.trend.is-chart .chart_col_2025 i { height: 100%; }
/* 609.5 × (1 - 0.68) = 195.0 */
.trend.is-chart .chart_donut_gauge { stroke-dashoffset: 195; }

/* 모션 최소화 설정 시 — 즉시 최종 상태 */
@media (prefers-reduced-motion: reduce) {
  .chart_bar_track i,
  .chart_col > li i,
  .chart_donut_gauge { transition: none; }
}
/* trend// -------------- */


/* effect -------------- */
.effect {
  padding: var(--padding-section) 0 clamp(70px, 8.75vw, 168px);
  background-color: #fff;
}
.effect_list {
  display: flex;
  gap: 19px;
  margin-top: clamp(40px, 3.02vw, 58px);
}
.effect_list > li {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  border: 1px solid var(--color-card-line);
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}

/* 이미지 영역 — 비율 고정, 카드 상단만 담당 */
.effect_thumb {
  flex-shrink: 0;
  aspect-ratio: 414 / 280;
  overflow: hidden;
  background: linear-gradient(180deg, #E4F2FF 0%, #A0C3F6 60%);
}
.effect_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 텍스트 영역 — 남은 높이를 채워 카드 하단 라인을 맞춘다 */
.effect_desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(24px, 1.88vw, 36px) clamp(16px, 2.45vw, 47px);
}
.effect_desc h3 {
  color: var(--color-text);
  font-size: var(--fs-card-tit);
  font-weight: 700;
  line-height: 1.15;
}
.effect_desc p {
  margin-top: 12px;
  color: var(--color-gray);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.4;
}
/* effect// -------------- */
/* effect// -------------- */


/* feature -------------- */
.feature {
  padding: var(--padding-section) 0;
  background-color: var(--color-bg-dark);
}
.feature .tit_sec h2 { color: #fff; }
.feature .tit_sec h2 em { color: #9dc7ff; }

.feature_list {
  display: flex;
  gap: 19px;
  margin-top: clamp(40px, 4.17vw, 80px);
}
.feature_list > li {
  flex: 1;
  min-width: 0;
  padding: clamp(24px, 1.88vw, 36px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background-color: var(--color-card-dark);
}
.feature_list h3 {
  margin-top: clamp(20px, 1.67vw, 32px);
  color: #fff;
  font-size: var(--fs-card-tit);
  font-weight: 700;
  line-height: 1.15;
}
.feature_list p {
  margin-top: 12px;
  color: #aebceb;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.4;
}

/* 아이콘 — 원형 배경 + 흰색 심볼 */
.ico_feature {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: clamp(56px, 4.17vw, 80px);
  width: clamp(56px, 4.17vw, 80px);
  height: clamp(56px, 4.17vw, 80px);
  border-radius: 50%;
  background-color: #333f73;
  background-size: 52%;
}
.ico_feature_convert { background-image: url(/images/event/aisearch/ico_feature_convert.svg); }
.ico_feature_nodev   { background-image: url(/images/event/aisearch/ico_feature_nodev.svg); background-size: 55%; }
.ico_feature_setting { background-image: url(/images/event/aisearch/ico_feature_setting.svg); background-size: 60%; }
/* feature// -------------- */


/* price -------------- */
.price {
  position: relative;
  overflow: hidden;
  padding: var(--padding-section) 0;
  background-color: var(--color-bg-light);
}
/* 배경 — bg_price.svg (1921x950) */
.price .bg_wrap {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url(/images/event/aisearch/bg_price.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}
.price .wrap { position: relative; z-index: 1; }

.price_list {
  display: flex;
  gap: 19px;
  margin-top: clamp(40px, 4.17vw, 80px);
}
.price_card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: clamp(300px, 18.9vw, 362px);
  padding: clamp(26px, 2.09vw, 40px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, .6);
  box-shadow: 0 0 40px rgba(184, 194, 245, .5);
  text-align: center;
}
.price_card h3 {
  color: var(--color-text);
  font-size: var(--fs-card-tit);
  font-weight: 700;
  line-height: 1;
}
.price_rate {
  margin-top: 8px;
  color: var(--color-primary);
  font-size: clamp(26px, 2.29vw, 44px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -.4px;
  white-space: nowrap;
  line-height: normal;
}
.price_rate strong { font-size: clamp(38px, 3.33vw, 64px); font-weight: 700; letter-spacing: -1.28px; line-height: 69px; vertical-align: top; }

/* 카운트업 숫자 자리 고정 — 자릿수가 늘 때 옆 텍스트가 밀리지 않게 한다.
   ch는 글꼴 크기에 비례하는 단위라 clamp된 폰트를 그대로 따라간다(별도 미디어쿼리 불필요).
   tabular-nums로 0~9의 폭까지 같게 맞춘다. */
[data-count] {
  display: inline-block;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.price_rate strong       { min-width: 2ch; }    /* 50 / 80 */
.chart_bar_head b        { min-width: 3ch; }    /* 54 / 105 */
.chart_col_value strong  { min-width: 4.4ch; }  /* 1,200 — 쉼표는 숫자보다 좁다 */
.chart_donut p strong    { min-width: 2ch; }    /* 68 */
.price_rate span   { font-size: clamp(31px, 2.71vw, 52px); font-weight: 700; letter-spacing: -1.04px; }
.price_bonus {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  height: clamp(36px, 2.08vw, 40px);
  border: 1px dashed #b4c3ff;
  border-radius: 10px;
  background-color: #fff;
  color: var(--color-cta);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.4;
}
.price_desc {
  margin-top: 24px;
  color: var(--color-sub);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.5;
}
.price_card .btn_cta {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  height: clamp(48px, 3.13vw, 60px);
}

.price_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 12px;
  max-width: 1215px;
  margin: clamp(30px, 2.5vw, 48px) auto 0;
}
.price_tag > li {
  display: flex;
  align-items: center;
  height: clamp(34px, 2.08vw, 40px);
  padding: 0 20px;
  border: 1px solid #bfe0ff;
  border-radius: 100px;
  background-color: #e0f0ff;
  color: #213458;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.price_tag > li em { color: #879df3; font-style: normal; }
/* price// -------------- */


/* analysis -------------- */
.analysis {
  padding: var(--padding-section) 5vw;
  background-image: linear-gradient(107.9deg, #001b73 4.85%, #000f40 66.73%, #0027a6 99.34%);
}
.analysis .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 4.17vw, 80px);
}
.tit_analysis {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
}
.tit_analysis h2 {
  color: #fff;
  font-size: var(--fs-sec-tit);
  font-weight: 800;
  line-height: 1.3;
}
.tit_analysis p {
  color: #ccd1e8;
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: 1.5;
}

.analysis_card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: clamp(320px, 27.5vw, 528px);
  padding: clamp(26px, 2.03vw, 39px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background-color: #102057;
}
.analysis_check { display: flex; flex-direction: column; gap: 16px; }
.analysis_check > li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f8f8ff;
  font-size: var(--fs-btn);
  font-weight: 500;
  line-height: 1.2;
}
.ico_check {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-image: url(/images/event/aisearch/ico_check.svg);
}
.analysis_card small {
    margin-top: 40px;
    padding-left: 1em;       /* ← 추가 */
    color: #838cb8;
    font-size: var(--fs-body);
    font-weight: 500;
    line-height: 1.5;        /* ← 1 에서 변경 */
    text-indent: -1em;       /* ← 추가 */
}
.analysis_card .btn_cta {
  margin-top: 20px;
  height: clamp(48px, 3.13vw, 60px);
}
/* analysis// -------------- */


/* faq -------------- */
.faq {
  padding: var(--padding-section) 0;
  background-color: #fff;
}
.faqlist_wrap {
  width: clamp(320px, 56.25vw, 1080px);
  margin: clamp(40px, 4.17vw, 80px) auto 0;
}
.faqlist_wrap > li {
  position: relative;
  padding: clamp(24px, 2.08vw, 40px) clamp(20px, 2.08vw, 40px);
  border-top: 1px solid var(--color-card-line);
}
.faqlist_wrap > li:last-child { border-bottom: 1px solid var(--color-card-line); }
/* 좌측 포인트 바 — 위에서 아래로 그려진다 */
.faqlist_wrap > li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 3px;
  height: calc(100% + 1px);
  background-image: linear-gradient(180deg, var(--color-cta), #96f4ff);
  scale: 1 0;
  transform-origin: 50% 0;
  transition: scale .4s cubic-bezier(.22, .68, .35, 1);
  content: '';
}
.faqlist_wrap > li:hover { background-color: #f6f8ff; }
.faqlist_wrap > li:hover::before { scale: 1 1; }

.faqlist_wrap h3 {
  color: #000;
  font-size: var(--fs-lead);
  font-weight: 600;
  line-height: 1.4;
}
.faqlist_wrap p {
  margin-top: 12px;
  color: #5e6471;
  font-size: var(--fs-lead);
  line-height: 1.5;
}
/* faq// -------------- */


/* notice -------------- */
.notice {
  padding: clamp(40px, 3.13vw, 60px) 0 clamp(40px, 3.02vw, 58px);
  background-color: var(--color-bg-notice);
  color: #5b5f7b;
}
.notice h2 {
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.5;
}
.notice .list_dot {
  margin-top: 20px;
  font-size: var(--fs-body);
  line-height: 1.7;
}
.notice_contact {
  margin-top: 27px;
  font-size: var(--fs-body);
  line-height: 1.7;
}
.notice_contact a { color: var(--color-cta); text-decoration: underline; }
/* notice// -------------- */


/* interaction -------------- */
@property --beam       { syntax: '<angle>';  initial-value: 0deg; inherits: false; }
@property --beam-a     { syntax: '<number>'; initial-value: 0;    inherits: false; }
@property --donut-beam { syntax: '<angle>';  initial-value: 0deg; inherits: false; }

@keyframes spinSlow   { to { rotate: 1turn; } }
@keyframes beamSpin   { to { --beam: 360deg; } }
@keyframes barShimmer { 0% { background-position: -150% 0; } 100% { background-position: 250% 0; } }
@keyframes colShimmer { 0% { background-position: 0 250%; } 100% { background-position: 0 -150%; } }
@keyframes donutSpin { to { --donut-beam: 360deg; } }
@keyframes tagWave    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* 세 차트 반짝임 동기화
   그리기 완료: 막대 1.35s / 기둥 1.25s / 도넛 1.65s → 가장 늦은 도넛 기준 1.8s부터 시작.

   위상 보정(--shine-phase) — 막대는 사이클 37.5~62.5% 구간에서 빛나지만(중앙),
   도넛은 마스크가 14~224deg만 열려 있어 0~54% 구간에서 빛난다(초반).
   25%(= 3.2s × 0.25 = 0.8s) 늦춰야 셋의 반짝임이 같은 순간에 온다. */
.trend { --shine-dur: 3.2s; --shine-delay: 1.8s; --shine-phase: .8s; }

/* 유입/구매 전환율 막대 — 좌→우
   background-position 기본값(0 0)은 띠가 막대 위에 주차된 상태라 로드 직후 그대로 보인다.
   0% 키프레임과 같은 화면 밖 위치를 기본값으로 두고 backwards로 지연 구간까지 유지한다. */
.chart_bar_track i {
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, 0) 56%);
  background-repeat: no-repeat;
  background-position: -150% 0;
  background-size: 200% 100%;
}
/* 쇼핑 트래픽 세로 막대 — 아래→위 */
.chart_col > li i {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 56%);
  background-repeat: no-repeat;
  background-position: 0 250%;
  background-size: 100% 200%;
}
.trend.is-chart .chart_bar_track i { animation: barShimmer var(--shine-dur) linear var(--shine-delay) infinite backwards; }
.trend.is-chart .chart_col > li i  { animation: colShimmer var(--shine-dur) linear var(--shine-delay) infinite backwards; }
/* 화면에 보이는 채로 로드된 경우 — '그리기'만 생략하고 반짝임은 그대로 돌린다.
   is-loaded는 한 번 붙으면 떨어지지 않으므로 animation을 죽이면 안 된다. */
.trend.is-loaded .chart_bar_track i,
.trend.is-loaded .chart_col > li i,
.trend.is-loaded .chart_donut_gauge { transition: none; }

/* 도넛 — 게이지가 다 그려진 뒤(1.65s) 흰 라이트가 링을 따라 돈다 */
.chart_donut svg { position: relative; z-index: 1; overflow: visible; }
.chart_donut p { z-index: 2; }

.chart_donut::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 50%;
  /* 요소를 rotate 하면 마스크까지 같이 돌아 구간 제한이 풀린다 → conic 시작각만 애니메이션 */
  background-image: conic-gradient(from var(--donut-beam), rgba(255, 255, 255, 0) 0deg, rgba(255, 255, 255, .9) 26deg, rgba(255, 255, 255, 0) 58deg);
  /* 링 모양 ∩ 게이지 구간(68% = 244.8deg) — 보라색 위에서만 보인다.
     양 끝은 하드컷 대신 그라디언트로 풀어야 잘린 단면이 안 보인다.
     round 캡이 계산값보다 약 7도 더 나오므로 안쪽으로 여유를 준다. */
  -webkit-mask-image:
    radial-gradient(closest-side, transparent 0 77%, #000 79% 99%, transparent 100%),
    conic-gradient(from 0deg, transparent 0deg, #000 14deg 224deg, transparent 242deg);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(closest-side, transparent 0 77%, #000 79% 99%, transparent 100%),
    conic-gradient(from 0deg, transparent 0deg, #000 14deg 224deg, transparent 242deg);
  mask-composite: intersect;
  opacity: 0;
  transition: opacity .5s ease var(--shine-delay);
  pointer-events: none;
  content: '';
}
.trend.is-chart .chart_donut::after { opacity: 1; animation: donutSpin var(--shine-dur) linear calc(var(--shine-delay) + var(--shine-phase)) infinite; }

/* 섹션 타이틀 — 글자 단위 3D 플립 인
   aisearch.js가 문자를 <span class="ch">로 쪼개고 --ci(순번)를 부여한다. */
.tit_sec h2,
.tit_analysis h2 { perspective: 700px; }
.tit_sec .ch,
.tit_analysis .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(.5em) rotateX(-70deg);
  transform-origin: 50% 100%;
  transition:
    opacity .5s ease,
    transform .6s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--ci, 0) * .026s);
}
.interactive section.is-active .tit_sec .ch,
.interactive section.is-active .tit_analysis .ch { opacity: 1; transform: translateY(0) rotateX(0deg); }

/* 카드 3D 틸트 — 커서 위치에 따라 기울어진다
   --rx / --ry 는 aisearch.js가 갱신, --lift 는 각 hover 규칙이 지정.
   transform은 반드시 이 한 곳에서만 선언한다(따로 쓰면 명시도로 서로 지운다). */
.trend_card,
.effect_list > li,
.feature_list > li,
.price_card,
.analysis .wrap > .analysis_card {
  --tf-dur: .55s;
  transform:
    perspective(1000px)
    translate3d(0, var(--lift, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
}
/* 커서가 올라가 있는 동안엔 즉각 반응, 벗어나면 천천히 복귀 */
.trend_card:hover,
.effect_list > li:hover,
.feature_list > li:hover,
.price_card:hover,
.analysis .wrap > .analysis_card:hover { --tf-dur: .12s; --tf-ease: linear; }

/* 리스트 아이템 순차 등장 — --i는 aisearch.js가 자식 인덱스로 부여 */
.reveal_list    { --reveal-base: .28s; --reveal-step: .10s; --reveal-dur: .6s; }
.price_tag      { --reveal-base: .38s; --reveal-step: .04s; }
.analysis_check { --reveal-base: .45s; --reveal-step: .3s;  --reveal-dur: .9s; }

/* 진입(opacity·translate)과 hover(transform·box-shadow…) 트랜지션은 반드시 한 선언에 합친다.
   카드 쪽에 transition을 따로 쓰면 명시도가 높은 이 규칙이 통째로 덮어써서
   hover에 트랜지션이 사라지고 진입용 delay만 걸린다(= 툭툭 끊김). */
.interactive .reveal_list > * {
  --reveal-delay: calc(var(--reveal-base) + var(--i, 0) * var(--reveal-step));
  opacity: 0;
  translate: 0 26px;
  transition:
    opacity var(--reveal-dur, .6s) ease var(--reveal-delay),
    translate var(--reveal-dur, .6s) cubic-bezier(.22, .68, .35, 1) var(--reveal-delay),
    transform var(--tf-dur, .45s) var(--tf-ease, cubic-bezier(.22, .68, .35, 1)),
    scale .35s cubic-bezier(.34, 1.56, .64, 1),
    --beam-a .45s ease,
    box-shadow .45s ease,
    border-color .45s ease,
    background-color .45s ease,
    color .3s ease;
}
.interactive section.is-active .reveal_list > * { opacity: 1; translate: 0 0; }
/* 되돌아갈 때는 지연 없이 한 번에 초기화 */
.interactive section:not(.is-active) .reveal_list > * { --reveal-delay: 0s; }

/* translate 속성 미지원 구형 브라우저 — 콘텐츠는 항상 보이게 */
@supports not (translate: 0 10px) {
  .interactive section .wrap > *,
  .interactive .reveal_list > * { opacity: 1; }
}

/* 스크롤 진행 바 — sticky 헤더 하단 */
.header_progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, .12);
}
.header_progress i {
  display: block;
  width: 0;
  height: 100%;
  background-image: linear-gradient(90deg, #96f4ff 0%, #4369ff 100%);
  transition: width .12s linear;
}

/* 맨 위로 버튼 */
.btn_top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 20;
  right: clamp(16px, 2.08vw, 40px);
  bottom: clamp(16px, 2.08vw, 40px);
  width: clamp(44px, 2.92vw, 56px);
  height: clamp(44px, 2.92vw, 56px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background-color: var(--color-cta);
  box-shadow: 0 10px 24px rgba(1, 15, 69, .28);
  overflow: hidden;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(.9);
  transition: opacity .3s, transform .3s cubic-bezier(.22, .68, .35, 1), background-color .3s;
  pointer-events: none;
}
.btn_top::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(2px) rotate(-45deg);
  transition: transform .3s;
  content: '';
}
.btn_top.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.btn_top:hover { background-color: var(--color-primary); }
.btn_top:hover::before { transform: translateY(-1px) rotate(-45deg); }

/* hero — 링 호흡 / 점 반짝임 / KV 부유 / 배지 글로우 / 스크롤 인디케이터 */
@keyframes ringPulse {
  0%, 100% { opacity: .8;  transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.025); }
}
@keyframes dotFloat {
  0%, 100% { opacity: .45; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(-10px); }
}
@keyframes badgeGlow {
  0%       { box-shadow: 0 0 0 0 rgba(150, 244, 255, .45); }
  70%, 100%{ box-shadow: 0 0 0 12px rgba(150, 244, 255, 0); }
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateX(-50%) translateY(0); }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(9px); }
}

.hero .hero_ring { animation: ringPulse 8s ease-in-out infinite; }
.hero_ring_2 { animation-duration: 9s;  animation-delay: .6s; }
.hero .hero_dot { animation-name: dotFloat; }
/* KV 둥둥(kvFloat)은 제거 — Lottie 자체 모션과 겹쳐서 어지럽다 */
.hero .badge_hero { animation: badgeGlow 2.8s ease-out infinite; }


/* trend — 카드 리프트 (transition은 위 통합 선언이 담당) */
.trend_card:hover {
  --lift: -6px;
  background-color: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 30px rgba(51, 68, 255, .13);
}

/* effect — 카드 리프트 + 썸네일 확대 + 광택 스윕 */
.effect_thumb { position: relative; }
.effect_thumb img {
  transform: scale(var(--img-sc, 1.06));
  transition: transform .5s cubic-bezier(.22, .68, .35, 1);
}
.effect_thumb::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: left .75s ease;
  content: '';
}
.effect_desc h3 { transition: color .3s ease; }

/* 자동 재생 중에는 hover를 막는다 — 커서가 올라가 있으면 순차 재생이 가려진다.
   카드 안에 링크·버튼이 없어 pointer-events 차단이 안전하다. */
.effect_list.is-playing > li,
.feature_list.is-playing > li { pointer-events: none; }

/* .is-demo — PC는 섹션 진입 시 순차 자동 재생, 모바일은 뷰포트 진입 시 유지 (aisearch.js) */
.effect_list > li:hover,
.effect_list > li.is-demo {
  --lift: -8px;
  --img-sc: 1.16;
  border-color: #c3d4ff;
  box-shadow: 0 20px 42px rgba(51, 68, 255, .18);
}
.effect_list > li:hover .effect_thumb::after,
.effect_list > li.is-demo .effect_thumb::after { left: 130%; }
.effect_list > li:hover .effect_desc h3,
.effect_list > li.is-demo .effect_desc h3 { color: var(--color-cta); }

/* feature — 러닝 보더 빔 + 커서 추종 스포트라이트 + 아이콘 반응 */
.feature_list > li {
  position: relative;
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--color-card-dark), var(--color-card-dark)),
    conic-gradient(from var(--beam), rgb(67 105 255 / 0) 0deg, rgb(67 105 255 / var(--beam-a)) 55deg, rgb(150 244 255 / var(--beam-a)) 100deg, rgb(67 105 255 / 0) 160deg);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  overflow: hidden;
}
.feature_list > li::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(112, 152, 255, .28) 0%, rgba(112, 152, 255, 0) 65%);
  opacity: 0;
  transition: opacity .35s;
  content: '';
}
.feature_list > li:hover,
.feature_list > li.is-demo {
  --lift: -8px;
  --beam-a: .95;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .38);
  animation: beamSpin 2.6s linear infinite;
}
.feature_list > li:hover::before,
.feature_list > li.is-demo::before { opacity: 1; }
.feature_list > li > * { position: relative; z-index: 1; }

.ico_feature {
  position: relative;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), background-color .35s ease;
}
.ico_feature::after {
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(157, 199, 255, .55);
  border-radius: 50%;
  opacity: 0;
  animation: spinSlow 7s linear infinite;
  transition: opacity .35s ease;
  content: '';
}
.feature_list > li:hover .ico_feature,
.feature_list > li.is-demo .ico_feature {
  background-color: var(--color-cta);
  transform: rotateY(180deg) scale(1.08);
}
.feature_list > li:hover .ico_feature::after,
.feature_list > li.is-demo .ico_feature::after { opacity: 1; }

/* price — 카드 리프트 + 태그 반응 */
.price_card:hover {
  --lift: -6px;
  border-color: #b4c3ff;
  box-shadow: 0 16px 34px rgba(51, 68, 255, .18);
}
/* 태그 — 상시 둥둥 (순번별 딜레이, --i는 aisearch.js가 부여) */
.price_tag > li {
  animation: tagWave 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .11s);
}
.price_tag > li:hover {
  border-color: var(--color-cta);
  background-color: #d3e8ff;
  scale: 1.06;
}

/* analysis — 카드 리프트 + 체크 아이콘 반응 */
.analysis .wrap > .analysis_card:hover {
  --lift: -5px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .34);
}
.analysis_check > li:hover { color: #96f4ff; }
.ico_check { transition: transform .3s cubic-bezier(.22, .68, .35, 1); }
.analysis_check > li:hover .ico_check { transform: scale(1.18) rotate(-10deg); }

/* 모션 최소화 설정 시 — 장식 애니메이션 전면 정지 */
@media (prefers-reduced-motion: reduce) {
  .effect_list > li.is-demo { --lift: 0px; --img-sc: 1; box-shadow: none; }
  .effect_list > li.is-demo .effect_thumb::after { left: -70%; }
  .feature_list > li.is-demo { --lift: 0px; --beam-a: 0; box-shadow: none; animation: none; }
  .feature_list > li.is-demo .ico_feature { transform: none; }

  .interactive section.is-active .tit_hero .ch,
  .interactive section.is-active .tit_hero strong .ch { opacity: 1; color: #fff; transform: none; filter: none; text-shadow: none; animation: none; }

  .hero .hero_ring,
  .hero .hero_dot,
  .hero .hero_kv,
  .hero .badge_hero { animation: none; }

  .interactive section,
  .interactive section .wrap > *,
  .interactive .reveal_list > * { opacity: 1; translate: 0 0; transition: none; }

  .tit_sec .ch,
  .tit_analysis .ch { opacity: 1; transform: none; transition: none; }

  .chart_bar_track i,
  .chart_col > li i,
  .chart_donut::after,
  .price_tag > li,
  .ico_feature::after,
  .feature_list > li:hover { animation: none; }

  .btn_cta,
  .btn_top,
  .effect_thumb img,
  .ico_feature,
  .ico_check { transform: none; transition: none; }

  .trend_card,
  .effect_list > li,
  .feature_list > li,
  .price_card,
  .analysis .wrap > .analysis_card { transform: none; }
  .btn_cta:hover,
  .price_tag > li:hover { transform: none; scale: 1; }
}

/* 터치 기기 — hover 리프트 제거 (탭 잔상 방지) */
@media (hover: none) {
  .btn_cta:hover,
  .trend_card:hover,
  .effect_list > li:hover,
  .feature_list > li:hover,
  .price_card:hover,
  .price_tag > li:hover,
  .analysis .wrap > .analysis_card:hover { box-shadow: none; }
  .trend_card:hover,
  .effect_list > li:hover,
  .feature_list > li:hover,
  .price_card:hover,
  .analysis .wrap > .analysis_card:hover { --lift: 0px; animation: none; }
  .price_tag > li:hover { scale: 1; }
  .effect_list > li:hover { --img-sc: 1; }
  .effect_list > li:hover .effect_thumb::after { left: -70%; }
  /* 모바일 자동 재생분은 살려둔다 */
  .effect_list > li.is-demo { --lift: -8px; --img-sc: 1.16; box-shadow: 0 20px 42px rgba(51, 68, 255, .18); }
  .effect_list > li.is-demo .effect_thumb::after { left: 130%; }
  .feature_list > li.is-demo { --lift: -8px; --beam-a: .95; box-shadow: 0 20px 42px rgba(0, 0, 0, .38); animation: beamSpin 2.6s linear infinite; }
  .faqlist_wrap > li:hover { background-color: transparent; }
  .faqlist_wrap > li:hover::before { scale: 1 0; }
}
/* interaction// -------------- */


/* responsive -------------- */
/* wrap 1280px 대응 (common.css는 1220px 기준) */
@media screen and (max-width: 1320px) {
  .wrap { width: 100%; padding-left: 20px; padding-right: 20px; }

  .hero .hero_kv{width: 80dvw;}
  .trend_card {height: auto; justify-content: space-between;}
  .trend_desc {margin-top: 20px;}


  .price_rate strong{line-height: normal; vertical-align: inherit;}
}

/* tablet to mobile */
@media screen and (max-width: 1024px) {
  .pc_con { display: none; }
  .t_con  { display: block; }
  .m_con  { display: none; }

  /* hero */
  .hero .wrap{ height:auto; padding-top: 40px; }
  .hero .hero_kv { width: 100%; margin-left: 0; align-self: center; padding-top: 20px; }
  .hero_ring_1 { top: 40%; width: 130vw; }
  .hero_ring_2 { top: 55%; width: 108vw; }
  .hero_dot_3, .hero_dot_5 { display: none; }

  /* 3단 카드 → 세로 정렬 */
  .trend_list,
  .effect_list,
  .feature_list,
  .price_list { gap: 16px; }
  .trend_card,
  .price_card { min-height: 0; }
  /* height 해제 → 남는 공간이 없어 margin-top:auto가 0이 된다. 고정값으로 되돌린다. */
  .trend_card { height: auto; justify-content: space-between; }
  .trend_desc { margin-top: 20px; }
  .chart_donut { --donut: 200px; }
  .price_rate strong{line-height: 5vw;}

  /* analysis — 세로 정렬 */
  .analysis .wrap { flex-direction: column; align-items: stretch; gap: 32px; }
  .analysis_card { width: 100%; }

  .faqlist_wrap { width: 100%; }
}

/* mobile only */
@media screen and (max-width: 767px) {
  .t_con  { display: none; }
  .m_con  { display: block; }

  .wrap { padding-left: 4vw; padding-right: 4vw; }

  .header_event .txt_event { display: none; }

  .hero { min-height: 0; }
  .hero .tit_hero h1 { gap: 2px; }
  .price_card .btn_cta{margin-top: 20px;}

  .trend_list,
  .effect_list,
  .feature_list,
  .price_list { flex-direction: column; }
  .trend_card,
  .price_card,
  .feature_list > li { padding: 24px 20px; }

  .price_tag { gap: 8px; }
  .price_tag > li { padding: 0 14px; font-size: 13px; }
  .price_rate strong{line-height: 8vw;}

  .analysis_check > li { align-items: flex-start; line-height: 1.4; }
  .ico_check { margin-top: 1px; }

  .chart_donut { --donut: 170px; }
  
  .effect_thumb {
    flex-shrink: 0;
    aspect-ratio: 1/0.45;
  }
  .effect_thumb img {
    --img-sc: 1;
    width: 60%;
    height: auto;
    object-fit: contain;
  }
}
/* responsive// -------------- */