/* ============================================================
   RevenueBench — main stylesheet (matches approved Lovable design)
   ============================================================ */
:root {
  --ink: #0b1220;
  --ink-2: #0e1830;
  --primary: #4c5fea;
  --primary-dark: #3a4bd4;
  --mint: #6ef0da;
  --mint-ink: #083b34;
  --mist: #eaf2ff;
  --mist-2: #f4f8ff;
  --line: #e1e8f7;
  --muted: #64748b;
  --muted-onDark: #cde0f9;
  --white: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 60, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 14, 40, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}
body,
input,
textarea,
select,
button {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
p {
  margin: 0 0 1em 0;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img,
svg {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

.wrap,
.site-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.eyebrow-inverse {
  color: var(--mint);
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
}
section {
  padding: 100px 0;
}
section.tight {
  padding: 70px 0;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover svg {
  transform: translateX(3px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(76, 95, 234, 0.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(76, 95, 234, 0.4);
}
.btn-header {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: none;
}
.btn-header:hover {
  background: #5ce6cc;
  color: var(--mint-ink);
}
.btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-white {
  background: #fff;
  color: var(--primary-dark);
}
.btn-white:hover {
  background: #eef2ff;
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: 76px;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.brand-symbol {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  position: relative;
}
.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.brand-symbol::before {
  width: 14px;
  height: 2.4px;
}
.brand-symbol::after {
  width: 2.4px;
  height: 14px;
}
.brand-mark-inverse {
  color: #fff;
}
.text-primary {
  color: var(--primary);
}
.text-footer-accent {
  color: var(--mint);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li {
  list-style: none;
}
.nav-link,
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
  display: inline-block;
}
.nav-link::after,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  transition: right 0.2s ease;
}
.nav-link:hover,
.nav-links a:hover {
  color: var(--ink);
}
.nav-link:hover::after,
.nav-link.is-active::after,
.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links .current-menu-item > a::after {
  right: 0;
}
.nav-link.is-active,
.nav-links a.is-active,
.nav-links .current-menu-item > a {
  color: var(--ink);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Dot-grid + hero */

.dot-grid {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
}
/* Hero with optional background photo */
.hero-band {
  position: relative;
  overflow: hidden;
  background-color: oklch(23.6% 0.067 260.9);
  color: #fff;
  padding: 96px 0 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #040714b5;
}
.hero-band:not(.has-bg) .hero-overlay {
  background:
    radial-gradient(rgba(255, 255, 255, 0.28) 1.6px, transparent 1.6px) 0 0/26px
      26px,
    linear-gradient(
      180deg,
      oklch(23.6% 0.067 260.9) 0%,
      oklch(14% 0.05 260.9) 100%
    );
}
.hero-band .site-container {
  position: relative;
  z-index: 2;
}
.hero-glow {
  filter: blur(30px);
  background: radial-gradient(circle, oklch(88% 0.12 196 / 0.36), #0000 66%);
  height: 560px;
  position: absolute;
  inset: auto -10% -50% 32%;
  pointer-events: none;
  z-index: 1;
}
.hero-band h1 {
  color: #fff;
  font-size: 75px;
  max-width: 640px;
  font-weight: 700;
  line-height: 0.98;
}
.hero-band .hero-copy {
  color: var(--muted-onDark);
  font-size: 18px;
  max-width: 560px;
}
.hero-band.hero-sm {
  padding: 72px 0 90px;
}
.hero-band .eyebrow.center,
.hero-band .hero-copy.center {
  margin-left: auto;
  margin-right: auto;
}

/* Zigzag alternating section (Home — More Sales Capacity) */
.capacity-zigzag {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--mist-2) 100%);
}
.zigzag-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.zigzag-row:last-of-type {
  border-bottom: none;
}
.zigzag-num {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  flex: none;
  width: 110px;
  line-height: 1;
  transition:
    color 0.3s ease,
    -webkit-text-stroke 0.3s ease;
}
.zigzag-row:hover .zigzag-num {
  color: var(--primary);
  -webkit-text-stroke: 0;
}
.zigzag-text h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.zigzag-text p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  max-width: 520px;
}

/* Slide-in reveal animations (used alongside .reveal-up) */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 720px) {
  .hero-band h1 {
    font-size: 32px;
  }
  .zigzag-row {
    gap: 18px;
  }
  .zigzag-num {
    font-size: 38px;
    width: 60px;
  }
}
/* .hero-band.hero-sm h1{font-size:40px;} */

/* Floating network stage (reused across hero sections) */
.network-stage {
  position: relative;
  height: 420px;
}
.network-stage svg path {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.4;
  fill: none;
}
.network-stage svg circle {
  fill: rgba(255, 255, 255, 0.35);
}
.network-stage.stage-sm {
  height: 300px;
}

.profile-card,
.match-card,
.engagement-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  animation: float 6s ease-in-out infinite;
}
.profile-card {
  top: 8%;
  right: 0;
  width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: 0s;
}
.match-card {
  top: 36%;
  left: 0;
  width: 220px;
  animation-delay: 0.6s;
}
.engagement-card {
  bottom: 6%;
  right: 14%;
  width: 250px;
  animation-delay: 1.1s;
}
.network-stage.stage-sm .profile-card {
  width: 220px;
  top: 2%;
  right: 0;
}
.network-stage.stage-sm .match-card {
  top: 38%;
  left: 0;
  width: 200px;
}
.network-stage.stage-sm .engagement-card {
  bottom: 2%;
  right: 6%;
  width: 230px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.avatar-orb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
}
.profile-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.profile-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.match-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.score-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: conic-gradient(var(--primary) 94%, var(--mist) 0);
}
.score-ring span {
  font-size: 10px;
  font-weight: 600;
}
.match-card > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}
.match-card strong {
  font-size: 14.5px;
  display: block;
}
.match-card span {
  font-size: 12px;
  color: var(--muted);
}

.live-pill {
  background: #dcfce7;
  color: #16a34a;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}
.engagement-card strong {
  display: block;
  font-size: 14.5px;
  margin: 6px 0 10px;
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  margin-bottom: 10px;
}
.mini-chart i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #8fa8ff, var(--primary));
  display: block;
  font-style: normal;
}
.mini-chart i:nth-child(1) {
  height: 38%;
}
.mini-chart i:nth-child(2) {
  height: 58%;
}
.mini-chart i:nth-child(3) {
  height: 46%;
}
.mini-chart i:nth-child(4) {
  height: 78%;
}
.mini-chart i:nth-child(5) {
  height: 100%;
}
.engagement-card .flex {
  display: flex;
}
.engagement-card .justify-between {
  justify-content: space-between;
  align-items: center;
}
.engagement-card > div:last-child span:last-child {
  color: var(--primary);
  font-weight: 700;
}

.platform-chip {
  position: absolute;
  left: 10%;
  bottom: -8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.platform-chip svg {
  width: 14px;
  height: 14px;
  color: var(--mint);
}

/* Section heading */
.section-heading {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-heading p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 14px;
}
.bg-section-alt {
  background: var(--mist-2);
}

/* Feature cards */
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd8f7;
}
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--mist);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.icon-box svg {
  width: 20px;
  height: 20px;
}
.feature-card:hover .icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: var(--primary);
  color: #fff;
}
.card-index {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #b8c4e8;
}
.feature-card h3 {
  font-size: 17.5px;
  margin: 16px 0 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
.closing-line {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin-top: 36px;
  font-weight: 600;
}

/* Stat cards */
.stat-card {
  background: var(--mist);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 26px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.stat-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.stat-card strong {
  display: block;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
}
.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

/* Step flow (connecting line) */
.step-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 6px;
}
.step-flow::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--line);
}
.step-flow .step-item {
  position: relative;
  z-index: 1;
  text-align: left;
  flex: 1;
  padding-right: 20px;
}
.step-flow .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(76, 95, 234, 0.3);
}
.step-flow .step-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.step-flow .step-item p {
  color: var(--muted);
  font-size: 14px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num-outline {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--mist);
}
.step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
}

/* Checklist */
.checklist {
  display: grid;
  gap: 12px 28px;
}
.checklist.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.check-item svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex: none;
  margin-top: 2px;
}

/* Callout */
.callout {
  background: var(--mist);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14.5px;
}

/* Comparison table */
table.compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
table.compare thead tr {
  background: var(--ink);
}
table.compare th {
  color: #fff;
  text-align: left;
  padding: 18px 24px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
}
table.compare td {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
table.compare tbody tr:hover {
  background: var(--mist-2);
}
table.compare td.yes {
  color: var(--ink);
  font-weight: 600;
  display: flex;
  justify-content: start;
  align-items: center;
}
table.compare td.yes svg {
  width: 15px;
  height: 15px;
  color: #16a34a;
  margin-right: 6px;
  vertical-align: -2px;
}

/* Industry pills */
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-right: 28px;
  margin-bottom: 12px;
}
.check-pill svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    oklch(23.6% 0.067 260.9),
    oklch(50% 0.265 267) 62%,
    var(--primary)
  );
  color: #fff;
  border-radius: 28px;
  padding: 70px 40px;
}
.cta-band h2 {
  color: #fff;
  font-size: 34px;
}
.cta-band p {
  color: #cbd5f5;
}
.cta-band .btn-row {
  justify-content: center;
  margin-top: 26px;
}
.cta-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: #b9c6f0;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--ink);
}
.faq-q .chev {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex: none;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 420px;
}
.faq-a p {
  color: var(--muted);
  padding-bottom: 22px;
  margin: 0;
  font-size: 14.5px;
}

/* Form */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  appearance: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'><path d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 95, 234, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.thanks {
  display: none;
  text-align: center;
  padding: 50px 30px;
}
.thanks h2 {
  font-size: 28px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--muted-onDark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  border-bottom: 1px solid #1e2a4d;
  padding: 56px 0 40px;
  align-items: start;
}
.footer-muted {
  color: var(--muted-onDark);
  font-size: 14px;
  max-width: 340px;
  margin-top: 14px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  font-size: 14.5px;
}
.footer-nav a {
  color: var(--muted-onDark);
  transition: color 0.15s ease;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .links {
  display: flex;
  gap: 20px;
}

/* Utility */
.mt-8 {
  margin-top: 32px;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
  align-items: center;
}

/* Icon row list (divided horizontal rows — alt to card grids) */
.icon-row-list {
  border-top: 1px solid var(--line);
}
.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}
.icon-row:hover {
  background: var(--mist-2);
  padding-left: 14px;
}
.icon-row:last-child {
  border-bottom: none;
}
.icon-row .icon-box {
  flex: none;
}
.icon-row-text h3 {
  font-size: 17.5px;
  margin-bottom: 6px;
}
.icon-row-text p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* Chip / tab strip (compact alt to card grid, e.g. engagement models) */
.chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.chip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.chip-item .icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.chip-item .icon-box svg {
  width: 15px;
  height: 15px;
}
.chip-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: var(--mist);
}

/* Vertical connected timeline (How It Works) */
.timeline-v {
  position: relative;
}
.timeline-v::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--line) 90%);
}
.timeline-node {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
}
.timeline-node:first-child {
  padding-top: 0;
}
.timeline-node:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(76, 95, 234, 0.32);
  transition: transform 0.25s ease;
}
.timeline-node:hover .timeline-dot {
  transform: scale(1.08);
}
.timeline-body {
  flex: 1;
  padding-top: 8px;
}
.timeline-body h2 {
  font-size: 26px;
}

/* Stat strip (big-number highlight band) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.stat-strip-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.stat-strip-item:last-child {
  border-right: none;
}
.stat-strip-item:hover {
  background: var(--mist-2);
  transform: translateY(-3px);
}
.stat-strip-num {
  display: block;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 6px;
}
.stat-strip-label {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
}

/* Split media (icon/graphic panel + text, alternating) */
.split-media {
  display: flex;
  align-items: center;
  gap: 56px;
}
.split-media.is-reverse {
  flex-direction: row-reverse;
}
.split-media-visual {
  flex: none;
  width: 260px;
  height: 260px;
  border-radius: 28px;
  position: relative;
  background: linear-gradient(135deg, var(--mist), var(--mist-2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.split-media-visual .icon-box {
  width: 84px;
  height: 84px;
  border-radius: 20px;
}
.split-media-visual .icon-box svg {
  width: 38px;
  height: 38px;
}
.split-media-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed var(--line);
  border-radius: 20px;
  pointer-events: none;
}
.split-media-content {
  flex: 1;
}

@media (max-width: 960px) {
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat-strip-item:nth-child(2) {
    border-right: none;
  }
  .split-media,
  .split-media.is-reverse {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .split-media-visual {
    margin: 0 auto;
  }
}
@media (max-width: 720px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat-strip-item:last-child {
    border-bottom: none;
  }
  .timeline-v::before {
    left: 23px;
  }
  .timeline-dot {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  .timeline-node {
    gap: 18px;
  }
}

/* Scroll reveal animation */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .network-stage {
    height: 340px;
  }
  .hero-band .site-container {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 720px) {
  .site-container.sales_built_wrapper {
    grid-template-columns: 1fr !important;
    gap: 0px !important;
  }
  .wrap,
  .site-container {
    padding: 0 20px;
  }
  section {
    padding: 64px 0;
  }
  .hero-band {
    padding: 56px 0 64px;
  }
  .hero-band h1 {
    font-size: 32px;
  }
  .nav-links,
  .nav-right .btn-header {
    display: none;
  }
  .burger {
    display: block;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .field-row,
  .checklist.cols-2,
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .step-flow {
    flex-direction: column;
    gap: 24px;
  }
  .step-flow::before {
    display: none;
  }
  .cta-band {
    padding: 44px 24px;
    border-radius: 20px;
  }
  .cta-band h2 {
    font-size: 26px;
  }
  .network-stage {
    display: none;
  }
  .site-header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.menu-open .nav-right .btn-header {
    display: inline-flex;
  }
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
