/* =================================================================
   LeadGen Pro — Design System
   Terminal-native B2B SaaS. Hybrid dark/light sections.
   ================================================================= */

/* ---- 1. Reset & base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-100);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--accent); color: white; padding: 12px 16px;
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ---- 2. Tokens ----------------------------------------------- */
:root {
  /* Dark palette (dominant) */
  --ink-900: #0a0a0f;
  --ink-800: #13131a;
  --ink-700: #1c1c25;
  --ink-600: #2a2a35;
  --ink-300: #a1a1aa;
  --ink-400: #71717a;
  --ink-200: #d4d4d8;
  --ink-100: #f5f5f7;
  --accent: #6366f1;
  --accent-2: #4f46e5;
  --accent-3: #818cf8;
  --success: #10b981;
  --warning: #f59e0b;
  --avatar-1-a: #f59e0b;
  --avatar-1-b: #ef4444;
  --avatar-2-a: #6366f1;
  --avatar-2-b: #ec4899;
  --avatar-3-a: #10b981;
  --avatar-3-b: #06b6d4;
  --avatar-4-a: #8b5cf6;
  --avatar-4-b: #6366f1;
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, #1e1b4b 0%, #0a0a0f 70%);

  /* Light palette (contrast sections) */
  --bg-light: #f5f5f7;
  --surface-light: #ffffff;
  --text-light: #1d1d1f;
  --text-muted-light: #5e5e63;
  --border-light: #e8e8ed;

  /* Type scale */
  --fs-display: clamp(56px, 9vw, 112px);
  --fs-h2: clamp(40px, 5.5vw, 72px);
  --fs-h3: clamp(24px, 2.5vw, 32px);
  --fs-lead: 21px;
  --fs-code: 13px;

  /* Spacing */
  --space-section: clamp(80px, 12vh, 160px);
  --space-container: 1240px;
  --space-gutter: clamp(20px, 4vw, 40px);
  --space-card: clamp(24px, 3vw, 40px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- 3. Layout primitives ------------------------------------ */
.container {
  max-width: var(--space-container);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
  position: relative;
}
.container--narrow { max-width: 880px; }

.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section--light { background: var(--bg-light); color: var(--text-light); }
.section--dark  { background: var(--ink-900); color: var(--ink-100); }

/* Section label (cadência deliberada) */
.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Menlo', 'Consolas', monospace;
  font-size: var(--fs-code);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 6px;
}
.section--light .section-label { color: var(--accent-2); background: rgba(79, 70, 229, 0.08); border-color: rgba(79, 70, 229, 0.2); }

/* Section title & lead */
.section__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 18ch;
}
.section__lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: inherit;
  opacity: 0.75;
  max-width: 60ch;
  margin-bottom: clamp(40px, 6vh, 80px);
}
.section--light .section__lead { color: var(--text-muted-light); opacity: 1; }

/* ---- 4. Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--large { padding: 18px 36px; font-size: 17px; }
.btn--full  { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink-100);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--ghost-dark:hover { border-color: white; background: rgba(255,255,255,0.05); }
.btn--ghost-light {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}
.btn--ghost-light:hover { background: var(--text-light); color: white; }

.btn__play { font-size: 0.8em; opacity: 0.8; }

/* ---- 5. Nav -------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out), border-color 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__logo {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.nav__logo-mark { color: var(--ink-100); }
.nav__logo-accent { color: var(--accent); margin-left: 2px; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-300);
  position: relative;
  transition: color 150ms var(--ease-out);
}
.nav__links a:hover { color: var(--ink-100); }
.nav__links a.is-active { color: var(--ink-100); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav__drawer a.is-active { color: var(--ink-100); border-left: 2px solid var(--accent); padding-left: 10px; }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink-100);
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}
.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); }
.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 24px var(--space-gutter);
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav__drawer a { padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--ink-300); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav__drawer a.btn { border: 1px solid var(--accent); margin-top: 8px; text-align: center; }
.nav__drawer.is-open { display: flex; }

/* ---- 6. Hero ------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-900);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 0%, transparent 80%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: var(--fs-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__title span { display: block; }
.hero__title-accent {
  color: var(--success);
}
.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-300);
  max-width: 56ch;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: var(--ink-400);
  font-weight: 500;
}
.hero__proof span[aria-hidden] { color: var(--ink-600); }
.hero__price-hint {
  font-size: 14px;
  color: var(--ink-300);
  font-weight: 500;
  text-align: center;
  margin: 20px auto 0;
  max-width: 720px;
  width: 100%;
}
.hero__price-hint strong {
  color: var(--ink-100);
  font-weight: 700;
}
.hero__product {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 var(--space-gutter);
}
.hero__product img {
  width: 100%;
  height: auto;
  border-radius: var(--r-2xl);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px -20px rgba(99, 102, 241, 0.3),
    0 10px 40px -10px rgba(0, 0, 0, 0.5);
  mask-image: radial-gradient(ellipse 100% 90% at 50% 30%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 30%, black 60%, transparent 100%);
}

/* ---- 6b. Product mockup (hero) ----------------------------- */
.product-mock {
  background: var(--ink-800);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 100px -30px rgba(99, 102, 241, 0.45),
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
  text-align: left;
  font-size: 13px;
  color: var(--ink-100);
}
.product-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-700);
}
.product-mock__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-600); }
.product-mock__dot:nth-child(1) { background: #ff5f57; }
.product-mock__dot:nth-child(2) { background: #ffbd2e; }
.product-mock__dot:nth-child(3) { background: #28ca42; }
.product-mock__url {
  flex: 1;
  margin: 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-400);
  background: var(--ink-800);
  padding: 5px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.product-mock__lock { color: var(--success); font-size: 8px; }
.product-mock__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-mock__badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.product-mock__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}
.product-mock__sidebar {
  background: var(--ink-900);
  border-right: 1px solid var(--ink-700);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-mock__logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 8px;
}
.product-mock__logo span { color: var(--ink-100); }
.product-mock__logo em { font-style: normal; color: var(--accent); margin-left: 2px; }
.product-mock__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.product-mock__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
  border-radius: var(--r-sm);
  transition: background 150ms;
}
.product-mock__nav a:hover { background: var(--ink-800); color: var(--ink-100); }
.product-mock__nav a.is-active { background: rgba(99,102,241,0.12); color: var(--ink-100); }
.product-mock__nav-ico {
  width: 18px;
  text-align: center;
  color: var(--accent-3);
  font-size: 14px;
}
.product-mock__nav a.is-active .product-mock__nav-ico { color: var(--accent); }
.product-mock__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-top: 1px solid var(--ink-700);
  margin: 0 -8px -8px;
  padding-top: 16px;
  margin-top: auto;
}
.product-mock__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.product-mock__user strong { display: block; font-size: 12px; color: var(--ink-100); font-weight: 600; line-height: 1.2; }
.product-mock__user span { display: block; font-size: 11px; color: var(--ink-400); }

.product-mock__main { padding: 20px 24px; min-width: 0; }
.product-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.product-mock__head h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-100);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product-mock__head p { font-size: 12px; color: var(--ink-400); }
.product-mock__head p strong { color: var(--accent-3); font-weight: 700; }
.product-mock__btn {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-mock__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-md);
  margin-bottom: 12px;
}
.product-mock__search-ico { color: var(--ink-400); font-size: 14px; }
.product-mock__search-query { flex: 1; font-size: 13px; color: var(--ink-100); font-weight: 500; }
.product-mock__search-count {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-3);
  background: rgba(99,102,241,0.15);
  padding: 3px 10px;
  border-radius: 100px;
}
.product-mock__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pchip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--ink-800);
  color: var(--ink-300);
  border: 1px solid var(--ink-700);
}
.pchip--active { background: var(--accent); color: white; border-color: var(--accent); }
.pchip--muted { color: var(--ink-400); }

.product-mock__leads {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-mock__lead {
  display: grid;
  grid-template-columns: 36px 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-md);
  transition: border-color 200ms, transform 200ms;
}
.product-mock__lead:hover { border-color: var(--accent); transform: translateX(2px); }
.product-mock__lead-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.product-mock__lead-avatar--a { background: linear-gradient(135deg, var(--avatar-1-a), var(--avatar-1-b)); }
.product-mock__lead-avatar--b { background: linear-gradient(135deg, var(--avatar-2-a), var(--avatar-2-b)); }
.product-mock__lead-avatar--c { background: linear-gradient(135deg, var(--avatar-3-a), var(--avatar-3-b)); }
.product-mock__lead-avatar--d { background: linear-gradient(135deg, var(--avatar-4-a), var(--avatar-4-b)); }
.product-mock__lead-info { min-width: 0; }
.product-mock__lead-info strong { display: block; font-size: 13px; color: var(--ink-100); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-mock__lead-info span { display: block; font-size: 11px; color: var(--ink-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-mock__lead-decisor {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-300);
  white-space: nowrap;
}
.product-mock__decisor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.product-mock__lead-icp {
  font-size: 11px;
  font-weight: 800;
  color: var(--success);
  background: rgba(16,185,129,0.12);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.product-mock__lead-add {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  background: transparent;
  color: var(--ink-300);
  border: 1px solid var(--ink-600);
  border-radius: 6px;
  white-space: nowrap;
  transition: all 150ms;
}
.product-mock__lead-add:hover { color: var(--accent-3); border-color: var(--accent); }

@media (max-width: 1024px) {
  .product-mock__body { grid-template-columns: 64px 1fr; }
  .product-mock__sidebar { padding: 16px 8px; }
  .product-mock__logo { display: none; }
  .product-mock__nav a span:not(.product-mock__nav-ico) { display: none; }
  .product-mock__nav a { justify-content: center; }
  .product-mock__user > div { display: none; }
  .product-mock__user { justify-content: center; }
}
@media (max-width: 768px) {
  .product-mock__body { grid-template-columns: 1fr; min-height: 0; }
  .product-mock__sidebar { display: none; }
  .product-mock__main { padding: 16px; }
  .product-mock__lead { grid-template-columns: 32px 1fr; gap: 10px; padding: 10px; }
  .product-mock__lead-decisor, .product-mock__lead-add { display: none; }
  .product-mock__lead-icp { grid-column: 2; justify-self: start; }
  .product-mock__head { flex-direction: column; }
  .product-mock__head h4 { font-size: 16px; }
}

/* ---- 7. Module cards ---------------------------------------- */
.modules {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.modules__connector {
  display: flex;
  align-items: center;
  color: var(--accent);
}
.module-card {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-card);
  transition: transform 300ms var(--ease-out);
}
.module-card:hover { transform: translateY(-4px); }
.module-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.module-card__icon svg { width: 28px; height: 28px; }
.module-card__title {
  font-size: var(--fs-h3);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.module-card__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted-light);
  margin-bottom: 24px;
}
.module-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.module-card__features li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 24px;
  position: relative;
}
.module-card__features li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---- 8. Split layout ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split__bullets {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.split__bullets li {
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.section--light .split__bullets li { border-left-color: var(--accent-2); }
.split__bullets strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.split__bullets span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.75;
  color: inherit;
}
.section--light .split__bullets span { color: var(--text-muted-light); opacity: 1; }

/* ---- 9. Mock search (prospecção) --------------------------- */
.mock-search {
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  border-radius: var(--r-xl);
  padding: 24px;
}
.mock-search__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ink-900);
  border: 1px solid var(--ink-600);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.mock-search__icon { font-size: 16px; }
.mock-search__query {
  flex: 1;
  color: var(--ink-100);
  font-size: 15px;
  font-weight: 500;
}
.mock-search__count {
  font-size: 12px;
  color: var(--accent-3);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mock-search__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--ink-700);
  color: var(--ink-300);
  border: 1px solid var(--ink-600);
}
.chip--active { background: var(--accent); color: white; border-color: var(--accent); }
.mock-search__list { display: flex; flex-direction: column; gap: 8px; }
.mock-search__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-md);
  transition: border-color 200ms;
}
.mock-search__list li:hover { border-color: var(--accent); }
.mock-search__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-search__info { flex: 1; min-width: 0; }
.mock-search__info strong { display: block; color: var(--ink-100); font-size: 14px; font-weight: 600; }
.mock-search__info span { display: block; color: var(--ink-400); font-size: 12px; }
.mock-search__score { text-align: right; }
.mock-search__score strong { display: block; color: var(--success); font-size: 18px; font-weight: 800; line-height: 1; }
.mock-search__score span { display: block; color: var(--ink-400); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* ---- 10. Timeline (cadências) ----------------------------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 80px;
  padding: 40px 0;
}
.timeline__track {
  position: absolute;
  top: calc(40px + 32px);
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px 16px 20px;
  transition: transform 300ms var(--ease-out), border-color 200ms;
}
.timeline__step:hover { transform: translateY(-4px); border-color: var(--accent); }
.timeline__day {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.timeline__node {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink-900);
  box-shadow: 0 0 0 4px var(--surface-light);
}
.timeline__node svg { width: 22px; height: 22px; }
.timeline__node--linkedin { background: #0077b5; color: white; }
.timeline__node--email { background: var(--accent); color: white; }
.timeline__node--whatsapp { background: #25d366; color: white; }
.timeline__node--call { background: var(--success); color: white; }
.timeline__step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.timeline__step p {
  font-size: 12px;
  color: var(--text-muted-light);
  line-height: 1.3;
}

/* Features grid (4 cards) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 0;
}
.features-grid li {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px;
}
.features-grid h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.features-grid p {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.5;
}
.features-grid code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  background: rgba(99,102,241,0.08);
  color: var(--accent-2);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ---- 11. Extensions (chrome mockup) ------------------------ */
.extensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.extension-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: transform 300ms var(--ease-out), border-color 200ms;
}
.extension-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.extension-card__chrome {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.chrome__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--ink-800);
  border-bottom: 1px solid var(--ink-700);
}
.chrome__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-600); }
.chrome__dot:nth-child(1) { background: #ff5f57; }
.chrome__dot:nth-child(2) { background: #ffbd2e; }
.chrome__dot:nth-child(3) { background: #28ca42; }
.chrome__url {
  margin-left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-400);
  background: var(--ink-900);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
}
.chrome__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.chrome__body--linkedin { grid-template-columns: 1fr; }
.chrome__chat {
  background: #0b141a;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.chrome__msg {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 90%;
  line-height: 1.4;
}
.chrome__msg--in {
  background: #1f2c33;
  color: var(--ink-100);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.chrome__msg--out {
  background: #005c4b;
  color: var(--ink-100);
  align-self: flex-end;
  border-top-right-radius: 4px;
}
.chrome__sidebar {
  background: var(--ink-800);
  border-left: 1px solid var(--ink-700);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chrome__sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chrome__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.chrome__sidebar-head strong { display: block; font-size: 13px; color: var(--ink-100); font-weight: 600; }
.chrome__sidebar-head span { display: block; font-size: 11px; color: var(--ink-400); }
.chrome__task {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-md);
  padding: 12px;
}
.chrome__task-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.chrome__task-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-3);
  background: rgba(99,102,241,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}
.chrome__task-channel {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-300);
}
.chrome__task p {
  font-size: 12px;
  color: var(--ink-300);
  line-height: 1.4;
  margin-bottom: 10px;
}
.chrome__task-actions {
  display: flex;
  gap: 6px;
}
.chrome__task-actions--col { flex-direction: column; }
.chrome__btn {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  flex: 1;
}
.chrome__btn--primary { background: var(--accent); color: white; }
.chrome__btn--ghost { background: transparent; color: var(--ink-300); border: 1px solid var(--ink-600); }
.chrome__profile {
  padding: 20px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0f 0%, #13131a 100%);
  border-bottom: 1px solid var(--ink-700);
}
.chrome__profile-pic {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.chrome__profile strong { display: block; font-size: 16px; color: var(--ink-100); }
.chrome__profile > span { display: block; font-size: 12px; color: var(--ink-400); margin-top: 2px; }
.chrome__profile-tags { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.chrome__profile-tags span {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--ink-700);
  border-radius: 4px;
  color: var(--ink-300) !important;
  display: inline-block !important;
  margin: 0 !important;
}
.chrome__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(99,102,241,0.15);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.chrome__sidebar-text {
  font-size: 12px;
  color: var(--ink-300);
  line-height: 1.4;
  margin-bottom: 12px;
}
.extension-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-100);
  margin-bottom: 8px;
}
.extension-card__text {
  font-size: 15px;
  color: var(--ink-300);
  line-height: 1.5;
}

/* Feature row (4 inline features) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-row li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-200);
  font-weight: 500;
}
.feature-row li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  font-size: 16px;
}
.section--light .feature-row { border-top-color: var(--border-light); }
.section--light .feature-row li { color: var(--text-light); }

/* ---- 12. IA cards ------------------------------------------ */
.ia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ia-card {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 300ms var(--ease-out), border-color 200ms;
}
.ia-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.ia-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}
.ia-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
}
.ia-card p {
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.55;
}
.ia-card__demo {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.ia-score { display: flex; align-items: center; gap: 16px; }
.ia-score__ring { position: relative; width: 60px; height: 60px; flex-shrink: 0; }
.ia-score__ring svg { width: 100%; height: 100%; }
.ia-score__ring strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
}
.ia-score__meta { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.ia-score__meta > span:first-child { color: var(--text-light); font-weight: 600; }
.ia-score__risk { color: var(--success); font-weight: 700; }
.ia-msg { font-size: 13px; line-height: 1.5; color: var(--text-light); }
.ia-msg p { color: var(--text-light); font-size: 14px; padding: 8px 12px; background: var(--bg-light); border-radius: 8px; margin: 6px 0 12px; }
.ia-msg p:last-child { margin-bottom: 0; }
.ia-msg__tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-top: 8px;
}
.ia-msg__tag:first-of-type { margin-top: 0; }
.ia-insights { display: flex; flex-direction: column; gap: 10px; }
.ia-insights li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.4; color: var(--text-light); }
.ia-insights__dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }

/* ---- 13. Kanban (pipeline) --------------------------------- */
.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.kanban__col {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-lg);
  padding: 16px;
  min-width: 220px;
  transition: border-color 200ms, background 200ms;
}
.kanban__col.drag-over {
  border-color: var(--accent);
  background: rgba(99,102,241,0.08);
}
.kanban__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 80px;
}
.kanban__col header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-700);
}
.kanban__col header span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-300);
}
.kanban__col header em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-3);
  background: rgba(99,102,241,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.kanban__col--win header em { color: var(--success); background: rgba(16,185,129,0.1); }
.kanban__card {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 10px;
  transition: transform 200ms var(--ease-out), border-color 200ms;
}
.kanban__card:hover { transform: translateY(-2px); border-color: var(--accent); }
.kanban__card.is-dragging { opacity: 0.5; transform: rotate(3deg); border-color: var(--accent-3); }
.kanban__card strong { display: block; font-size: 14px; color: var(--ink-100); font-weight: 600; margin-bottom: 6px; }
.kanban__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.kanban__card footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-300);
}
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--indigo { background: var(--accent); }
.dot--emerald { background: var(--success); }
.dot--amber { background: var(--warning); }
.kanban__card--win { border-color: var(--success); background: rgba(16,185,129,0.05); }

/* ---- 14. Dashboard cards ---------------------------------- */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.dash-card {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-card);
  transition: transform 300ms var(--ease-out);
}
.dash-card:hover { transform: translateY(-4px); }
.dash-card header { margin-bottom: 20px; }
.dash-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.dash-card__sub {
  font-size: 12px;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.bars { display: flex; flex-direction: column; gap: 12px; }
.bars li { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.bars__label { width: 80px; color: var(--text-muted-light); font-weight: 600; }
.bars__bar {
  flex: 1;
  height: 24px;
  background: var(--bg-light);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.bars__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  border-radius: 4px;
  transition: width 800ms var(--ease-out);
}
.bars__bar em {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  z-index: 1;
}
.rank { display: flex; flex-direction: column; gap: 8px; }
.rank li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  font-size: 14px;
}
.rank__pos {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.rank__pos:nth-child(1) { background: var(--accent); }
.rank__name { flex: 1; font-weight: 600; color: var(--text-light); }
.rank__val { font-weight: 800; color: var(--accent-2); }
.forecast__big { margin-bottom: 16px; }
.forecast__big strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-light);
}
.forecast__big span { font-size: 12px; color: var(--text-muted-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.forecast__line { width: 100%; height: 60px; }

/* ---- 14b. Social proof (stats + testimonials) ----------------- */
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
  padding: 32px;
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
}
.proof__stat {
  text-align: left;
  padding: 0 8px;
  border-left: 1px solid var(--border-light);
}
.proof__stat:first-child { border-left: 0; padding-left: 0; }
.proof__stat-value {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 8px;
}
.proof__stat-value span {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--ink-400);
  margin-left: 2px;
}
.proof__stat-label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted-light);
  font-weight: 500;
}

.proof__testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.proof__card {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  transition: transform 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.proof__card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
}
.proof__card blockquote {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light);
  font-weight: 500;
}
.proof__card blockquote::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-3);
  font-weight: 800;
  opacity: 0.4;
  font-family: Georgia, serif;
}
.proof__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.proof__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: ui-monospace, monospace;
  flex-shrink: 0;
}
.proof__avatar--a { background: linear-gradient(135deg, var(--avatar-1-a), var(--avatar-1-b)); }
.proof__avatar--b { background: linear-gradient(135deg, var(--avatar-2-a), var(--avatar-2-b)); }
.proof__who strong {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 700;
}
.proof__who span {
  display: block;
  font-size: 12px;
  color: var(--text-muted-light);
  margin-top: 2px;
}
.proof__disclaimer {
  font-size: 12px;
  color: var(--text-muted-light);
  text-align: center;
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .proof__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .proof__stat { border-left: 0; padding: 0; }
  .proof__stat:nth-child(odd) { border-right: 1px solid var(--border-light); padding-right: 16px; }
  .proof__testimonials { grid-template-columns: 1fr; }
}

/* ---- 15. Pricing ------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--r-xl);
  padding: var(--space-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 300ms var(--ease-out), border-color 200ms;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.price-card--popular {
  border-color: var(--success);
  background: linear-gradient(180deg, rgba(16,185,129,0.06) 0%, var(--ink-800) 100%);
  transform: scale(1.02);
}
.price-card--popular:hover { transform: scale(1.02) translateY(-4px); }
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
}
.price-card header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-100);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-card header p {
  font-size: 14px;
  color: var(--ink-300);
  line-height: 1.5;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-700);
}
.price-card__price strong {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-100);
  line-height: 1;
}
.price-card__price span { font-size: 16px; color: var(--ink-400); font-weight: 500; }
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-200);
  line-height: 1.4;
}
.price-card__features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- 16. FAQ ----------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.faq__item {
  border-top: 1px solid var(--border-light);
}
.faq__item:last-child { border-bottom: 1px solid var(--border-light); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  transition: color 150ms var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-2); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-2);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out), background 200ms;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--accent-2); color: white; }
.faq__item p {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted-light);
  max-width: 70ch;
}

/* ---- 17. CTA Final ----------------------------------------- */
.cta-final {
  padding: var(--space-section) 0;
  background: var(--ink-900);
  background-image: var(--gradient-hero);
  text-align: center;
}
.cta-final__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-100);
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta-final__sub {
  font-size: var(--fs-lead);
  color: var(--ink-300);
  margin-bottom: 40px;
}
.cta-final__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-final__small {
  font-size: 13px;
  color: var(--ink-400);
}

/* ---- 18. Footer -------------------------------------------- */
.footer {
  background: var(--ink-900);
  border-top: 1px solid var(--ink-700);
  padding: 60px 0 30px;
  color: var(--ink-300);
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p {
  margin-top: 12px;
  color: var(--ink-400);
  font-size: 14px;
  line-height: 1.5;
  max-width: 28ch;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-100);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--ink-300);
  font-size: 14px;
  transition: color 150ms;
}
.footer__col a:hover { color: var(--ink-100); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--ink-700);
  font-size: 13px;
  color: var(--ink-400);
}

/* ---- 19. Scroll reveal ------------------------------------- */
/* Content visible by default; JS adds .has-reveals to body to enable animation */
[data-reveal] {
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.has-reveals [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.has-reveals [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- 19b. Mobile sticky CTA bar ----------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.96);
  border-top: 1px solid var(--ink-700);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-cta.is-hidden { display: none !important; }
.mobile-cta__price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.mobile-cta__from {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  font-weight: 600;
}
.mobile-cta__price strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-100);
  letter-spacing: -0.01em;
}
.mobile-cta__price strong small {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-400);
  margin-left: 2px;
}
.mobile-cta__btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- 20. Responsive ---------------------------------------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-4px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .modules { grid-template-columns: 1fr; }
  .modules__connector { display: none; }
  .extensions { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__track { display: none; }
  .kanban { grid-template-columns: repeat(2, 1fr); }
  .hero__metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero__title { font-size: clamp(48px, 12vw, 80px); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .chrome__body { grid-template-columns: 1fr; }
  .chrome__sidebar { border-left: 0; border-top: 1px solid var(--ink-700); }
  .mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(40px, 13vw, 64px); }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .timeline { grid-template-columns: 1fr; }
  .kanban { grid-template-columns: 1fr; }
  .hero__metrics { grid-template-columns: repeat(2, 1fr); }
  .cta-final__actions { flex-direction: column; }
  .cta-final__actions .btn { width: 100%; }
  .footer__bottom { text-align: center; }
}

/* ---- 21. Print --------------------------------------------- */
@media print {
  .nav, .nav__drawer, .hero__ctas, .cta-final__actions, .feature-row { display: none; }
  body { color: black; background: white; }
  .section--dark { background: white; color: black; }
  .section__title, .hero__title, .cta-final__title { color: black; }
}
