/* RepField — light surface, lime-green accents */
:root {
  --bg-deep: #ffffff;
  --bg: #fafafa;
  --bg-raised: #f4f4f5;
  --surface: #ffffff;
  --surface-hover: #fafafa;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --text: #0f172a;
  --muted: #64748b;
  --muted2: #94a3b8;
  --accent: #b2d830;
  --accent-dim: #8fb521;
  --accent-bright: #c8e64e;
  --accent-glow: rgba(178, 216, 48, 0.45);
  --accent-soft: rgba(178, 216, 48, 0.14);
  --accent-veil: rgba(200, 230, 78, 0.12);
  --on-accent: #1a2e05;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 12px 36px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-duration: 0.75s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Ambient */
.page-grid {
  display: none;
}

.page-glow {
  display: none;
}

main, .nav { position: relative; z-index: 1; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}

.nav.is-scrolled {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.nav-inner {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 0.65rem 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s var(--ease);
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-wordmark {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.25s var(--ease);
}

.logo-link:hover .logo-wordmark {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1.5px;
  background: var(--accent-dim);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0 1.15rem;
  margin-left: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--on-accent);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease),
    filter 0.25s var(--ease);
}

.btn-demo:hover {
  background: var(--accent-dim);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}

.btn-demo:active {
  background: var(--accent-dim);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.btn-demo--lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.9375rem;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-demo { margin-left: 0; margin-top: 0.5rem; width: 100%; }
}

/* Hero */
.hero {
  --glow-x: 70%;
  --glow-y: 35%;
  padding: 7.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.12fr);
  gap: clamp(2.5rem, 5vw, 4.25rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero-visual { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-dim);
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.gradient-line {
  color: var(--accent-dim);
}

.hero-lead {
  font-size: 1.065rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  margin-bottom: 0;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--muted2);
  line-height: 1.5;
  max-width: 22rem;
  margin: 0;
}

/* Hero product mocks — grid layout (no overlapping clutter) */
.hero-visual {
  padding: 0;
  overflow: visible;
}

.hero-mock-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 270px);
  gap: 1.25rem;
  align-items: start;
}

.hero-mock-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-mock-primary .mock-card,
.hero-mock-column .mock-card {
  position: relative;
  width: 100%;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  opacity: 1;
}

.hero-mock-primary .mock-card {
  box-shadow: var(--shadow-card);
}

.hero-visual--float {
  animation: none;
}

@media (max-width: 1024px) {
  .hero-grid { align-items: start; }
  .hero-mock-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease-spring);
}

.mock-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.mock-card--compact .mock-body {
  padding: 0.85rem 0.95rem 1rem;
}

.mock-card--compact .bubble:last-child {
  margin-bottom: 0;
}

.mock-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 244, 245, 0.9);
}

.mock-tab {
  flex: 1;
  padding: 0.65rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-align: center;
  color: var(--muted2);
  border-bottom: 2px solid transparent;
}

.mock-tab.is-on {
  color: var(--text);
  border-bottom-color: var(--text);
  background: transparent;
}

.mock-body { padding: 1rem 1.1rem 1.15rem; }

.mock-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mock-person {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-accent);
  flex-shrink: 0;
}

.mock-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 0.65rem;
}

.mock-person strong { display: block; font-size: 0.88rem; }
.mock-person span { font-size: 0.72rem; color: var(--muted2); }

.mock-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; }

.pill {
  font-size: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  border: 1px solid var(--border);
}

.pill--accent {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--muted);
}

.mock-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 8px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  box-shadow: none;
}

.mock-btn:hover {
  background: var(--accent-dim);
}

.mock-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.mock-time { margin-left: auto; font-size: 0.7rem; color: var(--muted2); font-variant-numeric: tabular-nums; }

.bubble {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.bubble--user {
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.bubble--ai {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}

.bubble--ai .warn { color: #f87171; font-weight: 500; margin: 0.35rem 0; }

.bubble--tight {
  font-size: 0.7rem;
  line-height: 1.42;
  padding: 0.55rem 0.65rem;
}

/* Integrations */
.integrations-band {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 6vw, 4.75rem);
  padding: 2.25rem 0 2.85rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.integrations-band .container { text-align: center; }

.integrations-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted2);
  margin-bottom: 1.85rem;
  padding: 0 0.5rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-track img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.15) brightness(1.08);
  transition: opacity 0.2s;
}

.marquee-track img:hover { opacity: 1; }

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section--alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-head h2 em {
  font-style: italic;
  color: inherit;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}

@media (max-width: 720px) { .stat-row { grid-template-columns: 1fr; } }

.stat-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease-spring);
}

.stat-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.stat-card .num {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-card .lbl {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stat-card .sub {
  font-size: 0.8rem;
  color: var(--muted2);
  line-height: 1.4;
}

.disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted2);
  max-width: 36rem;
  margin: 0 auto;
}

/* Tabs */
.tab-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-strip button {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease-spring);
}

.tab-strip button:hover { color: var(--text); border-color: rgba(148, 163, 184, 0.25); }

.tab-strip button.is-active {
  color: var(--on-accent);
  background: var(--accent);
  border-color: transparent;
  box-shadow: none;
}

.tab-panels { position: relative; min-height: 120px; }

.tab-panel {
  display: none;
  animation: fadeUp 0.45s var(--ease);
}

.tab-panel.is-active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.role-blurb {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Workflow */
.workflow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
}

.workflow-step {
  flex: 0 0 168px;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.45s var(--ease-spring);
}

.workflow-step:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.workflow-step--hi {
  border-color: rgba(15, 23, 42, 0.14);
}

.workflow-ico {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 8px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.workflow-step h3 {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.workflow-step p {
  font-size: 0.68rem;
  color: var(--muted2);
  line-height: 1.45;
}

.workflow-line {
  flex: 0 0 28px;
  align-self: center;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  opacity: 1;
  margin: 0 0.15rem;
}

@media (max-width: 900px) {
  .workflow { justify-content: flex-start; padding-bottom: 0.5rem; }
}

/* Coaching split */
.coach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) { .coach-split { grid-template-columns: 1fr; } }

.coach-copy h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.coach-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.coach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.coach-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted2);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.coach-mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.4s var(--ease),
    box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease-spring);
}

.coach-mock:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.coach-mock-h {
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: rgba(244, 244, 245, 0.95);
}

.coach-mock-b { padding: 1rem 1.1rem; }

.score-rows { display: flex; flex-direction: column; gap: 0.65rem; }

.score-row {
  display: grid;
  grid-template-columns: 100px 1fr 36px;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.score-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.mock-chat .bubble { margin-bottom: 0.5rem; }

.insight {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
  border: 1px solid var(--border);
  background: rgba(248, 113, 113, 0.06);
  color: #fca5a5;
}

.insight--ok {
  background: rgba(52, 211, 153, 0.06);
  border-color: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
}

.chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 120px;
  padding-top: 0.5rem;
}

.chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent);
  opacity: 0.8;
  min-height: 18%;
  position: relative;
}

.chart span i {
  position: absolute;
  bottom: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-style: normal;
  color: var(--muted2);
}

/* Pipeline grid */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pipeline-grid .pipe-card:nth-child(4),
.pipeline-grid .pipe-card:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 721px) {
  .pipeline-bottom-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
    max-width: 66.666%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pipeline-grid { grid-template-columns: 1fr; }
}

.pipe-card {
  padding: 1.65rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s var(--ease-spring),
    border-color 0.35s var(--ease),
    box-shadow 0.4s var(--ease);
}

.pipe-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.pipe-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.pipe-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.pipe-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Enterprise */
.ent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) { .ent-grid { grid-template-columns: 1fr; } }

.ent-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease-spring);
}

.ent-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
}

.ent-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ent-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  border-radius: 12px;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: background 0.35s var(--ease), color 0.25s var(--ease);
}

.faq-q:hover {
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
}

.faq-q span.ico {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.45s var(--ease-spring);
  flex-shrink: 0;
}

.faq-item.open .faq-q span.ico { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}

.faq-item.open .faq-a { max-height: 320px; }

.faq-a p {
  padding-bottom: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  display: none;
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted2);
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-meta a:hover {
  color: var(--accent-dim);
}

.footer-meta span {
  font-size: 0.8rem;
  color: var(--muted2);
}

@media (max-width: 640px) {
  .footer-meta { text-align: left; }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  z-index: 201;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(100% - 1.5rem, 540px);
  max-height: min(90vh, 760px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease),
    transform 0.5s var(--ease-spring);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-raised);
}

.modal-header h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  font-family: inherit;
  transition: background 0.3s var(--ease), transform 0.25s var(--ease);
}

.modal-close:hover {
  background: rgba(15, 23, 42, 0.1);
}

.modal-body {
  flex: 1;
  min-height: 540px;
  overflow: hidden;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

body.modal-open { overflow: hidden; }

.cursor-glow--hero {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Scroll-triggered reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--reveal-duration) var(--ease),
    transform var(--reveal-duration) var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.14s;
}

.cta-band h2,
.cta-band p,
.cta-band .btn-demo {
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease-spring);
}

.integrations-band {
  transition: background 0.5s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-visual--float,
  .marquee-track {
    animation: none !important;
  }

  .cursor-glow--hero {
    display: none;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .tab-panel.is-active {
    animation: none !important;
  }

  .modal-close:hover {
    transform: none;
  }
}
