/* Bob promo — Geovea DS (docs/DESIGN_SYSTEM.md 토큰 실측값) */
:root {
  --pm-lime: #E7F53D;
  --pm-lime-soft: #F4FA9E;
  --pm-lime-dim: #C9D634;
  --pm-ink: #0F0F0F;
  --pm-black: #000000;
  --pm-text: #1A1A1A;
  --pm-text-2: #6B6B6B;
  --pm-text-3: #A3A3A3;
  --pm-bg: #FFFFFF;
  --pm-surface: #FAFAFA;
  --pm-surface-2: #F3F3F3;
  --pm-border: #ECECEC;
  --pm-danger: #E5484D;
  --pm-ok: #30A46C;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-1: 0 1px 2px rgba(15, 15, 15, .04);
  --shadow-2: 0 8px 24px rgba(15, 15, 15, .08);
  --ease: cubic-bezier(.22, .68, 0, 1);
  --font: "Poppins", "Pretendard", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  color: var(--pm-text);
  background: var(--pm-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
:focus-visible { outline: 2px solid var(--pm-ink); outline-offset: 2px; border-radius: 4px; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.on { opacity: 1; transform: none; }

/* CHIPS & BUTTONS */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--r-xs); line-height: 1;
}
.chip-lime { background: var(--pm-lime); color: var(--pm-ink); }
.chip-ghost { background: transparent; color: rgba(255, 255, 255, .64); border: 1px solid rgba(255, 255, 255, .18); }
.chip-new {
  background: var(--pm-ink); color: var(--pm-lime);
  border: 1px solid var(--pm-lime);
  box-shadow: 0 0 0 0 rgba(231, 245, 61, .45);
  animation: pulse 2.2s ease-in-out infinite;
}
a.chip-new { transition: background .2s var(--ease); }
a.chip-new:hover { background: #2A2A2A; }
.nav-new {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; margin-left: 6px; border-radius: 50%;
  background: var(--pm-lime); color: var(--pm-ink);
  font-size: 9px; font-weight: 700; vertical-align: 1px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 6px 8px 6px 20px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  transition: background .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-cap {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pm-lime); color: var(--pm-ink);
  transition: transform .24s var(--ease);
}
.btn-cap svg { width: 15px; height: 15px; }
.btn:hover .btn-cap { transform: translateX(2px); }
.btn-primary { background: var(--pm-ink); color: #fff; }
.btn-primary:hover { background: #2A2A2A; }
.btn-accent { background: var(--pm-lime); color: var(--pm-ink); }
.btn-accent:hover { background: var(--pm-lime-soft); }
.btn-accent:active { background: var(--pm-lime-dim); }
.btn-cap-ink { background: var(--pm-ink); color: #fff; }
.btn-ghost-dark {
  padding: 6px 20px; color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, .08); }
.btn-lg { font-size: 16px; min-height: 52px; padding-left: 26px; }
.btn-lg .btn-cap { width: 38px; height: 38px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); box-shadow: var(--shadow-1); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 10px;
  display: block;
}
.logo-img { object-fit: cover; background: var(--pm-ink); }
.logo-text { font-size: 16px; font-weight: 400; color: #fff; letter-spacing: -.01em; }
.logo-text b { font-weight: 600; }
.nav.scrolled .logo-text { color: var(--pm-ink); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 10px 14px; border-radius: var(--r-pill);
  font-size: 13px; color: rgba(255, 255, 255, .72);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav.scrolled .nav-links a { color: var(--pm-text-2); }
.nav.scrolled .nav-links a:hover { color: var(--pm-ink); background: var(--pm-surface-2); }

/* 언어 스위처 (KO/EN/JA/ZH) */
.lang-switch {
  display: flex; gap: 3px; padding: 3px;
  border-radius: var(--r-pill); background: rgba(255, 255, 255, .08);
}
.lang-btn {
  border: 0; cursor: pointer; background: transparent;
  font: inherit; font-size: 11px; font-weight: 600; letter-spacing: .04em; line-height: 1;
  padding: 7px 9px; border-radius: var(--r-pill);
  color: rgba(255, 255, 255, .66);
  transition: color .2s, background .2s;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: var(--pm-lime); color: var(--pm-ink); }
.lang-btn.active:hover { color: var(--pm-ink); }
.nav.scrolled .lang-switch { background: var(--pm-surface-2); }
.nav.scrolled .lang-btn { color: var(--pm-text-2); }
.nav.scrolled .lang-btn:hover { color: var(--pm-ink); }
.nav.scrolled .lang-btn.active { color: var(--pm-ink); }

/* HERO (dark) */
.hero {
  background: var(--pm-black); color: #fff;
  padding: 160px 0 0; overflow: hidden;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.hero-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-badges { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-title {
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.14; font-weight: 300;
  letter-spacing: -.02em; margin-bottom: 24px;
}
.hero-title b { font-weight: 600; }
.hero-title .line { display: block; opacity: 0; transform: translateY(28px); animation: lineUp .8s var(--ease) forwards; }
.hero-title .line:nth-child(2) { animation-delay: .15s; }
@keyframes lineUp { to { opacity: 1; transform: none; } }
.lime-underline { position: relative; white-space: nowrap; }
.lime-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .16em;
  background: var(--pm-lime); border-radius: var(--r-pill); z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: underlineIn .7s var(--ease) .7s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255, 255, 255, .64); margin-bottom: 36px; }
.hero-sub b { color: #fff; font-weight: 500; }
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-wave { position: relative; height: 180px; max-width: 880px; margin: 0 auto; }
.hero-wave canvas { width: 100%; height: 100%; }
.wave-pill {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15, 15, 15, .82); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff; font-size: 12px; letter-spacing: .03em;
  padding: 10px 18px; border-radius: var(--r-pill);
}
.dot-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pm-lime);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 245, 61, .5); }
  50% { box-shadow: 0 0 0 7px rgba(231, 245, 61, 0); }
}

/* SECTION HEAD */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head .chip { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; font-weight: 300; letter-spacing: -.01em; margin-bottom: 16px; }
.section-head h2 b { font-weight: 600; }
.section-head p { color: var(--pm-text-2); font-size: 15px; line-height: 1.7; }

/* INTELLIGENCE (NEW) */
.intel { padding-top: 88px; padding-bottom: 72px; }
.intel .section-head .chip + .chip { margin-left: 8px; }
.intel-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.intel-copy { display: flex; flex-direction: column; gap: 22px; }
.intel-point { display: flex; gap: 16px; align-items: flex-start; }
.intel-ico {
  width: 42px; height: 42px; border-radius: var(--r-sm); flex: none;
  background: var(--pm-lime); color: var(--pm-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.intel-ico svg { width: 20px; height: 20px; }
.intel-point h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.intel-point p { font-size: 13.5px; line-height: 1.65; color: var(--pm-text-2); }
.intel-point b { font-weight: 600; color: var(--pm-text); }
.v-ok { color: #2E7D32; } .v-bad { color: #C62828; } .v-unk { color: #B26A00; }
.intel-note {
  padding: 14px 18px; background: var(--pm-lime-soft); border-radius: var(--r-md);
  font-size: 12.5px; line-height: 1.6; color: var(--pm-ink);
}
.intel-demo {
  background: var(--pm-surface); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
  padding: 20px; min-height: 460px;
  display: flex; flex-direction: column; gap: 12px;
}
.intel-demo .mock-side-title { display: flex; align-items: center; gap: 7px; }
.intel-stack { display: flex; flex-direction: column; gap: 12px; }

/* 앱 InsightCard 재현 — 다크 카드 + 판정색 좌측 스트라이프 */
.ins-card {
  position: relative; overflow: hidden;
  background: var(--pm-ink); color: #fff;
  border-radius: var(--r-md); padding: 14px 16px 14px 20px;
  box-shadow: var(--shadow-2);
  opacity: 0; transform: translateX(28px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.ins-card.in { opacity: 1; transform: none; }
.ins-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--ins-stripe, var(--pm-lime)); }
.ins-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ins-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .05em; line-height: 1;
  padding: 5px 9px; border-radius: var(--r-pill);
  background: var(--ins-stripe, var(--pm-lime)); color: #fff;
}
.ins-badge-mem { color: var(--pm-ink); }
.ins-time { margin-left: auto; font-size: 10px; color: rgba(255, 255, 255, .45); }
.ins-title { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.ins-quote {
  font-size: 11.5px; font-style: italic; color: rgba(255, 255, 255, .55);
  border-left: 2px solid rgba(255, 255, 255, .22); padding-left: 8px; margin-bottom: 7px;
}
.ins-body { font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, .78); }
.ins-fix { color: var(--pm-lime); }
.ins-src { margin-top: 9px; font-size: 10.5px; color: var(--pm-lime); display: flex; align-items: center; gap: 5px; }

/* STATS */
.stats { padding-top: 72px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--pm-surface); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-1);
}
.stat-lime { background: var(--pm-lime); border-color: var(--pm-lime); color: var(--pm-ink); }
.stat-ink { background: var(--pm-ink); border-color: var(--pm-ink); color: #fff; }
.stat-num { font-size: 56px; line-height: 1; font-weight: 300; letter-spacing: -.02em; }
.stat-unit { font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.stat-cap { font-size: 12px; line-height: 1.5; color: var(--pm-text-2); margin-top: auto; }
.stat-lime .stat-cap { color: rgba(15, 15, 15, .64); }
.stat-ink .stat-cap { color: rgba(255, 255, 255, .64); }

/* DONUT */
.donut { position: relative; width: 110px; height: 110px; margin-bottom: 10px; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-track { fill: none; stroke: var(--pm-surface-2); stroke-width: 11; }
.donut-arc {
  fill: none; stroke: var(--pm-lime); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 314.16; stroke-dashoffset: 314.16;
  transition: stroke-dashoffset .8s ease-out;
}
.donut-label {
  position: absolute; inset: 0; display: flex; align-items: baseline; justify-content: center;
  flex-direction: row; align-content: center; padding-top: 38px;
}
.donut-num { font-size: 30px; font-weight: 300; line-height: 1; }
.donut-pct { font-size: 13px; color: var(--pm-text-3); margin-left: 2px; }

/* DEMO MOCK (앱 Live 화면 재현) */
.demo { background: var(--pm-surface); border-radius: var(--r-lg); }
.app-mock {
  display: grid; grid-template-columns: 56px 1fr 300px; gap: 0;
  background: var(--pm-bg); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
  overflow: hidden; min-height: 480px;
}
.mock-rail {
  border-right: 1px solid var(--pm-border);
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 0;
}
.rail-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--pm-text-3);
}
.rail-icon svg { width: 18px; height: 18px; }
.rail-active { background: var(--pm-ink); color: #fff; }

.mock-main { display: flex; flex-direction: column; padding: 18px 22px; min-width: 0; }
.mock-tabs { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.tab {
  font-size: 12px; padding: 8px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--pm-border); color: var(--pm-text-2); white-space: nowrap;
}
.tab-active { background: var(--pm-ink); color: #fff; border-color: var(--pm-ink); }
.tab-ghost { border: none; }
.mock-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 500; letter-spacing: .05em; color: var(--pm-text-2);
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--pm-danger); animation: pulse 1.6s ease-in-out infinite; }

.mock-transcript { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 16px; justify-content: flex-end; padding-bottom: 16px; }
.utter { display: flex; gap: 12px; opacity: 0; transform: translateY(12px); animation: lineUp .45s var(--ease) forwards; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  background: var(--pm-surface-2); color: var(--pm-text);
  border: 2px solid transparent;
}
.avatar-lime { border-color: var(--pm-lime); }
.utter-body { min-width: 0; }
.utter-name { font-size: 11px; font-weight: 500; color: var(--pm-text-3); margin-bottom: 3px; letter-spacing: .03em; }
.utter-text { font-size: 14px; line-height: 1.55; }
.utter-text.partial { color: var(--pm-text-3); }
.caret { display: inline-block; width: 2px; height: 1em; background: var(--pm-lime-dim); vertical-align: -.15em; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.mock-bottom { display: flex; align-items: center; gap: 14px; }
.mock-wave {
  flex: 1; height: 52px; background: var(--pm-surface);
  border: 1px solid var(--pm-border); border-radius: var(--r-pill);
  overflow: hidden; padding: 0 18px;
}
.mock-wave canvas { width: 100%; height: 100%; }
.mic-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: default;
  background: var(--pm-ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.mic-btn svg { width: 20px; height: 20px; }
.mic-btn::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--pm-lime); opacity: 0;
  animation: micRing 2s var(--ease) infinite;
}
@keyframes micRing {
  0% { opacity: .9; transform: scale(.86); }
  70%, 100% { opacity: 0; transform: scale(1.18); }
}

.mock-side {
  border-left: 1px solid var(--pm-border); background: var(--pm-surface);
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
}
.mock-side-title { font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--pm-text-3); }
.sugg-card {
  background: var(--pm-bg); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2); padding: 16px;
  opacity: 0; transform: translateX(28px);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.sugg-card.in { opacity: 1; transform: none; }
.sugg-spark {
  width: 26px; height: 26px; border-radius: var(--r-xs);
  background: var(--pm-lime); color: var(--pm-ink);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.sugg-spark svg { width: 14px; height: 14px; }
.sugg-title { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.sugg-body { font-size: 12px; line-height: 1.55; color: var(--pm-text-2); }
.sugg-src { margin-top: 10px; font-size: 11px; color: var(--pm-text-3); display: flex; align-items: center; gap: 5px; }

/* TRANSLATE (실시간 통역) */
.tr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.tr-mock {
  background: var(--pm-bg); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
  padding: 20px 22px; display: flex; flex-direction: column; min-height: 460px;
}
.tr-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--pm-border); }
.tr-label { font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--pm-text-3); }
.tr-langs { display: inline-flex; gap: 4px; }
.tr-lang {
  font-size: 11px; padding: 6px 10px; border-radius: var(--r-pill);
  border: 1px solid var(--pm-border); color: var(--pm-text-2); line-height: 1;
}
.tr-lang-on { background: var(--pm-ink); color: #fff; border-color: var(--pm-ink); }
.tr-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  background: var(--pm-lime); color: var(--pm-ink);
  padding: 6px 11px; border-radius: var(--r-pill);
}
.tr-live .dot-live { background: var(--pm-ink); }
.tr-feed { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 16px; justify-content: flex-end; padding: 16px 0; }
.tr-trans {
  display: flex; align-items: flex-start; gap: 7px; margin-top: 7px;
  font-size: 13px; line-height: 1.55; color: var(--pm-text-2);
  background: var(--pm-surface); border-left: 2px solid var(--pm-lime);
  border-radius: 0 var(--r-xs) var(--r-xs) 0; padding: 7px 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tr-trans.in { opacity: 1; transform: none; }
.tr-trans svg { width: 13px; height: 13px; flex: none; margin-top: 3px; color: var(--pm-lime-dim); }
.tr-note { font-size: 11px; color: var(--pm-text-3); padding-top: 14px; border-top: 1px solid var(--pm-border); }
.tr-shot { display: flex; flex-direction: column; justify-content: center; gap: 12px; margin: 0; }
.tr-shot img {
  width: 100%; height: auto;
  border: 1px solid var(--pm-border); border-radius: var(--r-lg); box-shadow: var(--shadow-2);
}
.tr-shot figcaption { font-size: 12px; color: var(--pm-text-3); text-align: center; }

/* FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--pm-surface); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); background: var(--pm-bg); }
.feature-card .chip { margin-bottom: 18px; }
.feature-card-new { background: var(--pm-ink); border-color: var(--pm-ink); color: #fff; }
.feature-card-new:hover { background: var(--pm-black); }
.feature-card-new p { color: rgba(255, 255, 255, .68); }
.feature-card-new .chip-new { animation: none; }
.feature-card h3 { font-size: 18px; font-weight: 500; line-height: 1.4; margin-bottom: 10px; }
.feature-card p { font-size: 13px; line-height: 1.65; color: var(--pm-text-2); }

/* PIPELINE */
.pipe-steps {
  list-style: none; display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 12px; align-items: stretch;
}
.pipe-step {
  background: var(--pm-surface); border: 1px solid var(--pm-border);
  border-radius: var(--r-lg); padding: 26px 22px;
}
.pipe-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pm-lime); color: var(--pm-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.pipe-step h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.pipe-step p { font-size: 13px; line-height: 1.6; color: var(--pm-text-2); }
.pipe-arrow { display: flex; align-items: center; justify-content: center; color: var(--pm-text-3); }
.pipe-arrow svg { width: 20px; height: 20px; }
.pipe-note {
  margin-top: 28px; padding: 18px 22px;
  background: var(--pm-lime-soft); border-radius: var(--r-md);
  font-size: 13px; color: var(--pm-ink);
}
.pipe-note b { font-weight: 600; }

/* PRIVACY (dark) */
.privacy { background: var(--pm-black); color: #fff; border-radius: var(--r-lg); margin: 0 12px; }
.privacy-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.privacy-copy .chip { margin-bottom: 18px; }
.privacy-copy h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 300; line-height: 1.2; margin-bottom: 16px; }
.privacy-copy h2 b { font-weight: 600; }
.privacy-copy > p { color: rgba(255, 255, 255, .64); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
.privacy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.privacy-list li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: rgba(255, 255, 255, .86); }
.check {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: var(--pm-lime); color: var(--pm-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.privacy-visual { display: flex; justify-content: center; }
.orbit { position: relative; width: 300px; height: 300px; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--pm-lime); color: var(--pm-ink);
  display: flex; align-items: center; justify-content: center;
}
.orbit-core svg { width: 34px; height: 34px; }
.orbit-ring { position: absolute; border: 1px dashed rgba(255, 255, 255, .22); border-radius: 50%; }
.orbit-ring.r1 { inset: 40px; animation: spin 26s linear infinite; }
.orbit-ring.r2 { inset: 0; animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-tag {
  position: absolute; font-size: 11px; letter-spacing: .05em;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  padding: 6px 12px; border-radius: var(--r-pill); color: rgba(255, 255, 255, .8);
  animation: floatY 4s ease-in-out infinite;
}
.orbit-tag.t1 { top: 16px; left: 12px; }
.orbit-tag.t2 { top: 52%; right: -22px; animation-delay: 1.2s; }
.orbit-tag.t3 { bottom: 22px; left: 34px; animation-delay: 2.2s; }
@keyframes floatY { 50% { transform: translateY(-8px); } }

/* CTA */
.cta-card {
  text-align: center; background: var(--pm-surface);
  border: 1px solid var(--pm-border); border-radius: var(--r-lg);
  padding: 72px 32px;
}
.cta-card h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 300; line-height: 1.16; margin-bottom: 16px; }
.cta-card h2 b { font-weight: 600; }
.cta-card > p { color: var(--pm-text-2); font-size: 15px; margin-bottom: 32px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-meta { font-size: 12px; color: var(--pm-text-3); }

/* FOOTER */
.footer { border-top: 1px solid var(--pm-border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.logo-footer .logo-text { color: var(--pm-ink); }
.footer-note { font-size: 12px; color: var(--pm-text-2); flex: 1; min-width: 240px; }
.footer-copy { font-size: 12px; color: var(--pm-text-3); }
.footer-link { color: var(--pm-text); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.footer-link:hover { color: var(--pm-ink); }
.footer-legal { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pm-border); display: flex; flex-direction: column; gap: 4px; }
.footer-legal p { font-size: 12px; color: var(--pm-text-3); line-height: 1.7; }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal .footer-copy { margin-top: 4px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .stats-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-grid { grid-template-columns: 1fr; }
  .intel-demo { min-height: 380px; }
  .tr-grid { grid-template-columns: 1fr; }
  .pipe-steps { grid-template-columns: 1fr; }
  .pipe-arrow { transform: rotate(90deg); height: 32px; }
  .app-mock { grid-template-columns: 56px 1fr; }
  .mock-side { display: none; }
  .privacy-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .stats-grid, .feature-grid { grid-template-columns: 1fr; }
  .app-mock { grid-template-columns: 1fr; }
  .mock-rail { display: none; }
  .hero { padding-top: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
