/* ── HOME PAGE — LOCAL STYLES ──────────────────────────── */

/* HERO */
.home-hero {
  padding: calc(var(--nav-h) + 15px) 0 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(22, 192, 239, 0.1) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(22, 192, 239, 0.12) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.45;
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 64px;
}
.home-hero-inner .eyebrow {
  margin-bottom: 24px;
}
.home-hero-inner h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.home-hero-inner h1 em {
  font-style: italic;
  color: var(--cyan-dark);
}
.home-hero-inner h1 .h1-violet {
  color: var(--violet-dark);
}
.hero-sub {
  max-width: 660px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust span::before {
  content: "✓ ";
  color: var(--emerald);
}

/* Platform module strip */
.platform-strip {
  background: var(--bg-snow);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.strip-modules {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.sm-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all 0.18s;
}
.sm-card:hover,
.sm-card.active {
  border-color: var(--cyan);
  background: var(--cyan-pale);
  box-shadow: 0 4px 16px rgba(22, 192, 239, 0.15);
  transform: translateY(-2px);
}
.sm-icon {
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.sm-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* WHO SECTION — audience cards */
.who-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.who-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.who-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.who-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.who-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}
.who-link:hover {
  gap: 7px;
}

/* FEATURE DEEP-DIVE SECTIONS */
.feature-section {
  padding: 80px 0;
}

/* SOCIAL PROOF STRIP */
.proof-strip {
  background: var(--ink);
  padding: 28px 0;
}
.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
  padding: 8px 44px;
}
.proof-val {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.proof-val span {
  color: var(--cyan);
}
.proof-lbl {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 4px;
}
.proof-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* INTEGRATION LOGOS */
.int-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.int-logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-snow);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
}
.int-logo-chip:hover {
  border-color: var(--cyan);
  background: var(--cyan-pale);
}

/* TAX FEATURE CALLOUT */
.tax-callout {
  background: linear-gradient(
    135deg,
    var(--amber-pale) 0%,
    var(--bg-white) 60%
  );
  border: 1.5px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
}

/* PROFESSIONAL CARD GRID */
.pro-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.pro-type-card {
  background: var(--bg-snow);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.18s;
}
.pro-type-card:hover {
  border-color: var(--indigo);
  background: var(--indigo-pale);
}
.pro-type-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.pro-type-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.pro-type-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .strip-modules {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  .strip-modules {
    grid-template-columns: repeat(4, 1fr);
  }
  .pro-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-sep {
    display: none;
  }
  .proof-item {
    padding: 8px 20px;
  }
}
@media (max-width: 480px) {
  .strip-modules {
    grid-template-columns: repeat(3, 1fr);
  }
  .pro-type-grid {
    grid-template-columns: 1fr 1fr;
  }
}
