/* ==========================================================================
   서학개미 — Bright "화이트 임팩트" Landing
   흰 배경 + 골드→오렌지 에너지 그라디언트(#FFB020 → #FF6A2B) 포인트.
   밝지만 강렬하게: 흰색/옅은 그레이/골드 틴트/다크 밴드로 강한 섹션 리듬.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0d1117;            /* 잉크 (본문/헤딩 기본) */
  --ink-2: #46505f;         /* 보조 텍스트 */
  --ink-3: #7b8595;         /* 옅은 텍스트 */

  --bg: #ffffff;            /* 흰 배경 */
  --bg-soft: #f5f7fa;       /* 아주 옅은 그레이 섹션 */
  --gold-tint: #fff7ec;     /* 골드 틴트 밴드 */
  --gold-tint-2: #fff1de;

  --dark-0: #0d1117;        /* 드라마틱 다크 밴드 */
  --dark-1: #141a24;

  --line: #e7ebf1;          /* 라이트 보더 */
  --line-soft: #eef1f6;

  /* 서학개미 골드 → 오렌지 에너지 */
  --gold: #E8890C;          /* 솔리드 골드 */
  --gold-lite: #FFB020;
  --orange: #FF6A2B;
  --grad: linear-gradient(120deg, #FFB020 0%, #FF7A2E 55%, #FF6A2B 100%);
  --grad-soft: linear-gradient(120deg, #FFB020 0%, #FF6A2B 100%);
  --gold-dim: rgba(255, 138, 24, 0.10);
  --gold-line: rgba(255, 138, 24, 0.28);

  --up: #f0453f;            /* 상승 — 국내 관례(빨강) */
  --down: #2f6bff;          /* 하락 — 국내 관례(파랑) */

  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  --font-num: "Space Grotesk", ui-monospace, "SF Mono", SFMono-Regular,
    "Cascadia Mono", Consolas, "Roboto Mono", monospace;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --header-h: 66px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-1: 0 2px 8px rgba(13, 17, 23, 0.05), 0 10px 34px rgba(13, 17, 23, 0.07);
  --shadow-2: 0 18px 50px rgba(13, 17, 23, 0.12);
  --shadow-gold: 0 12px 34px rgba(255, 122, 44, 0.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { max-width: 100%; display: block; }
h1, h2, h3, h4, p, dl, dd, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong, b { font-weight: 700; }
em { font-style: normal; }
::selection { background: rgba(255, 122, 44, 0.24); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1160px, 100% - clamp(32px, 8vw, 88px));
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - clamp(32px, 8vw, 88px)); }

.pc-only { display: inline; }

.skip-link {
  position: fixed;
  top: -52px;
  left: 16px;
  z-index: 1200;
  padding: 10px 16px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
main#top:focus, main#top:focus-visible { outline: none; }

/* 골드 그라디언트 강조 텍스트 */
.grad-text {
  background: linear-gradient(100deg, #FFA415 8%, #FF7A2E 55%, #FF6A2B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 13px;
  padding: 13px 24px;
  font-size: 0.95rem;
  min-height: 44px;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease),
    background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-icon { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 122, 44, 0.4); }

.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold); transform: translateY(-2px); }

.btn-telegram {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-telegram:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(255, 122, 44, 0.44); }

.btn-sm { padding: 9px 18px; font-size: 0.86rem; border-radius: 11px; }
.btn-lg { padding: clamp(14px, 1.6vw, 16px) clamp(24px, 3vw, 32px); font-size: clamp(0.96rem, 1.2vw, 1.06rem); border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Header (글래스모피즘 라이트) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(13, 17, 23, 0.06);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 32px; height: 32px; flex: none; filter: drop-shadow(0 3px 8px rgba(232, 137, 12, 0.28)); }
.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
  color: var(--ink);
}

.global-nav ul { display: flex; gap: clamp(4px, 1.6vw, 10px); }
.global-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 0.22s var(--ease);
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.global-nav a:hover { color: var(--ink); }
.global-nav a:hover::after, .global-nav a.active::after { transform: scaleX(1); }
.global-nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(44px, 8vw, 96px)) 0 clamp(52px, 8vw, 92px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1000px 520px at 82% -8%, rgba(255, 176, 32, 0.14), transparent 62%),
    radial-gradient(760px 460px at 6% 20%, rgba(255, 106, 43, 0.08), transparent 58%),
    var(--bg);
}
/* 은은한 그리드 배경 (골드 라인) */
.hero-grid-mask {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 138, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 24, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(72% 68% at 50% 28%, #000 28%, transparent 100%);
  mask-image: radial-gradient(72% 68% at 50% 28%, #000 28%, transparent 100%);
  pointer-events: none;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
  pointer-events: none;
}

/* 블러 오브 (골드/앰버 글로우) */
.orb {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 { width: 480px; height: 480px; top: -150px; right: -90px; background: rgba(255, 176, 32, 0.4); animation: orb-float 13s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; bottom: -180px; left: -120px; background: rgba(255, 106, 43, 0.28); animation: orb-float 16s ease-in-out infinite reverse; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -20px) scale(1.06); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  background: linear-gradient(180deg, #fff6e9, #fff);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 137, 12, 0.12);
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.1rem, 5.6vw, 3.75rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-sub {
  margin-top: clamp(16px, 2.4vw, 22px);
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  color: var(--ink-2);
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.4vw, 34px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: clamp(22px, 3vw, 30px);
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-points svg {
  width: 20px;
  height: 20px;
  flex: none;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 3px 10px rgba(255, 122, 44, 0.3);
}

/* Hero terminal panel (다크 트레이딩 터미널 — 밝은 히어로 위 대비 앵커) */
.hero-terminal {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #1a212e 0%, #0d1117 100%);
  box-shadow: 0 30px 70px rgba(13, 17, 23, 0.32), 0 0 0 1px rgba(13, 17, 23, 0.04);
  overflow: hidden;
  color: #e8eaf0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(520px 220px at 90% -10%, rgba(255, 138, 24, 0.16), transparent 62%);
}
.hero-terminal:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(13, 17, 23, 0.4), 0 0 0 1px rgba(255, 138, 24, 0.2);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.terminal-bar strong {
  margin-left: 8px;
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b7bdc9;
}
.terminal-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffb257;
}
.tdot { width: 9px; height: 9px; border-radius: 50%; }
.tdot:nth-child(1) { background: #ff5f57; }
.tdot:nth-child(2) { background: #febc2e; }
.tdot:nth-child(3) { background: #28c840; }

/* 대표 종목 시세 카드 */
.terminal-coin {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 138, 24, 0.05);
  position: relative;
}
.tc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tc-pair {
  font-family: var(--font-num);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #eef0f5;
}
.tc-pair em {
  margin-left: 6px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffb257;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 138, 24, 0.14);
  border: 1px solid rgba(255, 138, 24, 0.3);
}
.tc-change {
  font-family: var(--font-num);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--up);
}
.tc-change.down { color: var(--down); }
.tc-price {
  display: block;
  margin-top: 8px;
  font-family: var(--font-num);
  font-size: clamp(1.5rem, 4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 22px rgba(255, 138, 24, 0.28);
}

.terminal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.terminal-summary > div {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.terminal-summary > div + div { border-left: 1px solid rgba(255, 255, 255, 0.07); }
.terminal-summary span { font-size: 0.7rem; color: #8a91a0; }
.terminal-summary strong { font-family: var(--font-num); font-size: 0.94rem; font-weight: 700; color: #eef0f5; }

.terminal-feed {
  padding: 8px 6px;
  min-height: 214px;
}
.terminal-feed li {
  display: grid;
  grid-template-columns: 62px 44px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--font-num);
  font-size: 0.78rem;
  color: #b7bdc9;
  transition: background 0.2s var(--ease);
}
.terminal-feed li:hover { background: rgba(255, 255, 255, 0.03); }
.terminal-feed li.new { animation: feed-in 0.45s var(--ease); }
@keyframes feed-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.terminal-feed time { color: #8a91a0; font-size: 0.72rem; }
.terminal-feed .side {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  padding: 3px 0;
  border-radius: 6px;
}
.side.buy { color: var(--up); background: rgba(240, 69, 63, 0.14); }
.side.sell { color: #6c96ff; background: rgba(47, 107, 255, 0.16); }
.terminal-feed .pair { color: #eef0f5; font-weight: 600; }
.terminal-feed .px { text-align: right; }
.terminal-feed .qty { text-align: right; color: #8a91a0; min-width: 52px; }
.terminal-note {
  padding: 10px 16px 14px;
  font-size: 0.68rem;
  color: #6d7482;
}

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf2, #fff);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }

.ticker-track { display: flex; width: max-content; }
.ticker.is-animated .ticker-track { animation: marquee 46s linear infinite; }
.ticker.is-animated:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-list { display: flex; flex: none; }
.ticker-list li {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px clamp(18px, 2.6vw, 30px);
  border-right: 1px solid var(--line-soft);
  font-family: var(--font-num);
  font-size: 0.82rem;
  white-space: nowrap;
}
.ticker-list b { font-weight: 700; color: var(--ink); letter-spacing: 0.03em; }
.t-price { color: var(--ink-2); transition: color 0.3s; }
.t-chg { font-size: 0.76rem; font-weight: 700; }
.t-chg.up { color: var(--up); }
.t-chg.down { color: var(--down); }
li.flash-up .t-price { color: var(--up); }
li.flash-down .t-price { color: var(--down); }

/* ==========================================================================
   Sections — 강한 배경 리듬
   흰 → 스탯 → 흰(공감) → 옅은 그레이(작동) → 흰(기능) →
   다크(왜 무료) → 골드 틴트(운영) → 옅은 그레이(후기) → 흰(FAQ) → CTA
   ========================================================================== */
.section { padding: clamp(60px, 9vw, 116px) 0; position: relative; }

/* 옅은 그레이 밴드 + 상단 헤어라인 */
.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

/* 골드 틴트 밴드 */
.section-gold {
  background:
    radial-gradient(760px 340px at 88% 4%, rgba(255, 176, 32, 0.16), transparent 60%),
    linear-gradient(180deg, var(--gold-tint) 0%, var(--gold-tint-2) 100%);
  border-block: 1px solid var(--gold-line);
}

/* 드라마틱 다크 밴드 */
.section-dark {
  position: relative;
  color: #e8eaf0;
  background:
    radial-gradient(760px 380px at 12% 0%, rgba(255, 138, 24, 0.14), transparent 58%),
    radial-gradient(680px 360px at 92% 100%, rgba(255, 106, 43, 0.12), transparent 58%),
    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-0) 100%);
  overflow: hidden;
  isolation: isolate;
}
.section-dark .dark-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.dark-orb-1 { width: 440px; height: 440px; top: -140px; left: -100px; background: rgba(255, 176, 32, 0.22); }
.dark-orb-2 { width: 400px; height: 400px; bottom: -160px; right: -110px; background: rgba(255, 106, 43, 0.2); }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 5.4vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-num);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--orange);
  margin: 0 0 14px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.24;
  text-wrap: balance;
}
.section-dark .section-head h2 { color: #fff; }
.section-sub {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: clamp(0.94rem, 1.3vw, 1.04rem);
}
.section-gold .section-sub { color: #6a5533; }

/* AOS 스크롤 리빌 폴백 — bright.js가 AOS 로드를 확인한 뒤에만 .aos-ready 부여.
   JS/CDN 로드 실패해도 콘텐츠가 항상 보이도록 강제 표시 */
html:not(.aos-ready) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ---------- Trust Stats ---------- */
.stats-section { padding: clamp(40px, 6vw, 76px) 0; background: var(--bg); }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.6vw, 26px);
  padding: clamp(24px, 3.4vw, 40px) clamp(20px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(560px 220px at 6% 0%, rgba(255, 176, 32, 0.1), transparent 60%),
    #fff;
  box-shadow: var(--shadow-1);
}
.stats-band .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 3px solid;
  border-image: var(--grad) 1;
}
.stats-band .stat dt {
  order: 2;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-3);
}
.stats-band .stat dd {
  order: 1;
  font-family: var(--font-num);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(120deg, #E8890C, #FF6A2B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-band .unit {
  font-family: var(--font-sans);
  font-size: 0.5em;
  font-weight: 700;
  color: var(--ink-2);
  margin-left: 3px;
  -webkit-text-fill-color: var(--ink-2);
}

/* ---------- Pain point (공감 말풍선) ---------- */
.chat-list {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-inline: auto;
}
.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.chat-bubble-right { flex-direction: row-reverse; }
.chat-bubble:nth-child(2) { margin-left: clamp(0px, 5vw, 48px); }
.chat-bubble:nth-child(3) { margin-left: clamp(0px, 1.6vw, 16px); }
.chat-avatar {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.chat-bubble p {
  padding: 15px 20px;
  font-size: clamp(0.94rem, 1.3vw, 1.02rem);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px 18px 18px 18px;
  box-shadow: var(--shadow-1);
  text-wrap: pretty;
}
.chat-bubble-right p {
  border-radius: 18px 4px 18px 18px;
  background: linear-gradient(180deg, #fff8ef, #fff);
  border-color: var(--gold-line);
}
.pain-turn {
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

/* ---------- How (3 STEP) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 22px 50px rgba(255, 122, 44, 0.16);
}
.step-card:hover::before { transform: scaleX(1); }
.step-no {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--gold-dim);
  margin-bottom: 18px;
}
.step-visual {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  margin-bottom: 16px;
}
.step-visual svg { width: 30px; height: 30px; }
.step-card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.step-card p { color: var(--ink-2); font-size: 0.93rem; }

/* ---------- Features (벤토 그리드 6) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.feature-card {
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-card:nth-child(1), .feature-card:nth-child(2) { grid-column: span 3; }
.feature-card:nth-child(3), .feature-card:nth-child(4), .feature-card:nth-child(5) { grid-column: span 2; }
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 42px rgba(255, 122, 44, 0.15);
}
.f-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 20px rgba(255, 122, 44, 0.28);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}
.f-icon svg { width: 23px; height: 23px; }
.feature-card:hover .f-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.feature-card p { color: var(--ink-2); font-size: 0.9rem; }

/* 벤토 하이라이트 카드 — 조건 없는 무료 배포 (골드 틴트) */
.feature-card-wide {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 26px);
  background:
    radial-gradient(520px 200px at 4% 20%, rgba(255, 176, 32, 0.14), transparent 62%),
    radial-gradient(420px 200px at 98% 90%, rgba(255, 106, 43, 0.1), transparent 62%),
    linear-gradient(180deg, #fffaf2, #fff);
  border-color: var(--gold-line);
}
.feature-card-wide .f-icon { margin-bottom: 0; width: 56px; height: 56px; flex: none; }
.feature-card-wide h3 { font-size: clamp(1.12rem, 1.8vw, 1.32rem); }
.feature-card-wide p { font-size: clamp(0.9rem, 1.3vw, 0.98rem); }

/* ---------- Why free (다크 밴드) ---------- */
.section-dark .eyebrow { color: #ffb257; }
.free-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.free-copy h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: #fff;
  text-wrap: balance;
}
.free-body {
  margin-top: clamp(16px, 2.4vw, 22px);
  color: #b7bdc9;
  font-size: clamp(0.94rem, 1.3vw, 1.02rem);
  max-width: 52ch;
  text-wrap: pretty;
}
.free-checks { display: grid; gap: 0; }
.free-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 4px;
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  font-weight: 600;
  color: #eef0f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.free-checks li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.check-icon {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 14px rgba(255, 122, 44, 0.34);
}
.check-icon svg { width: 15px; height: 15px; }

/* ---------- Trust / Operations (운영 현황 — 골드 틴트) ---------- */
.trust-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: clamp(16px, 2.2vw, 22px) 0 0;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  background: #fff;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 137, 12, 0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.trust-stat {
  min-width: 0;
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(232, 137, 12, 0.1);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(255, 122, 44, 0.2);
}
.trust-value {
  font-family: var(--font-num);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(120deg, #E8890C, #FF6A2B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.trust-label {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.trust-desc {
  margin-top: 3px;
  font-size: 0.84rem;
  color: #7a6949;
}

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.review-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 138, 24, 0.14);
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 20px 46px rgba(255, 122, 44, 0.15);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars svg { width: 17px; height: 16px; fill: #FFB020; }
.review-card blockquote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  text-wrap: pretty;
}
.review-card figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 14px rgba(255, 122, 44, 0.3);
}
.review-meta { display: flex; flex-direction: column; }
.review-meta b { font-size: 0.92rem; }
.review-meta span { font-size: 0.8rem; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--gold-line); box-shadow: 0 12px 30px rgba(255, 122, 44, 0.12); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 21px) clamp(18px, 2.6vw, 26px);
  min-height: 44px;
  font-weight: 700;
  font-size: clamp(0.94rem, 1.3vw, 1.02rem);
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-chevron {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-chevron::before, .faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.8px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-chevron::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-chevron { transform: rotate(45deg); border-color: var(--gold-line); background: var(--gold-dim); color: var(--gold); }
.faq-body { padding: 0 clamp(18px, 2.6vw, 26px) clamp(18px, 2.4vw, 24px); }
.faq-body p { color: var(--ink-2); font-size: 0.93rem; max-width: 68ch; }

/* ---------- Final CTA ---------- */
.cta-section { background: var(--bg); }
.cta-panel {
  position: relative;
  text-align: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(680px 300px at 50% -10%, rgba(255, 176, 32, 0.16), transparent 62%),
    linear-gradient(170deg, var(--dark-1) 0%, var(--dark-0) 100%);
  box-shadow: 0 30px 70px rgba(13, 17, 23, 0.28);
  overflow: hidden;
  isolation: isolate;
  color: #e8eaf0;
}
.cta-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.cta-orb-1 { width: 380px; height: 380px; top: -120px; left: 10%; background: rgba(255, 176, 32, 0.28); }
.cta-orb-2 { width: 340px; height: 340px; bottom: -140px; right: 8%; background: rgba(255, 106, 43, 0.24); }
.cta-panel-inner {
  position: relative;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 4vw, 64px);
}
.cta-panel .eyebrow { color: #ffb257; }
.cta-title {
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #fff;
  text-wrap: balance;
}
.cta-sub {
  margin: clamp(14px, 2vw, 20px) auto 0;
  max-width: 48ch;
  color: #b7bdc9;
  font-size: clamp(0.93rem, 1.3vw, 1.04rem);
  text-wrap: pretty;
}
/* 카운트다운 — 무료 배포 마감 (골드 글로우 + 모노 숫자) */
.cta-countdown { margin-top: clamp(24px, 3.4vw, 34px); }
.countdown-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffb257;
}
.countdown-boxes {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 14px);
}
.cd-box {
  flex: 1 1 0;
  min-width: 0;
  max-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: clamp(10px, 2vw, 14px) 4px clamp(8px, 1.6vw, 12px);
  border: 1px solid rgba(255, 138, 24, 0.4);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 138, 24, 0.16), rgba(255, 138, 24, 0.04));
  box-shadow: 0 0 22px rgba(255, 138, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cd-num {
  font-family: var(--font-num);
  font-size: clamp(1.35rem, 5.4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(255, 138, 24, 0.6);
}
.cd-unit {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8a91a0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 3.6vw, 36px);
}
.cta-note {
  margin-top: clamp(18px, 2.6vw, 26px);
  font-size: 0.86rem;
  font-weight: 600;
  color: #8a91a0;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(40px, 6vw, 64px) 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.footer-brand p { margin-top: 14px; font-size: 0.86rem; color: var(--ink-3); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: flex-start; }
.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 0;
  transition: color 0.22s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: clamp(20px, 3vw, 28px);
  display: grid;
  gap: 10px;
}
.footer-legal p { font-size: 0.76rem; color: var(--ink-3); line-height: 1.7; max-width: 84ch; }

/* ---------- Mobile fixed CTA (히어로 지나면 등장) ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px clamp(14px, 4vw, 20px) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(13, 17, 23, 0.08);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { min-height: 50px; }
@media (min-width: 1024px) {
  .mobile-cta { display: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-terminal { max-width: 620px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid > .feature-card { grid-column: span 1; }
  .feature-grid > .feature-card-wide { grid-column: span 2; }
  .free-band { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 76px; } /* 하단 고정 CTA 바 공간 */
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-stat { padding: 18px 16px; }
  .trust-value { font-size: 1.3rem; }
}

@media (max-width: 860px) {
  .global-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(13, 17, 23, 0.08);
    padding: 10px clamp(16px, 5vw, 28px) 18px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .global-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; gap: 2px; }
  .global-nav a { display: block; padding: 13px 10px; font-size: 1rem; }
  .global-nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 768px) {
  .pc-only { display: none; }

  .hero { padding-top: calc(var(--header-h) + clamp(32px, 10vw, 52px)); }
  .hero-cta .btn { flex: 1 1 auto; }

  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid > .feature-card-wide { grid-column: span 1; }
  .feature-card-wide { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-buttons .btn { width: min(100%, 340px); }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 400px) {
  .terminal-feed li { grid-template-columns: 52px 40px 1fr auto; }
  .terminal-feed .qty { display: none; }
  .terminal-summary { grid-template-columns: 1fr 1fr; }
  .terminal-summary > div:last-child { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .stats-band { grid-template-columns: 1fr; }
  .chat-bubble:nth-child(2), .chat-bubble:nth-child(3) { margin-left: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .ticker.is-animated .ticker-track { animation: none; }
  .orb-1, .orb-2 { animation: none; }
}

/* ---------- Real Track Record (실계좌 성과) ---------- */
.perf-section .trust-value.grad-text { -webkit-background-clip: text; background-clip: text; }
.perf-chart {
  margin: 40px auto 0;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px -20px rgba(13, 17, 23, 0.18);
}
.perf-chart img { display: block; width: 100%; height: auto; }
.perf-chart figcaption {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--ink-2);
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.perf-disclaimer {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-3);
  text-align: center;
}

/* 로고 이미지 (인라인 SVG 코인 → 실제 로고 PNG 교체) */
.logo-img { display: block; object-fit: contain; }

/* ---------- 실계좌 성과 · CSS 라인 차트 (토스풍) ---------- */
.perf-graph {
  margin: 40px auto 0;
  max-width: 900px;
  padding: 26px 26px 18px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px -20px rgba(13, 17, 23, 0.14);
}
.perf-graph svg { display: block; width: 100%; height: 220px; }
.perf-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: perfDraw 1.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes perfDraw { to { stroke-dashoffset: 0; } }
.perf-dot { opacity: 0; animation: perfDot 0.4s ease 1.6s forwards; }
@keyframes perfDot { to { opacity: 1; } }
.perf-graph-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.perf-graph-foot .perf-now { color: var(--ink-2); }
.perf-graph-foot .perf-now b { color: var(--gold); font-weight: 800; }
@media (prefers-reduced-motion: reduce) {
  .perf-line { stroke-dashoffset: 0; animation: none; }
  .perf-dot { opacity: 1; animation: none; }
}

/* ---------- 성과 섹션 2단 레이아웃 (좌 2x2 카드 · 우 차트) ---------- */
.perf-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}
.perf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perf-stats .trust-stat { margin: 0; height: 100%; }
.perf-layout .perf-graph {
  margin: 0;
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.perf-layout .perf-graph svg { height: 210px; flex: 0 0 auto; }
.perf-graph-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.perf-graph-head span:first-child { font-weight: 700; font-size: 14px; color: var(--ink); }
.perf-graph-head .perf-now { font-weight: 800; font-size: 20px; color: var(--gold); }
@media (max-width: 860px) { .perf-layout { grid-template-columns: 1fr; } }
/* 모바일에서도 카드 2x2 유지 (1x4 방지) */
@media (max-width: 460px) {
  .perf-stats { gap: 10px; }
  .perf-stats .trust-stat { padding: 16px 14px; }
  .perf-stats .trust-value { font-size: 1.5rem; }
}

/* ---------- 성과 차트 생동감 (그리드·흐름·펄스·면적) ---------- */
.perf-grid line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 6; opacity: 0.7; }
.perf-area { opacity: 0; animation: perfAreaIn 0.9s ease 1.05s forwards; }
@keyframes perfAreaIn { to { opacity: 1; } }
/* 라인 위를 흐르는 반짝임 */
.perf-flow {
  opacity: 0;
  stroke-dasharray: 9 91;
  filter: drop-shadow(0 0 4px rgba(255, 220, 130, 0.9));
  animation: perfFlowShow 0.01s linear 1.9s forwards, perfFlow 2.8s linear 1.9s infinite;
}
@keyframes perfFlowShow { to { opacity: 0.9; } }
@keyframes perfFlow { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
/* 끝점 펄스 링 */
.perf-pulse { transform-box: fill-box; transform-origin: center; opacity: 0; animation: perfPulse 2.1s ease-out 1.7s infinite; }
@keyframes perfPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  70% { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ---------- 성과 카드 글로우 (호버) ---------- */
.perf-stats .trust-stat { position: relative; overflow: hidden; }
.perf-stats .trust-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(130% 80% at 50% -10%, rgba(255, 138, 24, 0.14), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.perf-stats .trust-stat:hover::before { opacity: 1; }
.perf-stats .trust-stat:hover .trust-value { transform: scale(1.04); }
.perf-stats .trust-value { transition: transform 0.3s var(--ease); display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .perf-area, .perf-flow, .perf-pulse { animation: none; opacity: 1; }
  .perf-flow { opacity: 0; }
}

/* ---------- 성과 차트 플롯: 눈금선 + 축 라벨 ---------- */
.perf-plot { position: relative; padding-right: 44px; }
.perf-grid2 {
  position: absolute;
  inset: 0 44px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}
.perf-gl { position: relative; height: 0; border-top: 1px dashed #d5dbe4; }
.perf-gl-base { border-top: 1px solid #c3cbd6; }
.perf-gl span {
  position: absolute;
  right: -44px;
  top: -8px;
  width: 40px;
  text-align: right;
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1;
}
.perf-svg { position: relative; z-index: 1; display: block; width: 100%; height: 210px; }
.perf-xaxis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-right: 44px;
  font-size: 11.5px;
  color: var(--ink-3);
}
