/* ====== Fonts ====== */
@font-face {
    font-family: 'Roobert';
    src: url('/fonts/Roobert/Roobert-Regular.woff2') format('woff2'),
         url('/fonts/Roobert/Roobert-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roobert';
    src: url('/fonts/Roobert/Roobert-SemiBold.woff2') format('woff2'),
         url('/fonts/Roobert/Roobert-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist Mono';
    src: url('/fonts/GeistMono/GeistMono-Regular.woff2') format('woff2'),
        url('/fonts/GeistMono/GeistMono-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist Mono';
    src: url('/fonts/GeistMono/GeistMono-Bold.woff2') format('woff2'),
        url('/fonts/GeistMono/GeistMono-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ====== CSS Custom Properties (Design Tokens) ====== */
:root {
  /* Brand */
  --color-brand-base: #FF7040;
  --color-brand-dark: #E55C2E;
  --color-brand-light: #FFA080;

  /* Colors */
  --color-purple-base: #8382FF;
  --color-purple-dark: #504FE3;
  --color-purple-light: #D1D1FF;

  --color-blue-base: #3DA7F2;
  --color-blue-dark: #1B73B2;
  --color-blue-light: #B2DFFF;

  --color-green-base: #29C29C;
  --color-green-dark: #0E8769;
  --color-green-light: #95F5DD;

  --color-lime-base: #BEDB67;
  --color-lime-dark: #66801A;
  --color-lime-light: #E2F2B1;

  --color-yellow-base: #F2C261;
  --color-yellow-dark: #997326;
  --color-yellow-light: #FFE5B2;

  --color-red-base: #FA6557;
  --color-red-dark: #B23E34;
  --color-red-light: #FFC5BF;

  --color-olive-base: #899684;
  --color-olive-dark: #576652;
  --color-olive-light: #D1D9CE;

  /* Greys */
  --color-grey-100: #1A1916;
  --color-grey-200: #4D4B46;
  --color-grey-300: #73726C;
  --color-grey-400: #9E9D98;
  --color-grey-500: #BDBCB7;
  --color-grey-600: #E0E0DC;
  --color-grey-700: #F7F7F5;

  --color-shade: #222222;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-body: 'Roobert', sans-serif;
  --font-geist: 'Geist Mono', monospace;

  /* Type scale */
  --text-heading-large: 56px;
  --lh-heading-large: 56px;
  --ls-heading-large: -1.5px;

  --text-heading-large-narrow: 48px;
  --lh-heading-large-narrow: 48px;
  --ls-heading-large-narrow: -1px;

  --text-heading-medium: 48px;
  --lh-heading-medium: 48px;
  --ls-heading-medium: -1px;

  --text-heading-medium-narrow: 30px;
  --lh-heading-medium-narrow: 36px;
  --ls-heading-medium-narrow: -0.5px;

  --text-heading-small: 30px;
  --lh-heading-small: 36px;
  --ls-heading-small: -0.5px;

  --text-heading-small-narrow: 28px;
  --lh-heading-small-narrow: 32px;
  --ls-heading-small-narrow: -0.25px;

  --text-body-large: 22px;
  --lh-body-large: 32px;

  --text-body-large-narrow: 20px;
  --lh-body-large-narrow: 28px;

  --text-body-medium: 16px;
  --lh-body-medium: 24px;

  --text-body-small: 15px;
  --lh-body-small: 22px;

  --text-caption: 12px;
  --lh-caption: 16px;
  --ls-caption: 0.2px;

  --text-overline: 13px;
  --lh-overline: 20px;
  --ls-overline: 2px;

  --text-button: 14px;
  --lh-button: 24px;
  --ls-button: 2px;

  --text-button-small: 14px;
  --lh-button-small: 20px;
  --ls-button-small: 0.15px;

  /* Containers */
  --container-max-md: 712px;
  --container-max-lg: 1064px;
  --container-max-xl: 1328px;
  --container-pad-md: 16px;
  --container-pad-lg: 24px;
}

/* ====== Reset / Base ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: var(--color-grey-100);
  background: var(--color-grey-700);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ====== Container ====== */
.container {
  margin-inline: auto;
  padding-inline: var(--container-pad-md);
  max-width: var(--container-max-md);
}
@media (min-width: 48rem) {
  .container {
    padding-inline: var(--container-pad-lg);
    max-width: var(--container-max-lg);
  }
}
@media (min-width: 64rem) {
  .container { max-width: var(--container-max-xl); }
}

/* ====== Header / Nav ====== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  background: var(--color-grey-700);
}
@media (min-width: 48rem) {
  .site-header { padding: 24px; }
}
@media (min-width: 64rem) {
  .site-header { z-index: 20; }
}

.site-header .logo {
  display: inline-block;
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.site-header .logo svg { height: 100%; width: auto; }

/* Nav wrapper */
.nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
}
@media (min-width: 64rem) {
  .nav-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
  }
}
@media (max-width: 63.99rem) {
  .nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 16px 0;
    gap: 144px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
    background: var(--color-grey-700) !important;
    transform: translateX(-100%);
    pointer-events: none;
    opacity: 0;
  }
  .nav-wrapper.is-active {
    transform: translateX(0);
    pointer-events: auto !important;
    opacity: 1 !important;
  }
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 64rem) {
  .nav-list { flex-direction: row; }
}

/* Nav link */
.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  letter-spacing: var(--ls-button-small);
  padding: 14px 16px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 64rem) {
  .nav-link { padding: 6px 16px; }
}
.nav-link:hover { color: var(--color-brand-base); background: rgba(34,34,34,0.05); }
.nav-link:active { color: var(--color-brand-dark); background: rgba(34,34,34,0.1); }
.nav-link.active-section { background: rgba(34,34,34,0.05); }

.nav-link .chevron {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(34,34,34,0.4);
}
@media (max-width: 63.99rem) {
  .nav-link .chevron { transform: rotate(-90deg); }
}

/* Subnav */
.nav-subnav {
  background: var(--color-white);
  color: var(--color-grey-100);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 64rem) {
  .nav-subnav {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
  }
}
@media (max-width: 63.99rem) {
  .nav-subnav {
    background: var(--color-grey-700);
    top: -80px;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    transform: translateX(100%);
  }
  .nav-subnav.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
.nav-subnav.is-open {
  opacity: 1;
  z-index: 20;
  box-shadow: 0 1px 0 var(--color-grey-600), 0 8px 24px -4px rgba(0,0,0,.08);
  pointer-events: auto;
}

.nav-subnav .subnav-back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  color: var(--color-grey-100);
  padding: 0 16px;
  height: 56px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
@media (min-width: 64rem) {
  .nav-subnav .subnav-back { display: none; }
}

.subnav-wrapper { display: block; position: relative; }

/* Subnav grid layout */
.subnav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 24px 0 16px;
}
@media (min-width: 30rem) {
  .subnav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .subnav-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 32px 0 20px; }
}

/* Subnav card items */
.subnav-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
  text-decoration: none;
}
@media (min-width: 64rem) {
  .subnav-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }
}
.subnav-card:hover { background: rgba(0,0,0,0.04); }

/* Icon badge matching index page */
.subnav-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(to bottom right, var(--color-brand-base), var(--color-brand-dark));
  color: white;
}
@media (min-width: 64rem) {
  .subnav-card-icon { width: 40px; height: 40px; }
}
.subnav-card-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}
@media (min-width: 64rem) {
  .subnav-card-icon svg { width: 20px; height: 20px; }
}

.subnav-card-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-grey-200);
  transition: color 0.15s;
}
.subnav-card:hover .subnav-card-label { color: var(--color-grey-100); }

/* View all footer link */
.subnav-footer {
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
  border-top: 1px solid var(--color-grey-600);
  margin-top: 4px;
}
.subnav-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-geist);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-grey-300);
  white-space: nowrap;
  transition: color 0.15s;
}
.subnav-view-all:hover { color: var(--color-brand-base); }
.subnav-view-all svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile subnav scrollable area */
@media (max-width: 63.99rem) {
  .nav-subnav .container {
    overflow-y: auto;
    height: calc(100vh - 56px);
  }
}

/* Right-side nav items */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 63.99rem) {
  .nav-actions { padding: 0 16px; }
}

/* Hamburger */
.hamburger {
  position: relative;
  z-index: 10;
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 64rem) {
  .hamburger { display: none; }
}
.hamburger-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  overflow: hidden;
  transition: transform 0.3s;
  transform-origin: center;
}
.hamburger-line {
  background: var(--color-grey-100);
  height: 2px;
  width: 24px;
  transition: transform 0.3s;
  transform-origin: left;
}
.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateX(40px); }
.hamburger.is-active .hamburger-line:nth-child(2) { transform: translateX(40px); transition-delay: 75ms; }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateX(40px); transition-delay: 150ms; }
.hamburger-cross {
  position: absolute;
  top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-40px);
  transition: transform 0.5s;
  width: 0;
}
.hamburger.is-active .hamburger-cross { transform: translateX(0); width: 48px; }
.hamburger-cross-line {
  position: absolute;
  background: var(--color-grey-100);
  height: 2px;
  width: 24px;
  transition: transform 0.5s;
}
.hamburger.is-active .hamburger-cross-line:nth-child(1) { transform: rotate(45deg); transition-delay: 300ms; }
.hamburger.is-active .hamburger-cross-line:nth-child(2) { transform: rotate(-45deg); transition-delay: 300ms; }

/* Gradient border at bottom of header */
.header-border {
  overflow: hidden;
  z-index: 20;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.header-border::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 150%;
  transform: translateX(-50%);
  height: 1px;
  bottom: 0;
  background: linear-gradient(to right, var(--color-grey-700) 10%, var(--color-grey-600) 50%, var(--color-grey-700) 90%);
}

/* ====== Icon utilities ====== */
.icon-sm { width: 16px; height: 16px; }
.icon-muted { color: rgba(34,34,34,0.4); display: flex; }
.icon-muted svg { width: 16px; height: 16px; max-width: none; flex-shrink: 0; }

/* ====== Buttons ====== */
.btn-small {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: fit-content;
  gap: 5px;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  letter-spacing: var(--ls-button-small);
  padding: 6px 12px;
  background: rgba(34,34,34,0.05);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-small:hover { border-color: var(--color-brand-base); color: var(--color-brand-base); }
.btn-small:active { border-color: var(--color-brand-dark); color: var(--color-brand-dark); }
.btn-small .icon-muted { color: rgba(34,34,34,0.4); }

.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-geist);
  font-size: var(--text-button);
  line-height: var(--lh-button);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  font-weight: 500;
  background: var(--color-brand-base);
  color: var(--color-grey-100);
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary:hover { background: var(--color-brand-light); }
.btn-primary:active { background: var(--color-brand-dark); }
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, var(--color-red-dark), var(--color-brand-light));
}

.btn-link {
  display: inline-block;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  color: var(--color-grey-100);
  transition: color 0.2s;
}
.btn-link:hover { color: var(--color-brand-base); }
.btn-link:active { color: var(--color-brand-dark); }

.btn-link-footer {
  display: inline-block;
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  color: white;
  transition: color 0.2s;
}
.btn-link-footer:hover { color: var(--color-brand-base); }
.btn-link-footer:active { color: var(--color-brand-dark); }

/* ====== Tags ====== */
.tag {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: fit-content;
  gap: 5px;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  letter-spacing: var(--ls-button-small);
  color: rgba(34,34,34,0.55);
  padding: 6px 12px;
  background: rgba(34,34,34,0.05);
  border-radius: 9999px;
  transition: color 0.2s;
}
.tag:hover { color: var(--color-brand-base); }
.tag:active { color: var(--color-brand-dark); }
.tag.active { color: var(--color-grey-100); }

/* ====== Language switcher ====== */
.lang-switcher {
  position: relative;
}
.lang-switcher-menu {
  position: absolute;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  border-radius: 2px;
  right: 0;
  padding-top: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 63.99rem) {
  .lang-switcher-menu { bottom: 100%; padding-top: 0; padding-bottom: 12px; }
}
.lang-switcher:hover .lang-switcher-menu,
.lang-switcher .active ~ .lang-switcher-menu {
  opacity: 1;
  pointer-events: auto;
}
.lang-switcher-menu-inner {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--color-grey-700);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  border-radius: 2px;
}

/* ====== Promo bar ====== */
.promo-bar {
  background: var(--color-purple-dark);
  color: white;
  text-align: center;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  padding: 8px 16px;
}
.promo-bar a { font-weight: 600; }
.promo-bar a:hover { color: var(--color-purple-light); }

/* ====== Hero (taxonomy term pages) ====== */
.hero-term {
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .hero-term { padding: 128px 0 48px; }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .hero-bg svg { display: none; }
}
.hero-term .hero-content {
  position: relative;
  z-index: 2;
}
.hero-term .hero-overline {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 500;
  color: rgba(34,34,34,0.55);
}
@media (min-width: 48rem) {
  .hero-term .hero-overline {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.hero-term .hero-title {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 64rem) {
  .hero-term .hero-title {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}

/* ====== Page hero (legal / static pages) ====== */
.page-hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .page-hero { padding: 80px 0; }
}
.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .page-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .page-hero .hero-bg svg { display: none; }
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .page-hero-title {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.page-hero-description {
  margin-top: 16px;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.55);
}
@media (min-width: 48rem) {
  .page-hero-description {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}

/* ====== Page content (legal / static pages) ====== */
.page-content {
  padding: 48px 0 80px;
  position: relative;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
}
@media (min-width: 48rem) {
  .page-content {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
@media (min-width: 64rem) {
  .page-content { padding: 64px 0 120px; }
}
.page-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 480px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(34,34,34,0.1), transparent);
}
.page-content-inner {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(34,34,34,0.7);
}

/* ====== Tag bar ====== */
.tag-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ====== Cards grid ====== */
.cards-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Solution/showcase card (matches production) */
.card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  overflow: hidden;
  background: white;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.card-tint-1 { background: linear-gradient(135deg, rgba(131,130,255,0.18), rgba(190,219,103,0.25)); }
.card-tint-2 { background: linear-gradient(135deg, rgba(61,167,242,0.18), rgba(242,194,97,0.25)); }
.card-tint-3 { background: linear-gradient(135deg, rgba(41,194,156,0.18), rgba(137,150,132,0.22)); }
.card-tint-4 { background: linear-gradient(135deg, rgba(102,128,26,0.18), rgba(255,229,178,0.25)); }
.card-tint-5 { background: linear-gradient(135deg, rgba(250,101,87,0.18), rgba(242,194,97,0.25)); }
.card-tint-6 { background: linear-gradient(135deg, rgba(87,102,82,0.18), rgba(255,112,64,0.25)); }
@media (min-width: 48rem) {
  .card {
    flex-direction: column;
    border-radius: 16px;
  }
}

.card-icon-area {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  position: relative;
}
@media (min-width: 48rem) {
  .card-icon-area {
    width: 208px;
    height: 208px;
    margin-right: 0;
  }
}

.card-icon-area .card-vector {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon-area .card-vector img,
.card-icon-area .card-vector svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon-area .card-icon-badge {
  position: absolute;
  inset: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
}
@media (min-width: 48rem) {
  .card-icon-area .card-icon-badge { inset: 42px; }
}
.card-icon-badge svg { width: 21px; height: 21px; }
@media (min-width: 48rem) {
  .card-icon-badge svg { width: 69px; height: 69px; }
}

.card-body {
  flex-grow: 1;
  padding: 16px 0 16px 16px;
}
@media (min-width: 48rem) {
  .card-body {
    text-align: center;
    padding: 0 24px 28px;
  }
}
.card-body h2 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  flex-grow: 1;
}
@media (min-width: 48rem) {
  .card-body h2 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.card-body p {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
}
@media (min-width: 48rem) {
  .card-body p { margin-top: 8px; }
}

.card-tags {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
@media (min-width: 48rem) {
  .card-tags { display: flex; justify-content: center; }
}
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  line-height: 1;
  color: rgba(34,34,34,0.55);
  background: rgba(34,34,34,0.05);
  border-radius: 4px;
  padding: 4px 7px;
  white-space: nowrap;
}
.card-tag-icon { width: 11px; height: 11px; flex-shrink: 0; }

/* ====== Gradients (card icon backgrounds) ====== */
.bg-gradient-1 { background: linear-gradient(to bottom right, var(--color-purple-base), var(--color-lime-base)); }
.bg-gradient-2 { background: linear-gradient(to bottom right, var(--color-blue-base), var(--color-yellow-base)); }
.bg-gradient-3 { background: linear-gradient(to bottom right, var(--color-green-base), var(--color-olive-base)); }
.bg-gradient-4 { background: linear-gradient(to bottom right, var(--color-lime-dark), var(--color-yellow-light)); }
.bg-gradient-5 { background: linear-gradient(to bottom right, var(--color-red-base), var(--color-yellow-base)); }
.bg-gradient-6 { background: linear-gradient(to bottom right, var(--color-olive-dark), var(--color-brand-base)); }

/* ====== Main spacing ====== */
main { padding-bottom: 96px; }
main:has(> .cta-form-section:last-child) { padding-bottom: 0; }
main:has(> .contact-page-bg) { padding-bottom: 0; }

/* ====== Footer ====== */
.site-footer {
  background: var(--color-grey-100);
  padding: 32px 0 48px;
}
@media (min-width: 64rem) {
  .site-footer { padding: 48px 0; }
}
.site-footer .footer-inner { display: flex; flex-direction: column; gap: 56px; }
@media (min-width: 64rem) { .site-footer .footer-inner { gap: 80px; } }

/* Footer section headers */
.footer-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-section-header h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 64rem) {
  .footer-section-header h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.footer-section-header .divider {
  height: 1px;
  flex-grow: 1;
  background: rgba(255,255,255,0.1);
}

/* Footer tier 1: quick links */
.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

/* Footer latest blog */
.footer-latest-blog {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.footer-blog-label {
  font-size: var(--text-body-small);
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
}
.footer-blog-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background 0.15s;
}
.footer-blog-pill:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Footer tier 2: taxonomy columns */
.footer-taxonomy-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 64rem) {
  .footer-taxonomy-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

.footer-taxonomy-col h3 {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-taxonomy-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-taxonomy-col a.btn-link-footer {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-taxonomy-col .footer-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-taxonomy-col .footer-more svg { width: 16px; height: 16px; }

/* Footer tier 3: company info */
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 48rem) {
  .footer-company-info { flex-direction: row; align-items: center; }
}
.footer-company-logo { width: 48px; height: 48px; flex-shrink: 0; }
.footer-company-logo svg { width: 100%; height: 100%; }
.footer-company-text {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(255,255,255,0.55);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 48rem) {
  .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-legal-copyright {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(255,255,255,0.55);
}
.footer-legal-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-legal-links a {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
}

/* ====== Form components ====== */
.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  background: rgba(34,34,34,0.05);
  color: var(--color-grey-100);
  border: 1px solid rgba(34,34,34,0.1);
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:hover, .form-input:focus { border-color: var(--color-brand-base); }
.form-input::placeholder { color: rgba(34,34,34,0.4); }

.form-label {
  display: block;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  color: var(--color-grey-100);
  padding: 6px 0;
}

/* ====== Content prose ====== */
.content h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: var(--color-grey-100);
  margin-bottom: 16px;
}
@media (min-width: 48rem) {
  .content h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
    margin-bottom: 24px;
  }
}
.content * + h2 { padding-top: 32px; }
@media (min-width: 48rem) { .content * + h2 { padding-top: 48px; } }

.content h3 {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 8px;
}
@media (min-width: 48rem) {
  .content h3 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.content * + h3 { padding-top: 16px; }
@media (min-width: 48rem) { .content * + h3 { padding-top: 24px; } }
.content p { margin-bottom: 16px; }
@media (min-width: 48rem) { .content p { margin-bottom: 24px; } }
.content a { transition: color 0.2s; }
.content a:hover { color: var(--color-brand-base); }
.content a:active { color: var(--color-brand-dark); }
.content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
@media (min-width: 48rem) { .content ul { margin-bottom: 24px; } }
.content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-grey-500);
}
.content ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}
@media (min-width: 48rem) { .content ol { margin-bottom: 24px; } }
.content ol li {
  margin-bottom: 8px;
}
.content ol li::marker { color: var(--color-grey-500); }
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  color: var(--color-brand-base);
  font-weight: inherit;
}
.content strong { font-weight: 600; }
.content em { font-style: italic; }
.content blockquote {
  border-left: 3px solid rgba(34,34,34,0.15);
  padding-left: 20px;
  font-style: italic;
  color: rgba(34,34,34,0.6);
  margin-bottom: 16px;
}
@media (min-width: 48rem) { .content blockquote { margin-bottom: 24px; } }

/* ====== Homepage ====== */

/* Hero */
.home-hero {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(131,130,255,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(190,219,103,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 60% 90%, rgba(255,112,64,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(61,167,242,0.09) 0%, transparent 100%),
    var(--color-grey-700);
}
@media (min-width: 64rem) {
  .home-hero { padding: 128px 0 0; }
}
.home-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .home-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .home-hero .hero-bg svg { display: none; }
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 64rem) {
  .home-hero-inner { padding-bottom: 64px; }
}
@media (min-width: 64rem) {
  .home-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}
.home-hero-content { flex: 1; }
.home-hero-content h1 {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .home-hero-content h1 {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.home-hero-sub {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .home-hero-sub {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.home-hero-cta { margin-top: 32px; }
.home-hero-microcopy {
  margin-top: 12px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.home-hero-illustration {
  display: none;
}
@media (min-width: 64rem) {
  .home-hero-illustration {
    display: block;
    flex: 0 0 480px;
    color: var(--color-brand-base);
  }
}
.home-hero-illustration svg { width: 100%; height: auto; }

/* Services grid */
.home-services {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .home-services { grid-template-columns: repeat(3, 1fr); }
}
.home-service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
@media (min-width: 48rem) {
  .home-service-card { border-radius: 16px; }
}
.home-service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.home-service-illustration {
  width: 100%;
  aspect-ratio: 1;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-grey-700);
}
@media (min-width: 48rem) {
  .home-service-illustration { max-height: 240px; }
}
.home-service-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-service-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-service-card h2 {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .home-service-card h2 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.home-service-card p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
  flex-grow: 1;
}
.home-service-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.home-service-card:nth-child(1) .home-service-number { color: var(--color-purple-base); }
.home-service-card:nth-child(2) .home-service-number { color: var(--color-blue-base); }
.home-service-card:nth-child(3) .home-service-number { color: var(--color-green-base); }
.home-service-link {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-brand-base);
}

/* How We Work */
.home-how-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 48rem) {
  .home-how-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.home-how-card {
  padding: 0;
}
.home-how-card h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  margin-top: 12px;
}
.home-how-card p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: var(--color-text-secondary);
}
.home-how-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.home-how-number--purple { color: var(--color-purple-base); }
.home-how-number--blue   { color: var(--color-blue-base); }
.home-how-number--green  { color: var(--color-green-base); }
.home-how-highlight {
  display: inline-block;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  color: white;
}
.home-how-highlight--purple { background: var(--color-purple-base); }
.home-how-highlight--blue   { background: var(--color-blue-base); }
.home-how-highlight--green  { background: var(--color-green-base); }
.home-how-detail {
  margin-top: 8px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: var(--color-text-tertiary);
}

/* Why Stratalis */
.home-why-section {
  position: relative;
  overflow: hidden;
}
.home-why-section .container {
  position: relative;
  z-index: 1;
}
.home-why-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 64rem) {
  .home-why-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}
.home-why-heading {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: white;
}
@media (min-width: 48rem) {
  .home-why-heading {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
@media (min-width: 64rem) {
  .home-why-heading {
    flex: 0 0 280px;
    position: sticky;
    top: 120px;
  }
}
.home-why-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-why-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 24px 28px;
  border-left: 4px solid var(--color-purple-base);
}
@media (min-width: 48rem) {
  .home-why-card { border-radius: 16px; padding: 28px 32px; }
}
.home-why-card--purple { border-left-color: var(--color-purple-base); }
.home-why-card--blue   { border-left-color: var(--color-blue-base); }
.home-why-card--green  { border-left-color: var(--color-green-base); }
.home-why-card h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: white;
}
.home-why-card p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(255,255,255,0.55);
}

/* Industries grid */
.home-taxonomy-section {
  position: relative;
  overflow: hidden;
}
.home-taxonomy-section .container {
  position: relative;
  z-index: 1;
}
.home-taxonomy-section .solution-audience-card { text-decoration: none; }
.home-taxonomy-section .solution-audience-card:hover { opacity: 0.85; }
.home-industry-desc {
  margin-top: 4px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(255,255,255,0.55);
}

/* Testimonials */
.home-testimonials {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .home-testimonials { grid-template-columns: repeat(2, 1fr); }
}
.home-testimonial {
  background: white;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .home-testimonial { border-radius: 16px; padding: 32px; }
}
.home-testimonial-quote {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: var(--color-grey-100);
  flex-grow: 1;
}
.home-testimonial-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.home-testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-testimonial-author strong {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.home-testimonial-author span {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.4);
}
.home-testimonial-icon {
  color: var(--color-brand-base);
}

/* ====== CTA form section ====== */
.cta-form-section {
  background: var(--color-grey-100);
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .cta-form-section { padding: 128px 0 80px; }
}
.cta-mesh-right {
  display: none;
  position: absolute;
  top: -48px;
  right: 0;
  width: 480px;
  height: 480px;
  z-index: 1;
}
@media (min-width: 64rem) { .cta-mesh-right { display: block; } }
.cta-mesh-right svg { width: 100%; height: 100%; }
.cta-mesh-left {
  position: absolute;
  top: -112px;
  left: 0;
  width: 480px;
  height: 480px;
  z-index: 1;
}
@media (min-width: 64rem) { .cta-mesh-left { top: -48px; } }
.cta-mesh-left svg { width: 100%; height: 100%; }

.cta-form-inner {
  position: relative;
  z-index: 2;
}
.cta-form-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}
@media (min-width: 64rem) { .cta-form-header { margin-bottom: 32px; } }
.cta-form-header h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: white;
}
@media (min-width: 64rem) {
  .cta-form-header h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.cta-form-header p {
  margin-top: 8px;
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(255,255,255,0.55);
}

.cta-form-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 64rem) { .cta-form-card { padding: 24px; } }

/* Tab switch */
.cta-tab-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--color-grey-200);
  border-radius: 9999px;
  margin-bottom: 8px;
}
@media (min-width: 48rem) { .cta-tab-switch { margin-bottom: 24px; } }
.cta-tab-switch button {
  flex: 1;
  font-family: var(--font-geist);
  font-size: var(--text-button-small);
  line-height: var(--lh-button-small);
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-radius: 9999px;
  padding: 6px;
  text-align: center;
  transition: color 0.3s, background 0.3s;
}
.cta-tab-switch button.active {
  color: var(--color-grey-100);
  background: white;
}

/* Form fields */
.cta-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 48rem) {
  .cta-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.cta-form-wide { grid-column: 1 / -1; }
.cta-textarea { min-height: 128px; resize: vertical; }
.cta-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}
.cta-submit svg { width: 16px; height: 16px; }

/* Form input error state */
.form-input.error { border-color: var(--color-red-base); }

/* Overlays (processing / success) */
.cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cta-spinner { width: 56px; height: 56px; animation: spin 1s linear infinite; }
.cta-spinner svg { width: 100%; height: 100%; fill: var(--color-brand-base); }
@keyframes spin { to { transform: rotate(360deg); } }
.cta-success-icon { width: 48px; height: 48px; }
.cta-success-icon svg { width: 100%; height: 100%; fill: var(--color-green-base); }
.cta-overlay p {
  font-size: var(--text-body-medium);
  font-weight: 500;
  color: var(--color-grey-100);
  text-align: center;
}

/* Feedback messages */
.form-feedback.error { color: var(--color-red-base); font-size: var(--text-body-small); margin-top: 8px; }

/* Trust signals (above email-first card) */
.cta-trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 24px;
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 600px;
}
.cta-trust-signals li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(255,255,255,0.75);
}
.cta-trust-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-lime-base);
}

/* Email-first row */
.cta-email-row {
  display: flex;
  gap: 8px;
}
.cta-email-row .form-input { flex: 1; min-width: 0; }
.cta-email-row .cta-submit { white-space: nowrap; margin-top: 0; width: auto; }

/* What-happens-next hint */
.cta-what-happens-next {
  margin-top: 12px;
  text-align: center;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.4);
}

/* Email-first success state */
.cta-email-success { text-align: center; padding: 48px 0; }
.cta-email-success-heading {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.cta-email-success-text {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Follow-up modal */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.cta-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  max-width: 440px;
  width: calc(100% - 32px);
  padding: 24px;
}
.cta-modal-content h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.cta-modal-subtitle {
  margin-top: 4px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}
.cta-followup-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.cta-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  align-items: stretch;
}
.cta-modal-actions .btn-primary,
.cta-modal-actions .cta-modal-skip {
  flex: 1;
  text-align: center;
  box-sizing: border-box;
}
.cta-modal-skip {
  padding: 12px 20px;
  font-family: var(--font-geist);
  font-size: var(--text-button);
  line-height: var(--lh-button);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(34,34,34,0.55);
  border: 1px solid rgba(34,34,34,0.15);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cta-modal-skip:hover { border-color: rgba(34,34,34,0.3); background: rgba(34,34,34,0.03); }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Utility: hide CTA form on contact page */
.hide-footer-form .cta-form-section { display: none; }

/* ====== Hero description (term pages) ====== */
.hero-term .hero-desc {
  margin-top: 16px;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.4);
}

/* ====== Term content (services, CTA) ====== */

.term-services {
  padding: 32px 0;
}
@media (min-width: 64rem) {
  .term-services { padding: 48px 0; }
}
.term-services h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 24px;
}
@media (min-width: 48rem) {
  .term-services h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.term-services .solution-related { margin-top: 0; }

.term-cta {
  padding: 0 0 56px;
  margin-top: 48px;
}
@media (min-width: 64rem) {
  .term-cta { padding-bottom: 80px; margin-top: 64px; }
}
.term-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ====== Term cards (taxonomy list pages) ====== */
.term-grid {
  display: grid;
  gap: 8px;
}
@media (min-width: 48rem) {
  .term-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 64rem) {
  .term-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.term-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  transition: box-shadow 0.2s;
}
.term-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
@media (min-width: 48rem) {
  .term-card { border-radius: 16px; padding: 20px 24px; }
}
.term-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(to bottom right, var(--color-brand-base), var(--color-brand-dark));
  color: white;
}
.term-card-icon svg { width: 20px; height: 20px; fill: white; }
.term-card h2 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
.term-card:hover h2 { color: var(--color-brand-base); }

/* Rich variant — vertical card with prominent icon + title */
.term-card--rich {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 24px;
  border-radius: 12px;
}
@media (min-width: 48rem) {
  .term-card--rich { padding: 28px; border-radius: 16px; }
}
.term-card--rich .term-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.term-card--rich .term-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.term-card--rich .term-card-icon svg { width: 22px; height: 22px; }
.term-card--rich h2 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 700;
}
.term-card--rich .term-card-text {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: var(--color-grey-300);
  margin: 0;
}

/* ====== Showcase cards (term pages) ====== */
.showcase-grid {
  display: grid;
  gap: 4px;
}
.showcase-grid--index {
  gap: 12px;
}
@media (min-width: 48rem) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid--index { gap: 20px; }
}
.showcase-card {
  display: block;
  background: white;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.2s;
}
.showcase-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
@media (min-width: 48rem) {
  .showcase-card { border-radius: 16px; padding: 24px; }
}

/* Showcase header: icon badge + category labels */
.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.showcase-card-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(to bottom right, var(--color-brand-base), var(--color-brand-dark));
}
.showcase-card-badge svg { width: 18px; height: 18px; fill: white; }
.showcase-card-cats {
  font-family: var(--font-geist);
  font-size: var(--text-caption);
  line-height: var(--lh-caption);
  letter-spacing: var(--ls-caption);
  text-transform: uppercase;
}
.showcase-card-cats .cat-industry { color: var(--color-brand-base); }
.showcase-card-cats .cat-sep { color: rgba(34,34,34,0.2); margin: 0 4px; }
.showcase-card-cats .cat-service { color: rgba(34,34,34,0.4); }

/* Showcase title */
.showcase-card h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
@media (min-width: 48rem) {
  .showcase-card h3 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.showcase-card:hover h3 { color: var(--color-brand-base); }

/* Showcase metrics table */
.showcase-metrics {
  margin-top: 16px;
}
.showcase-metric-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(34,34,34,0.06);
}
.showcase-metric-value {
  flex-shrink: 0;
  min-width: 72px;
  font-weight: 600;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: var(--color-brand-base);
}
.showcase-metric-label {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}

/* Gradient tint backgrounds — index page only */
.showcase-grid--index .showcase-card:nth-child(6n+1) { background: linear-gradient(135deg, rgba(131,130,255,0.18), rgba(190,219,103,0.25)); }
.showcase-grid--index .showcase-card:nth-child(6n+2) { background: linear-gradient(135deg, rgba(61,167,242,0.18), rgba(242,194,97,0.25)); }
.showcase-grid--index .showcase-card:nth-child(6n+3) { background: linear-gradient(135deg, rgba(41,194,156,0.18), rgba(137,150,132,0.22)); }
.showcase-grid--index .showcase-card:nth-child(6n+4) { background: linear-gradient(135deg, rgba(102,128,26,0.18), rgba(255,229,178,0.25)); }
.showcase-grid--index .showcase-card:nth-child(6n+5) { background: linear-gradient(135deg, rgba(250,101,87,0.18), rgba(242,194,97,0.25)); }
.showcase-grid--index .showcase-card:nth-child(6n+6) { background: linear-gradient(135deg, rgba(87,102,82,0.18), rgba(255,112,64,0.25)); }

/* ====== Section headings (term pages) ====== */
.section-heading {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 16px;
}
@media (min-width: 48rem) {
  .section-heading {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
    margin-bottom: 24px;
  }
}

/* ====== Section spacing ====== */
.section-tags { padding: 0; }
.section-cards { padding: 32px 0; }
@media (min-width: 64rem) { .section-cards { padding: 48px 0; } }

/* ====== Contact page ====== */
.contact-page-bg {
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(131,130,255,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(190,219,103,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 60% 90%, rgba(255,112,64,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(61,167,242,0.09) 0%, transparent 100%),
    var(--color-grey-700);
}
.contact-hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64rem) { .contact-hero { padding: 96px 0 80px; } }

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1282px;
  height: 242px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 63.99rem) { .contact-hero-bg svg { display: none; } }
.contact-hero-bg svg { width: 100%; height: 100%; }

.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 64rem) {
  .contact-hero-inner {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
  }
}

.contact-hero-text { flex: 1; }

.contact-title {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .contact-title {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}

.contact-desc {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .contact-desc {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.contact-person-photo-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
@media (min-width: 64rem) { .contact-person-photo-wrap { width: 80px; height: 80px; } }
.contact-person-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-grey-500);
  border-radius: 4px;
  transform: rotate(-4deg);
  z-index: 1;
}
.contact-person-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  transform: rotate(4deg);
}
.contact-person-name {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.contact-person-position {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}

.contact-form-card {
  position: relative;
  flex: 1;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contact-submit {
  align-self: flex-start;
  margin-top: 24px;
}
.contact-submit svg { width: 16px; height: 16px; }

.contact-calendar { padding-bottom: 56px; }
@media (min-width: 64rem) { .contact-calendar { padding-bottom: 80px; } }
.contact-calendar iframe {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
}

.contact-calendar-heading {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 48rem) {
  .contact-calendar-heading {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
    margin-bottom: 32px;
  }
}

/* ====== Logo banner ====== */
.logo-banner {
  padding: 32px 0;
  background: #fff;
}
.logo-banner-title {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  text-align: center;
  margin-bottom: 24px;
}
.logo-banner-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logo-banner-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.logo-banner-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}
.logo-banner-item {
  width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 48rem) {
  .logo-banner { padding: 48px 0; }
  .logo-banner-item { width: 112px; height: 56px; }
}
.logo-banner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-banner-track { animation-play-state: paused; }
}
.logo-banner-static .logo-banner-logos {
  justify-content: center;
  padding: 0 16px;
}

.logo-banner-hero { background: none; }

/* ====== Solution page ====== */

/* Hero */
.solution-hero {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(131,130,255,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(190,219,103,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 60% 90%, rgba(255,112,64,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(61,167,242,0.09) 0%, transparent 100%),
    var(--color-grey-700);
}
@media (min-width: 64rem) {
  .solution-hero { padding: 128px 0 0; }
}
.solution-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .solution-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .solution-hero .hero-bg svg { display: none; }
}
.solution-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 64rem) {
  .solution-hero-inner { padding-bottom: 128px; }
}
@media (min-width: 64rem) {
  .solution-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}
.solution-hero-content { flex: 1; }
.solution-hero-content h1 {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .solution-hero-content h1 {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.solution-hero-sub {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .solution-hero-sub {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.solution-hero-cta { margin-top: 32px; }
.solution-hero-microcopy {
  margin-top: 12px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Hero key points (right column) */
.solution-hero-points { flex: 0 0 340px; display: none; }
@media (min-width: 64rem) { .solution-hero-points { display: flex; flex-direction: column; gap: 20px; } }
.solution-hero-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.solution-hero-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.solution-hero-point-icon svg { width: 18px; height: 18px; fill: white; }
.solution-hero-point-text h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.solution-hero-point-text p {
  margin-top: 2px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Pricing slider */
.price-slider {
  max-width: 520px;
}
.price-slider-labels {
  display: flex;
  margin-bottom: 8px;
}
.price-slider-label-start { flex: 0 0 50%; text-align: left; }
.price-slider-label-end { flex: 0 0 50%; text-align: left; }
.price-slider-label {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.price-slider-value {
  font-weight: 600;
  color: var(--color-lime-dark);
}
.price-bar {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--color-lime-base), var(--color-purple-base));
}
.price-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.price-dot-start { left: 0; background: var(--color-lime-base); }
.price-dot-end { left: 50%; background: var(--color-purple-base); }
.price-slider-factors {
  margin-top: 10px;
  font-size: var(--text-caption);
  line-height: var(--lh-caption);
  color: rgba(34,34,34,0.4);
}

/* Shared section padding */
.solution-section {
  padding: 56px 0;
}
@media (min-width: 64rem) {
  .solution-section { padding: 80px 0; }
}
/* Reduce doubled padding between adjacent same-background sections */
.solution-section + .solution-section {
  padding-top: 24px;
}
@media (min-width: 64rem) {
  .solution-section + .solution-section {
    padding-top: 32px;
  }
}
/* Restore padding around dark sections and CTA (visual boundary needs spacing) */
.solution-section + .solution-section.solution-section-dark,
.solution-section.solution-section-dark + .solution-section,
.solution-section + .solution-cta-mid,
.solution-cta-mid + .solution-section {
  padding-top: 56px;
}
@media (min-width: 64rem) {
  .solution-section + .solution-section.solution-section-dark,
  .solution-section.solution-section-dark + .solution-section,
  .solution-section + .solution-cta-mid,
  .solution-cta-mid + .solution-section {
    padding-top: 80px;
  }
}
.solution-section-dark {
  background: var(--color-grey-100);
  color: white;
}

/* Section title */
.solution-section-title {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 24px;
}
@media (min-width: 48rem) {
  .solution-section-title {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
    margin-bottom: 32px;
  }
}
.solution-section-dark .solution-section-title { color: white; }

/* Overview */
.solution-overview-text {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.7);
  margin-bottom: 32px;
}
@media (min-width: 48rem) {
  .solution-overview-text {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}

/* Highlights grid */
/* Overview — two-column layout: text left, cards right */
.solution-overview-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 48rem) {
  .solution-overview-layout { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
.solution-overview-left .solution-section-title { margin-bottom: 16px; }
.solution-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 30rem) {
  .solution-highlights { grid-template-columns: repeat(2, 1fr); }
}
.solution-highlight {
  padding-left: 20px;
  border-left: 3px solid var(--color-grey-300);
}
.solution-highlight--purple { border-left-color: var(--color-purple-base); }
.solution-highlight--blue   { border-left-color: var(--color-blue-base); }
.solution-highlight--green  { border-left-color: var(--color-green-base); }
.solution-highlight--lime   { border-left-color: var(--color-lime-base); }
.solution-highlight--yellow { border-left-color: var(--color-yellow-base); }
.solution-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 10px;
}
.solution-highlight-icon.bg-purple { background: var(--color-purple-base); }
.solution-highlight-icon.bg-blue   { background: var(--color-blue-base); }
.solution-highlight-icon.bg-green  { background: var(--color-green-base); }
.solution-highlight-icon.bg-lime   { background: var(--color-lime-base); }
.solution-highlight-icon.bg-yellow { background: var(--color-yellow-base); }
.solution-highlight-icon svg { width: 20px; height: 20px; fill: white; }
.solution-highlight h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.solution-highlight p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: var(--color-text-secondary);
}

/* Common approaches */
.solution-approaches {
  margin-top: 32px;
  display: grid;
  gap: 4px;
}
.solution-approach {
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
}
@media (min-width: 48rem) {
  .solution-approach { border-radius: 16px; }
}
.solution-approach h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 12px;
}
.solution-approach-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 48rem) {
  .solution-approach-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.solution-approach-label {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  margin-bottom: 4px;
}
.solution-approach-text {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.solution-approach--purple { background: rgba(131, 130, 255, 0.08); border-left: 3px solid var(--color-purple-base); }
.solution-approach--blue   { background: rgba(61, 167, 242, 0.08); border-left: 3px solid var(--color-blue-base); }
.solution-approach--green  { background: rgba(41, 194, 156, 0.08); border-left: 3px solid var(--color-green-base); }
.solution-approach--purple .solution-approach-label { color: var(--color-purple-base); }
.solution-approach--blue   .solution-approach-label { color: var(--color-blue-base); }
.solution-approach--green  .solution-approach-label { color: var(--color-green-base); }

/* Why Custom — two-column with side illustration */
.solution-why-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1016px;
  margin: 0 auto;
}
@media (min-width: 48rem) {
  .solution-why-custom {
    flex-direction: row;
    gap: 48px;
  }
}
.solution-why-custom-illustration {
  flex-shrink: 0;
  width: 192px;
}
@media (min-width: 48rem) {
  .solution-why-custom-illustration {
    width: 320px;
  }
}
.solution-why-custom-illustration svg {
  width: 100%;
  height: auto;
}
.solution-why-custom-content {
  flex: 1;
}

/* Stats bar (≤4) */
.solution-stats-bar {
  background: var(--color-grey-100);
  padding: 32px 0;
}
.solution-stats-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px 16px;
  text-align: center;
}
.solution-stat-value {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  font-weight: 600;
  color: var(--color-brand-base);
}
@media (min-width: 48rem) {
  .solution-stat-value {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
  }
}
.solution-stat-label {
  margin-top: 4px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(255,255,255,0.55);
}

/* Stats grid (>4) */
.solution-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 64rem) {
  .solution-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Stats slider */
.stats-slider {
  background: var(--color-grey-100);
  padding: 32px 0;
}
.stats-slider-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.stats-slider-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.stats-slider-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.stats-slider-items {
  display: flex;
  gap: 64px;
  padding: 0 32px;
}
.stats-slider-item {
  text-align: center;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .stats-slider-track { animation-play-state: paused; }
}

/* Who It's For */
.solution-audience-section {
  position: relative;
  overflow: hidden;
}
.solution-audience-section .container {
  position: relative;
  z-index: 1;
}
.solution-audience-grid {
  display: grid;
  gap: 8px;
}
@media (min-width: 48rem) {
  .solution-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
.solution-audience-card {
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 48rem) {
  .solution-audience-card { border-radius: 16px; }
}
.solution-audience-card--purple { background: rgba(131, 130, 255, 0.20); }
.solution-audience-card--blue   { background: rgba(61, 167, 242, 0.20); }
.solution-audience-card--green  { background: rgba(41, 194, 156, 0.20); }
.solution-audience-card--lime   { background: rgba(190, 219, 103, 0.20); }
.solution-audience-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.solution-audience-card-icon.bg-purple { background: var(--color-purple-base); }
.solution-audience-card-icon.bg-blue   { background: var(--color-blue-base); }
.solution-audience-card-icon.bg-green  { background: var(--color-green-base); }
.solution-audience-card-icon.bg-lime   { background: var(--color-lime-base); }
.solution-audience-card-icon svg { width: 20px; height: 20px; max-width: none; }
.solution-audience-text {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(255,255,255,0.85);
}

/* CTA middle */
.solution-cta-mid {
  background: white;
  padding: 56px 0;
  text-align: center;
}
@media (min-width: 48rem) {
  .solution-cta-mid { padding: 80px 0; }
}
.solution-cta-mid h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .solution-cta-mid h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.solution-cta-mid p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.solution-cta-mid .price-slider {
  max-width: 520px;
  margin: 32px auto 0;
}
.solution-cta-mid .btn-primary { margin-top: 32px; }

/* Timeline (How It Works) */
/* Solution – How It Works */
.sol-how-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 48rem) {
  .sol-how-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (min-width: 64rem) {
  .sol-how-grid { grid-template-columns: repeat(min(var(--step-count, 5), 5), 1fr); }
}
.sol-how-card {
  padding: 0;
}
.sol-how-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.sol-how-number--purple { color: var(--color-purple-base); }
.sol-how-number--blue   { color: var(--color-blue-base); }
.sol-how-number--green  { color: var(--color-green-base); }
.sol-how-number--lime   { color: var(--color-lime-dark); }
.sol-how-number--yellow { color: var(--color-yellow-dark); }
.sol-how-card h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.sol-how-card p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}

/* Why Us (reasons grid) */
.solution-reasons {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 48rem) {
  .solution-reasons { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.solution-reason {
  padding-left: 20px;
  border-left: 3px solid var(--color-grey-300);
}
.solution-reason--purple { border-left-color: var(--color-purple-base); }
.solution-reason--blue   { border-left-color: var(--color-blue-base); }
.solution-reason--green  { border-left-color: var(--color-green-base); }
.solution-reason--lime   { border-left-color: var(--color-lime-base); }
.solution-reason--yellow { border-left-color: var(--color-yellow-base); }
.solution-reason h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.solution-reason p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: var(--color-text-secondary);
}

/* Why Us — 2-col grid */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 48rem) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-us-grid-item {
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
}
@media (min-width: 48rem) {
  .why-us-grid-item { border-radius: 16px; }
}
.why-us-grid-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.why-us-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.why-us-icon svg { width: 24px; height: 24px; fill: white; }
.why-us-grid-item h3 {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 600;
  color: var(--color-grey-100);
}
.why-us-grid-item p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: rgba(34,34,34,0.55);
}
/* Testimonial inside grid */
.why-us-grid-testimonial {
  border-left: 3px solid var(--color-brand-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-us-grid-testimonial blockquote {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-style: italic;
  color: var(--color-grey-100);
  margin-bottom: 12px;
}
.why-us-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-us-testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.why-us-testimonial-name {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  font-weight: 600;
  color: var(--color-grey-100);
}
.why-us-testimonial-role {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}

/* FAQ accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .faq-item { border-radius: 16px; }
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-toggle-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: rgba(34,34,34,0.4);
}
.faq-item.is-open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-brand-base);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content-inner {
  padding: 0 24px 20px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.faq-content-inner p + p { margin-top: 12px; }

/* FAQ two-column layout */
.solution-faq-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 64rem) {
  .solution-faq-layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}
.solution-faq-heading {
  flex-shrink: 0;
}
@media (min-width: 64rem) {
  .solution-faq-heading { width: 300px; position: sticky; top: 100px; }
}
.solution-faq-list { flex: 1; min-width: 0; }

/* Testimonial */
.solution-testimonial {
  background: white;
  border-radius: 16px;
  border-left: 4px solid var(--color-brand-base);
  padding: 32px 24px;
}
@media (min-width: 48rem) {
  .solution-testimonial { padding: 40px 32px; }
}
.solution-testimonial blockquote {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  font-style: italic;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .solution-testimonial blockquote {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.solution-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.solution-testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.solution-testimonial-author-name {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.solution-testimonial-author-role {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Service list */
.service-list { padding: 4rem 0; }
.service-list h1 { font-size: var(--text-heading-large); font-weight: 700; }
.service-list-intro { margin-top: 1rem; }
.service-list .solution-related { margin-top: 2.5rem; }

/* Related services */
.solution-related {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .solution-related { grid-template-columns: repeat(2, 1fr); }
}
.solution-related-card {
  display: block;
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
@media (min-width: 48rem) {
  .solution-related-card { border-radius: 16px; }
}
.solution-related-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.solution-related-card.has-cover {
  display: flex;
  align-items: center;
  gap: 20px;
}
.solution-related-card-cover {
  flex-shrink: 0;
  width: 180px;
  color: var(--color-brand-base);
}
.solution-related-card-cover svg {
  width: 100%;
  height: auto;
  display: block;
}
.solution-related-card-body { min-width: 0; }
.solution-related-card h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
.solution-related-card:hover h3 { color: var(--color-brand-base); }
.solution-related-card p {
  margin-top: 4px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* ====== Showcase single page ====== */

/* Hero */
.showcase-hero {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(131,130,255,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(190,219,103,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 60% 90%, rgba(255,112,64,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(61,167,242,0.09) 0%, transparent 100%),
    var(--color-grey-700);
}
@media (min-width: 64rem) {
  .showcase-hero { padding: 96px 0 0; }
}
.showcase-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .showcase-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .showcase-hero .hero-bg svg { display: none; }
}
.showcase-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}
@media (min-width: 64rem) {
  .showcase-hero-inner { padding-bottom: 64px; }
}
.showcase-hero-content {
  max-width: 720px;
}
.showcase-hero-content .tag { margin-bottom: 16px; }
.showcase-hero-content h1 {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .showcase-hero-content h1 {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.showcase-hero-client {
  margin-top: 8px;
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(34,34,34,0.55);
}
.showcase-hero-summary {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .showcase-hero-summary {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}

/* Metadata bar */
.showcase-meta {
  padding: 24px 0;
  border-bottom: 1px solid rgba(34,34,34,0.06);
}
.showcase-meta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}
@media (min-width: 48rem) {
  .showcase-meta-inner { grid-template-columns: repeat(4, auto); justify-content: start; gap: 16px 48px; }
}
.showcase-meta-item { display: flex; flex-direction: column; gap: 4px; }
.showcase-meta-item a { color: rgba(34,34,34,0.7); text-decoration: none; }
.showcase-meta-item a:hover { color: var(--color-brand-base); }
.showcase-meta-label {
  font-weight: 600;
  color: var(--color-grey-100);
}
.showcase-meta-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.showcase-meta-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(34,34,34,0.04);
  border-radius: 100px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.7);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.showcase-meta-tag:hover { background: rgba(34,34,34,0.08); color: var(--color-brand-base); }

/* Key metrics bar */
.showcase-key-metrics {
  background: var(--color-grey-100);
  padding: 32px 0;
}
.showcase-key-metrics-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px 16px;
  text-align: center;
}
.showcase-key-metric-value {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  font-weight: 600;
  color: var(--color-brand-base);
}
@media (min-width: 48rem) {
  .showcase-key-metric-value {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
  }
}
.showcase-key-metric-label {
  margin-top: 4px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(255,255,255,0.55);
}

/* Body */
.showcase-body {
  padding: 48px 0 56px;
}
@media (min-width: 64rem) {
  .showcase-body { padding: 64px 0 80px; }
}
/* Split layout: text + illustration side by side */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
  align-items: start;
}
@media (min-width: 64rem) {
  .showcase-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.showcase-split .showcase-section { margin-bottom: 0; }
.showcase-split-media { display: flex; align-items: start; }
@media (min-width: 64rem) {
  .showcase-split-reverse .showcase-split-media { order: -1; }
}
.showcase-split .showcase-figure { margin: 0; max-width: none; }
.showcase-split .showcase-section p { max-width: none; }

/* Sections */
.showcase-section {
  margin-bottom: 48px;
}
.showcase-section h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 12px;
}
@media (min-width: 48rem) {
  .showcase-section h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.showcase-section p {
  max-width: 720px;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .showcase-section p {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}

/* Accent border for challenge/approach/results */
.showcase-section-accent {
  border-left: 3px solid var(--color-grey-500);
  padding-left: 20px;
}
.showcase-section-challenge { border-color: var(--color-red-base); }
.showcase-section-approach { border-color: var(--color-brand-base); }
.showcase-section-results { border-color: var(--color-green-base); }

/* Figures */
.showcase-figure {
  margin: 32px 0;
}
.showcase-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
@media (min-width: 48rem) {
  .showcase-figure img { border-radius: 16px; }
}

/* Deliverables */
.showcase-deliverables {
  display: grid;
  gap: 8px;
}
@media (min-width: 48rem) {
  .showcase-deliverables { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.showcase-deliverable {
  border-radius: 8px;
  padding: 20px 24px;
  border-left: 4px solid var(--color-purple-base);
}
@media (min-width: 48rem) {
  .showcase-deliverable { border-radius: 16px; }
}
.showcase-deliverable--purple { background: rgba(131, 130, 255, 0.08); border-left-color: var(--color-purple-base); }
.showcase-deliverable--blue   { background: rgba(61, 167, 242, 0.08); border-left-color: var(--color-blue-base); }
.showcase-deliverable--green  { background: rgba(41, 194, 156, 0.08); border-left-color: var(--color-green-base); }
.showcase-deliverable h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 8px;
}
.showcase-deliverable p {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}

/* Testimonials grid */
.showcase-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 64rem) {
  .showcase-testimonials { grid-template-columns: 1fr 1fr; }
}
.showcase-testimonials .showcase-section { margin-bottom: 0; }
.showcase-testimonials .showcase-section:only-child { grid-column: 1 / -1; }

/* Metrics table */
.showcase-metrics-table {
  overflow-x: auto;
  margin-top: 16px;
  background: white;
  border-radius: 12px;
  padding: 4px 0;
}
.showcase-metrics-table table {
  width: 100%;
  text-align: left;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  border-collapse: collapse;
}
.showcase-metrics-table th {
  font-weight: 600;
  color: var(--color-grey-100);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(34,34,34,0.1);
}
.showcase-metrics-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(34,34,34,0.06);
  color: rgba(34,34,34,0.7);
}
.showcase-metrics-table tr:last-child td { border-bottom: none; }
.showcase-metric-after {
  font-weight: 600;
  color: var(--color-green-dark);
}

/* CTA */
.showcase-cta {
  margin-top: 48px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.showcase-cta h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .showcase-cta h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.showcase-cta p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.showcase-cta .btn-primary { margin-top: 20px; }


/* ====== Blog list page ====== */

/* Featured / pinned post */
.blog-featured {
  padding-top: 16px;
}
.blog-featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.blog-featured-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
@media (min-width: 48rem) {
  .blog-featured-card {
    flex-direction: row;
    border-radius: 16px;
  }
}
.blog-featured-image {
  overflow: hidden;
}
@media (min-width: 48rem) {
  .blog-featured-image { width: 50%; flex-shrink: 0; }
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (min-width: 48rem) {
  .blog-featured-body {
    width: 50%;
    padding: 24px 32px;
  }
}
.blog-featured-body .tag { margin-bottom: 12px; }
.blog-featured-body h2 {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
@media (min-width: 48rem) {
  .blog-featured-body h2 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.blog-featured-card:hover h2 { color: var(--color-brand-base); }
.blog-featured-body p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
  flex-grow: 1;
}

/* Blog card grid */
.blog-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
@media (min-width: 48rem) {
  .blog-card { border-radius: 16px; }
}
.blog-card-image {
  height: 192px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
@media (min-width: 48rem) {
  .blog-card-body { padding: 24px; }
}
.blog-card-body h2 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
.blog-card:hover h2 { color: var(--color-brand-base); }
.blog-card-body p {
  margin-top: 8px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
  flex-grow: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(34,34,34,0.06);
}
.blog-card-footer time {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.4);
}
.blog-read-more {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  font-weight: 600;
  color: var(--color-brand-base);
  transition: color 0.2s;
}
.blog-card:hover .blog-read-more,
.blog-featured-card:hover .blog-read-more { color: var(--color-brand-dark); }

/* ====== Blog single page (Medium-style) ====== */

.blog-article {
  background: var(--color-white);
  padding: 48px 0 56px;
}
@media (min-width: 64rem) {
  .blog-article { padding: 64px 0 80px; }
}
.blog-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Back link */
.blog-back-link { margin-bottom: 32px; }
@media (min-width: 48rem) {
  .blog-back-link { margin-bottom: 40px; }
}

/* Title */
.blog-title {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.5px;
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .blog-title {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}

/* Subtitle / summary */
.blog-subtitle {
  margin-top: 16px;
  font-size: 20px;
  line-height: 28px;
  color: rgba(34,34,34,0.54);
}
@media (min-width: 48rem) {
  .blog-subtitle {
    font-size: 22px;
    line-height: 32px;
    margin-top: 20px;
  }
}

/* Author bar */
.blog-author-bar {
  display: flex;
  align-items: center;
  margin-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(34,34,34,0.08);
}
@media (min-width: 48rem) {
  .blog-author-bar { margin-top: 40px; padding-bottom: 40px; }
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-author-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blog-author-name {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.blog-author-info time {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.4);
}

/* Featured image — breaks out wider than text column */
.blog-featured-img {
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .blog-featured-img {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: -64px;
    margin-right: -64px;
  }
}
.blog-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog prose — Medium-style body text */
.blog-prose {
  font-size: 18px;
  line-height: 30px;
  color: rgba(34,34,34,0.84);
  padding-top: 32px;
}
@media (min-width: 48rem) {
  .blog-prose {
    font-size: 20px;
    line-height: 34px;
    padding-top: 40px;
  }
}
.blog-prose p {
  margin-bottom: 20px;
}
@media (min-width: 48rem) {
  .blog-prose p { margin-bottom: 24px; }
}
.blog-prose blockquote {
  border-left: 3px solid var(--color-grey-100);
  padding-left: 24px;
  font-style: italic;
  color: rgba(34,34,34,0.68);
  margin: 32px 0;
}
.blog-prose strong {
  font-weight: 600;
  color: var(--color-grey-100);
}

/* Blog CTA — full width */
.blog-cta {
  border-top: 1px solid rgba(34,34,34,0.08);
  padding: 56px 0;
  text-align: center;
}
@media (min-width: 64rem) {
  .blog-cta { padding: 80px 0; }
}
.blog-cta p {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(34,34,34,0.7);
  margin-bottom: 16px;
}

/* Blog showcases — full width */
.blog-showcases-title {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: var(--color-grey-100);
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 48rem) {
  .blog-showcases-title {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
    margin-bottom: 32px;
  }
}
.blog-showcases {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(34,34,34,0.08);
}
@media (min-width: 64rem) {
  .blog-showcases { padding: 80px 0 40px; }
}

/* Back link */
.blog-bottom-back {
  padding-bottom: 16px;
}

/* ====== About page ====== */

.about-section {
  padding: 56px 0;
}
@media (min-width: 64rem) {
  .about-section { padding: 80px 0; }
}
.about-section-dark {
  background: var(--color-grey-100);
  color: white;
}

.about-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 64rem) {
  .about-row {
    flex-direction: row;
    gap: 64px;
  }
}
@media (min-width: 64rem) {
  .about-row-reverse { flex-direction: row-reverse; }
}

.about-text {
  flex: 1;
}
@media (min-width: 64rem) {
  .about-text { flex: 1 1 50%; }
}
.about-text h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
}
@media (min-width: 48rem) {
  .about-text h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.about-section-dark .about-text h2 { color: white; }
.about-text p {
  margin-top: 16px;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .about-text p {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.about-section-dark .about-text p { color: rgba(255,255,255,0.55); }

.about-image-wrap {
  flex: 1;
}
@media (min-width: 64rem) {
  .about-image-wrap { flex: 1 1 50%; }
}
.about-image-frame {
  position: relative;
}
.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 48rem) {
  .about-image { border-radius: 16px; }
}
.about-image-bg {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  z-index: 1;
}
@media (min-width: 48rem) {
  .about-image-bg { border-radius: 16px; }
}
.about-image-bg-1 {
  background: var(--color-brand-base);
  opacity: 0.3;
  transform: rotate(3deg);
}
.about-image-bg-2 {
  background: var(--color-grey-300);
  opacity: 0.4;
  transform: rotate(-3deg);
}

/* Section header (what_we_do / commitment) */
.about-section-header {
  max-width: 640px;
  margin-bottom: 32px;
}
.about-section-header h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .about-section-header h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.about-section-header p {
  margin-top: 12px;
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(34,34,34,0.55);
}
.about-section-header-dark h2 { color: white; }
.about-section-header-dark p { color: rgba(255,255,255,0.55); }

/* Items grid */
.about-items-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .about-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .about-items-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-item {
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
}
@media (min-width: 48rem) {
  .about-item { border-radius: 16px; }
}
.about-item-dark {
  background: rgba(255,255,255,0.05);
}
.about-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 12px;
}
.about-item-icon svg { width: 20px; height: 20px; fill: white; }
.about-item p {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.about-item-dark p { color: white; }

.about-showcases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 479px) {
  .about-showcases { grid-template-columns: 1fr; }
}

/* ====== Service single page ====== */

/* Hero */
.service-hero {
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(131,130,255,0.13) 0%, transparent 100%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(190,219,103,0.16) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 60% 90%, rgba(255,112,64,0.11) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(61,167,242,0.09) 0%, transparent 100%),
    var(--color-grey-700);
}
@media (min-width: 64rem) {
  .service-hero { padding: 128px 0 0; }
}
.service-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .service-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .service-hero .hero-bg svg { display: none; }
}
.service-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 64rem) {
  .service-hero-inner { padding-bottom: 64px; }
}
@media (min-width: 64rem) {
  .service-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
}
.service-hero-content { flex: 1; }
.service-hero-content h1 {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .service-hero-content h1 {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.service-hero-sub {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .service-hero-sub {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.service-hero-cta { margin-top: 32px; }
.service-hero-microcopy {
  margin-top: 12px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.service-hero-icon {
  display: none;
}
@media (min-width: 64rem) {
  .service-hero-icon {
    display: block;
    flex: 0 0 360px;
    color: var(--color-brand-base);
  }
}
.service-hero-icon svg { width: 100%; height: auto; }

/* Applications */
.service-applications {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .service-applications { grid-template-columns: repeat(2, 1fr); }
}
.service-application {
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
}
@media (min-width: 48rem) {
  .service-application { border-radius: 16px; }
}
.service-application-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.service-application-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.service-application-icon svg { width: 16px; height: 16px; fill: white; }
.service-application h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.service-application-meta {
  margin-top: 8px;
}
.service-application-meta dt {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.6);
  margin-top: 10px;
}
.service-application-meta dd {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: rgba(34,34,34,0.7);
  margin-top: 4px;
}
.service-application-text {
  margin-top: 12px;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: rgba(34,34,34,0.55);
}

/* Applications tabs */
.app-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
}
.app-tabs-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-geist);
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  font-weight: 500;
  color: rgba(34,34,34,0.55);
  background: white;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.app-tabs-btn:hover {
  color: var(--color-grey-100);
}
.app-tabs-btn.active {
  color: white;
  background: var(--color-brand-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.app-tabs-btn.active .service-application-icon {
  background: rgba(255,255,255,0.25);
}
.app-tabs-panel {
  display: none;
  background: white;
  border-radius: 16px;
  padding: 24px;
}
.app-tabs-panel.active {
  display: block;
}
.app-tabs-columns {
  display: grid;
  gap: 24px;
}
@media (min-width: 48rem) {
  .app-tabs-columns { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.app-tabs-col-title {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: 8px;
}
.app-tabs-col p {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: rgba(34,34,34,0.7);
  margin: 0;
}

/* Taxonomy card wrapper */
.taxonomy-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
}

/* See all link */
.section-see-all {
  margin-top: 24px;
}
.section-see-all a {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 600;
  color: var(--color-brand-base);
  transition: color 0.2s;
}
.section-see-all a:hover { color: var(--color-brand-dark); }

/* Taxonomy lists (industries, departments, use cases) */
.service-taxonomy-list {
  display: grid;
  gap: 20px;
}
@media (min-width: 48rem) {
  .service-taxonomy-list { grid-template-columns: repeat(2, 1fr); }
}
.service-taxonomy-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}
.service-taxonomy-item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, var(--color-brand-base), var(--color-brand-dark));
  color: white;
}
.service-taxonomy-item-icon svg { width: 16px; height: 16px; fill: white; }
.service-taxonomy-item-content { flex: 1; min-width: 0; }
.service-taxonomy-item-label {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
.service-taxonomy-item-label a { transition: color 0.2s; }
.service-taxonomy-item-label a:hover { color: var(--color-brand-base); }
.service-taxonomy-item-text {
  margin-top: 4px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Delivery strip */
.delivery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 48rem) {
  .delivery-strip {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: auto auto;
  }
}
.delivery-strip-item {
  flex: 1;
  padding: 16px 20px;
  border-left: 3px solid var(--color-grey-500);
}
.delivery-strip-accent-1 { border-color: var(--color-purple-base); }
.delivery-strip-accent-2 { border-color: var(--color-blue-base); }
.delivery-strip-accent-3 { border-color: var(--color-green-base); }
.delivery-strip-accent-4 { border-color: var(--color-brand-base); }
.delivery-strip-accent-5 { border-color: var(--color-red-base); }
.delivery-strip-accent-6 { border-color: var(--color-purple-base); }
.delivery-strip-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.delivery-strip-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.delivery-strip-icon svg { width: 18px; height: 18px; fill: white; }
.delivery-strip-item h3 {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-weight: 600;
  color: var(--color-grey-100);
}
.delivery-strip-item p {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Tech stack */
.service-tech-section {
  position: relative;
  overflow: hidden;
}
.service-tech-bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 400px;
  pointer-events: none;
  z-index: 0;
}
.service-tech-bg svg {
  width: 100%;
  height: 100%;
}
.service-tech-bg-left { left: 0; }
.service-tech-bg-right { right: 0; }
@media (max-width: 63.99rem) {
  .service-tech-bg { display: none; }
}
.service-tech-section .container {
  position: relative;
  z-index: 1;
}
.service-tech-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .service-tech-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-tech-card {
  border-radius: 8px;
  padding: 20px 24px;
}
@media (min-width: 48rem) {
  .service-tech-card { border-radius: 16px; }
}
.service-tech-card--purple { background: rgba(131, 130, 255, 0.20); }
.service-tech-card--blue   { background: rgba(61, 167, 242, 0.20); }
.service-tech-card--green  { background: rgba(41, 194, 156, 0.20); }
.service-tech-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-tech-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
}
.service-tech-category-icon.bg-purple { background: var(--color-purple-base); }
.service-tech-category-icon.bg-blue   { background: var(--color-blue-base); }
.service-tech-category-icon.bg-green  { background: var(--color-green-base); }
.service-tech-category-icon svg {
  width: 20px;
  height: 20px;
  max-width: none;
}
.service-tech-card h3 {
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  font-weight: 600;
  color: white;
}
.service-tech-card > p {
  margin-top: 4px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(255,255,255,0.7);
}
.service-tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.service-tech-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.10);
  border-radius: 100px;
  font-family: var(--font-geist);
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(255,255,255,0.85);
}
.service-tech-icon svg {
  width: 18px;
  height: 18px;
  max-width: none;
  flex-shrink: 0;
  fill: currentColor;
}
.service-tech-card--purple .service-tech-icon svg { color: var(--color-purple-light); }
.service-tech-card--blue   .service-tech-icon svg { color: var(--color-blue-light); }
.service-tech-card--green  .service-tech-icon svg { color: var(--color-green-light); }

/* ====== Pricing page ====== */

/* Hero */
.pricing-hero {
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .pricing-hero { padding: 128px 0 48px; }
}
.pricing-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .pricing-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .pricing-hero .hero-bg svg { display: none; }
}
.pricing-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.pricing-hero-title {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .pricing-hero-title {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.pricing-hero-sub {
  margin-top: 16px;
  font-size: var(--text-body-large-narrow);
  line-height: var(--lh-body-large-narrow);
  color: rgba(34,34,34,0.55);
}
@media (min-width: 48rem) {
  .pricing-hero-sub {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}

/* Plans grid */
.pricing-plans {
  padding: 32px 0 56px;
}
@media (min-width: 64rem) {
  .pricing-plans { padding: 48px 0 80px; }
}
.pricing-plans-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .pricing-plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .pricing-plans-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Plan card */
.pricing-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .pricing-card { border-radius: 16px; }
}
.pricing-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(34,34,34,0.06);
}
.pricing-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 12px;
}
.pricing-card-icon svg { width: 20px; height: 20px; fill: white; }
.pricing-card-header h3 {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.pricing-card-header p {
  margin-top: 4px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
}

.pricing-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Features checklist */
.pricing-card-label {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  margin-bottom: 10px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.pricing-feature-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--color-green-base);
}

.pricing-example {
  margin-top: 16px;
  flex: 1;
}
.pricing-example p {
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.55);
  font-style: italic;
}

.pricing-price-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(34,34,34,0.06);
}
.pricing-price-value {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.pricing-card .btn-primary {
  margin-top: 16px;
  justify-content: center;
}

/* Pricing form section */
.pricing-form-section {
  background: white;
  padding: 56px 0;
}
@media (min-width: 64rem) {
  .pricing-form-section { padding: 80px 0; }
}
.pricing-form-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 64rem) {
  .pricing-form-inner {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}
.pricing-form-text { flex: 0 0 340px; }
.pricing-form-text h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .pricing-form-text h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.pricing-form-text p {
  margin-top: 12px;
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  color: rgba(34,34,34,0.55);
}
.pricing-form-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pricing-form-submit {
  align-self: flex-start;
  margin-top: 16px;
}
.pricing-form-feedback {
  color: var(--color-red-base);
  font-size: var(--text-body-small);
  margin-top: 8px;
}
.pricing-form-success {
  text-align: center;
  padding: 48px 0;
}
.pricing-form-success-heading {
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.pricing-form-success-text {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* ====== VS / Alternatives pages ====== */

/* VS section spacing override — tighter than solution-section */
article .vs-hero ~ .solution-section {
  padding: 36px 0;
}
@media (min-width: 64rem) {
  article .vs-hero ~ .solution-section { padding: 48px 0; }
}

/* VS Hero */
.vs-hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  background: var(--color-grey-700);
}
@media (min-width: 64rem) {
  .vs-hero { padding: 128px 0 64px; }
}
.vs-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 962px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 64rem) {
  .vs-hero .hero-bg { width: 1282px; height: 242px; }
}
@media (max-width: 63.99rem) {
  .vs-hero .hero-bg svg { display: none; }
}
.vs-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.vs-hero-inner h1 {
  font-size: var(--text-heading-large-narrow);
  line-height: var(--lh-heading-large-narrow);
  letter-spacing: var(--ls-heading-large-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .vs-hero-inner h1 {
    font-size: var(--text-heading-large);
    line-height: var(--lh-heading-large);
    letter-spacing: var(--ls-heading-large);
  }
}
.vs-hero-category {
  margin-top: 8px;
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-brand-base);
}
.vs-hero-desc {
  margin-top: 16px;
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  color: rgba(34,34,34,0.7);
}
@media (min-width: 48rem) {
  .vs-hero-desc {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.vs-hero-cta { margin-top: 32px; }
.vs-hero-microcopy {
  margin-top: 12px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}

/* Decision Summary */
.vs-decision {
  background: white;
  border-radius: 8px;
  padding: 24px;
}
@media (min-width: 48rem) {
  .vs-decision { border-radius: 16px; padding: 32px; }
}
.vs-decision h2 {
  font-size: var(--text-heading-medium-narrow);
  line-height: var(--lh-heading-medium-narrow);
  letter-spacing: var(--ls-heading-medium-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .vs-decision h2 {
    font-size: var(--text-heading-medium);
    line-height: var(--lh-heading-medium);
    letter-spacing: var(--ls-heading-medium);
  }
}
.vs-decision-verdict {
  margin-top: 16px;
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 600;
  color: var(--color-grey-100);
}
.vs-decision-verdict strong {
  color: var(--color-brand-base);
}
.vs-decision-grid {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}
@media (min-width: 48rem) {
  .vs-decision-grid { grid-template-columns: 1fr 1fr; }
}
.vs-decision-box {
  background: rgba(34,34,34,0.03);
  border-radius: 8px;
  padding: 20px;
}
.vs-decision-box-stratalis {
  border-left: 3px solid var(--color-brand-base);
}
.vs-decision-box h3 {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  margin-bottom: 8px;
}
.vs-decision-box-stratalis h3 { color: var(--color-brand-base); }
.vs-decision-box p {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.vs-decision-caveat {
  margin-top: 16px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.4);
}

/* Comparison Items */
.vs-comparison-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-comparison-item {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  border-left: 3px solid transparent;
}
.vs-comparison-item--stratalis { border-left-color: var(--color-brand-base); }
.vs-comparison-item--alternative { border-left-color: rgba(34,34,34,0.15); }
.vs-comparison-item--depends { border-left-color: rgba(34,34,34,0.08); }
@media (min-width: 48rem) {
  .vs-comparison-item { border-radius: 16px; padding: 20px 24px; }
}
.vs-comparison-criterion {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  margin-bottom: 10px;
}
.vs-comparison-columns {
  display: grid;
  gap: 12px;
}
@media (min-width: 48rem) {
  .vs-comparison-columns { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.vs-comparison-col-label {
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: rgba(34,34,34,0.4);
  margin-bottom: 4px;
}
.vs-comparison-col-label-stratalis { color: var(--color-brand-base); }
.vs-comparison-col-text {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.vs-comparison-impact {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(34,34,34,0.06);
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-style: italic;
  color: rgba(34,34,34,0.55);
}

/* Proof Points */
/* Evidence + Transition two-column pair */
.vs-bottom-pair {
  display: grid;
  gap: 12px;
}
@media (min-width: 48rem) {
  .vs-bottom-pair { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.vs-proof-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vs-proof-points h2 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  text-transform: uppercase;
  letter-spacing: var(--ls-overline);
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
}
.vs-proof-point {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  border-left: 3px solid var(--color-brand-base);
}
@media (min-width: 48rem) {
  .vs-proof-point { border-radius: 12px; }
}
.vs-proof-point-claim {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.vs-proof-point-evidence {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.vs-proof-point-link {
  display: inline-block;
  margin-top: 8px;
  font-size: var(--text-body-medium);
  font-weight: 600;
  color: var(--color-brand-base);
  transition: color 0.2s;
}
.vs-proof-point-link:hover { color: var(--color-brand-dark); }

/* Transition Path */
.vs-transition-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vs-transition-wrapper > h2 {
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  font-family: var(--font-geist);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-grey-100);
}
.vs-transition {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  border-left: 3px solid var(--color-green-base);
}
@media (min-width: 48rem) {
  .vs-transition { border-radius: 12px; }
}
.vs-transition h3 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
}
.vs-transition p {
  margin-top: 6px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.7);
}
.vs-transition-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: var(--text-body-medium);
  font-weight: 600;
  color: var(--color-brand-base);
  transition: color 0.2s;
}
.vs-transition-cta:hover { color: var(--color-brand-dark); }
.vs-transition-cta svg { width: 16px; height: 16px; }

/* VS CTA bottom */
.vs-cta {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
@media (min-width: 48rem) {
  .vs-cta { padding: 32px; }
}
.vs-cta h2 {
  font-size: var(--text-heading-small-narrow);
  line-height: var(--lh-heading-small-narrow);
  letter-spacing: var(--ls-heading-small-narrow);
  font-weight: 600;
  color: var(--color-grey-100);
}
@media (min-width: 48rem) {
  .vs-cta h2 {
    font-size: var(--text-heading-small);
    line-height: var(--lh-heading-small);
    letter-spacing: var(--ls-heading-small);
  }
}
.vs-cta > p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.vs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.vs-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-geist);
  font-size: var(--text-button);
  line-height: var(--lh-button);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(34,34,34,0.55);
  border: 1px solid rgba(34,34,34,0.15);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.vs-cta-secondary:hover { border-color: rgba(34,34,34,0.3); background: rgba(34,34,34,0.03); }

/* VS disclaimer */
.vs-disclaimer {
  margin-top: 20px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.3);
}

/* VS list page */
.vs-list-grid {
  display: grid;
  gap: 4px;
}
@media (min-width: 48rem) {
  .vs-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .vs-list-grid { grid-template-columns: repeat(3, 1fr); }
}
.vs-list-card {
  display: block;
  background: white;
  border-radius: 8px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
@media (min-width: 48rem) {
  .vs-list-card { border-radius: 16px; }
}
.vs-list-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.vs-list-card h2 {
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  font-weight: 600;
  color: var(--color-grey-100);
  transition: color 0.2s;
}
@media (min-width: 48rem) {
  .vs-list-card h2 {
    font-size: var(--text-body-large);
    line-height: var(--lh-body-large);
  }
}
.vs-list-card:hover h2 { color: var(--color-brand-base); }
.vs-list-card-category {
  margin-top: 4px;
  font-family: var(--font-geist);
  font-size: var(--text-overline);
  line-height: var(--lh-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-brand-base);
}
.vs-list-card p {
  margin-top: 8px;
  font-size: var(--text-body-medium);
  line-height: var(--lh-body-medium);
  color: rgba(34,34,34,0.55);
}
.vs-list-card-angle {
  margin-top: 8px;
  font-size: var(--text-body-small);
  line-height: var(--lh-body-small);
  color: rgba(34,34,34,0.3);
}
