/* ============================================
   Landing page — ElevaX
   ============================================ */

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
  padding-block: clamp(40px, 6vw, 80px);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 4px 4px 4px;
  border: 1px solid var(--border-strong);
  background: color-mix(in oklab, var(--bg-1) 70%, transparent);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-1);
  transition: border-color .15s, color .15s;
}
.hero-pill:hover { border-color: var(--accent); color: var(--text-0); }
.hero-pill > span:last-child { padding-right: 12px; }

.hero-title {
  font-size: clamp(44px, 6.6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  max-width: 1000px;
}

.hero-lead {
  max-width: 640px;
  font-size: 18px;
  color: var(--text-1);
  text-wrap: balance;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}

.hero-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 13px; color: var(--text-2);
  font-family: var(--font-mono);
}
.hero-meta .dot { color: var(--text-3); }

/* ============== COPILOT DEMO ============== */
.hero-demo-wrap {
  position: relative;
  z-index: 1;
  padding-block: 32px 56px;
}
.hero-demo {
  background:
    linear-gradient(180deg, var(--bg-1), color-mix(in oklab, var(--bg-1) 92%, var(--accent) 8%));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: relative;
}
.hero-demo::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 90% 0%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.cdemo-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-1) 85%, transparent);
  position: relative;
}
.cdemo-tabs { display: flex; gap: 4px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.cdemo-tabs::-webkit-scrollbar { display: none; }
.cdemo-tab {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--text-2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.cdemo-tab.active {
  background: var(--bg-3);
  color: var(--text-0);
  box-shadow: 0 1px 0 var(--border-strong) inset;
}
.cdemo-right { display: flex; gap: 12px; align-items: center; }
.cdemo-store {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px;
  border-radius: 7px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-1);
}
.store-mark {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff9b6b, #ff6b3d);
}
.cdemo-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--text-3);
}
.cdemo-dot.live { background: var(--mint); box-shadow: 0 0 0 4px color-mix(in oklab, var(--mint) 18%, transparent); }

.cdemo-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 480px;
}
@media (max-width: 760px) {
  .cdemo-body { grid-template-columns: 1fr; }
  .cdemo-side { display: none; }
}

.cdemo-side {
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  background: color-mix(in oklab, var(--bg-0) 60%, transparent);
}
.cdemo-section-title {
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 0.12em;
  padding: 8px 8px 6px;
}
.cdemo-side-item, .cdemo-side-suggest {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-1);
  cursor: default;
}
.cdemo-side-item:hover { background: var(--bg-2); color: var(--text-0); }
.cdemo-side-item.active { background: var(--accent-soft); color: var(--text-0); }
.cdemo-side-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }
.cdemo-side-suggest {
  background: var(--bg-2);
  border: 1px dashed var(--border-strong);
  color: var(--text-1);
  margin: 4px 4px;
  font-size: 12px;
  line-height: 1.35;
  align-items: flex-start;
}
.cdemo-side-suggest svg { color: var(--amber); margin-top: 2px; flex-shrink: 0; }

.cdemo-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cdemo-stream {
  flex: 1;
  padding: 24px 28px;
  overflow: auto;
  display: flex; flex-direction: column; gap: 18px;
}

.cmsg { display: flex; gap: 12px; align-items: flex-start; }
.cmsg-avatar {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: var(--font-mono); font-weight: 500;
}
.cmsg-user .cmsg-avatar { background: var(--bg-3); color: var(--text-1); }
.cmsg-ai .cmsg-avatar {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.cmsg-content { flex: 1; min-width: 0; }
.cmsg-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 6px;
}
.cmsg-body { font-size: 15px; color: var(--text-0); line-height: 1.55; }

.ai-card {
  margin-top: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 14px;
}

.ai-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ai-kpi {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px;
}
.ai-kpi-l { font-family: var(--font-mono); font-size: 10px; color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; }
.ai-kpi-v { font-size: 20px; letter-spacing: -0.02em; margin-top: 6px; font-weight: 500; }
.ai-kpi-d { font-size: 11px; color: var(--mint); margin-top: 4px; font-family: var(--font-mono); }
.ai-kpi-d.down { color: var(--rose); }

.ai-mini-chart {
  width: 100%; height: 70px;
}

.ai-insight {
  display: flex; gap: 10px;
  font-size: 13px;
  color: var(--text-1);
  padding: 10px 12px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  border-radius: 9px;
  line-height: 1.45;
}
.ai-insight svg { color: var(--accent-2); flex-shrink: 0; margin-top: 1px; }

.ai-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ai-action {
  font-size: 12px;
  padding: 5px 10px;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  color: var(--text-1);
  font-family: var(--font-mono);
  display: inline-flex; align-items: center; gap: 6px;
}
.ai-action:hover { color: var(--text-0); border-color: var(--accent); }

.cdemo-input {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  margin: 0 16px 16px;
  padding: 12px 14px;
  background: var(--bg-0);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  min-height: 50px;
}
.cdemo-spark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cdemo-prompt { flex: 1; font-size: 14px; min-height: 1em; }
.cdemo-caret {
  width: 1.5px; height: 16px;
  background: var(--accent);
  display: inline-block;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.cdemo-shortcut { display: flex; gap: 4px; }

/* ============== LOGOS ============== */
.logos-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logo-row {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 32px;
  color: var(--text-2);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-item {
  font-weight: 500;
  opacity: 0.7;
  transition: opacity .2s, color .2s;
}
.logo-item:hover { opacity: 1; color: var(--text-0); }
.logo-item small {
  font-size: 11px; vertical-align: super;
  font-family: var(--font-mono);
  margin-left: 2px;
  opacity: 0.6;
}

/* ============== FEATURES ============== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: border-color .2s, transform .2s;
  min-height: 240px;
}
.feature-card:hover {
  border-color: var(--border-strong);
}
.feature-lg {
  grid-column: span 2;
  background:
    linear-gradient(160deg, var(--bg-1) 30%, color-mix(in oklab, var(--bg-1) 80%, var(--accent) 20%));
}
@media (max-width: 900px) { .feature-lg { grid-column: span 2; } }
@media (max-width: 600px) { .feature-lg { grid-column: span 1; } }

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

.feature-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.feature-icon::after { content: ""; position: absolute; }
.icon-spark::after {
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0l1.7 4.7L14 6.5l-4.3 1.8L8 13 6.3 8.3 2 6.5l4.3-1.8z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 0l1.7 4.7L14 6.5l-4.3 1.8L8 13 6.3 8.3 2 6.5l4.3-1.8z'/></svg>") center / contain no-repeat;
}
.icon-chart::after {
  width: 16px; height: 16px;
  background: var(--text-0);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M2 14V2h1v12h12v1H2zm3-3V7h2v4H5zm3 0V4h2v7H8zm3 0V8h2v3h-2z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M2 14V2h1v12h12v1H2zm3-3V7h2v4H5zm3 0V4h2v7H8zm3 0V8h2v3h-2z'/></svg>") center / contain no-repeat;
}
.icon-grid::after {
  width: 16px; height: 16px;
  background: var(--text-0);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M1 1h6v6H1V1zm8 0h6v6H9V1zM1 9h6v6H1V9zm8 0h6v6H9V9z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M1 1h6v6H1V1zm8 0h6v6H9V1zM1 9h6v6H1V9zm8 0h6v6H9V9z'/></svg>") center / contain no-repeat;
}
.icon-stack::after {
  width: 16px; height: 16px;
  background: var(--text-0);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1L1 4l7 3 7-3-7-3zM1 8l7 3 7-3M1 12l7 3 7-3' fill='none' stroke='black' stroke-width='1.4' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1L1 4l7 3 7-3-7-3zM1 8l7 3 7-3M1 12l7 3 7-3' fill='none' stroke='black' stroke-width='1.4' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.icon-bolt::after {
  width: 16px; height: 16px;
  background: var(--text-0);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M9 1L3 9h4l-1 6 7-9H8l1-5z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M9 1L3 9h4l-1 6 7-9H8l1-5z'/></svg>") center / contain no-repeat;
}
.icon-shield::after {
  width: 16px; height: 16px;
  background: var(--text-0);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1L2 3v5c0 4 4 7 6 7s6-3 6-7V3L8 1z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1L2 3v5c0 4 4 7 6 7s6-3 6-7V3L8 1z'/></svg>") center / contain no-repeat;
}

.feature-card h3 { font-size: 19px; letter-spacing: -0.015em; font-weight: 500; }
.feature-card p { font-size: 14px; color: var(--text-1); line-height: 1.55; }

.feature-snippet {
  margin-top: auto;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid; gap: 8px;
  font-size: 13px;
}
.snippet-line { display: flex; gap: 10px; align-items: flex-start; }
.snippet-user { color: var(--text-2); width: 56px; flex-shrink: 0; font-size: 11px; padding-top: 2px; }
.snippet-ai { color: var(--accent-2); width: 56px; flex-shrink: 0; font-size: 11px; padding-top: 2px; }
.snippet-tags { display: flex; flex-wrap: wrap; gap: 5px; padding-left: 66px; }
.snippet-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 2px 7px; border-radius: 5px;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  color: var(--text-1);
}

.feature-spark { margin-top: auto; height: 60px; }
.feature-spark svg { width: 100%; height: 100%; }

.feature-progress { margin-top: auto; }
.progress-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 6px; }
.progress-bar { height: 4px; background: var(--bg-2); border-radius: 999px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }

.feature-code {
  margin-top: auto;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  display: grid; gap: 4px;
  color: var(--text-1);
}
.c-purple { color: var(--accent-2); }
.c-green { color: var(--mint); }
.c-mute { color: var(--text-2); }

.feature-flow {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.flow-pill {
  padding: 4px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-1);
}
.flow-pill-accent {
  background: var(--accent-soft);
  border-color: color-mix(in oklab, var(--accent) 40%, transparent);
  color: var(--accent-2);
}
.flow-arrow { color: var(--text-3); font-family: var(--font-mono); }

.feature-stats {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.stat-n { display: block; font-size: 22px; letter-spacing: -0.02em; font-weight: 500; }
.stat-n small { font-size: 11px; color: var(--text-2); margin-left: 2px; font-family: var(--font-mono); font-weight: 400; }
.stat-l { display: block; font-size: 10px; color: var(--text-2); letter-spacing: 0.1em; margin-top: 4px; }

/* ============== COPILOT SECTION ============== */
.copilot-section {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(50% 60% at 80% 30%, var(--accent-soft), transparent 70%),
    var(--bg-0);
}
.copilot-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .copilot-wrap { grid-template-columns: 1fr; gap: 40px; } }

.copilot-text {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.copilot-text h2 { text-wrap: balance; }
.copilot-text .lead { font-size: 16px; color: var(--text-1); }
.check-list { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 10px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--text-1);
}
.check-list li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 5px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='%232f6bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 14px;
}

.copilot-cta { margin-top: 8px; }

.copilot-questions {
  display: grid; gap: 8px;
  position: relative;
}
.copilot-questions::before {
  content: "";
  position: absolute;
  inset: -20px -20px;
  background: radial-gradient(60% 60% at 30% 50%, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}
.copilot-q {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px 14px 22px;
  transition: border-color .2s, transform .2s;
}
.copilot-q:hover { border-color: var(--border-strong); transform: translateX(2px); }
.copilot-q:nth-child(1) { margin-left: 20px; }
.copilot-q:nth-child(2) { margin-left: 0; }
.copilot-q:nth-child(3) { margin-left: 40px; }
.copilot-q:nth-child(4) { margin-left: 12px; }
.copilot-q:nth-child(5) { margin-left: 32px; }
.copilot-q:nth-child(6) { margin-left: 8px; }
@media (max-width: 600px) {
  .copilot-q { margin-left: 0 !important; }
}
.q-rail {
  width: 3px; height: 18px;
  background: var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}
.q-text {
  flex: 1;
  font-size: 15px;
  color: var(--text-0);
  letter-spacing: -0.01em;
}
.q-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text-2);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============== ANALYTICS ============== */
.analytics-section {
  border-top: 1px solid var(--border);
}
.analytics-panel {
  background: var(--bg-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ap-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-0);
  flex-wrap: wrap; gap: 10px;
}
.ap-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.ap-tab {
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-2);
  border-radius: 7px;
}
.ap-tab.active { background: var(--bg-3); color: var(--text-0); }
.ap-controls { display: flex; gap: 6px; }

.ap-grid {
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  min-height: 380px;
}
@media (max-width: 980px) {
  .ap-grid { grid-template-columns: 1fr; }
}

.ap-kpis {
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .ap-kpis { grid-template-rows: none; grid-template-columns: repeat(4, 1fr); }
}
.kpi {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.kpi:last-child { border-bottom: 0; }
.kpi-label { font-size: 10px; color: var(--text-2); letter-spacing: 0.1em; }
.kpi-value { font-size: 26px; letter-spacing: -0.02em; font-weight: 500; }
.kpi-value small { font-size: 14px; color: var(--text-2); }
.kpi-delta { font-size: 12px; color: var(--mint); font-family: var(--font-mono); display: inline-flex; align-items: center; gap: 6px;}
.kpi-delta.down { color: var(--rose); }
.kpi-delta small { color: var(--text-2); font-size: 11px; }

.ap-chart {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.ap-chart-head { display: flex; justify-content: space-between; align-items: center; }
.ap-chart-head h4 { font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; font-weight: 500; }
.legend { display: flex; gap: 12px; font-size: 11px; color: var(--text-2); font-family: var(--font-mono); }
.legend i { display: inline-block; width: 10px; height: 2px; vertical-align: middle; margin-right: 4px; border-radius: 2px;}
.big-chart { width: 100%; height: 200px; }

.ap-insight {
  display: flex; gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-1);
}
.ap-insight-spark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ap-insight p { line-height: 1.45; }
.ap-insight strong { color: var(--accent-2); font-weight: 500; }

.ap-table {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.ap-table h4 { font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; font-weight: 500; }
.ap-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ap-table th {
  text-align: left;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.ap-table td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-0);
}
.ap-table tr:last-child td { border-bottom: 0; }
.ap-table .num { text-align: right; }
.ap-table .trend svg { width: 40px; height: 16px; }

.reports-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 24px;
}
.reports-label { font-size: 10px; color: var(--text-2); letter-spacing: 0.1em; margin-right: 8px; }
.report-chip {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-1);
}

/* ============== COMPARE ============== */
.compare-section {
  border-top: 1px solid var(--border);
}
.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-1);
}
.ct-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  align-items: center;
}
.ct-row + .ct-row { border-top: 1px solid var(--border); }
.ct-cell {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-1);
  text-align: center;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.ct-feat {
  justify-content: flex-start;
  text-align: left;
  color: var(--text-0);
  font-weight: 500;
}
.ct-head {
  background: var(--bg-2);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ct-head .ct-cell { color: var(--text-2); padding-block: 14px; }
.ct-us {
  background: color-mix(in oklab, var(--accent-soft) 100%, transparent);
  color: var(--text-0);
}
.ct-head .ct-us { color: var(--accent-2); }

.dot-yes, .dot-no, .dot-partial {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 999px;
}
.dot-yes { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.dot-no { background: transparent; border: 1px solid var(--text-3); }
.dot-partial { background: var(--text-2); }

.ct-foot { background: var(--bg-2); }
.ct-foot .ct-cell { padding-block: 16px; }

.compare-foot {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .ct-row { grid-template-columns: 1.5fr repeat(4, 1fr); }
  .ct-cell { padding: 12px 8px; font-size: 12px; }
}

/* ============== TESTIMONIALS ============== */
.testimonials-section { border-top: 1px solid var(--border); }
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.testi blockquote {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text-0);
  line-height: 1.45;
  text-wrap: pretty;
}
.testi-lg blockquote { font-size: 22px; line-height: 1.4; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 999px;
  flex-shrink: 0;
}
.avatar-1 { background: linear-gradient(135deg, #ff9b6b, #ff5b7a); }
.avatar-2 { background: linear-gradient(135deg, #5bb6ff, #6b48f2); }
.avatar-3 { background: linear-gradient(135deg, #00d9a3, #4d8aff); }
.ta-name { font-size: 14px; font-weight: 500; }
.ta-role { font-size: 12px; }
.testi-stat {
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.ts-num { font-size: 36px; letter-spacing: -0.025em; font-weight: 500; color: var(--accent-2); }
.ts-num small { font-size: 18px; }
.ts-l { font-size: 10px; color: var(--text-2); letter-spacing: 0.12em; }

/* ============== FINAL CTA ============== */
.final-cta { border-top: 1px solid var(--border); }
.final-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 96px) 24px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.final-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  max-width: 640px;
}
.final-inner .lead { color: var(--text-1); font-size: 17px; text-wrap: balance; }
