/* ── Top canvas (nav + hero + trusted-by) ──────────────────────────────
   ONE shared backdrop. The ribbon is a single absolute layer inside
   .top-canvas; nav, hero and trusted slider are all transparent so the
   colour bleeds continuously behind them — the Stripe-style effect.

   The ribbon uses background-attachment: fixed, so its visual position
   is anchored to the viewport. As content scrolls, the ribbon stays put.
   Headline shares an identical fixed-attachment gradient, so it samples
   the same coordinates the ribbon paints, producing the "text lights up
   only where the ribbon is" effect. */

/* Base colour matches the rest of the page (mission-and-vision and
   downstream sections inherit body's --colors--text-offwhite = #fdfdfd),
   so nav + hero + logo slider read as one continuous surface with the
   sections below. The ribbon + headline gradient + mega-menu sheet sit
   on top of this base and are unaffected. */
.top-canvas {
  position: relative;
  overflow: hidden;
  background: var(--colors--text-offwhite, #fdfdfd);
}

/* The ribbon spans the WHOLE top section. */
.hero-ribbon {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(36px);
  background-image: linear-gradient(
    125deg,
    transparent 54%,
    rgba(22, 168, 139, 0.85) 62%,
    rgba(31, 169, 214, 0.85) 70%,
    rgba(87, 198, 240, 0.8) 78%,
    transparent 90%
  );
  background-size: 150% 150%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 36% 34%;
  animation: hero-drift 12s ease-in-out infinite alternate;
}

/* Subtle top fade so the ribbon doesn't fight nav legibility — softens
   the upper ~140px without a hard bar. Tinted to the off-white base
   colour so the fade dissolves into the page background (#fdfdfd)
   rather than introducing a brighter-white band at the very top. */
.top-canvas-nav-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(253, 253, 253, 0.6) 0%,
    rgba(253, 253, 253, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Make nav transparent so the ribbon shows through. Override the
   existing white background + bottom border.
   z-index 95 keeps the nav ABOVE the Resources mega-menu scrim
   (z-index 90) so the nav itself isn't dimmed by the scrim. */
.top-canvas > .header {
  background-color: transparent !important;
  border-bottom: 0 !important;
  position: relative;
  z-index: 95;
}

/* Hero + trusted layered above ribbon. */
.hero-v3,
.hero-trusted-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Balanced vertical breathing room above and below the trusted-by row,
   so the divider line above doesn't crowd the text/logos and the row
   has equivalent spacing on both sides. */
.hero-trusted-section {
  padding: clamp(40px, 6vh, 64px) 0;
}

/* Container-width dividers (one under nav, one above slider).
   The ROW is full-width so it sits inside .top-canvas, but the line
   itself lives inside .container-default so it ends at container
   padding edges — not full-bleed. */
.top-canvas-divider-row {
  position: relative;
  z-index: 2;
}

/* Horizontal gradient rule: barely-there hint of separation. Faint only
   in the calm left/centre area; fades fully to transparent well before
   it reaches the ribbon's coloured zone on the right, so the divider
   doesn't read as a line across the continuous background. */
.top-canvas-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.06) 25%,
    rgba(0, 0, 0, 0.06) 55%,
    transparent 80%
  );
}

/* ── Hero copy column ───────────────────────────────────────────────── */

/* Sized so nav (~90px) + dividers + trusted/slider row (~160px) + hero
   sum to roughly 100vh — the slider sits just above the fold on any
   reasonable desktop. The calc() shrinks the hero on shorter viewports
   (where it'd otherwise push the slider off-screen) and lets it grow
   naturally on tall ones. Floor at 480px so a very short window still
   gives the headline + buttons breathing room. */
.hero-v3 {
  min-height: max(480px, calc(100vh - 260px));
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-v3 > .container-default {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* The content column stays left-aligned at the container's left edge
   (= nav logo's left edge). No max-width cap — the headline runs as
   wide as the container so the right-hand words drift into the ribbon
   colour zone. align-items: flex-start keeps badge and buttons at
   their intrinsic widths instead of stretching. */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0E1320;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 24px;
}

.hero-badge-sparkle {
  font-size: 1.25rem;
  line-height: 1;
  color: #0E1320;
}

/* Headline: clipped to text, samples the same gradient + fixed
   attachment as the ribbon so the colour band only shows where the
   ribbon is behind it. NO max-width — lets it run wide. */
.hero-headline {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  background-image:
    linear-gradient(
      125deg,
      transparent 54%,
      #16A88B 62%,
      #1FA9D6 70%,
      #57C6F0 78%,
      transparent 90%
    ),
    linear-gradient(180deg, #0E1320 0%, #39414E 100%);
  background-size: 150% 150%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 36% 34%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: hero-drift 12s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { background-position: 36% 34%; }
  to   { background-position: 64% 66%; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Buttons (CRITICAL — override-defense) ──────────────────────────
   Pre-existing global rules repaint .button-primary and similar. The
   hero buttons (1) don't use any global button class, (2) carry inline
   style="…!important" in the markup, (3) also redeclare colours with
   !important here. Inline !important wins against everything. */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 11rem;
  padding: 13px 28px;
  border-radius: 8px !important;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  /* Hover effect is bg-darken only — no scale/expand. background-color
     transition for the colour fade; the .arr shaft animation is its own
     transition declared in nav.css. */
  transition: background-color 0.18s ease;
  white-space: nowrap;
}

.hero-btn--primary,
a.hero-btn--primary,
button.hero-btn--primary {
  background: #0E1320 !important;
  background-color: #0E1320 !important;
  color: #ffffff !important;
  border: 0 !important;
}

.hero-btn--primary:hover,
a.hero-btn--primary:hover,
button.hero-btn--primary:hover {
  background-color: #1B2233 !important;
}

.hero-btn--secondary,
a.hero-btn--secondary,
button.hero-btn--secondary {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #0E1320 !important;
  border: 1px solid #0E1320 !important;
}

.hero-btn--secondary:hover,
a.hero-btn--secondary:hover,
button.hero-btn--secondary:hover {
  background-color: #F6F7F9 !important;
}

.hero-btn:focus-visible {
  outline: 2px solid #0E1320;
  outline-offset: 3px;
}

/* Google G logo (left of "Sign Up with Google" label). The 4-colour
   path data is the standard placeholder G — replace with the official
   sign-in branding asset for production. */
.hero-btn-google-g {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ── Nav "Contact Sales" button: full dimensional match to hero buttons.
   Webflow's .button-primary ships with padding 9px 26px, font-size 18px,
   line-height 30px, border-radius 30px, display: inline-block. Override
   to match .hero-btn (13px 28px / 14px / line-height 1 / inline-flex /
   11rem min-width / 12px radius). Colour scheme of the nav button left
   alone — only sizing changes. Scoped to .navbar (not .top-canvas) so
   EVERY page's nav button matches the home page — home is the master. */
.navbar .button-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 11rem !important;
  padding: 13px 28px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  border-radius: 8px !important;
}

/* ── Logo marquee (continuous CSS-only loop) ────────────────────────
   The webflow.css rule sets .hero-bottom-logo-marquee { display: flex }
   which makes the inner track a flex item — with width: max-content
   that produces unstable sizing AND can leak horizontal overflow up
   the document, producing a page scrollbar. We force display: block
   so the track is a plain block child cleanly clipped by overflow:hidden.

   Two identical blocks side-by-side. Track animates 0 → -50%, which
   moves block 2 into block 1's position seamlessly, then jumps back.
   Each block has all 9 unique logos so the loop has no visible seam.

   Soft edges via mask-image (works over any background) — replaces the
   old .logo-marquee-shadow overlays, which faded to white and now read
   as a visible boxed edge against the transparent ribbon backdrop. */
.hero-bottom-logo-marquee {
  display: block !important;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

/* Hide the old white-fade overlays — replaced by mask-image above. */
.hero-bottom-logo-marquee .logo-marquee-shadow {
  display: none;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  animation: hero-marquee-scroll 35s linear infinite;
}

/* Pause the marquee while the user is reading a logo. Hover on the
   container (not just the track) so hovering over a logo or the gap
   between logos both count. */
.hero-bottom-logo-marquee:hover .hero-marquee-track {
  animation-play-state: paused;
}

.hero-logo-marquee-block {
  display: flex;
  flex-shrink: 0;
  gap: 50px;
  padding-right: 50px;
  align-items: center;
}

/* Logo link wrapper — inline-flex so it sits inline with images. */
.hero-logo-link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

/* Calm, muted logos — they sit over the coloured ribbon, so greyscale
   + slight opacity keeps them from competing with the headline. */
.hero-bottom-logo-marquee .hero-logo-image {
  filter: grayscale(100%) opacity(0.65);
  height: 32px;
  width: auto;
  max-width: none;
}

/* Hover: darken the hovered logo by removing grayscale and increasing opacity. */
.hero-logo-link:hover .hero-logo-image {
  filter: grayscale(0%) opacity(1);
}

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

/* ── Solutions Section ────────────────────────────────────────────────
   Bento-style product card with dual-language content, choreographed
   animations per element, and overlaid phone + dashboard mockups. */

.solutions {
  padding: 88px 0;
  background: transparent;
}


.sol-head {
  max-width: calc((100% - 22px) * 2 / 3);
  margin: 0 0 42px;
  text-align: left;
}

.sol-title {
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.01em;
  margin: 0;
}

.sol-title-dark {
  color: #0E1320;
}

.sol-title-muted {
  color: #818B98;
}

.sol-row {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.sol-row + .sol-row {
  margin-top: 22px;
}

.sol-card {
  position: relative;
  background: var(--colors--text-offwhite, #fdfdfd);
  border: 1px solid #E7EAEE;
  border-radius: 16px;
  overflow: hidden;
  flex: 2 1 0;
  min-width: 0;
  margin: 0;
  max-width: none;
}

.sol-ph {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  background: #fff;
  border: 1px solid #E7EAEE;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sol-ph-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAB1BC;
  font-size: 13px;
  min-height: 300px;
}

.sol-ribbon {
  position: absolute;
  width: 62%;
  height: 68%;
  right: -10%;
  top: -16%;
  transform: rotate(-19deg);
  background: linear-gradient(
    90deg,
    rgba(22, 168, 139, 0),
    rgba(22, 168, 139, 0.28) 28%,
    rgba(31, 169, 214, 0.32) 58%,
    rgba(87, 198, 240, 0.28) 84%,
    rgba(87, 198, 240, 0)
  );
  filter: blur(58px);
  animation: hero-drift 12s ease-in-out infinite alternate;
}

.sol-glow {
  position: absolute;
  width: 40%;
  height: 54%;
  left: -12%;
  bottom: -22%;
  border-radius: 50%;
  /* Matches the homepage ribbon palette (teal → blue) and breathes with it
     — replaces the former purple/pink glow. Kept faint so the off-white
     base stays dominant. */
  background: radial-gradient(circle, rgba(31, 169, 214, 0.55) 0%, rgba(87, 198, 240, 0.4) 42%, transparent 70%);
  filter: blur(60px);
  opacity: 0.26;
  animation: hero-drift 12s ease-in-out infinite alternate;
}

.sol-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 0;
  gap: 12px;
}

.sol-card-title {
  font-size: 26px;
  font-weight: 600;
  color: #0E1320;
  line-height: 1.3;
}

.exp {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475467;
  font-size: 16px;
  flex: none;
}

.sol-stage {
  position: relative;
  z-index: 1;
  height: 428px;
  margin-top: 22px;
}

.sol-dash {
  position: absolute;
  left: 258px;
  right: -12px;
  top: 26px;
  height: 416px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 30px 60px rgba(14, 19, 32, 0.16);
  overflow: hidden;
}

.sol-dash-bar {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  flex: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(14, 19, 32, 0.16);
}

.sol-url {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 19, 32, 0.05);
  border-radius: 8px;
  padding: 5px 30px;
  font-size: 9.5px;
  color: #7A828F;
}

.sol-dash-body {
  background: #fff;
  display: flex;
  flex: 1;
}

.sol-dash-nav {
  flex: none;
  width: 52px;
  border-right: 1px solid #F2F3F5;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sol-avatar {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: #EAECEF;
  color: #7A828F;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 6px;
}

.snav {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9AA0A8;
  font-size: 15px;
}

.snav-active {
  color: #0E1320;
}

.sol-dash-main {
  flex: 1;
  padding: 16px 18px 18px;
  min-width: 0;
}

.sol-sent {
  border: 1px solid #EDEFF2;
  background: #fff;
  border-radius: 10px;
  padding: 14px 15px;
  margin-bottom: 12px;
}

.stat {
  flex: 1;
  border: 1px solid #EDEFF2;
  border-radius: 9px;
  padding: 10px 12px;
  background: #fff;
  min-width: 0;
}

.stat .l {
  font-size: 8px;
  letter-spacing: 0.05em;
  color: #9AA0A8;
  margin-bottom: 3px;
  min-height: 20px;
}

.stat .v {
  font-size: 16px;
  font-weight: 600;
  color: #0E1320;
}

.sol-phone {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 204px;
  z-index: 2;
}

.sol-phone-frame {
  background: #1C1C1E;
  border-radius: 34px;
  padding: 7px;
  box-shadow: 0 30px 55px rgba(14, 19, 32, 0.3), inset 0 1.5px 1px rgba(255, 255, 255, 0.12);
}

.sol-phone-screen {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 372px;
}

.sol-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 16px;
  background: #1C1C1E;
  border-radius: 9px;
  z-index: 3;
}

.sol-qlogo {
  width: 25px;
  height: auto;
  opacity: 0.92;
  display: block;
  margin-bottom: 18px;
}

.sol-qcard {
  background: #fff;
  border: 1px solid #ECECEE;
  border-left: 3px solid #475467;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(14, 19, 32, 0.05);
  padding: 16px 16px;
}

.fc {
  flex: 1;
  height: 48px;
  border-radius: 12px;
  background: #F2F2F7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Resting state — enable smooth transitions */
.sol-card,
.sol-ph {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-origin: center;
}

.exp {
  transition: background 0.3s ease, color 0.3s ease;
}

/* First square's expand control: corner-bracket "maximize" glyph in
   Croissant green on a faint green tint; fills solid green on hover. */
.sol-card .exp {
  background: #F1F3F7;
  color: #475467;
}

/* Glyph scales up on card hover. */
.exp i,
.exp svg,
.rexp svg,
.gexp svg {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.25, 1);
}

.sol-card:hover .exp i,
.sol-ph:hover .exp i,
.sol-card:hover .exp svg,
.sol-ph:hover .exp svg,
.sol-ph:hover .rexp svg,
.sol-ph:hover .gexp svg {
  transform: scale(1.22);
}

/* Hover — expand + lift + border highlight */
.sol-card:hover,
.sol-ph:hover {
  transform: scale(1.015);
  box-shadow: 0 22px 55px rgba(14, 19, 32, 0.14);
  border-color: rgba(69, 190, 138, 0.5);
}

/* Hover — expand icon fills with accent */
.sol-card:hover .exp,
.sol-ph:hover .exp {
  background: #F1F2F4;
  color: #475467;
}

@media (max-width: 920px) {
  .sol-head {
    max-width: 100%;
  }

  .sol-row {
    flex-direction: column;
  }

  .sol-ph {
    flex: 0 0 auto;
    width: 100%;
    min-height: 200px;
  }

  .sol-stage {
    height: auto;
  }

  .sol-phone,
  .sol-dash {
    position: static;
    width: 100%;
    right: auto;
    left: auto;
    top: auto;
  }

  .sol-phone {
    max-width: 200px;
    margin: 0 auto;
  }

  .sol-dash {
    height: auto;
    margin-top: 20px;
    border-radius: 15px;
  }
}

/* ── Tablet / small-desktop fallback: drop fixed-attachment effects.
   background-attachment: fixed is unreliable below 992px (iOS Safari +
   most touch). Headline reverts to solid dark, ribbon to a static soft
   backdrop, marquee continues. */
@media (max-width: 991px) {
  .hero-ribbon {
    background-attachment: scroll;
    opacity: 0.35;
  }
  .hero-headline {
    background-image: none;
    background-attachment: scroll;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #0E1320;
    -webkit-text-fill-color: #0E1320;
    animation: none;
  }
}

/* ── Phone: tighter type + padding so the sections stack cleanly. */
@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    width: 100%;
  }
  .hero-v3 {
    min-height: 60vh;
    padding: 24px 0;
  }
  .top-canvas-nav-fade {
    height: 90px;
  }
}

/* ── Reduced motion: kill drift, headline animation, marquee, hover. */
@media (prefers-reduced-motion: reduce) {
  .hero-ribbon,
  .hero-headline,
  .hero-marquee-track,
  .sol-ph--conv {
    animation: none;
  }
  .hero-btn:hover {
    transform: none;
  }
  .sol-card:hover,
  .sol-ph:hover {
    transform: none;
  }
}

/* ── "Create your own conversations" mini-form (embedded in the second-row
   placeholder square). Animated typing + launch demo. */
.sol-ph--conv {
  background:
    radial-gradient(ellipse 175% 150% at 12% 8%, rgba(132, 216, 197, 0.12) 0%, transparent 56%),
    radial-gradient(ellipse 175% 150% at 88% 92%, rgba(87, 198, 240, 0.12) 0%, transparent 56%),
    linear-gradient(180deg, #FBFCFE 0%, #F6F9FC 100%);
  background-size: 165% 165%, 165% 165%, 100% 100%;
  background-position: 0% 0%, 100% 100%, center;
  animation: convDrift 16s ease-in-out infinite alternate;
}

@keyframes convDrift {
  0% {
    background-position: 0% 0%, 100% 100%, center;
    background-size: 165% 165%, 165% 165%, 100% 100%;
  }
  50% {
    background-size: 192% 192%, 192% 192%, 100% 100%;
  }
  100% {
    background-position: 38% 26%, 62% 74%, center;
    background-size: 165% 165%, 165% 165%, 100% 100%;
  }
}

.sol-conv-body {
  display: block;
  padding: 0;
  color: #0E1320;
  background: transparent;
}

.kstage {
  padding: 16px 16px 18px;
}

.k-aud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.k-stat {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 11px 12px;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 4px 14px rgba(14, 19, 32, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-stat-ico {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, #E8F6F2 0%, #D7EEFC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #14A08B;
}

.k-stat-body {
  flex: 1;
  min-width: 0;
}

.k-stat-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #6B7280;
}

.k-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: #0E1320;
  line-height: 1.1;
  margin-top: 2px;
  font-feature-settings: "tnum";
}

.k-field {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 11px 13px;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 4px 14px rgba(14, 19, 32, 0.05);
  margin-bottom: 8px;
  position: relative;
  transition: box-shadow 0.4s;
}

.k-field.focused {
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 4px 14px rgba(14, 19, 32, 0.05), 0 0 0 2px rgba(20, 160, 139, 0.25);
}

.k-field-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #6B7280;
  margin-bottom: 4px;
}

.k-field-input {
  font-size: 13px;
  font-weight: 500;
  color: #0E1320;
  min-height: 18px;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.k-placeholder {
  color: #B0B5BB;
}

.k-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: #14A08B;
  margin-left: 1px;
  vertical-align: middle;
  opacity: 0;
}

.k-cursor.show {
  animation: kBlink 0.9s infinite;
}

@keyframes kBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.k-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.k-modes {
  display: inline-flex;
  background: rgba(244, 246, 248, 0.85);
  border-radius: 8px;
  padding: 3px;
}

.k-mode {
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 600;
  color: #6B7280;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: default;
}

.k-mode.active {
  background: #0E1320;
  color: #FFFFFF;
}

.k-chip {
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 5px 9px;
  letter-spacing: 0.2px;
}

.k-launch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: #B0B5BB;
  transition: background 0.6s, box-shadow 0.6s, transform 0.2s;
  position: relative;
}

.k-launch.active {
  background: #45BE8A;
  box-shadow: 0 8px 24px rgba(69, 190, 138, 0.30), 0 2px 6px rgba(69, 190, 138, 0.20);
}

.k-launch.click {
  transform: scale(0.97);
}

.k-launch-ico {
  transition: transform 0.3s;
  display: inline-flex;
}

.k-launch.active .k-launch-ico {
  transform: translateX(3px);
}

/* ── "Discover emerging topics" — glassy floating cards on a soft gradient,
   mirroring the actionable-insights square. */
#tcard {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 30px 24px;
  box-sizing: border-box;
}

.sol-ph--topics .sol-card-head,
.sol-ph--topics .sol-ph-body {
  position: relative;
  z-index: 1;
}

.sol-ph--topics .t-blob {
  z-index: 0;
}

.t-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.tb1 { top: -6%; left: -6%; width: 150px; height: 150px; background: #7FD3BD; opacity: 0.4; }
.tb2 { top: 38%; right: -12%; width: 150px; height: 150px; background: #5FC4E8; opacity: 0.36; }
.tb3 { bottom: -8%; left: 22%; width: 150px; height: 150px; background: #8AD4F0; opacity: 0.38; }

.t-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.t-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(26px) saturate(1.4);
  backdrop-filter: blur(26px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 20px rgba(14, 19, 32, 0.10),
    0 2px 6px rgba(14, 19, 32, 0.05);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.t-row.in {
  opacity: 1;
  transform: translateY(0);
}

.t-name-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.t-name {
  font-size: 13px;
  font-weight: 500;
  color: #0E1320;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #6B7280;
  background: #F0F2F5;
  padding: 2px 7px;
  border-radius: 4px;
  flex: none;
}

.t-tag.new {
  color: #0F8A6B;
  background: #DDF2EA;
}

.t-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #0F8C72;
  font-feature-settings: "tnum";
  flex: none;
}

.t-arrow {
  display: inline-flex;
}

.t-arrow svg {
  display: block;
}

/* ── "Monitor change as it happens" interactive halo. Fills its card so it
   adapts whether it sits in the tall top row or the shorter bottom row. */
#dcard {
  height: 100%;
}

.dstage {
  position: relative;
  height: 100%;
  min-height: 320px;
  touch-action: none;
}

.dcanvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ── Full-width "track every team & leader" banner square ───────────────── */
.sol-row-wide {
  display: block;
}

/* Hide the entire banner on mobile — the 6-col table mockup and the
   leader-conversation card overflow at <768px and the .sol-card-title
   line-breaks awkwardly. Nothing else depends on this section's
   height, so display: none removes it cleanly with no leftover gap.
   Above 768 the section renders normally. */
@media (max-width: 767px) {
  .sol-row-wide {
    display: none;
  }
}

.sol-wide {
  position: relative;
  flex: none;
  width: 100%;
  overflow: hidden;
  min-height: 408px;
}

.sol-wide-exp {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
}

.sol-wide-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 0 40px 44px;
  min-height: 408px;
  box-sizing: border-box;
}

.sol-wide-copy {
  flex: 0 0 28%;
  max-width: 330px;
}

.sol-wide-copy .sol-card-title {
  font-size: 30px;
  line-height: 1.18;
}

.sol-wide-sub {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #5B636E;
  max-width: 290px;
}

.sol-wide-stage {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 364px;
}

/* Browser window (the leader-tracking dashboard) */
.lw-window {
  position: absolute;
  top: 0;
  left: 78px;
  right: -34px;
  bottom: 0;
  background: #fff;
  border: 1px solid #E7EAEE;
  border-radius: 12px;
  box-shadow: 0 26px 60px rgba(14, 19, 32, 0.10), 0 4px 14px rgba(14, 19, 32, 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lw-in .lw-window {
  opacity: 1;
  transform: none;
}

.lw-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid #EEF0F3;
  background: #FBFCFD;
}

.lw-bdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E1E4E9;
  flex: none;
}

.lw-url {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #8A9099;
  background: #fff;
  border: 1px solid #ECEEF1;
  border-radius: 7px;
  padding: 4px 16px;
}

.lw-table {
  padding: 4px 0 0;
}

.lw-cols,
.lw-row-main {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1.7fr 0.55fr 0.95fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

.lw-cols {
  padding-top: 12px;
  padding-bottom: 11px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #9AA0A8;
  border-bottom: 1px solid #F0F2F5;
}

.lw-row {
  border-bottom: 1px solid #F4F6F8;
}

.lw-row-main {
  padding-top: 13px;
  padding-bottom: 13px;
}

.lw-team {
  font-size: 13px;
  font-weight: 600;
  color: #0E1320;
}

.lw-cell {
  font-size: 12.5px;
  color: #5B636E;
}

.lw-leader {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.lw-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex: none;
}

.lw-leader-name {
  font-size: 12.5px;
  font-weight: 500;
  color: #1C2230;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lw-leader-mail {
  font-size: 10.5px;
  color: #9AA0A8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lw-chip {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  color: #0F8A6B;
  background: #DDF2EA;
  border-radius: 5px;
  padding: 3px 8px;
}

.lw-chip.lw-chip-muted {
  color: #6B7280;
  background: #F0F2F5;
}

.lw-part {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lw-part-num {
  font-size: 12.5px;
  font-weight: 600;
  color: #0F8C72;
  font-feature-settings: "tnum";
}

.lw-bar-track {
  height: 4px;
  border-radius: 3px;
  background: #EDEFF2;
  overflow: hidden;
}

.lw-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #14A08B, #2A8FE0);
  width: 0;
  transition: width 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lw-row.lw-open {
  background: #FCFDFE;
}

.lw-detail {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  margin: 0 24px 14px;
  padding: 14px 18px;
  border: 1px solid #EEF0F3;
  border-left: 3px solid #14A08B;
  border-radius: 10px;
  background: #fff;
}

.lw-detail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #9AA0A8;
  margin-bottom: 8px;
}

.lw-detail-context {
  font-size: 12.5px;
  line-height: 1.5;
  color: #5B636E;
}

.lw-convos {
  display: flex;
  gap: 30px;
}

.lw-convo-lbl {
  font-size: 10px;
  color: #8A9099;
  margin-bottom: 3px;
}

.lw-convo-num {
  font-size: 18px;
  font-weight: 700;
  color: #0E1320;
  font-feature-settings: "tnum";
}

/* Floating conversation-topic / questions card */
.lw-qcard {
  position: absolute;
  left: 0;
  top: 36px;
  width: 256px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 26px 50px rgba(14, 19, 32, 0.16),
    0 4px 12px rgba(14, 19, 32, 0.08);
  padding: 18px 18px 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.lw-in .lw-qcard {
  opacity: 1;
  transform: none;
}

.lw-q-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #9AA0A8;
  margin-bottom: 7px;
}

.lw-q-topic {
  font-size: 15px;
  font-weight: 600;
  color: #0E1320;
  line-height: 1.3;
  margin-bottom: 14px;
}

.lw-q-count {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #14A08B;
  margin-bottom: 11px;
}

.lw-q-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lw-q-item {
  display: flex;
  gap: 9px;
  font-size: 12px;
  line-height: 1.4;
  color: #3A4150;
}

.lw-q-n {
  color: #B0B5BC;
  font-weight: 600;
  flex: none;
}

/* ── "Achieve outcomes that matter" feature section — relit to match the
   hero + squares (soft light backdrop, breathing teal→blue accent, clean
   glassy cards, square-style icon tiles). All scoped to this one section. */
.features-section.dark-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBFCFD 0%, #F4F7FA 100%);
}

.features-section.dark-bg::before {
  content: "";
  position: absolute;
  width: 56%;
  height: 64%;
  right: -12%;
  top: -20%;
  background: linear-gradient(
    90deg,
    rgba(22, 168, 139, 0),
    rgba(22, 168, 139, 0.18) 30%,
    rgba(31, 169, 214, 0.20) 60%,
    rgba(87, 198, 240, 0)
  );
  filter: blur(72px);
  transform: rotate(-18deg);
  animation: hero-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.features-section.dark-bg .section-gap {
  position: relative;
  z-index: 1;
}

/* Header type */
.features-section.dark-bg .feature-section-title.color-white {
  color: #0E1320;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-top: 0;
}
.features-section.dark-bg .section-top-wrapper-v2 { align-items: flex-start; }
.features-section.dark-bg .section-top-left { padding-top: 0; }
}

.features-section.dark-bg .feature-section-top-text.color-white {
  color: #5B6670 !important;
}

.features-section.dark-bg .feature-section-top-text strong {
  color: #16A88B !important;
  font-weight: 600;
}

/* Drop the dated stacked-border offset behind each card */
.features-section.dark-bg .common-card-border {
  display: none;
}

.features-section.dark-bg .common-card-style {
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.features-section.dark-bg .common-card-style:hover {
  transform: translateY(-5px);
}

/* The card itself → glassy white, square-consistent radius + soft shadow */
.features-section.dark-bg .feature-card-content-wrapper {
  background: var(--colors--text-offwhite, #fdfdfd);
  border: 1px solid #E7EAEE;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 14px 34px rgba(14, 19, 32, 0.05);
  transition: border-color 0.32s ease, box-shadow 0.32s ease;
}

.features-section.dark-bg .common-card-style:hover .feature-card-content-wrapper {
  border-color: rgba(20, 160, 139, 0.35);
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.05), 0 22px 50px rgba(14, 19, 32, 0.09);
}

/* Icon → soft teal→blue rounded-square tile (the squares' icon language) */
.features-section.dark-bg .spin-icon-border {
  display: none;
}

.features-section.dark-bg .spin-icon-block {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8F6F2 0%, #D7EEFC 100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.features-section.dark-bg .common-card-style:hover .spin-icon-block {
  transform: scale(1.06);
}

.features-section.dark-bg .feature-card-main-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Card text */
.features-section.dark-bg .feature-card-title {
  color: #0E1320;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.features-section.dark-bg .feature-card-text {
  color: #5B636E;
  line-height: 1.6;
}

/* ── Page-wide cohesion pass: match the hero + squares language across the
   rest of the home page (buttons, card borders, hovers). Colours kept. ── */

/* Every button gets the hero buttons' 8px radius (was a 30px pill). */
.button-primary,
.button-primary.blue-button,
.button-primary.fill-button,
.button-primary.form-large-button,
.button-primary.button-large,
.w-button,
.arrow-button-wrapper {
  border-radius: 8px !important;
}

/* Bordered home cards (blog, pricing) → the squares' soft border + shadow +
   gentle hover lift, replacing the near-black hairline. */
.blog-card-item,
.pricing-plan-option {
  border-color: #E7EAEE !important;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 14px 34px rgba(14, 19, 32, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blog-card-item:hover,
.pricing-plan-option:hover {
  border-color: rgba(20, 160, 139, 0.35) !important;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.05), 0 22px 50px rgba(14, 19, 32, 0.09);
  transform: translateY(-4px);
}

/* Soften the accent panels (Integrate + CTA) from a flat block into the
   page's airy off-white with a breathing teal→blue glow, like the squares. */
.integrate-hrbes-section,
.call-to-action .cta-wrapper.cta-bg-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBFCFD 0%, #EEF4F8 100%);
  border: 1px solid #E7EAEE;
}

.integrate-hrbes-section {
  border: none;
  border-radius: 0;
}

.integrate-hrbes-section::before,
.call-to-action .cta-wrapper.cta-bg-v2::before {
  content: "";
  position: absolute;
  width: 54%;
  height: 62%;
  right: -10%;
  top: -18%;
  background: linear-gradient(
    90deg,
    rgba(22, 168, 139, 0),
    rgba(22, 168, 139, 0.16) 32%,
    rgba(31, 169, 214, 0.18) 62%,
    rgba(87, 198, 240, 0)
  );
  filter: blur(72px);
  transform: rotate(-18deg);
  animation: hero-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.integrate-hrbes-section > *,
.call-to-action .cta-wrapper.cta-bg-v2 > * {
  position: relative;
  z-index: 1;
}

/* Animated draw-in arrow on the home Contact Sales buttons (matches nav). */
.button-primary:has(.arr) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.button-primary:hover .arr .shaft {
  transform: scaleX(1);
  opacity: 1;
}

/* ── Pricing: declutter + clarify ─────────────────────────────────────── */
/* Drop the dated stacked-border offset so each plan reads as one clean card. */
.pricing-plan-item .common-card-border {
  display: none;
}

.pricing-plan-option {
  position: relative;
}

/* Highlight the Standard plan as the recommended option. */
.pricing-plan-option:has(.standard-pricing) {
  border-color: rgba(20, 160, 139, 0.55) !important;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.05), 0 22px 50px rgba(20, 160, 139, 0.13);
}

.pricing-plan-option:has(.standard-pricing)::before {
  content: "Most popular";
  position: absolute;
  top: 0;
  right: 28px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #14A08B 0%, #2A8FE0 100%);
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(20, 160, 139, 0.30);
}

/* Per-user pricing unit reads smaller + muted under the headline price. */
.pricing-plan-price {
  color: #6B7280;
}


/* ── "What's happening" blog carousel (Stripe-style) ──────────────────── */
.blog-wrapper.bx { display: block; }
.bx-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.bx-title { font-size: clamp(22px, 3.4vw, 34px); font-weight: 600; color: #0E1320; letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
.bx-sub { font-size: 22px; font-weight: 500; color: #5B636E; margin: 4px 0 0; }
.bx-nav { display: flex; gap: 10px; flex: none; }
.bx-arrow { width: 48px; height: 40px; border-radius: 9px; border: none; background: #EDEFFB; color: #2A6FDB; font-size: 19px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, opacity 0.2s ease; }
.bx-arrow:hover { background: #E0E5F7; }
.bx-arrow:disabled { opacity: 0.4; cursor: default; }
.bx-track { display: flex; gap: 14px; overflow: hidden; padding-bottom: 2px; }
.bx-track::-webkit-scrollbar { display: none; }
.bx-slide { position: relative; flex: 0 0 auto; min-width: 0; width: 96px; height: clamp(320px, 34vw, 420px); border-radius: 20px; overflow: hidden; display: block; text-decoration: none; background: #EEF1F5; will-change: width; cursor: pointer; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }
.bx-slide.is-active { cursor: pointer; }
.bx-slide:hover { transform: scale(1.02); box-shadow: 0 14px 32px rgba(14,19,32,0.18); z-index: 3; }
.bx-grad { position: absolute; inset: 0; z-index: 0; }
.bx-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.bx-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(10,12,20,0) 38%, rgba(10,12,20,0.58) 100%); }
.bx-eyebrow { position: absolute; left: 28px; top: 26px; z-index: 3; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 5px 11px; border-radius: 999px; opacity: 0; transition: opacity 0.4s ease; white-space: nowrap; }
.bx-slide.is-active .bx-eyebrow { opacity: 1; }
.bx-ftitle { position: absolute; left: 32px; bottom: 26px; right: 32px; z-index: 3; color: #fff; font-size: 30px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; opacity: 0; white-space: normal; transition: opacity 0.3s ease; }
/* Explicit active-state inset with higher specificity so nothing in the
 * active-state chain (.bx-slide.is-active .bx-ftitle at line 1832/1834)
 * can undercut the left/right offset. 30px font needs more inset than the
 * 12px .bx-eyebrow to look comfortably padded — bumping from 28 to 32. */
.bx-slide.is-active .bx-ftitle { left: 32px; right: 32px; padding-left: 0; }
.bx-slide.is-active .bx-ftitle { opacity: 1; }
.bx-slide:not(.is-active) .bx-ftitle, .bx-slide:not(.is-active) .bx-eyebrow { opacity: 0 !important; }ity: 0; transition: opacity 0.4s ease 0.08s; }
.bx-slide.is-active .bx-ftitle { opacity: 1; }
.bx-foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-top: 28px; }
.bx-caption { font-size: 20px; line-height: 1.45; color: #5B636E; max-width: 64%; margin: 0; text-wrap: pretty; }
.bx-caption strong { color: #0E1320; font-weight: 600; }
.bx-read { flex: none; display: inline-flex; align-items: center; gap: 8px; border: 1px solid #C9CFD4; border-radius: 8px; padding: 12px 22px; font-size: 14px; font-weight: 600; color: #1A2634; text-decoration: none; background: #fff; transition: border-color 0.2s, color 0.2s; }
.bx-read:hover { background: #fff; border-color: #16A88B; color: #16A88B; }
.bx-read:hover .bt-chev { opacity: 0; }
.bx-read:hover .bt-arrow { opacity: 1; }ecoration: none; transition: background 0.2s ease, border-color 0.2s ease; }
.bx-read:hover { background: #F5F7FD; border-color: #2A6FDB; }
.bx-read-arr { font-size: 17px; line-height: 1; }
@media (max-width: 767px) {
  /* Section header stacks (title above the arrow nav which is hidden below). */
  .bx-head { align-items: flex-start; flex-direction: column; }

  /* Hide the accordion nav arrows on mobile — the stacked list needs
   * no next/prev because every card is visible at once. */
  .bx-nav { display: none; }

  /* Hide the "Read the article" caption/button footer — on mobile each
   * card is its own tap target (see blog.js mobile click handler), so
   * the separate "active caption + button" pair below the track is
   * redundant. */
  .bx-foot { display: none; }

  /* Track becomes a vertical stack of full-width cards. */
  .bx-track {
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }

  /* Slides go full-width and get a fixed reasonable height. The
   * `!important` on width overrides blog.js's inline width tweens
   * (accordion widths would otherwise fight the layout). transform:
   * none neutralises both the .bx-slide:hover scale AND any residual
   * inline translateX left over from a desktop → mobile resize. */
  .bx-slide {
    width: 100% !important;
    height: clamp(180px, 46vw, 240px);
    flex: 0 0 auto;
    transform: none !important;
  }
  .bx-slide:hover { transform: none !important; box-shadow: 0 8px 20px rgba(14,19,32,0.14); }

  /* Every title is fully visible in the stacked list — override the
   * desktop opacity-toggle-by-active-state rule that hides titles on
   * inactive slides. Font-size is fluid so long titles ("Release Your
   * Inner Hustler" etc.) don't wrap awkwardly. */
  .bx-slide .bx-ftitle,
  .bx-slide.is-active .bx-ftitle,
  .bx-slide:not(.is-active) .bx-ftitle {
    opacity: 1 !important;
    font-size: clamp(20px, 5vw, 26px);
    white-space: normal;
    left: 22px;
    right: 22px;
    bottom: 20px;
  }
  .bx-slide .bx-eyebrow,
  .bx-slide.is-active .bx-eyebrow,
  .bx-slide:not(.is-active) .bx-eyebrow {
    opacity: 1 !important;
  }
}

/* ════════════ Croissant footer (Stripe-style structured grid) ════════════ */
.cf-footer { position: relative; background: #FDFDFD; overflow: hidden; font-family: "Manrope", "Inter", sans-serif; }
.cf-inner { box-sizing: border-box; }
.cf-link { color: inherit; text-decoration: none; }

/* 1) CTA band */
.cf-cta { position: relative; display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; padding: 72px 0 56px; align-items: start; }
.cf-cta::before { content: ""; position: absolute; top: -40%; right: -8%; width: 460px; height: 380px; background: radial-gradient(circle at 60% 40%, rgba(22,168,139,0.22), rgba(31,169,214,0.18) 45%, rgba(87,198,240,0) 72%); filter: blur(46px); pointer-events: none; }
.cf-cta-left { position: relative; z-index: 1; }
.cf-cta-h { font-size: 34px; line-height: 1.12; font-weight: 600; color: #1A2634; letter-spacing: -0.01em; margin: 0 0 14px; }
.cf-cta-sub { font-size: 16px; line-height: 1.6; color: #5B6670; margin: 0 0 26px; max-width: 460px; }
.cf-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cf-cta-btn { font-size: 14px; }
.cf-btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; padding: 12px 22px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.cf-btn--fill { background: #1A2634; color: #fff; border: 1px solid #1A2634; }
.cf-btn--fill:hover { background: #16A88B; border-color: #16A88B; }
.cf-btn--out { background: transparent; color: #1A2634; border: 1px solid #C9CFD4; }
.cf-btn--out:hover { border-color: #16A88B; color: #16A88B; }
.cf-cta-right { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 4px; }
.cf-mini-ic { width: 44px; height: 44px; border-radius: 13px; background: #F4F7F6; border: 1px solid #E6EAE9; display: flex; align-items: center; justify-content: center; color: #16A88B; margin-bottom: 14px; }
.cf-mini-ic svg { width: 21px; height: 21px; }bottom: 12px; }
.cf-mini-h { font-size: 15px; font-weight: 600; color: #1A2634; margin: 0 0 6px; }
.cf-mini-p { font-size: 13.5px; line-height: 1.5; color: #5B6670; margin: 0 0 10px; }
.cf-mini-link { font-size: 13.5px; font-weight: 600; color: #16A88B; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.cf-mini-link:hover { color: #0E8C72; }
.cf-mini-arr .shaft { transform-box: fill-box; transform-origin: right center; transform: scaleX(0); opacity: 0; transition: transform 0.25s ease, opacity 0.25s ease; }
.cf-mini-link:hover .cf-mini-arr { transform: translateX(2px); transition: transform 0.25s ease; }
.cf-mini-link:hover .cf-mini-arr .shaft { transform: scaleX(1); opacity: 1; }
.cf-col-links a.cf-link-accent { color: #16A88B; font-weight: 600; }
.cf-col-links a.cf-link-accent:hover { color: #0E8C72; }

/* dashed dividers */
.cf-divider { border: 0; border-top: 1px dashed #E6EAE9; margin: 0; }
.cf-hairline { border: 0; border-top: 1px solid #ECEFEE; margin: 0; }

/* 3) link grid */
.cf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 52px 0; }
.cf-social--bottom { display: flex; gap: 10px; margin: 0; }
.cf-social--cta { display: flex; gap: 10px; margin-top: 22px; }
.cf-social--cta a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #D8DDDB; display: flex; align-items: center; justify-content: center; color: #5B6670; transition: border-color 0.2s, color 0.2s; }
.cf-social--cta a:hover { border-color: #16A88B; color: #16A88B; }
.cf-social--bottom a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #D8DDDB; display: flex; align-items: center; justify-content: center; color: #5B6670; transition: border-color 0.2s, color 0.2s; }
.cf-social--bottom a:hover { border-color: #16A88B; color: #16A88B; }
.cf-grid > * { padding: 0 30px; }
.cf-grid > *:first-child { padding-left: 30px; }
.cf-col-links a, .cf-col-h { padding-left: 0; }
.cf-col + .cf-col, .cf-grid .cf-col { border-left: 1px dashed #E6EAE9; }
.cf-brand-logo { height: 26px; width: auto; display: block; margin-bottom: 16px; }
.cf-brand-tag { font-size: 14px; font-weight: 600; color: #1A2634; margin: 0 0 14px; }
.cf-brand-p { font-size: 13px; line-height: 1.55; color: #5B6670; margin: 0 0 6px; max-width: 240px; }
.cf-brand-mail { font-size: 13px; color: #5B6670; text-decoration: none; }
.cf-brand-mail:hover { color: #16A88B; }
.cf-social { display: flex; gap: 10px; margin-top: 18px; }
.cf-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #D8DDDB; display: flex; align-items: center; justify-content: center; color: #5B6670; transition: border-color 0.2s, color 0.2s; }
.cf-social a:hover { border-color: #16A88B; color: #16A88B; }
.cf-col-h { font-size: 13px; font-weight: 700; color: #1A2634; margin: 0 0 16px; letter-spacing: 0.01em; }
.cf-col-links { display: flex; flex-direction: column; gap: 12px; }
.cf-col-links a { font-size: 13.5px; color: #5B6670; text-decoration: none; transition: color 0.18s; }
.cf-col-links a:hover { color: #16A88B; }

/* 5) bottom bar */
.cf-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 30px; flex-wrap: wrap; }
.cf-bottom-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #5B6670; }

/* ── Tablet (768–991): the 5-col link grid and 2-col CTA band squish
   below ~991px. Collapse the link grid to 3×2 and stack the CTA cards
   so nothing wraps mid-word. Padding also comes in a touch. */
@media (max-width: 991px) {
  .cf-cta { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 40px; }
  .cf-cta-right { grid-template-columns: 1fr; gap: 24px; }
  .cf-cta::before { width: 320px; height: 260px; opacity: 0.7; }
  .cf-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; padding: 40px 0; }
  .cf-grid > * { padding: 0 20px; }
  .cf-grid > *:first-child { padding-left: 20px; grid-column: 1 / -1; padding-bottom: 24px; border-bottom: 1px dashed #E6EAE9; }
  .cf-col + .cf-col, .cf-grid .cf-col { border-left: 0; }
  .cf-grid .cf-col:nth-child(n+2) { border-left: 1px dashed #E6EAE9; padding-left: 20px; }
  .cf-grid .cf-col:nth-child(3n+2) { border-left: 0; padding-left: 0; }
}

/* Phone (≤560): drop to a single column so nothing squeezes. */
@media (max-width: 560px) {
  .cf-grid { grid-template-columns: 1fr; row-gap: 32px; }
  .cf-grid > *, .cf-grid > *:first-child { padding: 0; }
  .cf-grid .cf-col:nth-child(n+2) { border-left: 0; padding-left: 0; padding-top: 24px; border-top: 1px dashed #E6EAE9; }
}

/* ════════════ FAQ (flat Stripe accordion) ════════════ */
.fq-panel { position: relative; background: transparent; border: 0; border-radius: 0; padding: 0; font-family: var(--_font-family-2---font-family-2); }
.fq-guides { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.fq-guides span { position: absolute; top: 0; bottom: 0; border-left: 1px dashed rgba(14, 19, 32, 0.08); }
.fq-guides span:nth-child(1) { left: 25%; }
.fq-guides span:nth-child(2) { left: 50%; }
.fq-guides span:nth-child(3) { left: 75%; }
.fq-head { position: relative; z-index: 1; text-align: left; margin-bottom: 34px; }
.fq-pill { display: inline-flex; align-items: center; gap: 6px; background: #E1F5EE; color: #0F6E56; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.fq-title { font-family: var(--font-family--font-primary); font-size: clamp(30px, 4vw, 48px); font-weight: 600; color: var(--colors--text-color); letter-spacing: -0.02em; margin: 0; }
.fq-tabs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 9px; margin-bottom: 30px; }
.fq-tab { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; padding: 9px 15px; border-radius: 999px; cursor: pointer; color: #5B6670; background: transparent; border: 1px solid #E6EAE9; font-family: var(--_font-family-2---font-family-2); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.fq-tab:hover { border-color: #9FE1CB; }
.fq-tab.is-on { color: #0F6E56; background: #E1F5EE; border-color: #16A88B; }
.fq-panes { position: relative; z-index: 1; max-width: none; margin: 0; }
.fq-pane { display: none; flex-direction: column; gap: 0; border-top: 1px solid #E7EAEE; }
.fq-pane.is-on { display: flex; }
.fq-item { border: 0; border-bottom: 1px solid #E7EAEE; border-radius: 0; background: transparent; overflow: hidden; transition: background 0.2s ease; }
.fq-item.is-open { background: #F4FBF9; }
.fq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 16px; background: transparent; border: 0; cursor: pointer; font-family: var(--font-family--font-primary); text-align: left; font-size: clamp(16px, 1.4vw, 18px); font-weight: 600; letter-spacing: -0.01em; color: var(--colors--text-color); }
.fq-toggle { flex: none; width: 34px; height: 34px; border-radius: 50%; background: #16A88B; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease, background 0.2s ease; }
.fq-item.is-open .fq-toggle { transform: rotate(180deg); background: #0F6E56; }
.fq-plus { display: block; }
.fq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fq-item.is-open .fq-a { max-height: 280px; }
.fq-a p { font-family: var(--_font-family-2---font-family-2); font-size: 16px; line-height: 1.6; color: #5B6670; margin: 0; padding: 0 16px 26px; max-width: 64ch; }
.fq-a a { color: #0F6E56; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(15, 110, 86, 0.35); }
.fq-a a:hover { border-bottom-color: #0F6E56; }
@media (max-width: 560px) { .fq-guides { display: none; } .fq-q { padding: 20px 8px; } .fq-a p { padding: 0 8px 22px; } }
.fq-panel [data-fqreveal] { opacity: 0; transform: translateY(20px); }
.fq-panel.fq-reveal [data-fqreveal] { opacity: 1; transform: none; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }

/* ════════════ Purchase steps (3 steps to get started) ════════════ */
.ps-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; background: #FDFDFD; border: 1px solid #E6EAE9; border-radius: 18px; padding: 38px 34px; font-family: "Inter", sans-serif; }
.ps-pill { display: inline-flex; align-items: center; gap: 6px; background: #E1F5EE; color: #0F6E56; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.ps-h2 { font-size: 28px; font-weight: 700; color: #1A2634; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 12px; }
.ps-sub { font-size: 15px; line-height: 1.6; color: #5B6670; margin: 0 0 22px; max-width: 460px; }
.ps-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.ps-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: 10px; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.ps-btn-fill { background: #16A88B; color: #fff; }
.ps-btn-fill:hover { background: #0F6E56; }
.ps-btn-out { background: #fff; color: #1A2634; border: 1.5px solid #E6EAE9; }
.ps-btn-out:hover { border-color: #16A88B; color: #16A88B; }
.ps-stepper { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ps-line { position: absolute; top: 23px; left: 16%; right: 16%; height: 2px; background: #E6EAE9; z-index: 0; }
.ps-step { position: relative; z-index: 1; text-align: center; }
.ps-badge { position: relative; width: 46px; height: 46px; border-radius: 50%; background: #16A88B; display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 0 0 6px #FDFDFD; }
.ps-num { position: absolute; top: -4px; right: 50%; margin-right: -27px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 1.5px solid #16A88B; color: #0F6E56; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.ps-title { font-size: 16px; font-weight: 600; color: #1A2634; margin: 14px 0 6px; }
.ps-desc { font-size: 13px; line-height: 1.5; color: #5B6670; margin: 0; }
.ps-illus { display: flex; align-items: center; justify-content: center; }
.ps-illus-img { max-width: 100%; height: auto; }
.ps-panel [data-ps] { opacity: 0; transform: translateY(20px); }
.ps-panel.ps-reveal [data-ps] { opacity: 1; transform: none; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
@media (max-width: 700px) {
  .ps-panel { grid-template-columns: 1fr; gap: 28px; }
  .ps-illus { order: 2; }
  .ps-stepper { grid-template-columns: 1fr; gap: 24px; }
  .ps-line { display: none; }
}

/* ════════════ Explore pricing comparison ════════════ */
.xp-panel { background: #FDFDFD; border: 1px solid #E6EAE9; border-radius: 18px; padding: 34px 30px 30px; font-family: "Inter", sans-serif; }
.xp-head { text-align: center; max-width: 620px; margin: 0 auto 26px; }
.xp-pill { display: inline-flex; align-items: center; gap: 6px; background: #E1F5EE; color: #0F6E56; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.xp-title { font-size: 26px; font-weight: 700; color: #1A2634; letter-spacing: -0.02em; margin: 0 0 10px; }
.xp-intro { font-size: 14px; line-height: 1.55; color: #5B6670; margin: 0; }
.xp-table { position: relative; }
.xp-row { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; align-items: center; }
.xp-c { padding: 0 14px; display: flex; flex-direction: column; justify-content: center; }
.xp-c-mark { align-items: center; }
/* Standard highlight column (continuous panel) */
.xp-mid { background: #F4FBF9; border-left: 1.5px solid #16A88B; border-right: 1.5px solid #16A88B; position: relative; }
.xp-planrow .xp-mid { border-top: 1.5px solid #16A88B; border-radius: 13px 13px 0 0; }
.xp-btnrow .xp-mid { border-bottom: 1.5px solid #16A88B; border-radius: 0 0 13px 13px; }
/* Plan header row */
.xp-planrow { border-bottom: 1px solid #E6EAE9; }
.xp-plan { padding-top: 24px; padding-bottom: 16px; gap: 3px; }
.xp-pname { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; color: #1A2634; }
.xp-price { font-size: 24px; font-weight: 700; color: #1A2634; }
.xp-mo { font-size: 12px; font-weight: 500; color: #5B6670; margin-left: 2px; }
.xp-price-sm { font-size: 20px; font-weight: 700; }
.xp-aud { font-size: 11.5px; font-weight: 600; }
.xp-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); background: #16A88B; color: #fff; font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
/* Group label rows */
.xp-grouprow .xp-group { padding-top: 16px; }
.xp-group { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; color: #5B6670; text-transform: uppercase; }
/* Feature rows */
.xp-row:not(.xp-grouprow):not(.xp-planrow):not(.xp-btnrow) .xp-feat { border-top: 1px solid #F0F2F1; }
.xp-row:not(.xp-grouprow):not(.xp-planrow):not(.xp-btnrow) .xp-c-mark { border-top: 1px solid #F0F2F1; }
.xp-feat { font-size: 13.5px; color: #1A2634; padding-top: 11px; padding-bottom: 11px; }
.xp-c-mark { padding-top: 11px; padding-bottom: 11px; }
.xp-tick { width: 22px; height: 22px; border-radius: 50%; background: #16A88B; display: flex; align-items: center; justify-content: center; }
.xp-cross { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #E6EAE9; }
/* Button row */
.xp-btnrow .xp-c { padding-top: 18px; padding-bottom: 8px; align-items: stretch; }
.xp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 9px; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.xp-btn-out { color: #16A88B; border: 1.5px solid #16A88B; background: #fff; }
.xp-btn-out:hover { background: #F4FBF9; }
.xp-btn-fill { color: #fff; background: #16A88B; border: 1.5px solid #16A88B; }
.xp-btn-fill:hover { background: #0F6E56; border-color: #0F6E56; }
/* reveal */
.xp-armed .xp-row[data-xp], .xp-mobile.xp-armed .xpm-card[data-xp] { opacity: 0; transform: translateY(20px); }
.xp-armed .xp-row.xp-in[data-xp], .xp-mobile.xp-armed .xpm-card.xp-in[data-xp] { opacity: 1; transform: none; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
/* Mobile cards */
.xp-mobile { display: none; }
.xpm-card { position: relative; background: #FDFDFD; border: 1px solid #E6EAE9; border-radius: 16px; padding: 24px 20px; margin-bottom: 18px; }
.xpm-pop { border: 1.5px solid #16A88B; background: #F4FBF9; }
.xpm-card .xp-pname { display: block; margin-top: 4px; }
.xpm-card .xp-price { display: block; margin: 6px 0 2px; }
.xpm-card .xp-aud { display: block; margin-bottom: 14px; }
.xpm-group { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; color: #5B6670; text-transform: uppercase; margin: 16px 0 8px; }
.xpm-frow { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; color: #1A2634; padding: 8px 0; border-top: 1px solid #F0F2F1; }
.xpm-card .xp-btn { width: 100%; margin-top: 18px; }
@media (max-width: 767px) {
  .xp-panel { display: none; }
  .xp-mobile { display: block; }
}

/* ════════════ Customer story page ════════════ */
.cst-wrap { background: #FDFDFD; }
.cst-inner { max-width: 1180px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; }
.cst-bread { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 34px 0 0; font-size: 13.5px; }
.cst-bread a { color: #16A88B; text-decoration: none; }
.cst-bread a:hover { color: #0E8C72; }
.cst-bread-r { display: flex; gap: 22px; }
.cst-bread-r a { color: #5B6670; }
.cst-bread-r a:hover { color: #16A88B; }
.cst-header { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; padding: 40px 0 56px; align-items: start; border-bottom: 1px solid #E6EAE9; }
.cst-h1 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; color: #1A2634; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 22px; text-wrap: balance; }
.cst-intro { font-size: 18px; line-height: 1.6; color: #5B6670; margin: 0; max-width: 560px; }
.cst-intro a { color: #16A88B; text-decoration: none; font-weight: 600; }
.cst-prod { background: #fff; border: 1px solid #E6EAE9; border-radius: 16px; padding: 24px; box-shadow: 0 1px 3px rgba(14,19,32,0.04), 0 10px 26px rgba(14,19,32,0.05); }
.cst-prod-name { font-size: 18px; font-weight: 700; color: #1A2634; margin: 0 0 20px; }
.cst-prod-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: #8A9099; margin: 0 0 12px; }
.cst-prod-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #475467; padding: 8px 0; }
.cst-prod-row svg { color: #16A88B; flex: none; }
.cst-prod-div { border: 0; border-top: 1px solid #E6EAE9; margin: 16px 0; }
.cst-body { display: grid; grid-template-columns: 300px 1fr; gap: 64px; padding: 56px 0 80px; }
.cst-rail { position: sticky; top: 110px; align-self: start; }
.cst-stat { padding-left: 16px; border-left: 3px solid #16A88B; margin-bottom: 30px; }
.cst-stat-n { font-size: clamp(28px, 4.5vw, 40px); font-weight: 700; color: #1A2634; letter-spacing: -0.02em; line-height: 1; }
.cst-stat-c { font-size: 14px; line-height: 1.5; color: #5B6670; margin-top: 8px; }
.cst-rail-cta { margin-top: 36px; }
.cst-rail-cta p { font-size: 16px; font-weight: 600; color: #1A2634; margin: 0 0 14px; }
.cst-article { max-width: 680px; }
.cst-eyebrow2 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: #16A88B; margin: 0 0 12px; }
.cst-article h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #1A2634; letter-spacing: -0.01em; margin: 0 0 18px; }
.cst-article h3 { font-size: 20px; font-weight: 600; color: #1A2634; margin: 36px 0 14px; }
.cst-article p { font-size: 17px; line-height: 1.7; color: #475467; margin: 0 0 18px; }
.cst-article section { margin-bottom: 48px; }
.cst-pquote { border-left: 3px solid #16A88B; padding: 6px 0 6px 22px; margin: 28px 0; }
.cst-pquote p { font-size: 20px; line-height: 1.5; color: #1A2634; font-weight: 500; font-style: italic; margin: 0 0 12px; }
.cst-pquote cite { font-size: 14px; color: #5B6670; font-style: normal; }
.cst-quotecard { position: relative; overflow: hidden; background: #0B0E14; border-radius: 22px; padding: clamp(36px, 6vw, 72px); margin: 0 0 80px; }
.cst-quotecard::before { content:""; position:absolute; top:-30%; right:-10%; width:480px; height:420px; background: radial-gradient(circle at 60% 40%, rgba(22,168,139,0.28), rgba(31,169,214,0.16) 50%, transparent 75%); filter: blur(50px); pointer-events:none; }
.cst-quotecard blockquote { position: relative; z-index: 1; margin: 0; }
.cst-quotecard p { font-size: clamp(22px, 3vw, 32px); line-height: 1.35; color: #fff; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 26px; text-wrap: balance; }
.cst-quotecard cite { font-size: 15px; color: #AEB7C2; font-style: normal; font-weight: 600; }
.cst-quotecard cite b { color: #fff; }
/* Tablet + phone: at ≤991 the fixed 300px rail leaves the article
   column too narrow to breathe. Stack rail BELOW the article — the
   article is the primary read; stats and CTA become a supportive
   footer strip. Rail becomes a wrap flex so stats sit side-by-side
   until they can't. */
@media (max-width: 991px) {
  .cst-header { grid-template-columns: 1fr; gap: 32px; }
  .cst-body { display: flex; flex-direction: column; gap: 36px; padding: 40px 0 72px; }
  .cst-article { max-width: none; order: 1; }
  .cst-rail { order: 2; position: static; display: flex; flex-wrap: wrap; gap: 24px; margin-top: 8px; padding-top: 32px; border-top: 1px solid #E6EAE9; }
  .cst-stat { margin-bottom: 0; flex: 1 1 200px; }
  .cst-rail-cta { width: 100%; margin-top: 12px; }
}

/* ════════════ Pricing (per-seat) ════════════ */
.pr-section { background: #FDFDFD; padding: 84px 0; }
.pr-inner { max-width: 1180px; margin: 0 auto; padding: 0 5%; box-sizing: border-box; }
.pr-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.pr-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: #16A88B; margin: 0 0 14px; }
.pr-title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: #1A2634; letter-spacing: -0.02em; margin: 0 0 14px; }
.pr-sub { font-size: 16px; line-height: 1.6; color: #5B6670; margin: 0 0 28px; }
.pr-toggle { display: inline-flex; align-items: center; gap: 4px; background: #F1F4F3; border: 1px solid #E6EAE9; border-radius: 10px; padding: 4px; }
.pr-toggle button { border: 0; background: transparent; font-family: inherit; font-size: 14px; font-weight: 600; color: #5B6670; padding: 8px 18px; border-radius: 8px; cursor: pointer; transition: background 0.2s, color 0.2s; display: inline-flex; align-items: center; gap: 7px; }
.pr-toggle button.is-on { background: #fff; color: #1A2634; box-shadow: 0 1px 3px rgba(14,19,32,0.1); }
.pr-save { font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; color: #0F8C72; background: #DDF2EA; padding: 2px 7px; border-radius: 999px; }
.pr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 8px; }
.pr-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #E6EAE9; border-radius: 18px; padding: 30px 28px; box-shadow: 0 1px 3px rgba(14,19,32,0.04), 0 14px 34px rgba(14,19,32,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pr-card:hover { transform: translateY(-4px); box-shadow: 0 1px 3px rgba(14,19,32,0.05), 0 22px 50px rgba(14,19,32,0.10); }
.pr-card--pop { border-color: rgba(22,168,139,0.55); box-shadow: 0 1px 3px rgba(14,19,32,0.05), 0 24px 54px rgba(22,168,139,0.16); }
.pr-card--pop::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 18px 18px 0 0; background: linear-gradient(90deg,#16A88B,#1FA9D6); }
.pr-badge { position: absolute; top: 0; right: 24px; transform: translateY(-50%); background: linear-gradient(135deg,#16A88B,#1FA9D6); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(22,168,139,0.3); }
.pr-tier { font-size: 14px; font-weight: 600; color: #1A2634; margin: 0 0 14px; }
.pr-price-row { display: flex; align-items: baseline; gap: 6px; min-height: 44px; }
.pr-price { font-size: 38px; font-weight: 700; color: #1A2634; letter-spacing: -0.02em; line-height: 1; transition: opacity 0.2s ease; }
.pr-unit { font-size: 14px; font-weight: 500; color: #5B6670; }
.pr-basis { font-size: 12.5px; color: #8A9099; margin: 8px 0 0; min-height: 18px; }
.pr-desc { font-size: 14px; line-height: 1.55; color: #5B6670; margin: 16px 0 0; }
.pr-hr { border: 0; border-top: 1px solid #E6EAE9; margin: 22px 0; }
.pr-feats { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.pr-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; color: #475467; }
.pr-feats svg { flex: none; margin-top: 1px; color: #16A88B; }
.pr-feats .pr-feat-lead { font-weight: 600; color: #1A2634; }
.pr-cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; }
.pr-cta--fill { background: #16A88B; color: #fff; border: 1px solid #16A88B; }
.pr-cta--fill:hover { background: #13977D; }
.pr-cta--out { background: #fff; color: #1A2634; border: 1px solid #C9CFD4; }
.pr-cta--out:hover { border-color: #16A88B; color: #16A88B; }
.pr-reassure { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
.pr-reassure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: #5B6670; }
.pr-reassure svg { color: #16A88B; flex: none; }
@media (max-width: 900px) { .pr-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ════════════ HR-integration graph (neutral mock) ════════════ */
.ig-stage { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto auto; align-items: center; justify-items: center; gap: 26px 44px; max-width: 940px; margin: 56px auto 8px; }
.ig-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.ig-cell { position: relative; z-index: 2; }
.ig-cell-top { grid-column: 2; grid-row: 1; }
.ig-cell-left { grid-column: 1; grid-row: 2; }
.ig-cell-right { grid-column: 3; grid-row: 2; }
.ig-cell-bottom { grid-column: 2; grid-row: 3; }
.ig-hub { position: relative; z-index: 3; grid-column: 2; grid-row: 2; width: 104px; height: 104px; border-radius: 34px; background: #141C30; border: 1px solid #16A88B; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 28px 2px rgba(22,168,139,0.28); }
.ig-group { display: flex; align-items: center; justify-content: center; gap: 14px; }
.ig-top { flex-direction: column; }
.ig-bottom { flex-direction: column-reverse; }
.ig-left { flex-direction: row; }
.ig-right { flex-direction: row-reverse; }
.ig-panel { display: flex; gap: 12px; padding: 14px; background: #10182A; border: 1px solid #2E3C5A; border-radius: 18px; }
.ig-pill { padding: 8px 16px; background: #18203A; border: 1px solid #16A88B; border-radius: 14px; color: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; }
.ig-tile { width: 60px; height: 60px; perspective: 600px; }
  .ig-tile-inner { position: relative; width: 100%; height: 100%; transition: transform 0.5s ease-in-out; transform-style: preserve-3d; }
.ig-tile.is-flipped .ig-tile-inner { transform: rotateX(180deg); }
.ig-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.ig-front { background: #fff; padding: 10px; }
.ig-front img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ig-back { transform: rotateX(180deg); background: #0C1322; border: 1.5px dotted #3A496B; }
.ig-line { fill: none; stroke: rgba(150,164,196,0.32); stroke-width: 1.4; stroke-dasharray: 1.5 5; stroke-linecap: round; }
.ig-pulse { fill: #7FE3CC; }
@media (max-width: 820px) {
  .ig-stage { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto auto; gap: 22px; }
  .ig-svg { display: none; }
  .ig-cell-top { grid-column: 1; grid-row: 2; }
  .ig-hub { grid-column: 1; grid-row: 1; }
  .ig-cell-left { grid-column: 1; grid-row: 3; }
  .ig-cell-right { grid-column: 1; grid-row: 4; }
  .ig-cell-bottom { grid-column: 1; grid-row: 5; }
  .ig-left, .ig-right { flex-direction: column; }
  .ig-panel { flex-wrap: wrap; justify-content: center; }
}

/* ════════════ Section dividers (light-grey hairlines) ════════════ */
.pg-div-wrap { padding-top: 0 !important; padding-bottom: 0 !important; }
.pg-divider { border: 0; border-top: 1px solid #E6EAE9; margin: 0; width: 100%; }
.pricing-plan-section .container-default { box-shadow: inset 1px 0 0 #E6EAE9, inset -1px 0 0 #E6EAE9; }
.features-section.dark-bg .om-grid { border-left: 1px solid #E6EAE9; border-right: 1px solid #E6EAE9; padding-top: 8px; }

/* ════════════ Croissant Sessions banner ════════════ */
.cs-banner-section { padding: 40px 0; background: transparent; }
.cs-banner { position: relative; display: block; width: 100%; margin: 0 auto; aspect-ratio: 3 / 1; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(14,19,32,0.18); text-decoration: none; }
.cs-photo { position: absolute; inset: 0; background-image: url("/static/images/croissant_sessions_event.png"); background-size: cover; background-position: center 42%; }
.cs-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(8,11,16,0.82) 0%, rgba(8,11,16,0.5) 38%, rgba(8,11,16,0.08) 70%, rgba(8,11,16,0) 100%),
  linear-gradient(180deg, rgba(8,11,16,0.32) 0%, rgba(8,11,16,0) 30%, rgba(8,11,16,0) 64%, rgba(8,11,16,0.36) 100%); }
.cs-content { position: absolute; top: 0; left: 0; padding: clamp(28px, 5vw, 64px); max-width: 640px; }
.cs-head { color: #fff; font-weight: 700; font-size: clamp(26px, 4vw, 50px); line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 26px; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.cs-cta { vertical-align: middle; }
/* Applies at rest AND on :hover, and includes button.* variants so the
 * specificity beats the generic button.hero-btn--primary:hover rule that
 * would otherwise force a dark background + leave text unreadable. */
.cs-cta.hero-btn--primary,
.cs-cta.hero-btn--primary:hover,
button.cs-cta.hero-btn--primary,
button.cs-cta.hero-btn--primary:hover { background: #fff !important; background-color: #fff !important; color: #1A2634 !important; transition: none !important; transform: none !important; }
.cs-banner:hover .cs-cta.hero-btn--primary { transform: none; box-shadow: none; }

/* chevron → arrow hover swap */
.bt-ic { position: relative; display: inline-block; width: 16px; height: 16px; vertical-align: middle; }
.bt-ic svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); transition: opacity 0.2s ease; }
.bt-arrow { opacity: 0; }
.cs-cta:hover .bt-chev, .cn-btn--fill:hover .bt-chev, .features-section .button-primary:hover .bt-chev { opacity: 0; }
.cs-cta:hover .bt-arrow, .cn-btn--fill:hover .bt-arrow, .features-section .button-primary:hover .bt-arrow { opacity: 1; }
.cs-brand { position: absolute; right: clamp(20px, 4vw, 48px); bottom: clamp(20px, 4vw, 40px); display: flex; align-items: center; gap: 9px; color: #fff; }
.cs-brand-txt { font-size: 18px; letter-spacing: -0.01em; }
.cs-brand-txt strong { font-weight: 600; }
@media (max-width: 600px) {
  .cs-banner { aspect-ratio: 4 / 3; }
  .cs-scrim { background:
    linear-gradient(180deg, rgba(8,11,16,0.45) 0%, rgba(8,11,16,0.15) 34%, rgba(8,11,16,0.55) 78%, rgba(8,11,16,0.8) 100%); }
  .cs-content { max-width: 100%; padding-right: 24px; }
  .cs-brand { left: 0; right: 0; justify-content: center; bottom: 22px; }
}

/* ════════════ Outcomes — icon + heading + paragraph grid ════════════ */
.om-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 56px; margin-top: 18px; align-items: start; padding: 0 30px; }
.om-card { display: block; }
.om-ic { width: 56px; height: 56px; border-radius: 16px; background: #F4F7F6; border: 1px solid #E6EAE9; display: flex; align-items: center; justify-content: center; color: #16A88B; margin-bottom: 20px; }
.om-ic svg { width: 26px; height: 26px; }
.om-h { font-size: 18px; font-weight: 600; color: #1A2634; margin: 0 0 10px; letter-spacing: -0.01em; }
.om-text { font-size: 15.5px; line-height: 1.6; color: #5B6670; margin: 0; }
@media (max-width: 900px) { .om-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 560px) { .om-grid { grid-template-columns: 1fr; } }

/* ════════════ Connect-to-HR-stack node graph ════════════ */
.cn-section { position: relative; overflow: hidden; padding: 88px 0 96px; font-family: "Manrope","Inter",sans-serif; background: linear-gradient(180deg,#172038 0%,#121A2C 100%); }
.cn-section::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(38,50,76,0.85) 1px, transparent 1px); background-size: 22px 22px; pointer-events:none; }
.cn-inner { position: relative; z-index: 1; }
.cn-head { max-width: 760px; margin-bottom: 54px; }
.cn-eyebrow { font-size: 15px; line-height: 1.55; color: #16A88B; font-weight: 600; margin: 0 0 18px; }
.cn-eyebrow .cn-muted { color: #6B7686; font-weight: 400; }
.cn-title { font-size: 30px; line-height: 1.3; font-weight: 600; color: #fff; letter-spacing: -0.01em; margin: 0 0 26px; }
.cn-title .cn-muted { color: #79828F; font-weight: 400; }
.cn-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cn-btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; padding: 12px 22px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; }
.cn-btn--fill { background: #16A88B; color: #fff; border: 1px solid #16A88B; }
.cn-btn--fill:hover { background: #16A88B; transform: none; }

/* Outcomes Contact Sales — static, no hover motion */
.features-section .button-primary { transition: none !important; }
.features-section .button-primary:hover { transform: none !important; }
.features-section .button-primary .arr .shaft { transform: none !important; opacity: 1 !important; transition: none !important; }
.features-section .button-primary:hover .arr { transform: none !important; }

/* Footer mini-cards — keep the pair balanced */
.cf-mini { display: flex; flex-direction: column; }
.cf-mini-h { min-height: 40px; }
.cf-mini-p { min-height: 40px; }

/* Footer social text links */
.cf-social-links { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.cf-social-links a { font-size: 13.5px; color: #5B6670; text-decoration: none; transition: color 0.18s; }
.cf-social-links a:hover { color: #16A88B; }
.cn-btn--out { background: transparent; color: #4FD0B6; border: 1px solid rgba(22,168,139,0.5); }
.cn-btn--out:hover { border-color: #16A88B; color: #6FE0C8; }

/* diagram */
.cn-stage { position: relative; }
.cn-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.cn-grid { position: relative; z-index: 1; display: grid; gap: 26px 20px; grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr; grid-template-areas: "top top top top top" "napi napi . nweb nweb" "tiles int hub exp ext" ". . ai . ." "leaves leaves leaves leaves leaves"; align-items: center; }
/* node base */
.cn-node { position: relative; border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center; font-size: 13.5px; font-weight: 600; min-height: 48px; box-sizing: border-box; opacity: 0; transform: translateY(12px) scale(0.96); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.25s ease; cursor: default; }
.cn-ready .cn-node { opacity: 1; transform: none; }
.cn-node--solid { background: linear-gradient(135deg,#16A88B,#1FA9D6); color: #fff; box-shadow: 0 6px 20px rgba(22,168,139,0.25); }
.cn-node--blue { background: linear-gradient(135deg,#1FA9D6,#3D8BE0); color: #fff; box-shadow: 0 6px 20px rgba(31,169,214,0.22); }
.cn-node--muted { background: #141A24; color: #AEB7C2; border: 1px solid rgba(31,169,214,0.32); }
.cn-node--int { cursor: pointer; }
.cn-node--int:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 34px rgba(22,168,139,0.45); }
.cn-hub { flex-direction: column; gap: 7px; min-height: 116px; border-radius: 20px; background: radial-gradient(120% 120% at 50% 0%, #1B2A38, #0E1722); border: 1px solid rgba(22,168,139,0.4); color: #fff; box-shadow: 0 0 0 rgba(22,168,139,0.5); animation: cn-breathe 3s ease-in-out infinite; }
.cn-hub .cn-q { width: 34px; height: 34px; }
.cn-hub-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
@keyframes cn-breathe { 0%,100% { box-shadow: 0 0 24px 2px rgba(22,168,139,0.25); } 50% { box-shadow: 0 0 46px 8px rgba(22,168,139,0.5); } }
/* top row group */
.cn-toprow { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cn-toprow .cn-node { flex: 1 1 0; min-width: 96px; }
/* icon tiles */
.cn-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cn-tile { position: relative; aspect-ratio: 1; border-radius: 11px; background: #141A24; border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cn-tile-ic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; color: #fff; opacity: 0; transition: opacity 0.6s ease; }
.cn-tile-ic.is-on { opacity: 1; }
.cn-leaf { font-size: 12.5px; font-weight: 600; padding: 11px 12px; min-height: 42px; }
.cn-leafrow { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
/* connectors */
.cn-path { fill: none; stroke: rgba(31,169,214,0.32); stroke-width: 1.5; stroke-dasharray: 4 5; }
.cn-pulse { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke: #4FD0B6; filter: drop-shadow(0 0 5px rgba(79,208,182,0.9)); opacity: 0.9; }
@media (max-width: 860px) {
  .cn-leafrow { grid-template-columns: repeat(2,1fr); }
  .cn-title { font-size: 25px; }
}
.cf-locale { display: inline-flex; align-items: center; gap: 7px; color: #16A88B; font-weight: 500; text-decoration: none; }
.cf-locale:hover { color: #0E8C72; }
.cf-bottom-right { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #5B6670; }
.cf-bottom-right a { color: #5B6670; text-decoration: underline; text-underline-offset: 2px; }
.cf-bottom-right a:hover { color: #16A88B; }
.cf-qmark { color: #1A2634; display: flex; align-items: center; }
.cr-q { width: 22px; height: 22px; object-fit: contain; display: block; }
.cf-qmark .cr-q { width: 20px; height: 20px; }
.cn2-hub .cr-q { width: 42px; height: 42px; }
.ig-hub .cr-q { width: 46px; height: 46px; }
.cs-brand .cr-q { width: 22px; height: 22px; }
.cr-q--white { filter: brightness(0) invert(1); }
/* Force the Outcomes intro paragraph legible (slate) over the light surface. */
.features-section.dark-bg .section-top-right .feature-section-top-text.color-white { color: #5B6670 !important; }
.features-section.dark-bg .section-top-right .feature-section-top-text.color-white strong { color: #16A88B !important; }

/* locale picker popover */
.cf-locale-wrap { position: relative; }
.cf-locale { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
.cf-locale-pop { position: absolute; bottom: calc(100% + 14px); left: 0; width: min(720px, 86vw); max-height: 60vh; overflow-y: auto; background: #FDFDFD; border: 1px solid #E6EAE9; border-radius: 16px; box-shadow: 0 24px 60px rgba(14,19,32,0.18), 0 4px 12px rgba(14,19,32,0.08); padding: 22px; z-index: 40; opacity: 0; transform: translateY(8px) scale(0.98); transform-origin: bottom left; transition: opacity 0.2s ease, transform 0.2s ease; }
.cf-locale-pop.is-open { opacity: 1; transform: translateY(0) scale(1); }
.cf-locale-pop::after { content: ""; position: absolute; bottom: -7px; left: 24px; width: 14px; height: 14px; background: #FDFDFD; border-right: 1px solid #E6EAE9; border-bottom: 1px solid #E6EAE9; transform: rotate(45deg); }
.cf-loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 24px; }
.cf-loc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.cf-loc-flag { font-size: 16px; line-height: 1; border-radius: 3px; }
.cf-loc-tick { flex: none; }
.cf-loc-name { font-size: 13.5px; font-weight: 600; color: #1A2634; }
.cf-loc-langs { display: flex; flex-wrap: wrap; gap: 4px 12px; padding-left: 26px; }
.cf-loc-lang { background: none; border: 0; padding: 2px 0; font-family: inherit; font-size: 12.5px; color: #5B6670; cursor: pointer; transition: color 0.15s; }
.cf-loc-lang:hover { color: #16A88B; }
.cf-loc-lang.is-on { color: #16A88B; font-weight: 600; }
@media (max-width: 860px) { .cf-loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cf-loc-grid { grid-template-columns: 1fr; } .cf-locale-pop { width: 86vw; } }

@media (max-width: 991px) {
  .cf-cta { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .cf-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px 0; }
  .cf-grid > * { padding: 0 24px; }
  .cf-grid > .cf-brand { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
  .cf-col:nth-child(2) { border-left: 0; padding-left: 0; }
}
@media (max-width: 640px) {
  .cf-cta-right { grid-template-columns: 1fr; gap: 22px; }
  .cf-grid { grid-template-columns: 1fr 1fr; }
  .cf-grid > * { padding: 0 18px; }
  .cf-col { border-left: 0 !important; padding-left: 0 !important; }
  .cf-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════════ Pricing — two-card (price page hero) ════════════
   Replaces the legacy three-tier block. Built on site tokens:
   BrittiSans headings (--font-family--font-primary), Inter body
   (--_font-family-2---font-family-2), brand green/teal accents, site
   card borders, and .button-primary / .blue-button buttons. */
.pp-pricing { position: relative; overflow: hidden; padding: 8px 0 20px; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.page-wrapper:has(.pp-pricing) { overflow-x: clip; }
.pp-ribbon {
  position: absolute; left: -10%; right: -10%; top: 44%; height: 320px;
  transform: rotate(-7deg); filter: blur(8px); opacity: 0.5; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(111, 194, 141, 0) 0%,
    #6FC28D 18%,
    #45BE8A 40%,
    #16A88B 58%,
    #57C6F0 80%,
    rgba(87, 198, 240, 0) 100%);
}
.pp-inner { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
@media (min-width: 1280px) { .pp-inner { max-width: 1170px; padding-left: 0; padding-right: 0; } }
@media (min-width: 1440px) { .pp-inner { max-width: 1320px; } }
@media (max-width: 991px) { .pp-inner { max-width: 740px; } }
@media (max-width: 767px) { .pp-inner { max-width: 630px; } }
.pp-pricing .pr-eyebrow { margin-bottom: 18px; }
.pp-title {
  font-family: var(--font-family--font-primary);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--colors--text-color);
  max-width: 16ch;
  margin: 0 0 44px;
}
.pp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.pp-card {
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 24px 54px -26px rgba(14, 19, 32, 0.30);
}
.pp-card--light { background: var(--colors--white); border: 1px solid #E7EAEE; }
.pp-card--dark { background: #0E1320; border: 1px solid #0E1320; color: #fff; }
.pp-plan { display: flex; flex-direction: column; }
.pp-plan-name {
  font-family: var(--font-family--font-primary);
  font-weight: 600; font-size: 25px; letter-spacing: -0.01em; line-height: 1.2;
  color: var(--colors--text-color); margin: 0 0 14px;
}
.pp-card--dark .pp-plan-name { color: #fff; }
.pp-plan-desc {
  font-family: var(--_font-family-2---font-family-2);
  font-size: 15px; line-height: 1.6; color: #5B6670; max-width: 34ch; margin: 0 0 28px;
}
.pp-card--dark .pp-plan-desc { color: rgba(255, 255, 255, 0.68); }
.pp-btn { margin-top: auto; align-self: flex-start; white-space: nowrap; }
.pp-btn--teal { background-color: #16A88B !important; border-color: #16A88B !important; color: #fff !important; }
.pp-btn--teal:hover { background-color: #13977D !important; border-color: #13977D !important; }
.pp-panel {
  background: #F4F7F6; border: 1px solid #E6EAE9; border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; justify-content: center;
}
.pp-card--dark .pp-panel--bare { background: transparent; border: 0; padding: 0; }
.pp-price { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.pp-cur { font-weight: 400; font-size: 0.72em; margin-right: 1px; }
.pp-amount {
  font-family: var(--font-family--font-primary);
  font-weight: 600; font-size: clamp(38px, 3.6vw, 46px);
  letter-spacing: -0.02em; line-height: 1; color: var(--colors--text-color);
}
.pp-per { font-family: var(--_font-family-2---font-family-2); font-weight: 500; font-size: 15px; color: #5B6670; }
.pp-sub { font-family: var(--_font-family-2---font-family-2); font-size: 15px; color: #5B6670; margin: 14px 0 0; }
.pp-sub b { color: #0F8C72; font-weight: 600; }
.pp-features { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.pp-features li {
  font-family: var(--font-family--font-primary);
  font-weight: 600; font-size: 15px; color: #fff; text-align: center;
  padding: 15px 16px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.10);
}
@media (max-width: 900px) {
  .pp-cards { grid-template-columns: 1fr; }
  .pp-card { grid-template-columns: 1fr; gap: 24px; }
  .pp-title { margin-bottom: 32px; }
}

/* ── Pricing jump-nav pill (Stripe-style, sits over the cards' bottom edge) ── */
/* Pill jump-nav scrolling is handled by JS (snappy ease-out, no start delay). */
#pp-standard, #pp-enterprise, #faq, #standard-pricing, #enterprise-pricing { scroll-margin-top: 100px; }
.pp-jump {
  position: relative;
  z-index: 3;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--colors--white);
  border: 1px solid #E7EAEE;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(14, 19, 32, 0.05), 0 18px 40px -16px rgba(14, 19, 32, 0.28);
}
.pp-jump-link {
  font-family: var(--font-family--font-primary);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  color: #5B6670;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.pp-jump-link:hover { color: var(--colors--text-color); background: #F4F7F6; }
.pp-jump-link.is-active { font-weight: 600; color: var(--colors--text-color); background: #F1F5F2; }
@media (max-width: 520px) {
  .pp-jump { gap: 2px; padding: 5px; }
  .pp-jump-link { font-size: 13.5px; padding: 9px 12px; }
}

/* ════════════ "Out of the box" features (price page) ════════════
   Duotone icons recolour from these green tokens; BrittiSans titles,
   Inter checklist text, brand-green accent bar + check bullets. */
.pf-features {
  --pf-soft: #DCEFE7;
  --pf-mid: #6FC28D;
  --pf-strong: #16A88B;
  position: relative;
  overflow: hidden;
  padding: 44px 0 88px;
}
.pf-inner { position: relative; }
.pf-guides { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pf-guides span { position: absolute; top: 0; bottom: 0; border-left: 1px dashed rgba(14, 19, 32, 0.09); }
.pf-guides span:nth-child(1) { left: 25%; }
.pf-guides span:nth-child(2) { left: 50%; }
.pf-guides span:nth-child(3) { left: 75%; }
.pf-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-family--font-primary);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--colors--text-color);
  margin: 0 0 52px;
}
.pf-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  row-gap: 56px;
}
.pf-feat { display: flex; flex-direction: column; }
.pf-ic { width: 52px; height: 52px; margin-bottom: 20px; }
.pf-ic svg { width: 100%; height: 100%; display: block; }
.pf-feat-title {
  font-family: var(--font-family--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--colors--text-color);
  padding-left: 14px;
  border-left: 3px solid var(--pf-strong);
  margin: 0 0 18px;
  min-height: 46px;
}
.pf-checks { list-style: none; display: flex; flex-direction: column; gap: 13px; padding: 0; margin: 0; }
.pf-checks li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--_font-family-2---font-family-2);
  font-size: 15px; line-height: 1.4; color: #3A4150;
}
.pf-tick {
  width: 21px; height: 21px; border-radius: 50%;
  background: #E4F6F1;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pf-tick svg { width: 12px; height: 12px; color: var(--pf-strong); display: block; }
@media (max-width: 980px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; column-gap: 32px; }
  .pf-guides { display: none; }
  .pf-feat-title { min-height: 0; }
}
@media (max-width: 560px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-features { padding: 64px 0 76px; }
}

/* ════════════ Pricing detail sections (Standard / Enterprise) ════════════
   Duotone icons recolour from --pd-* green tokens; BrittiSans headings,
   Inter body, brand-green accents, site card border + .button-primary buttons. */
.pd { --pd-soft: #DCEFE7; --pd-mid: #6FC28D; --pd-strong: #16A88B; position: relative; overflow: hidden; padding: 84px 0; }
.pd + .pd { border-top: 1px solid #E7EAEE; }
#standard-pricing { background: #F3F6F9; }
#standard-pricing .pd-pkg { background: var(--colors--white); }
.pd-inner { position: relative; z-index: 1; }
.pd-guides { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pd-guides span { position: absolute; top: 0; bottom: 0; border-left: 1px dashed rgba(14, 19, 32, 0.08); }
.pd-guides span:nth-child(1) { left: 25%; }
.pd-guides span:nth-child(2) { left: 50%; }
.pd-guides span:nth-child(3) { left: 75%; }
.pd-eyebrow { font-family: var(--font-family--font-primary); font-weight: 600; font-size: 15px; letter-spacing: 0.01em; color: #16A88B; margin: 0 0 22px; }
.pd-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pd-lead-h { font-family: var(--font-family--font-primary); font-weight: 600; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.07; letter-spacing: -0.02em; color: var(--colors--text-color); max-width: 14ch; margin: 0 0 24px; }
.pd-lead-p { font-family: var(--_font-family-2---font-family-2); font-size: 17px; line-height: 1.6; color: #5B6670; max-width: 44ch; margin: 0 0 30px; }
.pd-pkg { background: var(--colors--white); border: 1px solid #E7EAEE; border-radius: 16px; padding: 32px; box-shadow: 0 1px 3px rgba(14, 19, 32, 0.04), 0 26px 60px -30px rgba(14, 19, 32, 0.32); }
.pd-pkg-h { font-family: var(--font-family--font-primary); font-weight: 600; font-size: 21px; letter-spacing: -0.01em; color: var(--colors--text-color); margin: 0 0 8px; }
.pd-pkg-sub { font-family: var(--_font-family-2---font-family-2); font-size: 15px; line-height: 1.5; color: #5B6670; margin: 0 0 24px; }
.pd-pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.pd-pkg-item { display: flex; align-items: center; gap: 11px; font-family: var(--font-family--font-primary); font-weight: 600; font-size: 15px; color: var(--colors--text-color); }
.pd-mini { width: 26px; height: 26px; flex-shrink: 0; }
.pd-mini svg { width: 100%; height: 100%; display: block; }
.pd-div { height: 1px; background: #E7EAEE; margin: 28px 0; }
.pd-support-h { font-family: var(--font-family--font-primary); font-weight: 600; font-size: 16px; color: var(--colors--text-color); margin: 0 0 16px; }
.pd-support-list { list-style: none; display: flex; flex-direction: column; gap: 13px; padding: 0; margin: 0; }
.pd-support-list li { display: flex; align-items: center; gap: 11px; font-family: var(--font-family--font-primary); font-weight: 600; font-size: 15px; color: #0F8C72; }
.pd-tick { width: 21px; height: 21px; border-radius: 50%; background: #E4F6F1; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-tick svg { width: 12px; height: 12px; color: #16A88B; display: block; }
.pd-bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; }
.pd-blurb-ic { width: 46px; height: 46px; margin-bottom: 18px; }
.pd-blurb-ic svg { width: 100%; height: 100%; display: block; }
.pd-blurb-h { font-family: var(--font-family--font-primary); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; color: var(--colors--text-color); padding-left: 13px; border-left: 3px solid #16A88B; margin: 0 0 12px; }
.pd-blurb-p { font-family: var(--_font-family-2---font-family-2); font-size: 15px; line-height: 1.55; color: #5B6670; margin: 0; }
.pd-jump-wrap { display: flex; justify-content: center; padding: 0; margin-top: -30px; }
@media (max-width: 920px) {
  .pd-top { grid-template-columns: 1fr; gap: 40px; }
  .pd-lead-h, .pd-lead-p { max-width: none; }
  .pd-bottom { grid-template-columns: repeat(2, 1fr); gap: 36px; margin-top: 56px; }
  .pd-guides span:nth-child(1) { left: 50%; }
  .pd-guides span:nth-child(2), .pd-guides span:nth-child(3) { display: none; }
}
@media (max-width: 560px) {
  .pd { padding: 60px 0; }
  .pd-bottom { grid-template-columns: 1fr; }
  .pd-pkg-grid { grid-template-columns: 1fr; }
  .pd-guides { display: none; }
}

/* ══════════ Tablet (768–991) rules for Webflow-native pages ══════════
   team / downloads / contact / blog use Webflow's stock layout classes.
   In the 768–991 band they stay 2-col with cramped gaps or oversized
   hero padding. These overrides collapse to single-column, tighten
   gutters, and cap image heights so cards read at portrait-tablet
   widths. Below 768 the base Webflow ≤767 rules pick up the rest. */

/* Shared: shrink the hero-title bloc so it doesn't dominate the tablet
   viewport on contact/blog. */
@media (max-width: 991px) {
  .page-hero { padding-top: 64px; padding-bottom: 40px; }
  .page-hero-title { font-size: clamp(2rem, 5.2vw, 3rem); line-height: 1.08; }
  .page-hero-content-wrapper { max-width: 640px; }
}

/* contact.html — the two-column hero (info + form) already stacks via
   Webflow's ≤991 rules; contact-info-item icons + text need breathing
   room. FAQ accordion widens to match. */
@media (max-width: 991px) {
  .contact-page-hero { padding-bottom: 32px; }
  .contact-hero-content-wrapper { max-width: 100%; }
  .contact-info-wrapper { gap: 18px; }
  .contact-info-item { gap: 14px; }
  .contact-info-item-text { font-size: 17px; }
  .faq-section { padding: 40px 0 64px; }
  .faq-accordion-item { padding: 16px 0; }
  .contact-spin-image { display: none; }
}

/* blog.html — Webflow keeps the collection list at 2-col across the
   whole 768–991 band; at portrait-tablet widths the cards get thin
   and titles wrap awkwardly. Force 1-col so each card gets full width. */
@media (max-width: 991px) {
  .blog-cards-collection-list { grid-template-columns: 1fr; gap: 24px; }
  .blog-cards-collection-list.blog-feature-cards { grid-template-columns: 1fr; }
  .blog-cards-collection-item, .blog-card-item { max-width: 640px; margin: 0 auto; width: 100%; box-sizing: border-box; }
  .blog-thumbnail-wrapper { max-height: 260px; overflow: hidden; }
  .blog-section { padding: 32px 0 64px; }
}
