:root {
  /* Brand direction: reference mocks — cool neutrals, blue primary, indigo accents */
  --bg: #f4f6fb;
  --bg-alt: #e8edf5;
  --ink: #0f172a;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #dbeafe;
  --accent-indigo: #6366f1;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --gradient-headline: linear-gradient(105deg, var(--accent-indigo) 0%, var(--accent) 55%, #0ea5e9 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  /* In-page anchors (#demo, #contact, etc.) land below sticky header */
  scroll-padding-top: calc(5.35rem + env(safe-area-inset-top, 0px));
}

@media (min-width: 960px) {
  html {
    scroll-padding-top: calc(4.6rem + env(safe-area-inset-top, 0px));
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--ink);
  background: var(--bg);
}

.page-home {
  position: relative;
}

.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.ambient-bubble {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  animation: ambient-breathe 20s ease-in-out infinite;
}

.ambient-bubble--1 {
  width: min(340px, 55vw);
  height: min(340px, 55vw);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle at 35% 35%, rgba(37, 99, 235, 0.28), transparent 68%);
  animation-delay: 0s;
  transform: translate3d(0, var(--ambient-y, 0px), 0);
}

.ambient-bubble--2 {
  width: min(260px, 42vw);
  height: min(260px, 42vw);
  bottom: 12%;
  left: -5%;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.22), transparent 65%);
  animation-delay: -7s;
  animation-duration: 28s;
  transform: translate3d(0, calc(var(--ambient-y, 0px) * -0.6), 0);
}

.ambient-bubble--3 {
  width: min(180px, 30vw);
  height: min(180px, 30vw);
  top: 42%;
  right: 3%;
  background: radial-gradient(circle at 40% 60%, rgba(14, 165, 233, 0.2), transparent 62%);
  animation-delay: -12s;
  animation-duration: 20s;
  transform: translate3d(0, calc(var(--ambient-y, 0px) * 0.45), 0);
}

.ambient-bubble--4 {
  width: min(120px, 22vw);
  height: min(120px, 22vw);
  bottom: -4%;
  right: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.16), transparent 70%);
  animation-delay: -4s;
  animation-duration: 24s;
  transform: translate3d(0, calc(var(--ambient-y, 0px) * -0.35), 0);
}

@keyframes ambient-breathe {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

.section-wave {
  line-height: 0;
  margin-top: -1px;
  overflow: hidden;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.06));
}

.hero .section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin-top: 0;
  z-index: 2;
  pointer-events: none;
}

.section-wave__svg,
.section-wave svg {
  display: block;
  width: 114%;
  max-width: none;
  margin-left: -7%;
  height: clamp(56px, 7.6vw, 96px);
  transform: translate3d(var(--wave-shift, 0px), var(--wave-lift, 0px), 0) skewX(var(--wave-skew, 0deg));
  transform-origin: center center;
  will-change: transform;
  animation: section-wave-surge 2.4s ease-in-out infinite;
}

@keyframes section-wave-surge {
  0% {
    transform: translate3d(calc(var(--wave-shift, 0px) - 10px), calc(var(--wave-lift, 0px) - 2px), 0)
      skewX(calc(var(--wave-skew, 0deg) - 0.3deg));
  }
  50% {
    transform: translate3d(calc(var(--wave-shift, 0px) + 12px), calc(var(--wave-lift, 0px) + 3px), 0)
      skewX(calc(var(--wave-skew, 0deg) + 0.45deg));
  }
  100% {
    transform: translate3d(calc(var(--wave-shift, 0px) - 10px), calc(var(--wave-lift, 0px) - 2px), 0)
      skewX(calc(var(--wave-skew, 0deg) - 0.3deg));
  }
}

html.reduce-motion .section-wave__svg,
html.reduce-motion .section-wave svg {
  transform: none;
  will-change: auto;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .section-wave__svg,
  .section-wave svg {
    transform: none !important;
    will-change: auto !important;
    animation: none !important;
  }
}

.section-wave--alt {
  margin-bottom: -1px;
  filter: drop-shadow(0 3px 10px rgba(99, 102, 241, 0.05));
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header.is-nav-open {
  z-index: 100;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.site-header .container.header-inner {
  width: min(1240px, calc(100% - 1.5rem));
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "logo actions";
  align-items: center;
  column-gap: 1rem;
  row-gap: 0;
  padding: 0.74rem 0;
  position: relative;
}

.logo {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  height: 52px;
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 0.62rem;
  justify-self: end;
  min-width: 0;
}

.header-actions .btn {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.07);
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease;
}

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

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.2rem;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0.5rem max(1rem, env(safe-area-inset-left, 0px)) max(1.15rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-right, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
  max-height: min(72vh, calc(100dvh - 4.5rem));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -10px);
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.site-header.is-nav-open .nav {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.35;
  white-space: normal;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  margin-inline: -0.25rem;
  padding-inline: 0.35rem;
}

.nav a:last-child {
  border-bottom: none;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(37, 99, 235, 0.06);
}

.nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
}

.nav-dropdown {
  display: block;
  margin: 0;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.75rem;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  padding: 0.45rem 0.35rem;
  margin-inline: -0.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 0.55rem;
}

.nav-dropdown[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -1px);
}

.nav-dropdown[open] summary {
  color: var(--accent);
  font-weight: 700;
  background: rgba(37, 99, 235, 0.08);
}

.nav-dropdown__menu {
  display: grid;
  gap: 0;
  padding-left: 0.55rem;
}

.nav-dropdown__menu a {
  min-height: 2.45rem;
}

html.reduce-motion .nav {
  transition: none;
}

html.reduce-motion .nav-toggle__bar {
  transition: none;
}

html.reduce-motion .btn-primary::after {
  animation: none;
  opacity: 0;
}

@media (min-width: 960px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo nav actions";
    column-gap: 1.15rem;
    row-gap: 0;
    padding: 0.85rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    grid-area: nav;
    position: static;
    left: auto;
    width: auto;
    max-width: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 1.15rem;
    max-width: 100%;
    min-width: 0;
    justify-self: center;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .nav a {
    font-size: 0.8125rem;
    min-height: unset;
    padding: 0.28rem 0.18rem;
    margin-inline: 0;
    border-bottom: none;
    border-radius: 0;
    white-space: nowrap;
    background: transparent;
    transition: color 0.18s ease, text-shadow 0.18s ease;
  }

  .nav a:hover {
    background: transparent;
  }

  .nav a[aria-current="page"] {
    color: #1d4ed8;
    font-weight: 800;
    text-shadow: 0 0 0.01px #1d4ed8, 0 0 14px rgba(37, 99, 235, 0.18);
    background: transparent;
  }

  .nav-dropdown {
    position: relative;
    align-self: center;
  }

  .nav-dropdown summary {
    font-size: 0.8125rem;
    min-height: unset;
    padding: 0.28rem 0.15rem;
    margin-inline: 0;
    border-bottom: none;
    border-radius: 0;
    white-space: nowrap;
    gap: 0.25rem;
    transition: color 0.18s ease, text-shadow 0.18s ease;
  }

  .nav-dropdown summary:hover {
    color: #1d4ed8;
  }

  .nav-dropdown[open] summary {
    color: #1d4ed8;
    font-weight: 800;
    text-shadow: 0 0 0.01px #1d4ed8, 0 0 14px rgba(37, 99, 235, 0.18);
    background: transparent;
  }

  .nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 17.75rem;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    z-index: 60;
  }

  .nav-dropdown:not([open]) .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown__menu a {
    font-size: 0.8125rem;
    white-space: nowrap;
    border-radius: 8px;
    padding: 0.56rem 0.75rem;
    min-height: unset;
    border-bottom: none;
    margin-inline: 0;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .nav-dropdown__menu a:hover {
    background: rgba(37, 99, 235, 0.08);
  }

  .nav-dropdown__menu a[aria-current="page"] {
    color: #1d4ed8;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.1);
  }
}

@media (min-width: 1100px) {
  .nav a {
    font-size: 0.875rem;
  }

  .nav {
    gap: 0.4rem 1.05rem;
  }
}

/* —— Small viewports: avoid clipped nav, wide CTAs, tight heroes —— */
@media (max-width: 959px) {
  html.is-nav-open {
    overflow: hidden;
  }

  .site-header .container.header-inner {
    width: min(1240px, calc(100% - 1rem));
  }

  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .section {
    padding: 3.35rem 0;
  }

  .section-tight {
    padding: 2.45rem 0;
  }

  .header-inner {
    min-width: 0;
    column-gap: 0.65rem;
    row-gap: 0.65rem;
  }

  .logo-img {
    height: 36px;
  }

  .header-actions .btn {
    padding: 0.4rem 0.72rem;
    font-size: 0.8125rem;
    min-height: 2.2rem;
  }

  .page-skill-intelligence .page-hero--si,
  .page-performance-intelligence .page-hero--pi,
  .page-about .page-hero--about,
  .page-use-cases .page-hero--uc,
  .page-learning-journeys .page-hero--lj,
  .page-external-marketplace .page-hero--etm,
  .page-assessments .page-hero--as {
    padding: 2.25rem 0 2.75rem;
  }

  .si-hero-panel {
    padding: 1rem;
  }

  .si-hero-panel__card--main {
    padding: 1rem 1rem 0.95rem;
  }

  .tabs--features .tab-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 14px;
    overscroll-behavior-x: contain;
  }

  .tabs--features .tab {
    flex-shrink: 0;
  }

  .si-integrations-band {
    padding: 1.65rem 1.15rem;
  }
}

@media (max-width: 479px) {
  .container {
    width: min(1120px, calc(100% - 1rem));
  }

  .site-header .container.header-inner {
    width: calc(100% - 1rem);
  }

  .header-actions .btn {
    padding: 0.38rem 0.55rem;
    font-size: 0.72rem;
  }

  .header-actions {
    gap: 0.35rem 0.5rem;
  }

  .si-hero-cta,
  .uc-hero-cta,
  .lj-hero-cta,
  .as-hero-cta,
  .etm-hero-cta,
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .si-hero-cta .btn,
  .uc-hero-cta .btn,
  .lj-hero-cta .btn,
  .as-hero-cta .btn,
  .etm-hero-cta .btn,
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about-hero-copy > .btn {
    width: 100%;
    justify-content: center;
  }

  .split-half {
    padding: 1.15rem 1rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.8125rem;
  }

  .table-disclaimer {
    font-size: 0.8125rem;
    margin: -0.25rem auto 0.85rem;
    max-width: 44ch;
  }

  .section-title,
  .section-lead {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .section-title {
    font-size: clamp(1.38rem, 6.4vw, 2.25rem);
  }

  .section-lead {
    font-size: 1.02rem;
    max-width: 100%;
  }

  .uc-testimonial {
    padding: 1.5rem 1.15rem;
  }

  .si-integrations-band {
    padding: 1.35rem 1rem;
  }
}

@media (max-width: 380px) {
  .header-actions .header-cta {
    font-size: 0.65rem;
    padding: 0.32rem 0.42rem;
  }

  .nav-toggle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
  }
}

/* —— Mobile-first polish: typography, spacing, grids (≤767px) —— */
@media (max-width: 767px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding: 2.85rem 0;
  }

  .section-tight {
    padding: 2rem 0;
  }

  .page-hero {
    padding: 2.15rem 0 2.65rem;
  }

  .page-home .hero {
    padding: 2.35rem 0 2.85rem;
  }

  .page-home .hero-grid {
    gap: 1.85rem;
  }

  .page-home .hero-grid > * {
    min-width: 0;
  }

  /* Keep hero image + deco inside the column — 116% width caused horizontal overflow on phones */
  .page-home .hero-visual {
    overflow: hidden;
    max-width: 100%;
  }

  .page-home .hero-visual .tilt-wrap {
    max-width: 100%;
  }

  .page-home .hero-figure {
    width: 100%;
    max-width: min(430px, 100%);
  }

  .page-home .hero-trust {
    justify-content: center;
  }

  .page-home .hero-title-rotator {
    min-height: clamp(5.1rem, 48vw, 9.25rem);
  }

  .media-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .media-strip img {
    height: min(200px, 46vw);
  }

  .social-proof__panel {
    padding: 1.35rem 1.1rem 1.65rem;
  }

  .social-proof__quote {
    padding-left: 0.85rem;
  }

  .social-proof__metrics {
    grid-template-columns: 1fr;
  }

  .solution-hub-card {
    padding: 1.35rem 1.15rem;
  }

  .persona-card {
    padding: 1.2rem 1.1rem;
  }

  .carousel-slide {
    padding: 1.45rem 1.15rem;
    min-height: 220px;
  }

  .cta-final {
    padding: 3.25rem 0;
  }

  /* Long headlines & FAQ copy: predictable wrapping on narrow viewports */
  .section-title,
  .section-lead,
  .section-kicker,
  .social-proof__headline,
  .social-proof__sub,
  .cta-final-title,
  .cta-final .cta-sub,
  .page-hero-kicker,
  .page-hero-subkicker,
  .page-hero-body,
  .faq-item summary,
  .faq-answer,
  .compare-heading,
  .panel-title,
  .hero-title,
  .hero-lead,
  .hero-body,
  .si-hero-title,
  .si-hero-lead,
  .si-hero-points li,
  .about-hero-title,
  .about-hero-lead,
  .about-hero-points li,
  .uc-hero-title,
  .uc-hero-lead,
  .uc-hero-points li,
  .lj-hero-title,
  .lj-hero-lead,
  .lj-hero-points li,
  .as-hero-title,
  .as-hero-lead,
  .as-hero-points li,
  .etm-hero-title,
  .etm-hero-lead,
  .etm-hero-points li {
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .faq-item summary {
    font-size: 1rem;
    line-height: 1.38;
    align-items: flex-start;
    padding: 0.95rem 0;
    min-height: 2.75rem;
  }

  .faq-item summary::after {
    flex-shrink: 0;
    margin-top: 0.12rem;
  }

  .faq-answer {
    font-size: 0.9375rem;
    line-height: 1.62;
    padding: 0 0 1.05rem;
  }
}

/* Phones in landscape & short viewports: less vertical hero / header bulk */
@media (max-height: 520px) and (orientation: landscape) {
  .site-header .header-inner {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .page-home .hero {
    padding: 1.2rem 0 1.65rem;
  }

  .page-home .hero-grid {
    gap: 1.25rem;
  }

  .page-home .hero-title {
    font-size: clamp(1.45rem, 5.2vw, 2.5rem);
    margin-bottom: 0.65rem;
  }

  .page-home .hero-title-rotator {
    min-height: clamp(2.85rem, 38vh, 7rem);
  }

  .page-home .hero-lead {
    margin-bottom: 0.5rem;
  }

  .page-home .hero-body {
    margin-bottom: 1rem;
  }

  .page-skill-intelligence .page-hero--si,
  .page-performance-intelligence .page-hero--pi,
  .page-about .page-hero--about,
  .page-use-cases .page-hero--uc,
  .page-learning-journeys .page-hero--lj,
  .page-external-marketplace .page-hero--etm,
  .page-assessments .page-hero--as {
    padding: 1.35rem 0 1.75rem;
  }

  /* Solutions hub & any page using generic .page-hero only */
  .page-hero:not([class*="page-hero--"]) {
    padding: 1.35rem 0 1.75rem;
  }

  .section {
    padding: 2.15rem 0;
  }

  .section-tight {
    padding: 1.65rem 0;
  }

  .cta-final {
    padding: 2.35rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0.65rem 1.35rem;
  min-height: 2.75rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.9375rem;
  min-height: 2.25rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  min-height: unset;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(75%, 9rem);
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 32%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.06) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-120%);
  filter: blur(0.5px);
  animation: btn-primary-light-sweep 3.4s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
  border-radius: inherit;
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

@keyframes btn-primary-light-sweep {
  0% {
    transform: translateX(-120%) skewX(-8deg);
    opacity: 0.75;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(260%) skewX(-8deg);
    opacity: 0.75;
  }
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  margin-top: 1rem;
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.08);
}

.hero {
  padding: 3.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero-title-rotator {
  position: relative;
  display: block;
  min-height: clamp(7rem, 30vw, 11.5rem);
}

.hero-title-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.hero-title-line.is-active {
  opacity: 1;
  z-index: 1;
}

.reduce-motion .hero-title-rotator {
  min-height: 0;
}

.reduce-motion .hero-title-line {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: auto;
}

.reduce-motion .hero-title-line:not(.is-active) {
  display: none;
}

.hero-lead {
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.hero-body {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 38ch;
}

.hero--rich .hero-title-accent {
  background: linear-gradient(105deg, var(--accent-indigo) 0%, var(--accent) 42%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero--rich .hero-title-accent {
    color: var(--accent);
    background: none;
  }
}

.hero-glance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0 0 1.65rem;
  max-width: 38rem;
}

@media (min-width: 540px) {
  .hero-glance {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

@media (max-width: 767px) {
  .page-home .hero-glance {
    display: none;
  }
}

.hero-glance__box {
  position: relative;
  padding: 0.9rem 1rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-glance__box:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-glance__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  background: var(--hero-glance-grad);
}

.hero-glance__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  background: var(--hero-glance-stripe);
  border-radius: 14px 14px 0 0;
}

.hero-glance__box--skills {
  --hero-glance-grad: linear-gradient(145deg, rgba(37, 99, 235, 0.14) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(219, 234, 254, 0.5) 100%);
  --hero-glance-stripe: linear-gradient(90deg, var(--accent-indigo), var(--accent));
}

.hero-glance__box--signals {
  --hero-glance-grad: linear-gradient(145deg, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(224, 231, 255, 0.45) 100%);
  --hero-glance-stripe: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.hero-glance__box--impact {
  --hero-glance-grad: linear-gradient(145deg, rgba(14, 165, 233, 0.12) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(224, 242, 254, 0.55) 100%);
  --hero-glance-stripe: linear-gradient(90deg, #0ea5e9, var(--accent));
}

.hero-glance__label,
.hero-glance__value {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-glance__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #475569;
  margin-bottom: 0.35rem;
  padding-left: 1.35rem;
}

.hero-glance__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.88));
  box-shadow:
    0 4px 10px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-glance__label::after {
  content: "";
  position: absolute;
  left: 0.31rem;
  top: 0.31rem;
  width: 0.38rem;
  height: 0.22rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  z-index: 1;
}

.hero-glance__value {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.hero-cta {
  margin-bottom: 1.5rem;
}

.designer-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
}

.designer-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.badge-row,
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-fake,
.logo-fake {
  padding: 0.5rem 0.85rem;
  background: var(--card);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual__frame {
  position: absolute;
  inset: -6% -10% -8% -10%;
  pointer-events: none;
  z-index: 0;
}

.hero-visual__deco {
  position: absolute;
  border-radius: 20px;
  opacity: 0.55;
  filter: blur(0.5px);
}

.hero-visual__deco--1 {
  width: min(200px, 42vw);
  height: min(120px, 22vw);
  top: 4%;
  right: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.38), rgba(99, 102, 241, 0.14));
  transform: rotate(8deg);
  animation: hero-deco-pulse 12s ease-in-out infinite;
}

.hero-visual__deco--2 {
  width: min(160px, 36vw);
  height: min(100px, 20vw);
  bottom: 18%;
  left: -4%;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.32), rgba(37, 99, 235, 0.12));
  transform: rotate(-12deg);
  animation: hero-deco-pulse 15s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-visual__deco--3 {
  width: min(100px, 24vw);
  height: min(100px, 24vw);
  top: 38%;
  right: -2%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(99, 102, 241, 0.22));
  animation: hero-deco-pulse 10s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-visual__deco--4 {
  width: min(100px, 24vw);
  height: min(100px, 24vw);
  bottom: 2%;    
  left: -4%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(99, 102, 241, 0.22));
  animation: hero-deco-pulse 10s ease-in-out infinite;
  animation-delay: -5s;
}


@keyframes hero-deco-pulse {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.68;
  }
}

.hero-visual .tilt-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
}

.hero-card {
  width: min(100%, 340px);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-card-stat {
  margin-bottom: 1rem;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat-bar {
  display: block;
  height: 8px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent));
  border-radius: 999px;
}

.stat-bar.risk span {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.hero-card--glass.hero-card--float {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.92) 100%) !important;
  box-shadow:
    0 20px 50px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-card__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent) 45%, #0ea5e9);
  opacity: 0.95;
}

.hero-card__head {
  padding: 1rem 1.35rem 0.25rem;
}

.hero-card--glass .hero-card-title {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.hero-card__pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-card--glass .hero-card-stat {
  margin-bottom: 0;
  padding: 0.5rem 1.35rem 0.85rem;
}

.hero-card--glass .hero-card-stat:last-child {
  padding-bottom: 1.3rem;
}

.stat-bar--hero {
  height: 10px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.stat-bar--hero span {
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}

.stat-bar--hero.risk span {
  box-shadow: 0 0 8px rgba(100, 116, 139, 0.35);
}

.section {
  padding: 4.55rem 0;
}

.section-tight {
  padding: 2.95rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* —— Homepage: colored faded section surfaces (mesh + corners) —— */
.page-home .section-surface {
  position: relative;
  isolation: isolate;
}

.page-home .section-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 1;
}

.page-home .section-surface > .container {
  position: relative;
  z-index: 1;
}

.page-home .section-surface.section-alt {
  background: var(--surface-solid, var(--bg-alt));
}

.page-home .section-surface:not(.section-alt) {
  background: var(--surface-solid, var(--bg));
}

.page-home .section-surface--trust {
  --surface-solid: linear-gradient(165deg, #f8fafc 0%, #f0f4f8 48%, #eef2f7 100%);
}

.page-home .section-surface--trust::before {
  background:
    radial-gradient(ellipse 100% 85% at 102% -8%, rgba(37, 99, 235, 0.16), transparent 58%),
    radial-gradient(ellipse 70% 60% at -12% 105%, rgba(99, 102, 241, 0.11), transparent 52%),
    radial-gradient(ellipse 55% 45% at 38% 42%, rgba(14, 165, 233, 0.06), transparent 62%);
}

.page-home .section-surface--platform {
  --surface-solid: linear-gradient(180deg, #f4f6fb 0%, #eef2f6 45%, #e8edf3 100%);
}

.page-home .section-surface--platform::before {
  background:
    radial-gradient(ellipse 85% 75% at 0% 0%, rgba(37, 99, 235, 0.11), transparent 55%),
    radial-gradient(ellipse 75% 70% at 100% 92%, rgba(71, 85, 105, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 72% 30%, rgba(14, 165, 233, 0.05), transparent 58%);
}

.page-home .section-surface--features {
  --surface-solid: linear-gradient(175deg, #eef2ff 0%, #e8ecfa 40%, #e2e8f6 100%);
}

.page-home .section-surface--features::before {
  background:
    radial-gradient(ellipse 90% 80% at 108% 12%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 65% 55% at -5% 88%, rgba(37, 99, 235, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 35% 55%, rgba(59, 130, 246, 0.07), transparent 60%);
}

.page-home .section-surface--compare {
  --surface-solid: linear-gradient(180deg, #f7f8fc 0%, #f2f4fa 50%, #eef1f8 100%);
}

.page-home .section-surface--compare::before {
  background:
    radial-gradient(ellipse 80% 72% at 50% -15%, rgba(99, 102, 241, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 65% at 100% 100%, rgba(37, 99, 235, 0.09), transparent 48%),
    radial-gradient(ellipse 60% 50% at 5% 70%, rgba(139, 92, 246, 0.05), transparent 55%);
}

.page-home .section-surface--why {
  --surface-solid: linear-gradient(168deg, #f0faf7 0%, #ecf6f3 45%, #e8f2ef 100%);
}

.page-home .section-surface--why::before {
  background:
    radial-gradient(ellipse 88% 78% at 100% 0%, rgba(16, 185, 129, 0.12), transparent 54%),
    radial-gradient(ellipse 72% 60% at 0% 100%, rgba(37, 99, 235, 0.08), transparent 50%),
    radial-gradient(ellipse 55% 45% at 60% 55%, rgba(45, 212, 191, 0.06), transparent 58%);
}

.page-home .section-surface--teams {
  --surface-solid: linear-gradient(180deg, #f6f8ff 0%, #f0f4fc 55%, #ebf0fa 100%);
}

.page-home .section-surface--teams::before {
  background:
    radial-gradient(ellipse 95% 80% at -5% 10%, rgba(14, 165, 233, 0.14), transparent 56%),
    radial-gradient(ellipse 75% 70% at 105% 95%, rgba(37, 99, 235, 0.1), transparent 52%),
    radial-gradient(ellipse 50% 42% at 50% 48%, rgba(99, 102, 241, 0.05), transparent 62%);
}

.page-home .section-surface--platform .compare-card--clean {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.page-home .section-surface--teams .persona-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.page-home .section-surface--compare .table-wrap {
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.07);
}

.page-home .section-surface--compare .container {
  max-width: min(1380px, 98vw);
}

.page-home .section-surface--trust .social-proof {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.section-kicker {
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 1.25rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 42rem;
  text-align: center;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 60ch;
  text-align: center;
}

.customer-strip {
  text-align: center;
}

.logo-row {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.testimonial-fake {
  margin: 0 auto;
  max-width: 520px;
  font-style: italic;
  color: var(--muted);
}

.testimonial-fake cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--ink);
}

/* —— Social proof — design reference (Fold 2) —— */
.social-proof {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 32px rgba(15, 23, 42, 0.05);
}

@media (min-width: 768px) {
  .social-proof {
    padding: 2.25rem 2.5rem;
  }
}

.social-proof__eyebrow {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .social-proof__eyebrow {
    background: linear-gradient(105deg, var(--accent-indigo) 0%, var(--accent) 52%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.social-proof__headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.15;
}

/* Reusable gradient phrase — use inside any headline when emphasis is needed */
.headline-gradient-accent,
.social-proof__headline-accent {
  color: #1d4ed8;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .headline-gradient-accent,
  .social-proof__headline-accent {
    background: linear-gradient(105deg, #1d4ed8 0%, var(--accent) 45%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.section-title .headline-gradient-accent,
.cta-final-title .headline-gradient-accent {
  font-weight: inherit;
}

.cta-final .headline-gradient-accent,
.site-footer .headline-gradient-accent {
  color: #93c5fd;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .cta-final .headline-gradient-accent,
  .site-footer .headline-gradient-accent {
    background: linear-gradient(105deg, #7dd3fc 0%, #93c5fd 40%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.social-proof__sub {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.social-proof__sub--muted {
  font-size: 0.895rem;
  font-weight: 500;
  line-height: 1.55;
  color: #475569;
  max-width: 48ch;
  margin: 0 auto 1.35rem;
  opacity: 1;
}

.social-proof__review-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.75rem 2.5rem;
  margin: 0 0 1.85rem;
  padding: 1.5rem 1.25rem 1.65rem;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.trust-logo-img {
  height: 36px;
  width: auto;
  max-width: min(44vw, 160px);
  object-fit: contain;
  object-position: left center;
  display: block;
  background: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.trust-logo-img--social {
  height: 44px;
  max-width: min(48vw, 180px);
}

.trust-logo-img--hero {
  height: 52px;
  width: auto;
  max-width: min(58vw, 240px);
}

.trust-logo-img--social-proof {
  height: 72px;
  width: auto;
  max-width: min(65vw, 300px);
}

@media (min-width: 640px) {
  .trust-logo-img--hero {
    height: 62px;
    max-width: min(50vw, 280px);
  }

  .trust-logo-img--social-proof {
    height: 88px;
    max-width: min(48vw, 360px);
  }
}

@media (min-width: 900px) {
  .trust-logo-img--hero {
    height: 68px;
    max-width: 280px;
  }

  .trust-logo-img--social-proof {
    height: 100px;
    max-width: 380px;
  }
}

/* Capterra is a wide wordmark — scale up vs compact G2 mark for equal visual weight */
.trust-logo-img--capterra {
  object-position: center center;
}

.trust-logo-img--capterra.trust-logo-img--social-proof {
  height: 86px;
  max-width: min(92vw, 440px);
}

@media (min-width: 640px) {
  .trust-logo-img--capterra.trust-logo-img--social-proof {
    height: 106px;
    max-width: min(85vw, 500px);
  }
}

@media (min-width: 900px) {
  .trust-logo-img--capterra.trust-logo-img--social-proof {
    height: 118px;
    max-width: 520px;
  }
}

.trust-logo-img--capterra.trust-logo-img--hero {
  height: 62px;
  max-width: min(78vw, 340px);
}

@media (min-width: 640px) {
  .trust-logo-img--capterra.trust-logo-img--hero {
    height: 74px;
    max-width: 380px;
  }
}

@media (min-width: 900px) {
  .trust-logo-img--capterra.trust-logo-img--hero {
    height: 82px;
    max-width: 420px;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 0.35rem;
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Fold 1: Capterra — sits under hero glance cards; eyebrow + logo + stars */
.hero-trust--capterra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
  padding: 0;
  max-width: 100%;
  border: none;
  border-radius: 0;
  background: none;
  background-color: transparent;
  box-shadow: none;
}

.hero-trust-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.hero-trust__brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  width: 100%;
}

.hero-trust--capterra .hero-trust__rated {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.hero-trust--capterra .trust-logo-img--capterra.trust-logo-img--hero {
  height: clamp(56px, 14vw, 104px);
  max-width: min(92vw, 480px);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-trust--capterra .trust-logo-img--capterra.trust-logo-img--hero {
    height: clamp(72px, 11vw, 112px);
    max-width: min(88vw, 520px);
  }
}

@media (min-width: 900px) {
  .hero-trust--capterra .trust-logo-img--capterra.trust-logo-img--hero {
    height: 112px;
    max-width: 520px;
  }
}

.hero-starbar {
  display: block;
  flex-shrink: 0;
  height: clamp(1.65rem, 5vw, 2.35rem);
  width: auto;
  aspect-ratio: 136 / 24;
}

.hero-trust-score {
  margin: 0;
  font-size: clamp(1.05rem, 2.9vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1;
  white-space: nowrap;
}

.hero-trust__stars {
  position: relative;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.hero-trust__stars-track {
  display: block;
  color: #e2e8f0;
}

.hero-trust__stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  color: #eab308;
  white-space: nowrap;
  pointer-events: none;
}

.hero-trust-rating {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .page-home .hero-trust--capterra {
    align-items: center;
    text-align: center;
  }

  .page-home .hero-trust--capterra .hero-trust__brand-row {
    justify-content: center;
  }

  .page-home .hero-trust--capterra .hero-trust__rated {
    justify-content: center;
  }
}

.logo-grid-ref {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.logo-pill {
  padding: 0.45rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.logos-section .logo-grid-ref {
  border-bottom-color: rgba(37, 99, 235, 0.14);
}

.logos-section .logo-pill {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: #334155;
  font-weight: 600;
}

.logo-grid-ref--partners {
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.partner-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(140px, 32vw);
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo-img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .logo-grid-ref--partners {
    gap: 0.85rem 1.1rem;
  }

  .partner-logo-img {
    height: 32px;
    max-width: min(120px, 38vw);
  }
}

.social-proof__panel {
  background: #eef2f7;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .social-proof__panel {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.social-proof__panel::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: min(220px, 45%);
  height: 100px;
  background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.07));
  border-radius: 28px;
  pointer-events: none;
}

.social-proof__quote {
  margin: 0;
  padding: 0 0 0 1.15rem;
  border: none;
  border-left: 4px solid var(--accent);
}

.social-proof__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1rem;
  font-style: normal;
}

.social-proof__cite {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.social-proof__cite strong {
  color: var(--ink);
  font-weight: 600;
}

.social-proof__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.metric-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.metric-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.metric-card__label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

/* —— Features fold — tabs + split —— */
.features-fold__lead {
  margin-bottom: 2.25rem;
}

.headline-accent {
  color: var(--accent);
}

.headline-gradient {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .features-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.features-split__visual {
  min-height: 260px;
}

.features-split__frame {
  position: relative;
  min-height: 260px;
  height: 100%;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(145deg, var(--accent-soft) 0%, #e0e7ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.14);
}

.features-split__frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.features-split__copy .panel-title {
  font-size: 1.32rem;
}

.compare-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.compare-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(26, 24, 20, 0.04);
}

.compare-before:not(.compare-card--clean) {
  border-top: 4px solid #9ca3af;
}

.compare-after:not(.compare-card--clean) {
  border-top: 4px solid var(--accent);
}

/* Before / With — clean cards + clipped corner circle (scales on hover) */
.compare-card--clean {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: none !important;
  border-radius: 24px;
  padding: 1.85rem 1.65rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #f8fafc;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.compare-card--clean.compare-before {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: rgba(148, 163, 184, 0.22);
}

.compare-card--clean.compare-after {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(37, 99, 235, 0.14);
}

.compare-card__blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  width: min(220px, 58vw);
  height: min(220px, 58vw);
  top: -32%;
  left: -20%;
  right: auto;
  transform: scale(1);
  transform-origin: 22% 28%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.compare-card__blob--muted {
  background: linear-gradient(145deg, #94a3b8 0%, #cbd5e1 55%, #e2e8f0 100%);
  opacity: 0.55;
}

.compare-card__blob--brand {
  background: linear-gradient(145deg, #60a5fa 0%, #3b82f6 45%, #2563eb 100%);
  opacity: 0.72;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.2);
}

.compare-card--clean:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.12);
}

.compare-card--clean.compare-before:hover {
  border-color: rgba(148, 163, 184, 0.28);
}

.compare-card--clean:hover .compare-card__blob {
  transform: scale(1.32);
}

.compare-card--clean.compare-before:hover .compare-card__blob {
  transform: scale(1.22);
}

.compare-card--clean .compare-heading,
.compare-card--clean .compare-list {
  position: relative;
  z-index: 1;
}

.compare-card--clean .compare-heading {
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.compare-card--clean .compare-list {
  color: #475569;
  padding-left: 1.35rem;
  padding-right: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .compare-card--clean:hover .compare-card__blob,
  .compare-card--clean.compare-before:hover .compare-card__blob {
    transform: scale(1);
  }
}

html.reduce-motion .compare-card--clean:hover .compare-card__blob,
html.reduce-motion .compare-card--clean.compare-before:hover .compare-card__blob {
  transform: scale(1);
}

.compare-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.compare-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.compare-list li {
  margin-bottom: 0.65rem;
}

.tabs {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .tabs:not(.tabs--features) {
    grid-template-columns: minmax(200px, 240px) 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.tab-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .tabs:not(.tabs--features) .tab-list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.tabs--features {
  grid-template-columns: 1fr;
}

.tabs--features .tab-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: #e2e8f0;
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.tabs--features .tab {
  text-align: center;
  font-size: 0.8125rem;
  padding: 0.55rem 1rem;
}

.tabs--features .tab:hover {
  background: rgba(255, 255, 255, 0.65);
}

.tabs--features .tab[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.tabs--features .tab-panels {
  width: 100%;
}

.tab {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}

.tabs:not(.tabs--features) .tab[aria-selected="true"] {
  background: var(--card);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.tab-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  min-height: 240px;
}

@media (min-width: 600px) {
  .tab-panel {
    padding: 2rem 2.25rem;
  }
}

.tab-panel.is-hidden {
  display: none;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.tab-panel p {
  margin: 0;
  color: var(--muted);
}

.table-disclaimer {
  font-size: 0.875rem;
  color: var(--muted);
  margin: -0.5rem auto 1rem;
  max-width: 65ch;
  text-align: center;
}

.table-wrap {
  overflow-x: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.compare-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: clamp(0.68rem, 1.6vw, 0.9rem);
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 0.6rem 0.4rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.compare-table th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
  white-space: nowrap;
}

.compare-table thead th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
}

.compare-mobile-list {
  display: none;
}

@media (max-width: 767px) {
  .table-wrap {
    display: none;
  }

  .compare-mobile-list {
    display: grid;
    gap: 0.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    padding: 0.75rem;
  }

  .compare-mobile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    font-size: 0.9375rem;
    color: var(--ink);
    background: #fff;
  }

  .compare-mobile-item .yes {
    font-size: 1rem;
    line-height: 1;
  }
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-of-type,
.compare-table .yes,
.compare-table .no {
  font-size: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #f1f5f9;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-card p {
  margin: 0;
  font-weight: 500;
}

.benefit-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--card);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--border);
}

/* Why enterprises — each benefit card gets a distinct light tint */
#why .benefit-card:nth-child(1) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.2);
}

#why .benefit-card:nth-child(1) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(59, 130, 246, 0.2);
  color: #1d4ed8;
}

#why .benefit-card:nth-child(2) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.18);
}

#why .benefit-card:nth-child(2) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(139, 92, 246, 0.18);
  color: #6d28d9;
}

#why .benefit-card:nth-child(3) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.2);
}

#why .benefit-card:nth-child(3) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 182, 212, 0.2);
  color: #0e7490;
}

#why .benefit-card:nth-child(4) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.2);
}

#why .benefit-card:nth-child(4) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 185, 129, 0.2);
  color: #047857;
}

#why .benefit-card:nth-child(5) {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

#why .benefit-card:nth-child(5) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(249, 115, 22, 0.18);
  color: #c2410c;
}

#why .benefit-card:nth-child(6) {
  background: #fdf4ff;
  border-color: rgba(217, 70, 239, 0.16);
}

#why .benefit-card:nth-child(6) .benefit-icon {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 70, 239, 0.16);
  color: #a21caf;
}

.designer-note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.persona-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.persona-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.persona-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9875rem;
}

.cta-final {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 55%, #172554 100%);
  color: #f8fafc;
}

.cta-final__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  transform: translate3d(0, var(--cta-parallax, 0px), 0);
  will-change: transform;
}

.cta-bubble--a {
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  top: -25%;
  right: -15%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.45), transparent 68%);
  animation: cta-bob 18s ease-in-out infinite;
}

.cta-bubble--b {
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle at 55% 55%, rgba(99, 102, 241, 0.32), transparent 65%);
  animation: cta-bob 22s ease-in-out infinite reverse;
  animation-delay: -5s;
}

@keyframes cta-bob {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.62;
  }
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.cta-final-inner .btn {
  max-width: 100%;
}

@media (max-width: 767px) {
  .cta-final {
    padding: 3.75rem 0 4.1rem;
  }

  .cta-final-inner {
    max-width: min(100%, 520px);
  }

  .cta-final-title {
    font-size: clamp(1.35rem, 5.6vw, 1.85rem);
    line-height: 1.18;
    margin-bottom: 1.1rem;
  }

  .cta-final .cta-sub {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }

  .cta-final .btn.btn-lg {
    width: 100%;
    justify-content: center;
  }
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.cta-final .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.cta-final .btn-primary:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

.cta-final--contact {
  padding: 4.75rem 0 5rem;
}

.cta-final-inner--contact {
  max-width: min(100%, 640px);
}

.cta-final__eyebrow {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.65rem;
  color: #93c5fd;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .cta-final__eyebrow {
    background: linear-gradient(105deg, #7dd3fc 0%, #93c5fd 45%, #bae6fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.cta-final--contact .cta-final-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 1rem;
}

.cta-final .cta-final__lead.cta-sub {
  margin: 0 auto 2rem;
  max-width: 48ch;
  font-size: 1.0625rem;
  line-height: 1.58;
  color: #cbd5e1;
  text-align: center;
}

.contact-panel {
  text-align: left;
  padding: 1.65rem 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (min-width: 640px) {
  .contact-panel {
    padding: 2rem 1.85rem 1.85rem;
  }
}

.contact-form {
  position: relative;
  margin: 0;
  text-align: left;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 560px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: rgba(59, 130, 246, 0.6);
}

.contact-form__submit {
  width: 100%;
}

.contact-form__alt {
  margin: 1.75rem 0 0;
}

@media (max-width: 767px) {
  .cta-final--contact {
    padding: 3.5rem 0 3.75rem;
  }

  .cta-final__lead {
    font-size: 0.9875rem;
    margin-bottom: 1.5rem;
  }

  .contact-panel {
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9375rem;
  }
}

.contact-form__error {
  margin: 1.15rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: rgba(248, 113, 113, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.42);
  color: #fecaca;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-align: left;
}

.contact-thanks-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(92vw, 420px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.contact-thanks-dialog::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-thanks-dialog__inner {
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  color: var(--ink);
  background: #fff;
}

.contact-thanks-dialog__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-thanks-dialog__text {
  margin: 0 0 1.35rem;
  line-height: 1.55;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-thanks-dialog__close {
  width: 100%;
}

html.reduce-motion .contact-thanks-dialog::backdrop {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-final .contact-form__explore {
  border-color: rgba(248, 250, 252, 0.35);
  color: #f8fafc;
  background: transparent;
}

.cta-final .contact-form__explore:hover {
  background: rgba(248, 250, 252, 0.08);
  border-color: rgba(248, 250, 252, 0.55);
  color: #fff;
}

.site-footer {
  position: relative;
  padding: 0 0 2.25rem;
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  color: #94a3b8;
  font-size: 0.9375rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent) 45%, #0ea5e9);
  opacity: 0.9;
  pointer-events: none;
}

.footer-inner {
  padding-top: 2.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-brand {
  flex: 1 1 min(100%, 320px);
  max-width: 42rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 54px;
}

.footer-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-tagline {
  margin: 0;
  line-height: 1.6;
  color: #cbd5e1;
  font-size: 0.9rem;
  max-width: 52ch;
}

.footer-nav {
  flex: 0 1 auto;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .footer-nav-list {
    justify-content: flex-end;
    max-width: 22rem;
  }
}

.footer-nav-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #e2e8f0;
}

.footer-inner > .footer-meta {
  margin: 0;
}

.footer-meta {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #64748b;
}

/* —— Solution pages —— */

.page-hero {
  padding: 3rem 0 3.5rem;
}

.page-hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.page-hero-subkicker {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}

.page-hero-body {
  color: var(--muted);
  margin: 0 0 0.75rem;
  max-width: 58ch;
}

.page-hero-body:last-of-type {
  margin-bottom: 1.5rem;
}

.carousel-note {
  margin: 0 auto 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 52ch;
  text-align: center;
}

.carousel-note strong {
  color: var(--ink);
}

.carousel {
  position: relative;
}

.carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 2rem 1.75rem;
  min-height: 280px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .carousel-slide {
    padding: 2.25rem 2.5rem;
    min-height: 260px;
  }
}

.carousel-slide h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.carousel-slide p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 62ch;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--bg-alt);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent);
  width: 22px;
}

.stats-strip {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.stat-card span {
  font-size: 0.95rem;
  color: var(--muted);
}

.stat-placeholder-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.mockup-frame {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  background: linear-gradient(145deg, var(--bg-alt), var(--card));
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9375rem;
  text-align: center;
  padding: 1.5rem;
}

.maturity-ladder {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maturity-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border-left: 4px solid #9ca3af;
}

.maturity-step.is-highlight {
  border-left-color: var(--accent);
  box-shadow: 0 8px 30px rgba(26, 24, 20, 0.06);
}

.maturity-step.is-peak {
  border-left-color: #1a1814;
  background: linear-gradient(135deg, #fff 0%, #f6f4ef 100%);
}

.maturity-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.maturity-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.maturity-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9875rem;
}

.maturity-footer {
  margin-top: 1.5rem;
  font-weight: 600;
  max-width: 65ch;
}

.usecase-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usecase-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.usecase-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.usecase-tagline {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.usecase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.integrations-band {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.integrations-band p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.9875rem;
}

.faq-answer p {
  margin: 0;
}

.cta-final .cta-sub {
  margin: 0 0 1.5rem;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.problem-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .problem-grid.cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.problem-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-row {
  display: grid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 800px) {
  .split-row {
    grid-template-columns: 1fr 1fr;
  }
}

.split-half {
  padding: 1.5rem 1.35rem;
}

.split-half--problem {
  background: var(--bg-alt);
}

.split-half--solution {
  background: var(--card);
}

.split-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.split-half--problem .split-label {
  color: #1e40af;
}

.split-half--solution .split-label {
  color: var(--accent);
}

.split-half h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.split-half p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-screen-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.split-screen-note strong {
  color: var(--ink);
}

.approach-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.approach-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vm-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vm-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.vm-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.vm-card p {
  margin: 0;
  color: var(--muted);
}

.leadership-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}

.founder-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.founder-note header {
  margin-bottom: 1.25rem;
}

.founder-note h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.founder-note .founder-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-note .founder-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9875rem;
}

.founder-note .founder-body p:last-child {
  margin-bottom: 0;
}

.founder-sig {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-weight: 600;
}

.founder-sig span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9375rem;
}

.testimonial-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
}

.testimonial-block figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
  font-style: normal;
}

.solution-hub-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .solution-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-hub-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(26, 24, 20, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.solution-hub-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 40px rgba(26, 24, 20, 0.08);
}

.solution-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.solution-hub-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.solution-hub-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
}

.stats-strip.four-cols {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .stats-strip.four-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats-strip.four-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Motion, depth, imagery & polish ========== */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 8% -25%, rgba(37, 99, 235, 0.1), transparent 55%),
    radial-gradient(ellipse 90% 55% at 100% 5%, rgba(26, 24, 20, 0.05), transparent 48%);
}

.site-header {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.09);
  background: rgba(244, 246, 251, 0.97);
}

.site-header .header-inner {
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    border-radius 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease;
}

.site-header.is-scroll-up {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-scroll-up .header-inner {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.46rem 0.9rem;
}

.site-header.is-nav-open.is-scroll-up .header-inner {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 959px) {
  .site-header.is-scroll-up {
    background: rgba(244, 246, 251, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  }

  .site-header.is-scroll-up .header-inner {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.62rem 0;
  }
}

.site-header.is-nav-open.is-scrolled {
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

@media (min-width: 960px) {
  .nav a {
    position: relative;
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.28s ease;
  }

  .nav a:hover::after,
  .nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.btn-primary {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.38);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.logo {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  will-change: opacity, transform;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

[data-reveal-item] {
  opacity: 0;
  transform: translateY(1.35rem);
  will-change: opacity, transform;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger, 0s),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger, 0s);
}

[data-reveal-item].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.hero--rich {
  position: relative;
  padding: 4rem 0 4.75rem;
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__mesh {
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 28% 18%, rgba(37, 99, 235, 0.11) 0%, transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(26, 24, 20, 0.07) 0%, transparent 38%),
    linear-gradient(108deg, rgba(246, 244, 239, 0.94) 0%, rgba(235, 230, 220, 0.88) 100%);
  opacity: calc(0.82 + var(--scroll-p, 0.45) * 0.18);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.52;
  transform: translateY(var(--parallax-y, 0px));
  will-change: transform;
}

.hero__orb--1 {
  width: min(460px, 50vw);
  height: min(460px, 50vw);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(14, 165, 233, 0.22));
  top: -12%;
  right: -8%;
}

.hero__orb--2 {
  width: min(340px, 42vw);
  height: min(340px, 42vw);
  background: linear-gradient(150deg, rgba(26, 24, 20, 0.18), rgba(37, 99, 235, 0.12));
  bottom: 0;
  left: -12%;
}

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

.tilt-wrap {
  perspective: 1100px;
  transform-style: preserve-3d;
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.08s ease-out;
}

.hero-figure {
  position: relative;
  margin: 0 auto;
  width: min(100%, 640px);
}

@media (min-width: 900px) {
  .page-home .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.8rem;
  }

  .page-home .hero-visual {
    justify-content: flex-end;
    padding-right: clamp(2rem, 5.2vw, 7rem);
  }

  .page-home .hero-figure {
    width: min(145%, 780px);
  }
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;     
}

.hero-card--float {
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  width: min(92%, 320px);
  margin: 0;
  transform: translateX(-50%);
  animation: card-float 6s ease-in-out infinite;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.reduce-motion .hero-card--float {
  animation: none;
}

.reduce-motion .hero-visual__deco {
  animation: none;
  opacity: 0.48;
}

.reduce-motion .hero-glance__box:hover {
  transform: none;
}

@keyframes card-float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.hero-card--float:not(.hero-card--glass)::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), transparent 45%, rgba(26, 24, 20, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}


.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.media-strip img {
  width: 100%;
  height: clamp(120px, 22vw, 180px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  box-shadow: 0 6px 24px rgba(26, 24, 20, 0.06);
}

.media-strip > div {
  border-radius: var(--radius);
  overflow: hidden;
}

.media-strip img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 18px 44px rgba(26, 24, 20, 0.14);
}

.compare-card,
.tab-panel,
.persona-card,
.benefit-card,
.stat-card,
.usecase-card,
.solution-hub-card,
.problem-card,
.approach-card,
.carousel-slide,
.split-row,
.founder-note {
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.28s ease;
}

.compare-card:hover,
.persona-card:hover,
.benefit-card:hover,
.stat-card:hover,
.usecase-card:hover,
.approach-card:hover,
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(26, 24, 20, 0.11);
  border-color: rgba(37, 99, 235, 0.22);
}

.tab-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 24, 20, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
}

.solution-hub-card:hover {
  transform: translateY(-10px) translateZ(0);
  box-shadow: 0 26px 56px rgba(26, 24, 20, 0.14);
}

.split-row:hover {
  box-shadow: 0 16px 48px rgba(26, 24, 20, 0.08);
}

.carousel-slide {
  transform-origin: center center;
}

.founder-note:hover {
  box-shadow: 0 20px 50px rgba(26, 24, 20, 0.08);
}

.compare-table tbody tr {
  transition: background 0.22s ease;
}

.compare-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.07);
}

.tab {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.tab:hover {
  transform: translateY(-2px);
}

.tab[aria-selected="true"] {
  transform: translateY(-1px);
}

.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 20% 50%, rgba(37, 99, 235, 0.2), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 70% 60% at 70% 0%, rgba(37, 99, 235, 0.09), transparent 55%);
  pointer-events: none;
}

/* Respect reduced motion via class + system preference */
.reduce-motion [data-reveal],
.reduce-motion [data-reveal-item],
html.reduce-motion [data-reveal],
html.reduce-motion [data-reveal-item] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.reduce-motion .ambient-bubble,
html.reduce-motion .cta-bubble {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-item] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-ambient .ambient-bubble,
  .cta-bubble {
    animation: none !important;
  }

  .hero-card--float {
    animation: none !important;
  }

  .hero-visual__deco {
    animation: none !important;
    opacity: 0.48 !important;
  }

  .hero-glance__box:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .compare-card:hover,
  .persona-card:hover,
  .benefit-card:hover {
    transform: none;
  }

  .nav,
  .nav-toggle__bar {
    transition: none !important;
  }

  .btn-primary::after {
    animation: none !important;
    opacity: 0;
  }
}

/* —— Skill Intelligence: Maturity Model UI —— */
.si-maturity {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 55%, #fff 100%);
}

.si-maturity__inner {
  max-width: 720px;
  margin-inline: auto;
}

.si-maturity__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.si-maturity__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.si-maturity__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.si-maturity__title-accent {
  display: block;
  color: #1e40af;
  background: linear-gradient(105deg, #1e40af 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .si-maturity__title-accent {
    display: inline;
  }
}

.si-maturity__sub {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.55;
}

.si-maturity__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.si-maturity__step:not(:last-child)::after {
  content: "↓";
  display: block;
  text-align: center;
  color: #cbd5e1;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.35rem 0 0.9rem;
}

.si-maturity__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.si-maturity__card:hover {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.si-maturity__step--1 .si-maturity__card {
  background: #f1f5f9;
}

.si-maturity__step--2 .si-maturity__card {
  background: #e8eef5;
}

.si-maturity__step--3 .si-maturity__card {
  background: #e0ecfb;
  border-color: rgba(37, 99, 235, 0.12);
}

.si-maturity__step--zigtal .si-maturity__card {
  background: linear-gradient(145deg, #0a1628 0%, #132d4a 45%, #0f2840 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 24px 56px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.si-maturity__card-glow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 40%, #0ea5e9 100%);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.65);
  border-radius: 16px 0 0 16px;
}

.si-maturity__card-main {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.35rem 1.35rem 1.15rem 1.5rem;
}

.si-maturity__step--zigtal .si-maturity__card-main {
  padding-left: 1.65rem;
}

.si-maturity__card-main--stack {
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.35rem;
}

.si-maturity__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #334155;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.si-maturity__icon--table {
  background: #dbeafe;
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.2);
}

.si-maturity__icon--grid {
  background: #bfdbfe;
  color: #1e40af;
  border-color: rgba(30, 64, 175, 0.25);
}

.si-maturity__text {
  flex: 1;
  min-width: 0;
}

.si-maturity__step-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.si-maturity__step--zigtal .si-maturity__step-title {
  color: #f8fafc;
}

.si-maturity__desc {
  margin: 0;
  font-size: 0.9675rem;
  line-height: 1.55;
  color: #475569;
}

.si-maturity__step--zigtal .si-maturity__desc {
  color: #cbd5e1;
}

.si-maturity__step--zigtal .si-maturity__desc strong {
  color: #fff;
}

.si-maturity__card-foot {
  padding: 0.85rem 1.35rem 0.95rem 1.5rem;
  background: rgba(15, 23, 42, 0.05);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.si-maturity__card-foot p {
  margin: 0;
  font-size: 0.875rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.45;
}

.si-maturity__step--2 .si-maturity__card-foot {
  background: rgba(37, 99, 235, 0.05);
}

.si-maturity__step--3 .si-maturity__card-foot {
  background: rgba(37, 99, 235, 0.07);
}

.si-maturity__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.si-maturity__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.si-maturity__pill-mark {
  font-size: 0.65rem;
  opacity: 0.95;
}

.si-maturity__pill--skills {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.si-maturity__pill--goals {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.si-maturity__pill--demand {
  background: linear-gradient(135deg, #e879f9, #c026d3);
  box-shadow: 0 4px 12px rgba(192, 38, 211, 0.3);
}

.si-maturity__streak {
  height: 3px;
  margin: 0 1.35rem 1rem 1.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
  opacity: 0.85;
}

.si-maturity__closing {
  text-align: center;
  margin: 2.25rem auto 1.35rem;
  max-width: 44rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(224, 242, 254, 0.7));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.55;
}

.si-maturity__cta {
  text-align: center;
}

.si-maturity__cta-btn {
  background: #0c3659 !important;
  border-color: #0c3659 !important;
  box-shadow: 0 12px 28px rgba(12, 54, 89, 0.35);
}

.si-maturity__cta-btn:hover {
  background: #0a2f4d !important;
  border-color: #0a2f4d !important;
}

@media (max-width: 599px) {
  .si-maturity__card-main:not(.si-maturity__card-main--stack) {
    flex-direction: column;
    align-items: flex-start;
  }

  .si-maturity__icon {
    width: 44px;
    height: 44px;
  }
}

/* —— Skill Intelligence page (redesign) —— */
.page-skill-intelligence .page-hero--si,
.page-performance-intelligence .page-hero--pi,
.page-about .page-hero--about,
.page-use-cases .page-hero--uc,
.page-learning-journeys .page-hero--lj,
.page-external-marketplace .page-hero--etm,
.page-assessments .page-hero--as {
  padding: 3.25rem 0 3.75rem;
}

.page-hero--si-grid,
.page-hero--pi-grid,
.page-hero--about-grid,
.page-hero--uc-grid,
.page-hero--lj-grid,
.page-hero--etm-grid,
.page-hero--as-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .page-hero--si-grid,
  .page-hero--pi-grid,
  .page-hero--about-grid,
  .page-hero--uc-grid,
  .page-hero--lj-grid,
  .page-hero--etm-grid,
  .page-hero--as-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.si-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.si-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.si-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.si-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.si-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.si-hero-points li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.si-hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #16a34a;
}

.si-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

/* Double-spacing when stacked: .btn-secondary has global margin-top for feature blocks */
.si-hero-cta .btn-secondary,
.uc-hero-cta .btn-secondary,
.lj-hero-cta .btn-secondary,
.as-hero-cta .btn-secondary,
.etm-hero-cta .btn-secondary {
  margin-top: 0;
}

.page-hero--si-visual,
.page-hero--pi-visual {
  position: relative;
}

.si-hero-panel {
  position: relative;
  min-height: min(320px, 52vw);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #fff 0%, var(--bg-alt) 45%, #e8eef8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  overflow: hidden;
}

.si-hero-panel__mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.14), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.12), transparent 40%),
    radial-gradient(circle at 70% 85%, rgba(14, 165, 233, 0.1), transparent 38%);
  pointer-events: none;
}

.si-hero-panel__orb {
  position: absolute;
  width: min(200px, 55%);
  height: min(200px, 55%);
  border-radius: 50%;
  right: -12%;
  bottom: -18%;
  background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.35), rgba(37, 99, 235, 0.08) 55%, transparent 70%);
  filter: blur(0.5px);
  pointer-events: none;
}

.si-hero-panel__card {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.si-hero-panel__card--main {
  padding: 1.25rem 1.35rem 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

html:not(.reduce-motion) .si-hero-panel__card--main {
  animation: si-panel-drift 7s ease-in-out infinite;
}

.si-hero-panel__card--tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

html:not(.reduce-motion) .si-hero-panel__card--tag {
  animation: si-panel-drift 8s ease-in-out infinite reverse;
}

@keyframes si-panel-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.si-hero-panel__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.si-hero-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.si-hero-panel__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 4.5rem;
  margin-bottom: 0.85rem;
}

.si-hero-panel__bar {
  flex: 1;
  max-width: 2.25rem;
  height: var(--h, 60%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--accent-indigo), var(--accent));
  opacity: 0.88;
}

.si-hero-panel__foot {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.si-hero-panel__pill {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.si-hero-panel__pill--soft {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  border-color: rgba(15, 23, 42, 0.08);
}

.si-capabilities {
  padding-top: 2.5rem;
}

.si-section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.si-features-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .si-features-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(min-content, auto);
    gap: 1.25rem;
  }

  .si-feature-card--wide {
    grid-column: span 4;
  }

  .si-feature-card--narrow {
    grid-column: span 2;
  }

  .si-feature-card--half {
    grid-column: span 3;
  }

  .si-feature-card--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 719px) {
  .si-feature-card--wide,
  .si-feature-card--narrow,
  .si-feature-card--half,
  .si-feature-card--full {
    grid-column: auto;
  }
}

.si-feature-card {
  position: relative;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.si-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.si-feature-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--accent);
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.si-feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.si-feature-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

.si-feature-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.si-feature-card__link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.si-proof {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.si-proof-kicker {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-align: center;
}

.si-proof-kicker__muted {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted);
}

.stats-strip--si .stat-card {
  text-align: left;
}

.stats-strip--si .stat-card strong {
  text-align: left;
}

.page-skill-intelligence .si-maturity__inner {
  max-width: 56rem;
}

.page-skill-intelligence .si-maturity__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.4rem;
  margin: 0.4rem auto 0.85rem;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(99, 102, 241, 0.55));
}

.page-skill-intelligence .si-usecase-grid .usecase-card {
  position: relative;
  padding-top: 1.35rem;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-skill-intelligence .si-usecase-grid .usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.page-skill-intelligence .si-usecase-grid .usecase-card h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.page-skill-intelligence .si-usecase-grid .usecase-card .usecase-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.page-skill-intelligence .si-usecase-grid .usecase-card p:not(.usecase-tagline) {
  font-size: 0.95rem;
}

.page-skill-intelligence .si-usecase-grid .usecase-card:nth-child(1) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.22);
}

.page-skill-intelligence .si-usecase-grid .usecase-card:nth-child(2) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.2);
}

.page-skill-intelligence .si-usecase-grid .usecase-card:nth-child(3) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.22);
}

.page-skill-intelligence .si-usecase-grid .usecase-card:nth-child(4) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.22);
}

.page-skill-intelligence .si-usecase-grid .usecase-card:nth-child(5) {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.si-integrations-band {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, #f1f5f9 50%, #e8eef8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.si-integrations-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(37, 99, 235, 0.09), transparent 55%);
  pointer-events: none;
}

.si-integrations-band .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
}

.si-integrations-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 1.35rem;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.55;
}

.si-integrations-band .btn-secondary {
  position: relative;
  z-index: 1;
}

html.reduce-motion .si-hero-panel__card--main,
html.reduce-motion .si-hero-panel__card--tag {
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .si-hero-panel__card--main,
  .si-hero-panel__card--tag {
    animation: none !important;
  }

  .si-feature-card:hover,
  .page-skill-intelligence .si-usecase-grid .usecase-card:hover,
  .page-performance-intelligence .pi-usecase-grid .usecase-card:hover {
    transform: none;
  }
}

/* —— Performance Intelligence page —— */
.page-performance-intelligence .si-hero-eyebrow,
.page-performance-intelligence .si-hero-panel__eyebrow {
  color: #c2410c;
}

.page-performance-intelligence .si-hero-points li::before {
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
}

.page-performance-intelligence .pi-hero-panel {
  min-height: min(380px, 58vw);
  background: linear-gradient(155deg, #fff8f1 0%, #fff 40%, #fef3e2 100%);
}

.page-performance-intelligence .pi-hero-panel__mesh {
  background:
    radial-gradient(circle at 18% 28%, rgba(234, 88, 12, 0.12), transparent 44%),
    radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.1), transparent 40%),
    radial-gradient(circle at 72% 82%, rgba(251, 146, 60, 0.08), transparent 38%);
}

.page-performance-intelligence .pi-hero-panel__orb {
  background: radial-gradient(circle at 35% 35%, rgba(251, 146, 60, 0.35), rgba(234, 88, 12, 0.1) 52%, transparent 72%);
}

.page-performance-intelligence .pi-hero-panel__bar {
  background: linear-gradient(180deg, #ea580c, #fb923c);
}

.page-performance-intelligence .pi-hero-panel__card-accent .si-hero-panel__title {
  color: #0f172a;
}

.page-performance-intelligence .pi-hero-pill {
  background: rgba(234, 88, 12, 0.12);
  color: #9a3412;
  border-color: rgba(234, 88, 12, 0.25);
}

.si-hero-viz-row {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .si-hero-viz-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.15rem;
  }
}

.pi-hero-photo-wrap {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 5;
  max-height: min(300px, 48vw);
  align-self: center;
}

.pi-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pi-hero-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.page-performance-intelligence .pi-feature-icon {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  border-color: rgba(234, 88, 12, 0.2);
  color: #c2410c;
}

.page-performance-intelligence .si-feature-card:hover {
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.12);
  border-color: rgba(234, 88, 12, 0.22);
}

.pi-capabilities {
  padding-top: 2.5rem;
}

.pi-maturity-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 45%, #fff 100%);
}

.pi-maturity-wrap {
  max-width: 56rem;
  margin-inline: auto;
}

.pi-maturity-spotlight {
  margin: 0 0 2.5rem;
  padding: 0;
}

.pi-maturity-spotlight__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pi-maturity-spotlight__cap {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.pi-maturity-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 44rem;
  margin-inline: auto;
}

.pi-maturity-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c2410c;
}

.pi-maturity-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.pi-maturity-heading .headline-gradient-accent {
  font-weight: inherit;
}

.pi-maturity-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
}

.pi-maturity-ladder {
  position: relative;
  margin: 0;
  padding: 0;
}

.pi-maturity-ladder .pi-maturity-step:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.15rem;
  margin: 0.35rem auto 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.25), rgba(234, 88, 12, 0.65));
}

.pi-maturity-step--zigtal {
  border-left-color: #ea580c !important;
  box-shadow: 0 10px 36px rgba(234, 88, 12, 0.12);
}

.pi-maturity-cta {
  text-align: center;
  margin-top: 2rem;
}

.pi-maturity-cta-btn {
  background: #0c3659 !important;
  border-color: #0c3659 !important;
  box-shadow: 0 12px 28px rgba(12, 54, 89, 0.35);
}

.pi-maturity-cta-btn:hover {
  background: #0a2f4d !important;
  border-color: #0a2f4d !important;
}

.pi-maturity-level4-pills {
  margin: 0.35rem 0 0.75rem;
}

.pi-maturity-ladder .maturity-step p + p {
  margin-top: 0.65rem;
}

.pi-maturity-section .si-maturity__closing.pi-maturity-closing {
  border-color: rgba(234, 88, 12, 0.22);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(255, 237, 213, 0.72));
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.1);
}

.page-performance-intelligence .pi-usecase-grid {
  counter-reset: pi-uc;
}

.page-performance-intelligence .pi-usecase-grid .usecase-card {
  counter-increment: pi-uc;
  position: relative;
  padding-top: 2.35rem;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-performance-intelligence .pi-usecase-grid .usecase-card::before {
  content: counter(pi-uc, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(15, 23, 42, 0.35);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:nth-child(1) {
  background: #fff7ed;
  border-color: rgba(234, 88, 12, 0.22);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:nth-child(2) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.22);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:nth-child(3) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.2);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:nth-child(4) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.22);
}

.page-performance-intelligence .pi-usecase-grid .usecase-card:nth-child(5) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.22);
}

.page-performance-intelligence .si-integrations-band::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(234, 88, 12, 0.07), transparent 55%);
}

@media (max-width: 639px) {
  .pi-hero-photo-wrap {
    max-height: 220px;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .pi-hero-panel-stack {
    width: 100%;
  }
}

/* —— About page —— */
.about-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.about-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.about-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.about-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.about-hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.about-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent));
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.about-hero-visual {
  position: relative;
}

.about-hero-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.about-hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.about-hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.about-hero-caption__tag {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-hero-caption__text {
  flex: 1;
  min-width: 12rem;
}

.about-spotlight {
  margin: 0 0 2rem;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.about-spotlight__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(340px, 42vw);
  object-fit: cover;
}

.about-trust__head {
  margin-bottom: 1.5rem;
}

.about-trust__kicker {
  text-align: center;
}

.about-stats.stats-strip--si .stat-card,
.about-stats .stat-card {
  text-align: left;
}

.about-stats {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-stats .stat-card--industries {
  grid-column: 1 / -1;
}

.about-stats .industry-tags {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-stats .industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #f8fafc;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-why {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.about-why__inner {
  max-width: 44rem;
  margin-inline: auto;
}

.about-why--warm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #faf7f2 0%, #f1e8df 42%, #f7f1ea 100%);
  border-top: 1px solid rgba(120, 53, 15, 0.08);
  border-bottom: 1px solid rgba(120, 53, 15, 0.08);
}

.about-why--warm .about-prose p {
  color: #4a4036;
}

.about-approach-grid--nested {
  margin-top: 2.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.about-prose {
  margin-top: 1.25rem;
}

.about-prose p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  text-align: center;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.page-about .about-approach-card:nth-child(1) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.22);
}

.page-about .about-approach-card:nth-child(1) .about-approach-icon {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #1d4ed8;
}

.page-about .about-approach-card:nth-child(2) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.2);
}

.page-about .about-approach-card:nth-child(2) .about-approach-icon {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #6d28d9;
}

.page-about .about-approach-card:nth-child(3) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.22);
}

.page-about .about-approach-card:nth-child(3) .about-approach-icon {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #0e7490;
}

.about-leadership-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  max-width: 56rem;
  margin-inline: auto;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .about-leadership-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    padding: 1.75rem;
    gap: 2rem;
  }
}

.about-leadership-panel__visual {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-leadership-panel__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-leadership-panel__lead {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
}

.about-leadership-panel__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1.1rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.about-leader-card {
  margin: 0;
  padding: 1rem 0.85rem 1.15rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.about-leader-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 570 / 696;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 0.75rem;
  border: 1px solid var(--border);
}

.about-leader-card h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  color: var(--ink);
}

.about-leader-card__role {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

.about-vm-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-vm-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.25;
  color: var(--ink);
}

.about-vm-card--vision {
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
  border-color: rgba(37, 99, 235, 0.18);
}

.about-vm-card--mission {
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
  border-color: rgba(139, 92, 246, 0.18);
}

.page-about .about-value-card:nth-child(1) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.2);
}

.page-about .about-value-card:nth-child(2) {
  background: #fdf4ff;
  border-color: rgba(217, 70, 239, 0.16);
}

.page-about .about-value-card:nth-child(3) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.2);
}

.page-about .about-value-card:nth-child(4) {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.page-about .about-value-card:nth-child(5) {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
}

.founder-note--about {
  max-width: 880px;
  padding: 0;
  display: grid;
  overflow: hidden;
}

.founder-note--about.founder-note--about-photo {
  max-width: 920px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.5rem;
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 720px) {
  .founder-note--about.founder-note--about-photo {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 248px);
    column-gap: 1.75rem;
    row-gap: 0;
    padding: 0;
  }
}

/* Portrait frame: blue column; image sits on bottom of frame */
.founder-note--about-photo .founder-note__photo {
  margin: 0 auto;
  width: min(100%, 280px);
  max-height: min(72vw, 380px);
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #2563eb 0%, #1d4ed8 42%, #1e3a8a 100%);
  box-shadow: 0 12px 36px rgba(30, 58, 138, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 0;
}

@media (min-width: 720px) {
  .founder-note--about-photo .founder-note__photo {
    margin: 0;
    width: 100%;
    max-width: none;
    align-self: stretch;
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }
}

.founder-note--about-photo .founder-note__photo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  flex-shrink: 1;
}

@media (min-width: 720px) {
  .founder-note--about:not(.founder-note--about-photo) {
    grid-template-columns: 5rem 1fr;
  }
}

.founder-note--about .founder-note__aside {
  display: none;
  background: linear-gradient(180deg, var(--accent-indigo) 0%, var(--accent) 100%);
  align-items: flex-start;
  justify-content: center;
  padding: 1.75rem 0.5rem;
}

@media (min-width: 720px) {
  .founder-note--about:not(.founder-note--about-photo) .founder-note__aside {
    display: flex;
  }
}

.founder-note__quote-mark {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.founder-note--about .founder-note__main {
  padding: 2rem 1.75rem;
}

@media (min-width: 720px) {
  .founder-note--about .founder-note__main {
    padding: 2.25rem 2.25rem 2.25rem 2rem;
  }
}

.founder-note--about.founder-note--about-photo .founder-note__main {
  padding: 0;
  border-top: none;
}

@media (min-width: 720px) {
  .founder-note--about.founder-note--about-photo .founder-note__main {
    padding: 1.85rem 0 1.85rem 1.75rem;
  }
}

@media (min-width: 900px) {
  .founder-note--about.founder-note--about-photo .founder-note__main {
    padding: 2.25rem 0 2.25rem 2.25rem;
  }
}

@media (max-width: 719px) {
  .founder-note--about .founder-note__main {
    border-top: 4px solid var(--accent);
  }

  .founder-note--about.founder-note--about-photo .founder-note__main {
    border-top: none;
    padding-top: 0.25rem;
  }
}

.founder-note--about .founder-note__title {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
}

@media (prefers-reduced-motion: reduce) {
  .page-about .about-approach-card:hover,
  .page-about .about-value-card:hover {
    transform: none;
  }
}

/* —— Use cases page —— */
.uc-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-indigo);
}

.uc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.uc-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.uc-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.uc-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.uc-hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.uc-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-indigo), #0ea5e9);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.uc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.uc-hero-visual {
  position: relative;
}

.uc-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.uc-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.uc-hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.uc-hero-caption__stat {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-indigo);
}

.uc-hero-caption__text {
  flex: 1;
  min-width: 12rem;
}

.uc-gaps {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page-use-cases .uc-problem-card:nth-child(1) {
  background: #fef2f2;
  border-color: rgba(239, 68, 68, 0.18);
}

.page-use-cases .uc-problem-card:nth-child(1) .uc-problem-icon {
  background: #fff;
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(2) {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(2) .uc-problem-icon {
  background: #fff;
  color: #c2410c;
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.page-use-cases .uc-problem-card:nth-child(3) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(3) .uc-problem-icon {
  background: #fff;
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.page-use-cases .uc-problem-card:nth-child(4) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(4) .uc-problem-icon {
  background: #fff;
  color: #6d28d9;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(5) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.2);
}

.page-use-cases .uc-problem-card:nth-child(5) .uc-problem-icon {
  background: #fff;
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.uc-social {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.uc-social-inner {
  max-width: min(60rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.uc-social-logos {
  margin-top: 0.35rem;
  justify-content: center;
}

.uc-social-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.uc-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.uc-trust-logo {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  opacity: 0.92;
}

.uc-trust-logo--capterra {
  max-width: min(280px, 70vw);
  max-height: 64px;
}

.uc-solve {
  padding-top: 2.5rem;
}

.page-use-cases .uc-split-row {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.05);
}

@media (min-width: 800px) {
  .page-use-cases .uc-split-row .split-half--solution {
    box-shadow: inset 4px 0 0 var(--accent);
  }
}

.uc-proof {
  padding-bottom: 2.5rem;
}

.uc-testimonial-marquee {
  display: flex;
  gap: 1.1rem;
  overflow: hidden;
  padding: 0.35rem 0;
}

.uc-testimonial-track {
  display: flex;
  gap: 1.1rem;
  flex-shrink: 0;
  min-width: max-content;
  animation: uc-testimonials-scroll 96s linear infinite;
}

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

@keyframes uc-testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.uc-testimonial {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  width: min(360px, 86vw);
  min-height: 260px;
  padding: 1.1rem 1.05rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  max-width: none;
  margin: 0;
  text-align: left;
  background-image:
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(56, 189, 248, 0.24), rgba(99, 102, 241, 0.32));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.uc-testimonial::before {
  content: none;
}

.uc-testimonial blockquote {
  margin: 0 0 0.9rem;
}

.uc-testimonial blockquote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 1.18vw, 0.95rem);
  line-height: 1.48;
  color: #334155;
  letter-spacing: 0;
}

.uc-testimonial figcaption {
  color: #64748b;
}

.uc-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.uc-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: #1d4ed8;
  background: linear-gradient(145deg, #eef2ff, #dbeafe);
  border: 1px solid rgba(99, 102, 241, 0.28);
}

.uc-testimonial-author strong {
  display: block;
  color: #1e293b;
  font-size: 0.9rem;
  line-height: 1.2;
}

.uc-testimonial-author span span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.79rem;
  color: #475569;
}

@media (prefers-reduced-motion: reduce) {
  .uc-testimonial-track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-use-cases .uc-problem-card:hover {
    transform: none;
  }
}

/* —— Learning Journeys page —— */
.lj-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #059669;
}

.lj-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.lj-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.lj-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.lj-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.lj-hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.lj-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.lj-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.lj-hero-visual {
  position: relative;
}

.lj-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.lj-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.lj-hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.lj-hero-caption__tag {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #047857;
}

.lj-hero-caption__text {
  flex: 1;
  min-width: 12rem;
}

.lj-capabilities {
  padding-top: 2.5rem;
}

.page-learning-journeys .lj-feature-icon {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.25);
  color: #047857;
}

.page-learning-journeys .si-feature-card:hover {
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
  border-color: rgba(5, 150, 105, 0.22);
}

.page-learning-journeys .lj-integrations.si-integrations-band::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(16, 185, 129, 0.08), transparent 55%);
}

/* —— Assessments page —— */
.as-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-indigo);
}

.as-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.as-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.as-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.as-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.as-hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.as-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #0ea5e9);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.as-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.as-hero-visual {
  position: relative;
}

.as-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.as-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.as-hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.as-hero-caption__tag {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}

.as-hero-caption__text {
  flex: 1;
  min-width: 12rem;
}

.as-capabilities {
  padding-top: 2.5rem;
}

.page-assessments .as-feature-icon {
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
  border-color: rgba(99, 102, 241, 0.22);
  color: #4338ca;
}

.page-assessments .si-feature-card:hover {
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
  border-color: rgba(79, 70, 229, 0.22);
}

.as-proof-deck {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-assessments .as-integrations.si-integrations-band::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(99, 102, 241, 0.09), transparent 55%);
}

/* —— External Marketplace page —— */
.etm-hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d28d9;
}

.etm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.etm-hero-title .headline-gradient-accent {
  font-weight: inherit;
}

.etm-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #334155;
  max-width: 46ch;
}

.etm-hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.etm-hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.etm-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.etm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.etm-hero-visual {
  position: relative;
}

.etm-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--card);
}

.etm-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.etm-hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.etm-hero-caption__tag {
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d28d9;
}

.etm-hero-caption__text {
  flex: 1;
  min-width: 12rem;
}

.etm-capabilities {
  padding-top: 2.5rem;
}

.page-external-marketplace .etm-feature-icon {
  background: linear-gradient(145deg, #f5f3ff, #ede9fe);
  border-color: rgba(124, 58, 237, 0.22);
  color: #6d28d9;
}

.page-external-marketplace .si-feature-card:hover {
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
}

.etm-proof {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.etm-maturity-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 45%, #fff 100%);
}

.etm-maturity-wrap {
  max-width: 56rem;
  margin-inline: auto;
}

.etm-maturity-spotlight {
  margin: 0 0 2.5rem;
  padding: 0;
}

.etm-maturity-spotlight__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.etm-maturity-spotlight__cap {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.etm-maturity-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 44rem;
  margin-inline: auto;
}

.etm-maturity-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6d28d9;
}

.etm-maturity-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.etm-maturity-heading .headline-gradient-accent {
  font-weight: inherit;
}

.etm-maturity-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
}

.etm-maturity-level5-pills {
  margin: 0.35rem 0 0.75rem;
}

.etm-maturity-ladder .maturity-step p + p {
  margin-top: 0.65rem;
}

.etm-maturity-ladder .etm-maturity-step:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.15rem;
  margin: 0.35rem auto 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.25), rgba(79, 70, 229, 0.65));
}

.etm-maturity-step--zigtal {
  border-left-color: #7c3aed !important;
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.12);
}

.etm-maturity-cta {
  text-align: center;
  margin-top: 2rem;
}

.etm-maturity-cta-btn {
  background: #0c3659 !important;
  border-color: #0c3659 !important;
  box-shadow: 0 12px 28px rgba(12, 54, 89, 0.35);
}

.etm-maturity-cta-btn:hover {
  background: #0a2f4d !important;
  border-color: #0a2f4d !important;
}

.page-external-marketplace .etm-usecase-grid {
  counter-reset: etm-uc;
}

.page-external-marketplace .etm-usecase-grid .usecase-card {
  counter-increment: etm-uc;
  position: relative;
  padding-top: 2.35rem;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-external-marketplace .etm-usecase-grid .usecase-card::before {
  content: counter(etm-uc, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(15, 23, 42, 0.35);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:nth-child(1) {
  background: #f5f3ff;
  border-color: rgba(139, 92, 246, 0.22);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:nth-child(2) {
  background: #eff6ff;
  border-color: rgba(59, 130, 246, 0.22);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:nth-child(3) {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.22);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:nth-child(4) {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.22);
}

.page-external-marketplace .etm-usecase-grid .usecase-card:nth-child(5) {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.page-external-marketplace .etm-integrations.si-integrations-band::before {
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(124, 58, 237, 0.08), transparent 55%);
}

@media (prefers-reduced-motion: reduce) {
  .page-external-marketplace .etm-usecase-grid .usecase-card:hover {
    transform: none;
  }
}

