/* Spacing tweaks layered on top of styles.css. Keep the design CSS untouched. */

/* Tighten the gap between the hero and the section that follows it. */
.hero + .section { padding-top: 56px; }
.hero { padding-bottom: 48px !important; }

@media (max-width: 1024px) {
  .hero { padding-bottom: 32px !important; }
  .hero + .section { padding-top: 32px; }
}
@media (max-width: 768px) {
  .hero { padding: 110px 0 32px !important; }
  .hero + .section { padding-top: 24px; }

  /* Long CTAs (e.g. "Schedule Consultation to Discuss Your Needs") overflow
     the viewport because .btn defaults to white-space: nowrap. Let them wrap
     on narrow screens. */
  .btn {
    white-space: normal !important;
    text-align: center;
    max-width: 100%;
    line-height: 1.3;
  }
  .services-footer .btn,
  .cta-buttons .btn,
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Hero RIGHT side — boxless animated proof rotator
   Floating text on the navy hero-bg. No card, no border.
   Auto-rotates every ~6s, fades crossfade.
   ============================================ */

/* Make the navy diagonal extend a bit further left so all the right-column
   text always sits over navy (white text on white bg = invisible otherwise). */
.hero-bg {
  width: 60% !important;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%) !important;
}

.hero-proof {
  position: relative;
  color: #fff;
  padding: 8px 0 8px 24px;
  max-width: 400px;
  margin-left: auto;
  width: 100%;
}

/* "Recent wins" eyebrow with green pulse */
.hero-proof-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}

.hero-proof-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: hohPulse 2.2s ease-out infinite;
}
@keyframes hohPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  60%  { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Stage stacks slides on top of each other */
.hero-proof-stage {
  position: relative;
  display: grid;
  min-height: 240px;
}

.hero-proof-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.hero-proof-slide.is-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

/* Big rotating stat */
.hero-proof-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.hero-proof-stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-proof-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
}

/* Tiny progress dots */
.hero-proof-dots {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.hero-proof-dot {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.18);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-proof-dot:hover { background: rgba(255,255,255,0.32); }
.hero-proof-dot.is-active { background: var(--red); width: 36px; }

/* ============================================
   Tablet + mobile: stack columns; right side gets navy backdrop
   The hero-bg navy diagonal is hidden on mobile, so wrap the proof
   rotator in its own subtle navy panel for readability.
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr !important; gap: 36px !important; }
  .hero-bg { display: none !important; }

  .hero-proof {
    background: linear-gradient(180deg, #38387F 0%, #2a2a64 100%);
    border-radius: 18px;
    padding: 28px 24px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 12px 32px -8px rgba(56,56,127,0.32);
  }
  .hero-proof-stage { min-height: 200px; }
}

@media (max-width: 480px) {
  .hero-proof { padding: 24px 20px; }
  .hero-proof-stat { font-size: 2.4rem; }
  .hero-proof-body { font-size: 0.95rem; }
}

/* About subsection styling (added when the live-site sub_headline + subsections model is used) */
.about-subheadline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem !important;
  color: var(--navy) !important;
  margin: 8px 0 24px !important;
  line-height: 1.4 !important;
}
.about-subheading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 6px;
  line-height: 1.35;
}

/* =====================================================
   PRODUCT PAGES — high-end software product page styling
   ===================================================== */

/* Hero — split layout with optional video/image visual on the right */
.product-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #38387F 0%, #2a2a64 100%);
  color: #fff;
  overflow: hidden;
}
.product-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,27,32,0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.product-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.product-hero .container { position: relative; z-index: 1; }
.product-hero .breadcrumb { margin-bottom: 24px; }
.product-hero .section-label { color: rgba(244,27,32,0.95); }
.product-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.product-hero.has-visual .product-hero-grid { grid-template-columns: 1.05fr 1fr; }

.product-hero-tagline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 32px;
}

.product-hero .hero-buttons { margin-bottom: 40px; }
.product-hero .btn-primary { box-shadow: 0 12px 28px -8px rgba(244,27,32,0.5); }
.product-hero .btn-ghost { color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.35); }
.product-hero .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.product-hero-metrics {
  display: flex; gap: 32px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.product-hero-metric {
  display: flex; flex-direction: column;
}
.product-hero-metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.product-hero-metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.product-hero-visual {
  position: relative;
}
.product-hero-visual img,
.product-hero-visual video {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  background: #1a1a2e;
}
.product-hero-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  background: #000;
}
.product-hero-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Overview section */
.product-overview { padding: 80px 0 0; }
.product-overview .service-overview { max-width: 760px; margin: 0 auto; }
.product-overview .service-overview p { font-size: 1.08rem; line-height: 1.8; color: var(--text-body); margin-bottom: 18px; }

/* Benefits — dark navy band with cards */
.product-benefits {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.product-benefits::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 70%; height: 160%;
  background: radial-gradient(circle, rgba(244,27,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.product-benefits .container { position: relative; z-index: 1; }
.product-benefits .section-label { color: rgba(244,27,32,0.95); }
.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .product-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .product-benefits-grid { grid-template-columns: 1fr; } }

.product-benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
}
.product-benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.product-benefit-icon {
  width: 56px; height: 56px;
  background: rgba(244,27,32,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product-benefit-icon svg { width: 26px; height: 26px; color: var(--red); }
.product-benefit-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.product-benefit-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* Mid-page video section */
.product-video-section { padding: 100px 0; }
.product-video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(56,56,127,0.3), 0 0 0 1px var(--border);
  background: #000;
}
.product-video-frame iframe,
.product-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Features — alternating image/text rows when images present */
.product-features { padding: 100px 0; }
.product-feature-stack {
  display: flex; flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}
.product-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-feature-row.is-flipped > .product-feature-text { order: 2; }
.product-feature-row.is-flipped > .product-feature-visual { order: 1; }
@media (max-width: 900px) {
  .product-feature-row, .product-feature-row.is-flipped { grid-template-columns: 1fr; gap: 24px; }
  .product-feature-row.is-flipped > .product-feature-text,
  .product-feature-row.is-flipped > .product-feature-visual { order: 0; }
}
.product-feature-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.product-feature-text h3 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.product-feature-text p { font-size: 1.02rem; line-height: 1.75; color: var(--text-body); }
.product-feature-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(56,56,127,0.28), 0 0 0 1px var(--border);
  background: #fff;
}
.product-feature-visual img { width: 100%; display: block; }
.product-feature-placeholder {
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f6f9, #e2e6ee);
  color: rgba(56,56,127,0.3);
  border: 1px dashed var(--border);
}

/* How it works */
.product-how { padding: 100px 0; background: var(--white); }
.product-how-steps {
  max-width: 820px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.product-how-steps::before {
  content: '';
  position: absolute;
  left: 30px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(244,27,32,0.1) 100%);
}
.product-how-step {
  display: flex; gap: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.product-how-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(244,27,32,0.5);
}
.product-how-text h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product-how-text p { font-size: 0.95rem; line-height: 1.65; color: var(--text-body); }

/* Integrations */
.product-integrations { padding: 80px 0; }
.product-integrations-list {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 800px; margin: 0 auto;
}
.product-integration-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
}
.product-integration-item a { color: var(--navy); text-decoration: none; }
.product-integration-item:hover { border-color: var(--red); color: var(--red); }
.product-integration-item:hover a { color: var(--red); }

/* Gallery */
.product-gallery { padding: 100px 0; }
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 768px) { .product-gallery-grid { grid-template-columns: 1fr; } }
.product-gallery-item {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(56,56,127,0.22), 0 0 0 1px var(--border);
  background: #fff;
}
.product-gallery-item img { width: 100%; display: block; }

/* Pricing */
.product-pricing-card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(56,56,127,0.18);
}
.product-pricing-card .section-label { display: inline-block; }
.product-pricing-card h2 { margin-bottom: 16px; }
.product-pricing-card p {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-body);
  max-width: 520px; margin: 0 auto 28px;
}

/* FAQ section reuses existing .faq-list / .faq-item styles */
.product-faq { padding: 100px 0; }

/* Mobile niceties */
@media (max-width: 768px) {
  .product-hero { padding: 110px 0 56px; }
  .product-hero h1 { font-size: 2.2rem; }
  .product-hero-tagline { font-size: 1rem; }
  .product-benefits { padding: 64px 0; margin-top: 48px; }
  .product-features { padding: 64px 0; }
  .product-how { padding: 64px 0; }
  .product-pricing-card { padding: 32px 24px; }
}

/* ============================================
   About Process Flow — staggered entrance + cycling highlight
   The numbered steps in the navy "about-graphic" panel.
   ============================================ */

/* Initial state — hidden + slightly offset to the left */
.about-flow-step {
  opacity: 0;
  transform: translateX(-14px);
}

/* When the parent .reveal becomes visible (existing IntersectionObserver),
   each step staggers in. */
.reveal.visible .about-flow-step {
  animation: hohFlowStepIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.reveal.visible .about-flow-step:nth-child(1) { animation-delay: 0.05s; }
.reveal.visible .about-flow-step:nth-child(2) { animation-delay: 0.18s; }
.reveal.visible .about-flow-step:nth-child(3) { animation-delay: 0.31s; }
.reveal.visible .about-flow-step:nth-child(4) { animation-delay: 0.44s; }
.reveal.visible .about-flow-step:nth-child(5) { animation-delay: 0.57s; }

@keyframes hohFlowStepIn {
  to { opacity: 1; transform: translateX(0); }
}

/* After entrance, run a subtle cycling highlight that travels through
   the numbered circles like a pulse moving down the pipeline. */
.reveal.visible .about-flow-num {
  animation: hohFlowNumPulse 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.reveal.visible .about-flow-step:nth-child(1) .about-flow-num { animation-delay: 1.5s; }
.reveal.visible .about-flow-step:nth-child(2) .about-flow-num { animation-delay: 2.9s; }
.reveal.visible .about-flow-step:nth-child(3) .about-flow-num { animation-delay: 4.3s; }
.reveal.visible .about-flow-step:nth-child(4) .about-flow-num { animation-delay: 5.7s; }
.reveal.visible .about-flow-step:nth-child(5) .about-flow-num { animation-delay: 7.1s; }

@keyframes hohFlowNumPulse {
  0%, 100% {
    background: rgba(244, 27, 32, 0.2);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 27, 32, 0);
  }
  8% {
    background: #F41B20;
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(244, 27, 32, 0.15);
  }
  18% {
    background: rgba(244, 27, 32, 0.2);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 27, 32, 0);
  }
}

/* Subtle text brightening on the active step */
.reveal.visible .about-flow-text {
  animation: hohFlowTextHighlight 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.reveal.visible .about-flow-step:nth-child(1) .about-flow-text { animation-delay: 1.5s; }
.reveal.visible .about-flow-step:nth-child(2) .about-flow-text { animation-delay: 2.9s; }
.reveal.visible .about-flow-step:nth-child(3) .about-flow-text { animation-delay: 4.3s; }
.reveal.visible .about-flow-step:nth-child(4) .about-flow-text { animation-delay: 5.7s; }
.reveal.visible .about-flow-step:nth-child(5) .about-flow-text { animation-delay: 7.1s; }

@keyframes hohFlowTextHighlight {
  0%, 100% { color: rgba(255, 255, 255, 0.85); }
  10%      { color: rgba(255, 255, 255, 1); }
  20%      { color: rgba(255, 255, 255, 0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .about-flow-step { opacity: 1; transform: none; }
  .reveal.visible .about-flow-step,
  .reveal.visible .about-flow-num,
  .reveal.visible .about-flow-text { animation: none; }
}

/* =====================================================
   MOBILE + HIGH-END POLISH PASS
   ===================================================== */

/* Balanced headline wrapping — no orphan words on hero/section titles */
h1, h2, .section-headline, .product-hero-tagline { text-wrap: balance; }

/* --- Mobile nav fixes --- */
/* The CTA inside the mobile overlay inherited navy link color; restore
   button contrast (white on red). */
.mobile-nav a.btn-primary { color: var(--white); }

/* Hamburger is now a <button> — strip UA styles and give it a real
   44px tap target. */
button.nav-hamburger {
  background: none;
  border: 0;
  padding: 10px;
  margin: -10px;
}

/* Hamburger → X when the menu is open */
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Scroll-reveal: faster + subtler, especially on phones ---
   The original 0.7s / 32px reveal left sections blank for ~a second
   after they entered the viewport. Tighten globally, and make mobile
   almost immediate (small screens scroll fast). */
.reveal { transform: translateY(20px); transition-duration: 0.55s; }
@media (max-width: 768px) {
  .reveal { transform: translateY(12px); transition-duration: 0.35s; }
  .reveal-delay-1 { transition-delay: 0.05s; }
  .reveal-delay-2 { transition-delay: 0.1s; }
  .reveal-delay-3 { transition-delay: 0.15s; }
  .reveal-delay-4 { transition-delay: 0.2s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- iOS: inputs under 16px trigger zoom-on-focus --- */
@media (max-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
}

/* --- Product hero metrics: compact 3-up row on phones --- */
@media (max-width: 640px) {
  .product-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
  }
  .product-hero-metric-value { font-size: 1.15rem; }
  .product-hero-metric-label { font-size: 0.72rem; line-height: 1.35; }
}

/* --- Suite index: product cards --- */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px) { .suite-grid { grid-template-columns: 1fr; max-width: 620px; } }

.suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  transition: var(--transition);
  overflow: hidden;
}
/* Card visual: the product's hero poster, cover-cropped. */
.suite-card-mini {
  display: block;
  height: 216px;
  overflow: hidden;
  position: relative;
  background: #23234f;
}
.suite-card-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 35%; /* favor the poster's brand + headline band */
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.suite-card:hover .suite-card-mini img { transform: scale(1.05); }
/* soft bottom fade into the card body */
.suite-card-mini::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(20,20,47,0.45));
  pointer-events: none;
}

/* Firm card body: locked proportions, pinned link */
.suite-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 26px 24px;
}
.suite-card-num { margin-bottom: 8px; }
.suite-card-body h3 { font-size: 1.3rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.suite-card-tag {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.suite-card-body .service-link {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Teaser card for future apps */
.suite-card--teaser {
  border-style: dashed;
  border-color: rgba(56,56,127,0.3);
  background: rgba(56,56,127,0.03);
  justify-content: center;
}
.suite-card--teaser:hover { transform: none; box-shadow: none; border-color: rgba(56,56,127,0.5); }
.suite-card--teaser:hover::before { opacity: 0; }
.suite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(244,27,32,0.35));
  opacity: 0;
  transition: var(--transition);
}
.suite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -18px rgba(56,56,127,0.25);
  border-color: rgba(56,56,127,0.25);
}
.suite-card:hover::before { opacity: 1; }

.suite-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.suite-card h3 {
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.suite-card-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 16px;
  line-height: 1.5;
}
.suite-card > p { flex: 1; font-size: 0.96rem; line-height: 1.7; color: var(--text-body); margin-bottom: 20px; }
.suite-card .service-link { margin-top: auto; }

/* --- Suite index: one-price band --- */
.suite-pricing {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 22px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.suite-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(244,27,32,0.16) 0%, transparent 50%);
  pointer-events: none;
}
.suite-pricing > * { position: relative; z-index: 1; }
.suite-pricing .section-label { color: rgba(244,27,32,0.95); }
.suite-pricing h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 8px 0 14px; }
.suite-pricing > p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; line-height: 1.7; }
.suite-pricing-points {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 720px;
}
.suite-pricing-points li {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.suite-pricing-points li svg { color: #22c55e; flex-shrink: 0; }
@media (max-width: 640px) {
  .suite-pricing { padding: 44px 24px; border-radius: 18px; }
}

/* Homepage suite showcase — composite of the three app windows */
.suite-showcase {
  display: block;
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin: 8px auto 56px;
}
@media (max-width: 768px) {
  .suite-showcase { margin-bottom: 36px; }
}

/* =====================================================
   CENTERED HERO — single column, app dashboard front and center
   ===================================================== */
.hero.hero-centered {
  display: block;
  min-height: 0;
  padding: 150px 0 0 !important;
  background: linear-gradient(180deg, #f2f3f9 0%, #e9ebf4 100%);
  position: relative;
  overflow: visible;
}
/* faint blueprint grid across the whole hero canvas — one designed surface
   that holds the headline, CTAs, stats, and the app window together */
.hero.hero-centered::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,56,127,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,56,127,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  pointer-events: none;
}
/* soft brand glow behind the app window */
.hero-glow {
  position: absolute;
  left: 50%; top: 46%;
  width: 1100px; height: 700px;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(56,56,127,0.14) 0%, transparent 70%),
    radial-gradient(closest-side at 30% 30%, rgba(244,27,32,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-centered .container { position: relative; }

.hero-center-text {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered h1 { margin-left: auto; margin-right: auto; }
.hero-centered .hero-description {
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-centered .hero-buttons { justify-content: center; }
.hero-centered .hero-trust {
  justify-content: center;
  gap: 56px;
  border-top: 0;
  margin-top: 40px;
  padding-top: 0;
}

.hero-app {
  max-width: 1080px;
  margin: 56px auto -110px;
  position: relative;
  z-index: 2;
}
/* the dashboard straddles the hero edge and overlaps into the next section,
   tying the two together instead of reading as separate bands */
.hero-centered + .section { padding-top: 210px; }
.hero-app img {
  display: block;
  width: 100%;
  height: auto;
}
/* gentle float-up on load, once revealed */
.hero-app.visible img { animation: hohHeroFloat 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes hohHeroFloat {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@media (max-width: 768px) {
  .hero.hero-centered { padding: 118px 0 0 !important; }
  .hero-centered .hero-trust {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 22px 34px;
    align-items: center !important;
  }
  .hero-app { margin: 36px auto -48px; }
  .hero-centered + .section { padding-top: 110px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-app.visible img { animation: none; }
}

/* =====================================================
   HIGH-END REFINEMENT PASS
   ===================================================== */

/* Brand-tinted selection + visible keyboard focus — small details that read premium */
::selection { background: rgba(244,27,32,0.15); }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(56,56,127,0.45);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Tighter display tracking on big headlines */
.section-headline { letter-spacing: -0.02em; }
.hero-centered h1 { letter-spacing: -0.03em; }
/* the old accent rule was scoped to .hero-text (split layout) — re-apply for
   the centered hero so the tagline's second line carries the brand red */
.hero-centered h1 .accent { color: var(--red); }

/* Primary button: richer depth + spring */
.btn-primary {
  box-shadow: 0 8px 22px -8px rgba(244,27,32,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(244,27,32,0.5);
}
.btn-primary:active { transform: translateY(0); }

/* Service cards: lift + accent sweep on hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(56,56,127,0.22);
  border-color: rgba(56,56,127,0.22);
}

/* Testimonials: oversized quote glyph */
.testimonial-card { position: relative; }
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 6px; right: 20px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(56,56,127,0.08);
  pointer-events: none;
}

/* Hero: compact trust row typography */
.hero-centered .hero-trust-number { font-size: 1.9rem; }
.hero-centered .hero-description { font-size: 1.14rem; }

/* =====================================================
   PRODUCT HERO — real-screenshot treatment
   Text left; live app shot right, framed and cropped off
   the right edge (shows the product without giving all
   of it away). Adapted from the approved reference.
   ===================================================== */
.product-hero .section-label {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(244,27,32,0.4);
  border-radius: 999px;
  background: rgba(244,27,32,0.09);
  font-size: 0.72rem;
  margin-bottom: 18px;
}
/* Small brand mark above the pill — product name as logo line */
.product-brand { margin-bottom: 26px; }
.product-brand-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.product-brand-name em {
  font-style: normal;
  color: #a5b0f5; /* lavender second word, like the reference */
}
.product-brand-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.product-hero h1 .accent { color: var(--red); }

/* Composed hero art: pre-rendered browser-window graphic on transparent bg.
   Large, bleeding off the right edge on desktop. */
.product-hero.has-visual .product-hero-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}
.product-hero.has-visual .product-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
@media (min-width: 1025px) {
  .product-hero.has-visual { overflow: hidden; padding-bottom: 0; }
  .product-hero.has-visual .product-hero-grid { align-items: end; }
  .product-hero.has-visual .product-hero-text { padding-bottom: 80px; }
  .product-hero.has-visual .product-hero-visual {
    margin-right: -12vw;
    align-self: end;
  }
  .product-hero.has-visual .product-hero-visual img {
    width: 116%;
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .product-hero.has-visual { padding-bottom: 0; }
  .product-hero.has-visual .product-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-hero.has-visual .product-hero-visual { margin-right: 0; }
}

/* Reference-style deep indigo canvas with a purple cast top-left */
.product-hero {
  background: linear-gradient(140deg, #33296b 0%, #262258 55%, #1e1b4d 100%);
}
.product-hero-bg {
  background:
    radial-gradient(circle at 12% 10%, rgba(168,85,247,0.20) 0%, transparent 42%),
    radial-gradient(circle at 85% 90%, rgba(244,27,32,0.10) 0%, transparent 45%);
}

/* Proof trio: bold word labels + muted subs, no divider (reference style) */
.product-hero-metrics {
  border-top: 0;
  padding-top: 8px;
  gap: 44px;
}
.product-hero-metric-value { font-size: 1.55rem; letter-spacing: -0.015em; }
.product-hero-metric-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 3px; }

/* Homepage hero: composed art carries its own window frame + shadow */
.hero-app img {
  border-radius: 0;
  box-shadow: none;
}

/* =====================================================
   DESIGN CONSISTENCY: one pill treatment for ALL section labels
   (product pages already had pills; this unifies the light sections)
   ===================================================== */
.section-label {
  display: inline-block;
  padding: 6px 15px;
  border: 1px solid rgba(244, 27, 32, 0.32);
  border-radius: 999px;
  background: rgba(244, 27, 32, 0.06);
}
/* On dark bands, keep the tint readable */
.product-benefits .section-label,
.suite-pricing .section-label,
.cta-section .section-label {
  border-color: rgba(244, 27, 32, 0.45);
  background: rgba(244, 27, 32, 0.12);
}

/* slider dots (match the old proof-rotator language) */
.art-dots { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.art-dot { width: 24px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.18); border: none; padding: 0; cursor: pointer; transition: background .3s ease, width .3s ease; }
.art-dot:hover { background: rgba(255,255,255,0.35); }
.art-dot.is-active { background: var(--red); width: 36px; }

/* has-art hero layout: centered, no bottom-cut */
.product-hero.has-art { padding-bottom: 70px; }
@media (min-width: 1025px) {
  .product-hero.has-art .product-hero-grid { align-items: center; }
  .product-hero.has-art .product-hero-text { padding-bottom: 0; }
  .product-hero.has-art .product-hero-visual { margin-right: 0; align-self: center; }
}

/* Canvas upgrade (from the package): richer glows + masked grid, all product heroes */
.product-hero {
  background:
    radial-gradient(1100px 640px at 90% -12%, rgba(120,120,220,.42), transparent 62%),
    radial-gradient(760px 520px at 4% 112%, rgba(244,27,32,.14), transparent 60%),
    linear-gradient(135deg, #23234f, #33327a 52%, #3e3d93);
}
.product-hero::before {
  -webkit-mask-image: radial-gradient(1000px 720px at 26% 46%, #000, transparent 80%);
  mask-image: radial-gradient(1000px 720px at 26% 46%, #000, transparent 80%);
}

/* =====================================================
   PRODUCT ART v2 — bento card kit (from the v1.1 hero packages)
   One kit, three products. Per-product accents via --pa-* tokens.
   All spacing = grid/flex gap; stacks to one column under 640px.
   ===================================================== */
.product-art {
  --pa-gap: 14px; --pa-pad: 18px;
  --pa-ink: #23234f; --pa-ink-soft: #6b6b90;
  --pa-primary: #38387f; --pa-primary-2: #5b5bd6;
  --pa-good: #22b573; --pa-warn: #f4a723; --pa-bad: #f41b20;
  position: relative; width: 100%; max-width: 620px; justify-self: end;
  font-family: 'Inter', sans-serif;
}
.product-art.art-gd { --pa-primary: #5b54e0; --pa-primary-2: #7a74ec; --pa-warn: #e0a832; }
.product-art.art-cw { --pa-primary: #4b3bd0; --pa-primary-2: #6a5ce0; }
@media (max-width: 1024px) { .product-art { justify-self: center; margin: 0 auto; } }

.product-art .art-slides { display: grid; }
.product-art .art-slide {
  grid-area: 1 / 1; opacity: 0; transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.product-art .art-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.product-art .stage { display: grid; grid-template-columns: 1.28fr 1fr; gap: var(--pa-gap); align-items: stretch; }
.product-art .colx { display: flex; flex-direction: column; gap: var(--pa-gap); justify-content: space-between; }
.product-art .cardx { background: #fff; color: var(--pa-ink); border-radius: 16px; padding: var(--pa-pad);
  box-shadow: 0 30px 60px -26px rgba(6,6,30,.55), 0 0 0 1px rgba(6,6,30,.03); }
.product-art .cardx.tall { height: 100%; }
@media (max-width: 640px) { .product-art .stage { grid-template-columns: 1fr; } }

.product-art .ctitle { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--pa-ink-soft); margin-bottom: 10px; }
.product-art .divider { height: 1px; background: #eef0f4; margin: 12px 0; }
.product-art .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.product-art .dot.green { background: var(--pa-good); } .product-art .dot.amber { background: var(--pa-warn); }
.product-art .dot.red { background: var(--pa-bad); } .product-art .dot.indigo { background: var(--pa-primary); }
.product-art .krow { display: flex; align-items: center; font-size: 14px; color: #2a2a4a; font-weight: 500; margin: 8px 0; }
.product-art .krow .dot { margin-right: 9px; }
.product-art .krow b { margin-left: auto; font-family: 'Space Grotesk', sans-serif; font-size: 16.5px; color: var(--pa-ink); }
.product-art .spark { margin-top: 5px; width: 100%; height: 24px; }
.product-art .ptile { display: flex; align-items: center; gap: 10px; margin: 7px 0; }
.product-art .pcode { min-width: 36px; height: 30px; padding: 0 6px; border-radius: 8px; background: #eef0fb; color: var(--pa-primary); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 11.5px; display: grid; place-items: center; }
.product-art .pbar { flex: 1; height: 7px; border-radius: 5px; background: #edeef4; overflow: hidden; }
.product-art .pbar i { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--pa-primary), var(--pa-primary-2)); }
.product-art .pv { font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: #3a3a5c; min-width: 32px; text-align: right; }
.product-art .donutRow { display: flex; align-items: center; gap: 15px; }
.product-art .donut { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; position: relative; flex: 0 0 auto; }
.product-art .donut::after { content: ""; position: absolute; width: 58px; height: 58px; border-radius: 50%; background: #fff; }
.product-art .donut .val { position: relative; z-index: 1; font-family: 'Space Grotesk', sans-serif; font-size: 18px; color: var(--pa-ink); font-weight: 700; }
.product-art .metric b { font-family: 'Space Grotesk', sans-serif; font-size: 21px; color: var(--pa-ink); font-weight: 700; }
.product-art .metric span { display: block; font-size: 12px; color: var(--pa-ink-soft); font-weight: 600; margin-top: 2px; }
.product-art .srow { display: flex; align-items: center; gap: 10px; margin: 7px 0; }
.product-art .snum { min-width: 44px; height: 28px; padding: 0 7px; border-radius: 8px; background: #f4f5fa; color: #3a3a5c; font-family: 'Space Grotesk', sans-serif; font-weight: 700; display: grid; place-items: center; font-size: 12px; letter-spacing: .02em; }
.product-art .pillx { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.product-art .pg { background: #e3f7ee; color: #12885a; } .product-art .pa { background: #fdf0d9; color: #a9700b; }
.product-art .pi { background: #eceafb; color: #4b3bd0; } .product-art .pr { background: #fde3e4; color: #c01a1f; }
.product-art .dcount { margin-left: auto; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; }
.product-art .dcount.g { color: #12885a; } .product-art .dcount.a { color: #a9700b; } .product-art .dcount.r { color: #c01a1f; }
.product-art .av { width: 28px; height: 28px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; margin-left: auto; }
.product-art .arow { display: flex; align-items: center; gap: 10px; margin: 9px 0; font-size: 13.5px; color: #2a2a4a; font-weight: 600; }
.product-art .sh { width: 12px; height: 14px; border-radius: 3px 3px 6px 6px; flex: 0 0 auto; }
.product-art .tg { margin-left: auto; display: flex; gap: 4px; }
.product-art .tg i { width: 22px; height: 13px; border-radius: 999px; background: #e6e7ef; }
.product-art .tg i.on { background: var(--pa-primary); } .product-art .tg i.onr { background: var(--pa-bad); }
.product-art .cgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.product-art .cgrid span { width: 100%; aspect-ratio: 1; border-radius: 4px; background: #e9eaf1; }
.product-art .cgrid span.g { background: var(--pa-good); } .product-art .cgrid span.a { background: var(--pa-warn); } .product-art .cgrid span.r { background: var(--pa-bad); }
.product-art .rp { float: right; font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: #e3f7ee; color: #12885a; }
.product-art .clrow { display: flex; align-items: center; gap: 10px; margin: 9px 0; font-size: 13px; color: #3a3a5c; font-weight: 500; }
.product-art .ck { width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.product-art .ck.done { background: var(--pa-good); } .product-art .ck.todo { background: #edeef4; border: 2px solid #dcdde6; }
.product-art .clbar { margin-left: auto; width: 48px; height: 6px; border-radius: 5px; background: #edeef4; }
.product-art .clbar.d { background: #c9efdd; }
.product-art .shieldc { display: flex; align-items: center; gap: 14px; }
.product-art .shieldc svg { width: 48px; height: auto; flex: 0 0 auto; }
.product-art .shieldc b { font-family: 'Space Grotesk', sans-serif; font-size: 24px; color: var(--pa-ink); line-height: 1; }
.product-art .shieldc span { font-size: 12px; color: var(--pa-ink-soft); font-weight: 600; display: block; margin-top: 3px; }
.product-art .avrow { display: flex; margin-top: 2px; }
.product-art .avrow .av { margin-left: -9px; border: 3px solid #fff; }
.product-art .avrow .av:first-child { margin-left: 0; }
.product-art .plus { width: 28px; height: 28px; border-radius: 50%; background: #eef0fb; color: var(--pa-primary); font-weight: 700; font-size: 11px; display: grid; place-items: center; margin-left: -9px; border: 3px solid #fff; }
.product-art .bignum { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 44px; line-height: 1; color: var(--pa-bad); }
.product-art .bignum small { font-size: 15px; color: var(--pa-ink-soft); font-weight: 600; margin-left: 4px; }
.product-art .notewarn { font-size: 12px; font-weight: 700; color: #c01a1f; margin-top: 8px; }

/* feature chips in the hero copy (mirrors the packages' tag row) */
.product-hero .hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; max-width: 540px; }
.product-hero .hero-tag { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05); padding: 6px 13px; border-radius: 999px; }

/* Homepage hero: same family as product heroes, slightly larger presence */
.home-hero h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); }
.home-hero .product-hero-tagline { max-width: 520px; }
.home-hero + .section { padding-top: 80px; }
@media (max-width: 768px) {
  .home-hero + .section { padding-top: 48px; }
}

/* =====================================================
   HEADER NAV: hamburger below 1080px (links wrapped awkwardly
   between 769–1080); tighter gaps just above that.
   ===================================================== */
@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .mobile-nav { display: flex; }
}
@media (min-width: 1081px) and (max-width: 1280px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.84rem; }
  .nav-cta .btn { padding: 9px 18px; font-size: 0.8rem; }
}

/* Hero bento hardening: rows never wrap or overlap; labels truncate */
.product-art .srow, .product-art .krow, .product-art .ptile, .product-art .arow, .product-art .clrow { min-width: 0; flex-wrap: nowrap; }
.product-art .klabel { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; color: #2a2a4a; font-weight: 500; }
.product-art .cardx { min-width: 0; overflow: hidden; }

/* =====================================================
   SUITE CARDS: motion pass — lift, sheen sweep, accent bar,
   floating kit card. Shared by homepage + /products.
   ===================================================== */
.suite-card {
  will-change: transform;
}
.suite-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 34px 68px -22px rgba(56,56,127,0.32);
  border-color: rgba(56,56,127,0.28);
}
/* sheen sweep across the card on hover */
.suite-card::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
  z-index: 2;
}
.suite-card:hover::after { left: 130%; }
.suite-card--teaser::after { display: none; }
@media (prefers-reduced-motion: reduce) {
  .suite-card-mini img { transition: none; }
  .suite-card:hover { transform: none; }
  .suite-card::after { display: none; }
}
/* homepage: three across on desktop */
@media (min-width: 1024px) {
  .suite-grid--three { grid-template-columns: repeat(3, 1fr); max-width: 1200px; }
}

/* =====================================================
   HOME HERO ROTATOR: tight grid, aligned boxes, slide crossfade
   ===================================================== */
.home-hero .art-slides { display: grid; }
.home-hero .art-slide { grid-area: 1 / 1; }
.home-hero .product-hero-grid {
  gap: 44px;
  align-items: center;
}
.home-hero .home-slide-title {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 3.9rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.home-hero .home-slide-title .accent { color: var(--red); }
.home-hero .product-hero-tagline { margin-bottom: 26px; }
.home-hero .hero-buttons { margin-bottom: 26px; }
.home-hero .hero-tags { margin-top: 0; margin-bottom: 4px; }
.home-hero .product-hero-metrics { padding-top: 22px; }
/* boxes: equal-height columns, no straggling gaps */
.home-hero .product-art { max-width: 560px; }
.home-hero .product-art .stage { align-items: stretch; }
.home-hero .colx { justify-content: flex-start; }
.home-hero .colx .cardx { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.home-hero-dots { margin-top: 28px; padding-bottom: 6px; }
@media (max-width: 1024px) {
  .home-hero .product-hero-grid { gap: 32px; }
  .home-hero .product-art { max-width: 520px; }
}

/* =====================================================
   FIX: slide mechanics were scoped to .product-art — the homepage
   hero's slides live outside it, so both rendered stacked. Make the
   slide base rules global (product pages unaffected: same classes).
   ===================================================== */
.art-slides { display: grid; }
.art-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1), visibility 0s .4s;
  pointer-events: none;
}
.art-slide.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
  pointer-events: auto;
}

/* =====================================================
   SERVICES HERO SCENE — overnight live feed + floating cards
   ===================================================== */
.art-services .livechip {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #12885a;
  background: #e3f7ee;
  padding: 3px 9px;
  border-radius: 999px;
}
.art-services .livechip i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: hohPulse 2.2s ease-out infinite;
}
.art-services .ctitle { display: flex; align-items: center; }
.art-services .feedrow {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 6px;
  margin: 0 -6px;
  border-radius: 8px;
  border-top: 1px solid #eef0f4;
  font-size: 13px;
  animation: hohFeedGlow 10s ease-in-out infinite;
}
.art-services .feedrow:first-of-type { border-top: 0; }
.art-services .feedrow:nth-child(1) { animation-delay: 0s; }
.art-services .feedrow:nth-child(2) { animation-delay: 1.6s; }
.art-services .feedrow:nth-child(3) { animation-delay: 3.2s; }
.art-services .feedrow:nth-child(4) { animation-delay: 4.8s; }
.art-services .feedrow:nth-child(5) { animation-delay: 6.4s; }
.art-services .feedrow:nth-child(6) { animation-delay: 8s; }
@keyframes hohFeedGlow {
  0%, 100% { background: transparent; }
  5%  { background: #f2f4fd; }
  13% { background: transparent; }
}
.art-services .ftime {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  color: #9a9ab8;
  min-width: 32px;
  font-variant-numeric: tabular-nums;
}
.art-services .fdot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.art-services .fdot.g { background: #22b573; } .art-services .fdot.a { background: #f4a723; } .art-services .fdot.r { background: #f41b20; }
.art-services .ftxt { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #2a2a4a; font-weight: 500; }

/* big recovered-per-day stat */
.art-services .bigstat b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px; font-weight: 700;
  color: #12885a;
  line-height: 1;
  letter-spacing: -0.02em;
}
.art-services .bigstat b small { font-size: 15px; color: #6b6b90; font-weight: 600; }
.art-services .bigstat > span { display: block; font-size: 12px; color: #6b6b90; font-weight: 500; margin-top: 6px; line-height: 1.45; }

/* glass team card on the dark canvas */
.art-services .glassx {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 24px 48px -22px rgba(0,0,0,0.5);
}
.art-services .glassx .ctitle { color: rgba(255,255,255,0.72); }
.art-services .glassx .plus { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.3); }

/* gentle independent float on the column cards */
@keyframes hohCardFloat { from { transform: translateY(0); } to { transform: translateY(-7px); } }
.art-services .colx .cardx:nth-child(1) { animation: hohCardFloat 6s ease-in-out infinite alternate; }
.art-services .colx .cardx:nth-child(2) { animation: hohCardFloat 7.5s ease-in-out .8s infinite alternate; }
.art-services .colx .cardx:nth-child(3) { animation: hohCardFloat 6.8s ease-in-out .4s infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .art-services .feedrow, .art-services .colx .cardx, .art-services .livechip i { animation: none; }
}

/* =====================================================
   PRICING COMPARISON — replaces the illustrative chart
   ===================================================== */
.price-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 820px;
  margin: 10px auto 30px;
  text-align: left;
}
.pc-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 48px -22px rgba(6,6,30,.5);
}
.pc-card.pc-old { background: rgba(255,255,255,0.92); }
.pc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pc-old .pc-title { color: #a15a5d; }
.pc-new .pc-title { color: #12885a; }
.pc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #eef0f4;
  font-size: 14px;
  line-height: 1.45;
  color: #2a2a4a;
  font-weight: 500;
}
.pc-row:first-of-type { border-top: 0; }
.pc-old .pc-row { color: #6b6b90; }
.pc-x, .pc-c {
  flex: 0 0 auto;
  width: 19px; height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.pc-x { background: #fde3e4; color: #c01a1f; }
.pc-c { background: #e3f7ee; color: #12885a; }
.pc-vs {
  align-self: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .price-compare { grid-template-columns: 1fr; gap: 12px; }
  .pc-vs { justify-self: center; }
}
