/* ============================================================
   Quero Talentos — Landing Page
   Palette derived from the SaaS source (src/index.css)
   ============================================================ */

:root {
  --brand-blue: hsl(199 89% 48%);
  --brand-blue-600: hsl(199 89% 42%);
  --brand-blue-50: hsl(199 89% 96%);
  --brand-green: hsl(160 84% 39%);
  --brand-green-50: hsl(160 84% 96%);

  --ink: hsl(212 22% 15%);
  --ink-2: hsl(212 18% 28%);
  --muted: hsl(214 14% 46%);
  --line: hsl(214 24% 90%);
  --line-2: hsl(214 24% 94%);
  --bg: #ffffff;
  --bg-soft: hsl(210 33% 98%);
  --bg-tinted: hsl(199 50% 98%);

  --red-50: hsl(0 70% 96%);
  --red-700: hsl(0 60% 38%);
  --amber-50: hsl(40 90% 95%);
  --amber-700: hsl(28 75% 38%);
  --green-50: hsl(140 60% 95%);
  --green-700: hsl(150 60% 30%);
  --purple-50: hsl(265 60% 96%);
  --purple-700: hsl(265 50% 42%);
  --gray-100: hsl(214 18% 95%);
  --gray-700: hsl(214 14% 35%);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 27, 45, .04), 0 1px 1px rgba(15, 27, 45, .03);
  --shadow:    0 8px 24px -8px rgba(15, 27, 45, .08), 0 2px 6px rgba(15, 27, 45, .04);
  --shadow-lg: 0 24px 60px -20px rgba(8, 30, 60, .18), 0 6px 16px rgba(8, 30, 60, .06);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; color: var(--ink-2); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 6px 18px -8px hsla(199, 89%, 38%, .55);
}
.btn-primary:hover { background: var(--brand-blue-600); box-shadow: 0 10px 22px -8px hsla(199, 89%, 38%, .65); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: hsl(214 24% 80%); background: var(--bg-soft); }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 0 6px;
  height: auto;
  border-radius: 6px;
}
.btn-link:hover { color: var(--brand-blue); }
.btn-lg { height: 52px; padding: 0 22px; font-size: 15.5px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px -6px hsla(199, 89%, 40%, .55);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .15s ease;
}
.nav a:hover { color: var(--brand-blue); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 88px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 540px;
  background:
    radial-gradient(60% 80% at 20% 0%, hsla(199, 90%, 92%, .55), transparent 60%),
    radial-gradient(50% 70% at 90% 10%, hsla(160, 70%, 92%, .55), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, hsla(214, 22%, 75%, .35) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-green-50);
  color: var(--brand-green);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  color: var(--brand-blue);
  white-space: nowrap;
}
.hero p.lede {
  font-size: clamp(17px, 1.25vw, 19px);
  color: var(--muted);
  margin-top: 22px;
  max-width: 560px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.hero-trust .check {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--brand-green-50);
  color: var(--brand-green);
  display: grid; place-items: center;
}
.hero-trust .check svg { width: 11px; height: 11px; stroke-width: 3; }
.hero-trust .divider { width: 1px; height: 14px; background: var(--line); }

/* ---------- Hero Product Mock (Dashboard) ---------- */
.hero-mock {
  position: relative;
  perspective: 1200px;
}
.app-shell {
  position: relative;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-3deg);
  transform-origin: center;
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-2);
}
.app-topbar .dot {
  width: 11px; height: 11px; border-radius: 999px;
  background: #e5e7ec;
}
.app-topbar .dot.r { background: #ff6058; }
.app-topbar .dot.y { background: #ffbf30; }
.app-topbar .dot.g { background: #28c941; }
.app-topbar .url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  flex: 1;
}
.app-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.app-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--line-2);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.app-side .brand-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  padding: 4px 8px;
}
.app-side .brand-row .brand-mark { width: 26px; height: 26px; font-size: 10px; border-radius: 7px; }
.app-side .brand-row span { font-size: 13px; font-weight: 700; color: var(--ink); }
.side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.side-item.active {
  background: var(--brand-blue-50);
  color: var(--brand-blue-600);
  font-weight: 600;
}
.side-item .ico {
  width: 14px; height: 14px; color: currentColor;
}
.side-item .ico svg { width: 14px; height: 14px; stroke: currentColor; }
.side-divider { height: 1px; background: var(--line-2); margin: 8px 4px; }
.side-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 4px 10px;
}

.app-main { padding: 18px 18px 20px; }
.app-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.app-title .pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-green);
  background: var(--brand-green-50);
  padding: 4px 8px;
  border-radius: 999px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 12px;
}
.stat .l { font-size: 10.5px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.stat .v { font-size: 20px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.stat .s { font-size: 10.5px; color: var(--brand-green); font-weight: 600; margin-top: 2px; }

.mini-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mini-col {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px;
  min-height: 200px;
}
.mini-col h5 {
  font-size: 11.5px;
  margin: 0 0 8px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600;
}
.mini-col h5 .ct {
  background: #fff; border: 1px solid var(--line);
  font-size: 10px; padding: 1px 6px; border-radius: 999px; color: var(--muted);
}
.mini-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 8px 9px;
  margin-bottom: 6px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.mini-card .n { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.mini-card .r { font-size: 10.5px; color: var(--muted); }
.mini-card .b {
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  margin-top: 2px;
}
.b.high { background: var(--brand-green-50); color: var(--brand-green); }
.b.med  { background: var(--amber-50); color: var(--amber-700); }
.b.low  { background: var(--gray-100); color: var(--gray-700); }

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 10px; align-items: flex-start;
  max-width: 240px;
}
.floating-card .av {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}
.floating-card .lbl { font-size: 11px; color: var(--muted); font-weight: 500; }
.floating-card .tt { font-size: 13px; color: var(--ink); font-weight: 600; margin-top: 2px; }
.floating-card .ai-row {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--ink-2);
}
.fc-1 { top: -22px; left: -32px; }
.fc-2 { bottom: -22px; right: -28px; }

/* ---------- Section base ---------- */
section { padding: 96px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand-blue);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Benefits row ---------- */
.benefits {
  padding: 56px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.benefit { text-align: left; }
.benefit .num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.benefit .num .pct { color: var(--brand-blue); }
.benefit .t {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}
.benefit .d {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}

/* ---------- Problem section ---------- */
.problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.problem-card .pico {
  width: 42px; height: 42px;
  background: var(--red-50);
  color: var(--red-700);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.problem-card .pico svg { width: 22px; height: 22px; stroke: currentColor; }
.problem-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.problem-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.problem-card .mock {
  margin-top: 18px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: var(--muted);
}
.problem-card .mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
}
.problem-card .mock-row + .mock-row { border-top: 1px dashed var(--line-2); }
.problem-card .mock-row .name { color: var(--ink-2); }
.problem-card .mock-row .src { font-size: 10.5px; color: var(--muted); }

/* ---------- Solution / Product mock ---------- */
.solution {
  background: linear-gradient(180deg, var(--bg-tinted) 0%, #fff 60%);
}
.product-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 24px;
}
.pm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-2);
  background: #fff;
  gap: 16px;
  flex-wrap: wrap;
}
.pm-head .pm-title {
  font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.pm-head .pm-title .crumb {
  font-size: 12px; color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.pm-head .pm-filters {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 500;
}
.chip.active { background: var(--brand-blue-50); color: var(--brand-blue-600); border-color: hsl(199 89% 86%); }
.chip svg { width: 12px; height: 12px; stroke: currentColor; }
.search-box {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--muted);
  background: #fff;
  min-width: 200px;
}
.search-box svg { width: 13px; height: 13px; stroke: currentColor; }

.kanban {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  padding: 22px;
  overflow-x: auto;
  background: var(--bg-soft);
}
.kanban-col {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 12px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.kanban-col header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.kanban-col h4 { font-size: 13px; font-weight: 600; color: var(--ink); }
.kanban-col .count {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.count.red    { background: var(--red-50); color: var(--red-700); }
.count.gray   { background: var(--gray-100); color: var(--gray-700); }
.count.blue   { background: var(--brand-blue-50); color: var(--brand-blue-600); }
.count.amber  { background: var(--amber-50); color: var(--amber-700); }
.count.purple { background: var(--purple-50); color: var(--purple-700); }
.count.green  { background: var(--green-50); color: var(--green-700); }

.kcard {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
  display: flex; flex-direction: column; gap: 6px;
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.kcard:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: hsl(199 89% 80%); }
.kcard.dragging { opacity: 0.4; }
.kcard-row {
  display: flex; align-items: center; gap: 8px;
}
.kcard .av {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(199 60% 88%), hsl(160 60% 88%));
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.kcard .n { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.kcard .r { font-size: 11px; color: var(--muted); line-height: 1.3; }
.kcard-meta {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.kcard-meta .tg {
  font-size: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}
.ai-badge .spark {
  width: 8px; height: 8px;
  display: inline-block;
}
.ai-badge.high { background: var(--brand-green-50); color: var(--brand-green); }
.ai-badge.med  { background: var(--amber-50); color: var(--amber-700); }
.ai-badge.low  { background: var(--gray-100); color: var(--gray-700); }

/* ---------- How it works ---------- */
.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: hsl(199 89% 85%);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--line);
  line-height: 1;
}
.step .sico {
  width: 44px; height: 44px;
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.step .sico svg { width: 22px; height: 22px; stroke: currentColor; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.step ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.step ul li {
  font-size: 13px; color: var(--ink-2);
  display: flex; align-items: flex-start; gap: 6px;
}
.step ul li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--brand-green);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- Features grid ---------- */
.features { background: var(--bg-soft); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feat:hover { transform: translateY(-2px); border-color: hsl(199 89% 85%); box-shadow: var(--shadow); }
.feat .fi {
  width: 38px; height: 38px;
  background: var(--brand-blue-50);
  color: var(--brand-blue);
  border-radius: 9px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.feat .fi.green { background: var(--brand-green-50); color: var(--brand-green); }
.feat .fi svg { width: 18px; height: 18px; stroke: currentColor; }
.feat h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- AI section ---------- */
.ai-section {
  background: #fff;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-grid .ai-copy h2 { font-size: clamp(26px, 2.4vw, 36px); font-weight: 700; letter-spacing: -0.025em; }
.ai-grid .ai-copy p { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.ai-grid .ai-copy ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ai-grid .ai-copy ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-2);
}
.ai-grid .ai-copy ul li .ck {
  width: 22px; height: 22px;
  background: var(--brand-green-50);
  color: var(--brand-green);
  border-radius: 999px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ai-grid .ai-copy ul li .ck svg { width: 12px; height: 12px; stroke-width: 3; }

.ai-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
}
.ai-mock .am-head {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.ai-mock .am-head .av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(199 60% 85%), hsl(160 60% 85%));
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
}
.ai-mock .am-head .meta { flex: 1; }
.ai-mock .am-head .name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ai-mock .am-head .role { font-size: 12.5px; color: var(--muted); }
.am-block { margin-bottom: 14px; }
.am-block .lab {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.am-block p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.am-block ul { list-style: none; padding: 0; margin: 6px 0 0; }
.am-block ul li {
  font-size: 13px; color: var(--ink-2);
  padding: 4px 0;
  display: flex; gap: 8px; align-items: flex-start;
}
.am-block ul li .b {
  width: 14px; height: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.am-block ul li.pos .b { color: var(--brand-green); }
.am-block ul li.neg .b { color: var(--amber-700); }
.am-fit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-green-50);
  color: var(--brand-green);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}

/* ---------- Trial / CTA panel ---------- */
.trial {
  background: var(--bg);
}
.trial-panel {
  background: linear-gradient(135deg, hsl(199 89% 48%) 0%, hsl(160 84% 39%) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trial-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent);
}
.trial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.trial-grid h2 {
  color: #fff;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.trial-grid p {
  color: rgba(255,255,255,.92);
  font-size: 17px;
  margin-top: 14px;
  max-width: 480px;
}
.trial-bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
.trial-bullets li {
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  font-size: 14px;
}
.trial-bullets li .c {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: grid; place-items: center;
}
.trial-bullets li .c svg { width: 10px; height: 10px; stroke-width: 3; }
.trial-form {
  background: #fff;
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px rgba(0, 30, 60, .35);
}
.trial-form h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.trial-form .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 12px;
}
.field label {
  font-size: 12.5px; font-weight: 500; color: var(--ink-2);
}
.field input, .field select, .field textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px hsla(199, 89%, 48%, .15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 8px; text-align: center; }
.form-success {
  background: var(--brand-green-50);
  border: 1px solid hsl(160 60% 85%);
  color: var(--green-700);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  display: none;
  margin-bottom: 14px;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-2);
}
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color .15s ease;
}
.faq-q:hover { color: var(--brand-blue); }
.faq-q .ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .15s ease;
}
.faq-q .ic svg { width: 14px; height: 14px; stroke: var(--ink-2); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
}
.faq-item.open .faq-q .ic {
  background: var(--brand-blue-50);
  border-color: hsl(199 89% 85%);
  transform: rotate(45deg);
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: hsl(214 14% 70%);
  padding: 72px 0 32px;
}
.site-footer .container { display: block; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand .brand { color: #fff; margin-bottom: 14px; }
.foot-brand .brand-mark {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
}
.foot-brand p { color: hsl(214 14% 70%); font-size: 14px; max-width: 320px; }
.foot-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: hsl(214 14% 70%);
  font-size: 14px;
  transition: color .15s ease;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid hsl(212 22% 22%);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: hsl(214 14% 60%);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-mock { max-width: 640px; margin: 0 auto; }
  .fc-1, .fc-2 { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .features-grid, .steps { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .trial-grid { grid-template-columns: 1fr; gap: 32px; }
  .trial-panel { padding: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header .container { height: 60px; gap: 12px; }
  .hero h1 { font-size: 36px; }
  .hero p.lede { font-size: 16px; }
  .hero-trust { gap: 12px; flex-wrap: wrap; }
  .hero-trust .divider { display: none; }
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .mini-kanban { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .features-grid, .steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .trial-bullets { grid-template-columns: 1fr; }
  .trial-panel { padding: 28px; border-radius: var(--radius-lg); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pm-head { padding: 14px; }
  .kanban { padding: 14px; gap: 10px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 22px;
  z-index: 49;
  box-shadow: var(--shadow);
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
}
.mobile-drawer .btn { margin-top: 14px; width: 100%; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
