/* =========================================================
   Hyperblox — design tokens (from Figma variables)
   ========================================================= */
:root {
  --color-primary-blue: #2b3990;
  --color-link-blue: #1c62cb;
  --color-dark-blue: #303d48;
  --color-deep-blue: #10304b;
  --color-sky-blue: #39cdd8;
  --color-grass-green: #92d335;
  --color-lime-yellow: #ffde1f;
  --color-charcoal: #232323;
  --color-black: #181819;
  --color-white: #ffffff;
  --color-neutral-6: #efede8;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-nav: 14px;
  --fs-body-sm: 16px;
  --fs-body: 18px;
  --fs-h2: 48px;
  --fs-h1: 64px;
  --lh-body: 1.4;

  --container-max: 1240px;
  --container-pad: 100px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================================
   Shared layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 73px 0;
}

.section-heading {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.section-heading__title {
  flex: 1;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--color-deep-blue);
}

.section-heading__copy {
  flex: 1;
  font-size: var(--fs-body);
  color: var(--color-charcoal);
  margin: 0;
}

/* eyebrow / chip */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-link-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

/* button — Figma Button component, Primary / Secondary × Default / Hover */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
  cursor: pointer;
}

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

/* Primary — sky-blue with dark text */
.btn--primary {
  background: var(--color-primary-blue);
  color: var(--color-white);
  border-color: var(--color-primary-blue);
}

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

/* Secondary — sky-blue chip, the main CTA used throughout */
.btn--secondary {
  background: var(--color-sky-blue);
  color: var(--color-dark-blue);
  border-color: var(--color-sky-blue);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-dark-blue);
  border-color: var(--color-white);
}

/* Ghost — outlined for use on dark hero (Explore our Solutions) */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* =========================================================
   SECTION: site-header / nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.site-header__logo {
  display: inline-flex;
  width: 155px;
  height: 32px;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #42424d;
}

.site-nav__item--active a {
  color: #303d48;
}

.site-nav__item a {
  color: inherit;
}

.site-nav__item--active a {
  font-weight: 700;
}

.site-nav__caret {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #42424d;
  font-size: 16px;
  padding: 0;
}

.site-nav__item--has-children {
  position: relative;
}

.site-nav__item--open .site-nav__caret {
  transform: rotate(45deg);
}

.site-nav__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  min-width: 220px;
  background: var(--color-white);
  color: var(--color-dark-blue);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

/* invisible bridge across the gap so the dropdown stays open
   while moving the cursor from the trigger down into the panel */
.site-nav__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.site-nav__item--open .site-nav__panel {
  display: block;
}

.site-nav__panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 15px;
  color: var(--color-dark-blue);
}

.site-nav__panel a img.site-nav__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav__panel a:hover {
  background: rgba(57, 205, 216, 0.12);
  color: var(--color-primary-blue);
}

/* desktop hover affordance */
@media (hover: hover) and (min-width: 1025px) {
  .site-nav__item--has-children:hover .site-nav__panel {
    display: block;
  }
  .site-nav__item--has-children:hover .site-nav__caret {
    transform: rotate(45deg);
  }
}

.site-header__cta {
  color: var(--color-dark-blue);
}

/* Desktop: the drawer is transparent — nav + CTA sit inline as flex children.
   The hamburger only appears at the mobile breakpoint. */
.site-header__drawer { display: contents; }
.site-header__burger { display: none; }

/* =========================================================
   SECTION: hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 703px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #15004e 10.5%,
    rgba(21, 0, 78, 0.5) 24.65%,
    rgba(48, 61, 75, 0) 59.8%
  );
  mix-blend-mode: multiply;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__copy {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--color-white);
}

.hero__title-accent {
  font-weight: 700;
  color: var(--color-sky-blue);
}

.hero__lede {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: var(--color-white);
}

.hero__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* =========================================================
   SECTION: what-we-deliver
   ========================================================= */
.deliver {
  padding: 100px 0 120px;
  background: var(--color-white);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading--split .section-heading__title {
  font-size: 40px;
  color: var(--color-black);
  font-weight: 400;
}

.section-heading--split .section-heading__title strong {
  font-weight: 600;
}

.section-heading--split .section-heading__copy {
  font-size: 18px;
  color: #50505e;
}

.eyebrow {
  text-transform: uppercase;
  color: #1c62cb;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.eyebrow--on-dark {
  color: var(--color-sky-blue);
}

.deliver__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deliver-card {
  position: relative;
  height: 613px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
  transition: filter 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.deliver-card:hover,
.deliver-card:focus-visible,
.deliver-card.is-active {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
  overflow: visible;
  z-index: 3;
}

.deliver-card__media {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.deliver-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deliver-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
  transition: opacity 0.5s ease;
}

/* default title sits over the image */
.deliver-card__title--default {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  z-index: 2;
  transition: opacity 0.45s ease;
}

/* hover panel — white, sits below the shrunk image; may extend past the
   card box so the long copy + button always fit without shifting layout */
.deliver-card__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 250px;
  overflow: visible;
  background: var(--color-white);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-black);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease 0.25s;
}

.deliver-card__title--hover {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

.deliver-card__subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

.deliver-card__lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-black);
}

.deliver-card__btn {
  align-self: flex-start;
  margin-top: 8px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  min-width: 156px;
  max-width: 156px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid var(--color-black);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  background: transparent;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.deliver-card__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* expanded state — hover, focus, or tap */
.deliver-card:hover .deliver-card__media,
.deliver-card:focus-visible .deliver-card__media,
.deliver-card.is-active .deliver-card__media {
  height: 250px;
}

.deliver-card:hover .deliver-card__shade,
.deliver-card:focus-visible .deliver-card__shade,
.deliver-card.is-active .deliver-card__shade {
  opacity: 0;
}

.deliver-card:hover .deliver-card__title--default,
.deliver-card:focus-visible .deliver-card__title--default,
.deliver-card.is-active .deliver-card__title--default {
  opacity: 0;
}

.deliver-card:hover .deliver-card__body,
.deliver-card:focus-visible .deliver-card__body,
.deliver-card.is-active .deliver-card__body {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   SECTION: why-hyperblox
   ========================================================= */
.why {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.why__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.why__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(24, 0, 86, 0.7);
  mix-blend-mode: multiply;
}

.why__inner {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 80px;
  align-items: start;
}

.why__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* eyebrow already carries its own 20px bottom margin — avoid doubling with the flex gap */
.why__left .eyebrow {
  margin-bottom: 0;
}

.why__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.why__title strong {
  font-weight: 600;
}

.why__lede {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  max-width: 499px;
}

.why__photo {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 540px;
}

.why__photo img {
  width: 100%;
  height: 373px;
  object-fit: cover;
}

.why__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
}

.why-card:last-child {
  border-bottom: 0;
}

.why-card--open {
  background: var(--color-white);
  color: var(--color-black);
  border-color: transparent;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.15);
}

/* hide separator from the card immediately preceding the open one to avoid
   a thin line touching the open white panel */
.why-card--open + .why-card {
  border-top: 0;
}

.why-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 20px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.why-card:not(.why-card--open) .why-card__head {
  opacity: 0.85;
}

.why-card:not(.why-card--open):hover .why-card__head {
  opacity: 1;
}

.why-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.why-card__title {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.why-card--open .why-card__title {
  font-weight: 600;
}

.why-card__caret {
  font-size: 24px;
  color: currentColor;
  opacity: 0.7;
  display: inline-block;
  transition: transform 0.3s ease;
}

.why-card--open .why-card__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.why-card__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-card__body > * {
  min-height: 0;
  overflow: hidden;
}

.why-card--open .why-card__body {
  grid-template-rows: 1fr;
}

.why-card__body-inner {
  padding: 0 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}

.why-card--open .why-card__body-inner {
  opacity: 1;
  transform: translateY(0);
}

.why-card__body p {
  color: #50505e;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}

.why-card__cta {
  background: #eef9fd;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* per-item story/CTA box tint — matches each accordion icon colour */
.why-card__cta--cyan { background: #eef9fd; }
.why-card__cta--yellow { background: #fffbe6; }
.why-card__cta--green { background: #f1ffde; }
.why-card__cta--gray { background: #f3f3f3; }

.why-card__tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.47);
  text-transform: uppercase;
}

.why-card__cta-text {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.why-card__cta-link {
  color: #2b3990;
  font-weight: 600;
  font-size: 16px;
  align-self: flex-start;
}

.why-card__cta-link:hover {
  text-decoration: underline;
}

/* =========================================================
   SECTION: field-proven / testimonials
   ========================================================= */
.proven {
  padding: 100px 0;
  background: var(--color-white);
}

.proven__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 60px;
}

.proven__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0;
}

.proven__title strong {
  font-weight: 700;
}

.proven__copy {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-charcoal);
  margin: 16px 0 0;
  max-width: none;
}

/* partner logo marquee */
.logo-scroller {
  margin: 0 calc(var(--container-pad) * -1) 60px;
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

.logo-scroller__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: logo-scroll 60s linear infinite;
}

.logo-scroller__group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.logo-card {
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  background: #f2f3f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #4a5160;
  letter-spacing: -0.01em;
  user-select: none;
  overflow: hidden;
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-scroller:hover .logo-scroller__track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.proven__carousel {
  position: relative;
  overflow: hidden;
}

.proven__track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 16px;
}

.proven__track::-webkit-scrollbar {
  display: none;
}

.proven-quote {
  flex: 0 0 503px;
  scroll-snap-align: start;
  background: #f2f3f7;
  color: var(--color-black);
  border-radius: 12px;
  padding: 32px 50px 32px 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  height: 530px;
  overflow: hidden;
}

.proven-quote--cyan {
  background: var(--color-sky-blue);
  color: var(--color-black);
}

/* the image card stays pinned to the left while the quote cards scroll behind it */
.proven-quote--image {
  flex: 0 0 397px;
  padding: 0;
  overflow: hidden;
  height: 530px;
  background: #f2f3f7;
  position: sticky;
  left: 0;
  z-index: 5;
  scroll-snap-align: none;
}

.proven-quote--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proven-quote__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.proven-quote__body {
  margin: 0;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
  color: var(--color-black);
}

.proven-quote__author {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.proven-quote__role {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  color: var(--color-black);
}

.proven-quote__company {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: var(--color-black);
}

.proven__controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 24px;
}

.proven__btn {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.proven__btn:hover {
  background: transparent;
  color: var(--color-primary-blue);
}

/* =========================================================
   SECTION: vertical-solutions
   ========================================================= */
.vertical {
  position: relative;
  padding: 100px 0;
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
}

.vertical__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.vertical__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical__tint {
  position: absolute;
  inset: 0;
  background: rgba(24, 0, 86, 0.6);
  mix-blend-mode: multiply;
}

.vertical__head {
  max-width: 1151px;
  margin-bottom: 48px;
}

.vertical__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 24px;
}

.vertical__title strong {
  font-weight: 700;
}

.vertical__copy {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.vertical__body {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: start;
}

.vertical__tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vertical__tab {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--color-white);
  font-size: 18px;
  text-align: left;
  background: transparent;
}

.vertical__tab--active {
  background: var(--color-sky-blue);
  color: var(--color-deep-blue);
  font-weight: 600;
  border-color: transparent;
}

.vertical__detail {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 12px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 288px;
  grid-template-rows: auto auto;
  gap: 24px;
  min-height: 447px;
}

.vertical__detail-text {
  grid-column: 1;
  grid-row: 1;
}

.vertical__detail-img {
  grid-column: 2;
  grid-row: 1;
  width: 288px;
  height: 290px;
  object-fit: cover;
  border-radius: 8px;
}

.vertical__benefit {
  grid-column: 1 / -1;
  grid-row: 2;
  background: rgba(238, 238, 241, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vertical__detail-tag,
.vertical__benefit-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-primary-blue);
  text-transform: uppercase;
}

.vertical__benefit-tag {
  color: rgba(0, 0, 0, 0.5);
}

.vertical__detail-title {
  font-size: 24px;
  font-weight: 500;
  margin: 8px 0 12px;
  color: var(--color-black);
}

.vertical__detail-lede {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-deep-blue);
  margin: 0 0 12px;
}

.vertical__detail-copy {
  font-size: 18px;
  color: var(--color-deep-blue);
  margin: 0;
  line-height: 1.5;
}

.vertical__benefit-text {
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
  margin: 0;
}

/* =========================================================
   SECTION: how-it-works
   ========================================================= */
.how {
  background: #f2f3f7;
  padding: 100px 0 120px;
}

.eyebrow--link {
  color: var(--color-link-blue);
}

.eyebrow__dot--link {
  background: var(--color-link-blue);
}

.how__head-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}

.how__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
  margin: 0 0 24px;
}

.how__title strong {
  font-weight: 700;
}

.how__copy,
.how__copy-stack p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0 0 16px;
}

.how__copy-stack p:last-child {
  margin-bottom: 0;
}

.how__panel {
  position: relative;
  margin-top: 80px;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  padding: 30px;
  color: var(--color-white);
  min-height: 639px;
}

.how__panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.how__panel-tint {
  position: absolute;
  inset: 0;
  background: rgba(24, 0, 86, 0.55);
  mix-blend-mode: multiply;
  z-index: -1;
}

.how__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.how__tab {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(246, 246, 246, 0.08);
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
}

.how__tab--active {
  background: var(--color-grass-green);
  color: var(--color-deep-blue);
  border-color: transparent;
}

/* Development tab turns yellow when active; Deployment stays green */
.how__tab[data-framework="development"].how__tab--active {
  background: var(--color-lime-yellow);
}

.how__columns {
  display: grid;
  grid-template-columns: 1fr 377px 1fr;
  gap: 28px;
  align-items: center;
}

.how__pillar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how__pillar {
  transition: opacity 0.25s ease;
}

.how__pillar--dim {
  opacity: 0.4;
}

.how__tab {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vertical__tab {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vertical__detail {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vertical__detail.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.how__pillar li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.how__pillar li:last-child {
  border-bottom: 0;
}

.how__pillar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}

.how__pillar h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 8px;
  line-height: 1.2;
}

.how__pillar p {
  font-size: 17px;
  color: var(--color-neutral-6);
  margin: 0;
  line-height: 1.4;
}

.how__hub {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__hub img {
  width: 100%;
  max-width: 377px;
  height: auto;
}

/* =========================================================
   SECTION: go-to-market
   ========================================================= */
.gtm {
  position: relative;
  padding: 56px 0 120px;
  background: var(--color-white);
}

.gtm__plate {
  display: none;
}

.gtm__inner {
  position: relative;
  z-index: 1;
}

.gtm__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gtm-card {
  position: relative;
  height: 613px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
  transition: filter 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gtm-card:hover,
.gtm-card:focus-visible,
.gtm-card.is-active {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

.gtm-card__media {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gtm-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gtm-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
  transition: opacity 0.5s ease;
}

.gtm-card__title--default {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  z-index: 2;
  transition: opacity 0.45s ease;
}

.gtm-card__body {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: var(--color-white);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-black);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease 0.25s;
}

.gtm-card__title--hover {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
}

.gtm-card__subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

.gtm-card__lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
}

.gtm-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  height: 48px;
  padding: 0 28px;
  border: 1px solid var(--color-black);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  background: transparent;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.gtm-card__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.gtm-card:hover .gtm-card__media,
.gtm-card:focus-visible .gtm-card__media,
.gtm-card.is-active .gtm-card__media {
  height: 250px;
}

.gtm-card:hover .gtm-card__shade,
.gtm-card:focus-visible .gtm-card__shade,
.gtm-card.is-active .gtm-card__shade {
  opacity: 0;
}

.gtm-card:hover .gtm-card__title--default,
.gtm-card:focus-visible .gtm-card__title--default,
.gtm-card.is-active .gtm-card__title--default {
  opacity: 0;
}

.gtm-card:hover .gtm-card__body,
.gtm-card:focus-visible .gtm-card__body,
.gtm-card.is-active .gtm-card__body {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   SECTION: cta-banner
   ========================================================= */
.cta-banner {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.cta-banner__panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 446px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5.8px);
  z-index: -2;
  transform: scale(1.05);
}

.cta-banner__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 95%);
  z-index: -1;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 12px title→copy; the buttons add 8px more for the Figma's 20px text→CTA gap */
  gap: 12px;
  text-align: center;
  color: var(--color-white);
  max-width: 880px;
  padding: 80px 24px;
}

.cta-banner__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.cta-banner__copy {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.cta-banner__btn {
  margin-top: 12px;
}

.cta-banner__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* =========================================================
   SECTION: site-footer
   ========================================================= */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 96px 0 40px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 530px) 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 393px;
}

.site-footer__logo {
  width: 249px;
  height: auto;
}

.site-footer__copyright {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.site-footer__about {
  font-size: 16px;
  color: #eeeef1;
  margin: 0;
}

.site-footer__socials {
  display: flex;
  gap: 14px;
}

.site-footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-sky-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__socials svg {
  width: 16px;
  height: 16px;
}

.site-footer__badge {
  width: 106px;
  height: auto;
  margin-top: 8px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.site-footer__col-stack {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.site-footer__col h3 {
  color: var(--color-sky-blue);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 24px;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__col a {
  color: #eeeef1;
  font-size: 16px;
}

.site-footer__col a:hover {
  color: var(--color-sky-blue);
}

.site-footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__contact-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin: 0;
}

.site-footer__contact-item svg {
  flex-shrink: 0;
}

.site-footer__contact-item a {
  color: inherit;
}

.site-footer__contact-copyright {
  font-size: 16px;
  color: #eeeef1;
  margin: 0;
  white-space: nowrap;
}

/* =========================================================
   Responsive — basic stacking
   ========================================================= */
@media (max-width: 1024px) {
  :root {
    --container-pad: 32px;
  }

  .section-heading--split,
  .deliver__grid,
  .gtm__grid,
  .why__inner,
  .vertical__body,
  .proven__head,
  .how__head-grid,
  .how__columns,
  .site-footer__inner,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  /* On touch/stacked layout the cards aren't hover-driven — show the image
     on top and the full content below in normal flow (no overlap). */
  .deliver-card,
  .gtm-card {
    height: auto;
    filter: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .deliver-card__media,
  .gtm-card__media {
    position: relative;
    height: 260px;
  }

  .deliver-card__title--default,
  .deliver-card__shade,
  .gtm-card__title--default,
  .gtm-card__shade {
    display: none;
  }

  .deliver-card__body,
  .gtm-card__body {
    position: relative;
    top: auto;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
    padding: 24px;
  }

  .site-header__inner {
    height: 72px;
  }

  /* hamburger button */
  .site-header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px 8px;
    margin-right: -8px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .site-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #303d48;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .site-header.is-open .site-header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .site-header__burger span:nth-child(2) { opacity: 0; }
  .site-header.is-open .site-header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* slide-down drawer holding the nav + CTA */
  .site-header__drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 4px 0 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .site-header.is-open .site-header__drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav { width: 100%; }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav__item {
    flex-wrap: wrap;
    gap: 0;
    padding: 0 var(--container-pad);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 17px;
  }
  .site-nav__item > a,
  .site-nav__trigger {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
    font-size: 17px;
  }

  /* dropdown panels become inline accordions */
  .site-nav__panel {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 0 0 10px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .site-nav__panel::before { display: none; }
  .site-nav__item--open .site-nav__panel { display: block; }
  .site-nav__panel a { padding: 12px 8px; font-size: 15px; }

  .site-header__cta {
    display: inline-flex;
    margin: 22px var(--container-pad) 0;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__title {
    font-size: 36px;
  }

  .why__photo {
    max-width: 100%;
  }

  .why__photo img {
    height: auto;
  }

  .vertical__detail {
    grid-template-columns: 1fr;
  }

  .vertical__detail-img {
    width: 100%;
    height: 200px;
  }

  .site-footer__cols {
    gap: 32px;
  }

  .site-footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__contact-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =========================================================
   SECTION: Download Solution Brief — popup form modal
   ========================================================= */
.brief-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.brief-modal[hidden] {
  display: none;
}

.brief-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.brief-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.brief-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #6b6b6b;
  cursor: pointer;
  border-radius: 8px;
}

.brief-modal__close:hover {
  background: #f2f2f2;
  color: #181819;
}

.brief-modal__title {
  font-size: 26px;
  font-weight: 600;
  color: #181819;
  margin: 0 0 24px;
  padding-right: 36px;
}

.brief-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brief-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.brief-form__input {
  width: 100%;
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 15px 16px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: #181819;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.brief-form__input::placeholder {
  color: #6b6b6b;
}

.brief-form__input:focus {
  outline: none;
  border-color: #39cdd8;
  box-shadow: 0 0 0 3px rgba(57, 205, 216, 0.18);
}

.brief-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.brief-form__select {
  appearance: none;
  -webkit-appearance: none;
  color: #6b6b6b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.brief-form__select:valid {
  color: #181819;
}

.brief-form__choice {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brief-form__choice legend {
  font-size: 16px;
  font-weight: 500;
  color: #181819;
  padding: 0;
}

.brief-form__choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
  font-size: 16px;
  color: #181819;
  cursor: pointer;
}

.brief-form__choice input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #39cdd8;
  cursor: pointer;
}

.brief-form__submit {
  align-self: flex-start;
  padding: 12px 30px;
}

.brief-form__status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f2feff;
  border: 1px solid #39cdd8;
  font-size: 16px;
  color: #181819;
}

@media (max-width: 600px) {
  .brief-modal__dialog {
    padding: 28px 20px;
  }
  .brief-form__row {
    grid-template-columns: 1fr;
  }

  /* ---------------------------------------------------------------
     Home page — phone layout (matches the Figma 393px mobile design).
     Layout/spacing only; content, text and images are untouched.
     --------------------------------------------------------------- */
  :root { --container-pad: 20px; }

  /* hero */
  .hero { padding: 104px 0 56px; }
  .hero__title { font-size: 30px; line-height: 1.18; }
  .hero__lede { font-size: 16px; }
  .hero__actions { gap: 12px; flex-wrap: wrap; }

  /* section headings + intro copy scale down on phones */
  .section-heading__title,
  .why__title,
  .proven__title,
  .vertical__title,
  .how__title {
    font-size: 28px;
    line-height: 1.25;
  }
  .section-heading__copy,
  .why__copy,
  .proven__copy,
  .vertical__copy,
  .how__copy {
    font-size: 16px;
  }

  /* tighter vertical rhythm between stacked sections */
  .deliver,
  .why,
  .proven,
  .vertical,
  .how,
  .gtm {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  /* deliver / GTM cards: image matches the Figma 180px media height */
  .deliver-card__media,
  .gtm-card__media { height: 180px; }
  .deliver-card__body,
  .gtm-card__body { padding: 20px; }

}

/* =========================================================
   Mobile ≤768px — home: framework toggles stack, vertical-solutions
   tab pills + image-first card, testimonials simple swipe carousel.
   (Layout only — content/text/images unchanged.)
   ========================================================= */
@media (max-width: 768px) {
  /* Framework section: the two toggle buttons stack one below the other */
  .how__tabs {
    flex-direction: column;
    align-items: stretch;
  }

  /* Vertical Solutions: horizontal scrolling tab pills */
  .vertical__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .vertical__tabs::-webkit-scrollbar { display: none; }
  .vertical__tab {
    width: auto;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 15px;
  }
  /* detail card: full-bleed image on top, then padded text, then benefit box */
  .vertical__detail {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }
  .vertical__detail-img {
    order: -1;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
  }
  .vertical__detail-text {
    padding: 20px 20px 0;
  }
  .vertical__benefit {
    margin: 16px 20px 20px;
  }

  /* Testimonials: no pinned card, no marquee — a normal swipe carousel */
  .proven-quote--image { display: none; }
  .proven__track {
    scroll-snap-type: x mandatory;
    gap: 16px;
  }
  .proven-quote {
    flex: 0 0 calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    height: auto;
    min-height: 320px;
    padding: 28px 24px;
    position: static;
    scroll-snap-align: start;
  }
}

/* Visually-hidden, screen-reader-only (also defined in builder.css/contact.css) */
.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;
}

/* =========================================================
   Insights (3 blog cards) — shared across product pages
   (also defined in builder.css for builder/controller/runtime)
   ========================================================= */
.insights {
  background: #f6f6f6;
  padding: 59px 0 75px;
}
.insights__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}
.insights__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.blog-card {
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid;
  border-radius: 4px;
  padding: 12px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 32.5px rgba(0, 0, 0, 0.04);
}
.blog-card--green  { border-bottom-color: #92d335; }
.blog-card--red    { border-bottom-color: #ff0000; }
.blog-card--cyan   { border-bottom-color: #39cdd8; }
.blog-card__tag {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  margin: 0 0 12px;
}
.blog-card__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #a3a3a3;
  border-radius: 50%;
  display: inline-block;
}
.blog-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #181819;
  margin: 0;
  max-width: 360px;
}
.blog-card__more {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: #303d48;
  text-decoration: none;
  margin-top: auto;
  transition: font-weight 0.2s ease, color 0.2s ease;
}
.blog-card:hover .blog-card__more,
.blog-card__more:hover {
  font-weight: 700;
  color: #000;
}
.blog-card__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .insights__grid { grid-template-columns: 1fr; }
  .blog-card { height: auto; min-height: 240px; }
}
@media (max-width: 640px) {
  .insights { padding: 40px 0; }
  .insights__head { gap: 16px; }
  .blog-card__title { font-size: 20px; }
}

/* =========================================================
   Mobile: reduce body copy to 14px site-wide. Body text is
   hardcoded at 18px across page stylesheets that load after
   this file, so !important is required to win globally.
   ========================================================= */
@media (max-width: 600px) {
  p { font-size: 14px !important; line-height: 1.5 !important; }
}

.site-footer__badges{display:flex;gap:16px;align-items:flex-start;flex-wrap:wrap}

/* Legal / generic content pages (Privacy Policy etc.) */
.page-content { padding: 140px 0 80px; }
.page-content .container { max-width: 880px; }
.page-content h1 { font-size: 40px; margin: 0 0 24px; }
.page-content h2 { font-size: 24px; margin: 36px 0 12px; }
.page-content p, .page-content li { font-size: 16px; line-height: 1.6; color: #303d48; }
.page-content ul { padding-left: 22px; margin: 0 0 16px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: #1c62cb; text-decoration: underline; }
@media (max-width: 600px){ .page-content{ padding: 110px 0 56px; } .page-content h1{ font-size: 28px; } }

.site-footer__copyrow{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.site-footer__legal{margin:0;font-size:14px}
.site-footer__legal a{color:inherit;text-decoration:none;opacity:.85}
.site-footer__legal a:hover{opacity:1;text-decoration:underline}
