/*
  index_2.html only — hero, shared content width,
  and post–Trusted-by sections. Tokens from site.css.
*/

.page-home {
  --home-body-max: var(--width-content, 1920px);
  --home-content-pad: clamp(1rem, 3vw, 2rem);
  --home-shadow-soft: 0 10px 28px rgba(21, 32, 71, 0.08), 0 2px 8px rgba(21, 32, 71, 0.04);
  --home-shadow-lift: 0 16px 40px rgba(21, 32, 71, 0.12), 0 4px 12px rgba(21, 32, 71, 0.06);
  --home-line: 1.6;
  --home-line-heading: 1.15;
  background-color: var(--color-page);
  color: var(--color-ink);
  overflow-x: clip;
  position: relative;
  line-height: var(--home-line);
}

/* Brand-blue footer — matches site-wide ink layout */
.page-home .site-footer {
  background-color: var(--color-brand-blue);
  color: #fff;
}

.page-home .site-footer a {
  color: #fff;
}

.page-home .site-footer a:hover,
.page-home .site-footer a:focus-visible {
  color: #fff;
}

/* Fully transparent header over the hero; scrolls away (not sticky) */
.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

/* Top-edge gradient so logo + nav stay readable on the dark hero */
.page-home .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(6.5rem, 14vh, 9rem);
  background: linear-gradient(
    180deg,
    rgba(6, 10, 22, 0.72) 0%,
    rgba(6, 10, 22, 0.38) 48%,
    rgba(6, 10, 22, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.page-home .site-header__bar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--home-body-max);
  margin-inline: auto;
  padding-inline: var(--home-content-pad);
  padding-block: 0.85rem;
  box-sizing: border-box;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  line-height: 1.2;
}

.page-home .brand__mark {
  display: block;
  height: auto;
  width: auto;
  min-height: 40px;
  max-height: 44px;
}

/* Prefer hamburger until there is real room for full desktop nav */
.page-home .nav-primary {
  display: none;
}

.page-home .nav-toggle {
  display: inline-flex;
}

@media (min-width: 1100px) {
  .page-home .nav-primary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
  }

  .page-home .nav-toggle {
    display: none;
  }

  .page-home .brand__mark {
    min-height: 56px;
    max-height: none;
    height: 56px;
  }

  .page-home .site-header__bar {
    min-height: 5rem;
    padding-block: 1rem;
    gap: 1.5rem;
  }

  .page-home .nav-primary__list {
    gap: 1.25rem;
  }

  .page-home .nav-primary__link {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    line-height: 1.2;
  }
}

@media (min-width: 1280px) {
  .page-home .brand__mark {
    min-height: 64px;
    height: 64px;
  }

  .page-home .site-header__bar {
    min-height: 5.5rem;
    padding-block: 1.15rem;
    gap: 1.75rem;
  }

  .page-home .nav-primary {
    gap: 1.75rem;
  }

  .page-home .nav-primary__list {
    gap: 1.75rem;
  }

  .page-home .nav-primary__link {
    font-size: 1.0625rem;
  }
}

.page-home .nav-primary__link {
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
  line-height: 1.2;
}

.page-home .nav-primary__link:hover,
.page-home .nav-primary__link:focus-visible {
  color: #fff;
}

.page-home .nav-primary__link[aria-current="page"] {
  color: #fff;
}

.page-home .nav-primary__link[aria-current="page"]::after {
  background-color: var(--color-accent);
}

/* Static claim button — no Get started morph / width animation */
.page-home .header-claim {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  width: auto !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-btn, 2px);
  background: transparent;
  color: #fff;
  font-family: var(--font-ui-label, var(--font-mono));
  font-size: var(--text-ui-label, 14pt);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  overflow: visible;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 1280px) {
  .page-home .header-claim {
    height: 2.85rem;
    padding: 0 1.25rem;
    font-size: 0.8125rem;
  }
}

.page-home .header-claim:hover,
.page-home .header-claim:focus-visible {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
  text-decoration: none;
}

.page-home .nav-primary.is-claim-hover .nav-primary__list,
.page-home .nav-primary:has(.header-claim:hover) .nav-primary__list,
.page-home .nav-primary:has(.header-claim:focus-visible) .nav-primary__list {
  transform: none;
}

.page-home .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
}

.page-home .nav-mobile {
  background: rgba(12, 18, 32, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  top: 4.75rem;
}

.page-home .nav-mobile__link {
  color: #fff;
  line-height: 1.3;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-home .nav-mobile__ctas .header-claim--nav {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.page-home .nav-mobile__ctas .header-claim--nav:hover,
.page-home .nav-mobile__ctas .header-claim--nav:focus-visible {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}

/* Keep drawer available until desktop nav appears (1100px) */
@media (min-width: 960px) and (max-width: 1099px) {
  .page-home .nav-mobile.is-open {
    display: block !important;
  }
}

@media (min-width: 1100px) {
  .page-home .nav-mobile {
    display: none !important;
  }
}

/* Partners — title left, circular marks right (design ref) */
.lp-partners {
  background: var(--color-surface-elevated, #fff);
  border-radius: 0 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.lp-partners__intro {
  display: grid;
  gap: 0;
  flex: 1 1 28rem;
  max-width: min(100%, 48rem);
  min-width: min(100%, 20rem);
  align-content: center;
}

.lp-partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.lp-partners__title {
  margin: 0;
  color: var(--color-brand-blue);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lp-partners__copy {
  margin: 0;
  color: var(--color-ink-muted, #425078);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  line-height: 1.55;
  max-width: 62ch;
}

.lp-partners__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 1 auto;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-partners__list li {
  display: flex;
  align-items: center;
}

.lp-partners__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity var(--transition-fast, 150ms ease), transform var(--transition-fast, 150ms ease);
}

.lp-partners__link:hover,
.lp-partners__link:focus-visible {
  opacity: 1;
  outline: none;
}

.lp-partners__link:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand-blue) 35%, transparent);
  border-radius: 0.35rem;
}

.lp-partners__logo {
  display: block;
  height: clamp(3.25rem, 6vw, 4.5rem);
  width: auto;
  max-width: 12.5rem;
  object-fit: contain;
}

@media (max-width: 899px) {
  .lp-partners__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-partners__list {
    width: 100%;
  }
}

/* Trusted by — horizontal scroll on smaller screens (interior / legacy) */
.page-home .logo-ribbon {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0.35rem;
  margin-inline: calc(-1 * var(--home-content-pad));
  padding-inline: var(--home-content-pad);
  scrollbar-width: thin;
}

.page-home .logo-ribbon__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.page-home .logo-ribbon__logo {
  height: 36px;
  max-width: none;
}

@media (min-width: 640px) {
  .page-home .logo-ribbon__logo {
    height: 44px;
  }
}

@media (min-width: 900px) {
  .page-home .logo-ribbon {
    justify-content: center;
    gap: 2rem;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

/* Body content width: after hero, before footer — matches header */
.page-home .home-content {
  width: 100%;
  max-width: var(--home-body-max);
  margin-inline: auto;
  padding-inline: var(--home-content-pad);
  box-sizing: border-box;
}

/* Footer content width — matches header / body */
.page-home .site-footer > .container {
  width: 100%;
  max-width: var(--home-body-max);
  margin-inline: auto;
  padding-inline: var(--home-content-pad);
  box-sizing: border-box;
}

.home-ink {
  background-color: var(--color-page);
  color: var(--color-ink);
  overflow-x: clip;
}

/* ===========================================================
   Full-viewport image hero + screenshot cascade
=========================================================== */

.page-home .hero--viewport {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-on-dark);
  background: #122018;
}

.page-home .hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 14, 28, 0.58) 0%, rgba(8, 14, 28, 0.28) 52%, rgba(8, 14, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.28) 0%, transparent 32%, rgba(8, 14, 28, 0.38) 100%);
  pointer-events: none;
}

.page-home .hero__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--home-body-max);
  margin-inline: auto;
  padding-inline: var(--home-content-pad);
  padding-block: clamp(5.5rem, 10vh, 7rem) clamp(2.5rem, 6vh, 4rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .page-home .hero__stage {
    grid-template-columns: minmax(18rem, 1.05fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
    min-height: calc(100svh - 2rem);
  }
}

@media (max-width: 959px) {
  .page-home .hero__stage {
    padding-block: clamp(4.75rem, 12vw, 6rem) clamp(2rem, 5vw, 3rem);
    min-height: calc(100svh - 1rem);
  }

  .page-home .hero--viewport {
    min-height: 100svh;
  }
}

.page-home .hero--viewport .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: none;
  justify-content: center;
}

.page-home .hero--viewport .hero__pill {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.page-home .hero--viewport .hero__heading {
  max-width: none;
  width: max-content;
  max-width: 100%;
  font-size: clamp(2.65rem, 5.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: var(--home-line-heading);
  text-wrap: unset;
}

.page-home .hero--viewport .hero__heading-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .page-home .hero--viewport .hero__heading {
    font-size: clamp(1.85rem, 7vw, 3rem);
    width: auto;
  }

  .page-home .hero--viewport .hero__heading-line {
    white-space: normal;
  }

  .page-home .hero--viewport .hero__copy {
    gap: 1rem;
  }

  .page-home .hero--viewport .hero__ctas {
    width: 100%;
  }

  .page-home .hero--viewport .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .page-home .site-header::before {
    height: 5.5rem;
  }
}

@media (max-width: 639px) {
  .page-home .hero--viewport .hero__heading {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }
}

.page-home .hero--viewport .hero__support {
  max-width: 38rem;
  font-size: clamp(1.125rem, 1.4vw, 1.25rem);
  line-height: var(--home-line);
}

.page-home .hero__cascade {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  min-height: clamp(26rem, 68vh, 42rem);
  perspective: 1200px;
}

@media (min-width: 960px) {
  .page-home .hero__cascade {
    display: block;
  }
}

.page-home .hero__shot {
  margin: 0;
  position: absolute;
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.page-home .hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.page-home .hero__shot--back {
  width: 86%;
  aspect-ratio: 16 / 10;
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(3.5deg);
  opacity: 0.96;
  animation: hero-cascade-back 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero__shot--front {
  width: 92%;
  aspect-ratio: 16 / 10;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(-2.5deg);
  animation: hero-cascade-front 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

@keyframes hero-cascade-back {
  from {
    opacity: 0;
    transform: rotate(3.5deg) translate(8%, 6%);
  }
  to {
    opacity: 0.96;
    transform: rotate(3.5deg);
  }
}

@keyframes hero-cascade-front {
  from {
    opacity: 0;
    transform: rotate(-2.5deg) translate(-8%, 10%);
  }
  to {
    opacity: 1;
    transform: rotate(-2.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero__shot--back,
  .page-home .hero__shot--front {
    animation: none;
  }
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 8px 16px;
  border: 1px solid var(--color-brand-blue);
  border-radius: 999px;
  color: var(--color-brand-blue);
  font-family: var(--font-ui-label, var(--font-mono));
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
}

.lp-pill:hover,
.lp-pill:focus-visible {
  background-color: color-mix(in srgb, var(--color-brand-blue) 8%, #fff);
  color: var(--color-brand-blue);
  text-decoration: none;
  box-shadow: none;
}

.lp-pill__icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

.lp-section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.lp-section__label {
  margin-bottom: 1rem;
}

.lp-display {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-brand-blue);
  letter-spacing: -0.035em;
  line-height: var(--home-line-heading);
  text-wrap: balance;
}

.lp-display--xl {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
}

.lp-display--lg {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
}

.lp-display--md {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.lp-body {
  color: var(--color-ink);
  font-size: clamp(1.125rem, 1.35vw, 1.25rem);
  line-height: var(--home-line);
  max-width: 42rem;
}

.lp-body--muted {
  color: var(--color-ink-muted);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
  border: 0;
  font-family: var(--font-ui-label, var(--font-mono));
  font-size: var(--text-ui-label, 14pt);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
  box-shadow: var(--home-shadow-soft);
  transition: background-color var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

@media (max-width: 639px) {
  .lp-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

.lp-btn:hover,
.lp-btn:focus-visible {
  text-decoration: none;
  box-shadow: var(--home-shadow-lift);
}

.lp-btn:focus-visible,
.lp-pill:focus-visible {
  outline: 2px solid var(--color-brand-blue);
  outline-offset: 3px;
}

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

.lp-btn--primary {
  background-color: var(--color-brand-blue);
  color: #fff;
}

.lp-btn--primary:hover,
.lp-btn--primary:focus-visible {
  background-color: var(--color-brand-blue-deep);
  color: #fff;
}

.lp-btn--ghost {
  background: #fff;
  color: var(--color-brand-blue);
}

.lp-btn--ghost:hover,
.lp-btn--ghost:focus-visible {
  background-color: var(--color-brand-blue);
  color: #fff;
}

.lp-btn--lime {
  background: var(--btn-accent-lime, var(--brand-lime));
  color: var(--color-brand-blue);
}

.lp-btn--lime:hover,
.lp-btn--lime:focus-visible {
  background: color-mix(in srgb, var(--brand-lime) 88%, var(--brand-black));
  color: var(--color-brand-blue);
}

.lp-btn--lime .lp-btn__mark {
  background: var(--color-brand-blue);
}

.lp-btn__mark {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: var(--btn-accent-lime, var(--color-brand-lime));
  flex-shrink: 0;
}

.lp-btn__icon {
  width: 0.9rem;
  height: 0.9rem;
}

.lp-card {
  background: var(--color-surface-elevated);
  border: 0;
  border-radius: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--home-shadow-soft);
}

.lp-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

.lp-icon svg,
.lp-btn__icon,
.lp-pill__icon,
.lp-quote__mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-media {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 0;
  background: var(--color-brand-blue);
  max-width: 100%;
  box-shadow: var(--home-shadow-soft);
}

.lp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-media--duotone img {
  filter: grayscale(1) contrast(1.15) brightness(0.92);
  mix-blend-mode: multiply;
}

.lp-media--duotone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-brand-blue) 55%, transparent);
  mix-blend-mode: color;
  pointer-events: none;
}

/* ===========================================================
   Why Now — heading + today / aspace compare
=========================================================== */

.lp-why__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: min(100%, 47.5rem); /* ~760px cadence from design ref */
}

.lp-why__intro .lp-display--lg {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: none;
}

.lp-compare {
  display: grid;
  gap: 0.85rem; /* tight twin-card cadence */
}

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

.lp-compare__card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-radius: 1rem;
  padding: clamp(1.5rem, 2.8vw, 1.9rem);
  min-height: 13.5rem;
}

.lp-compare__card--today {
  background: #fff;
  border: 0;
  color: var(--color-brand-coral);
  box-shadow: var(--home-shadow-soft);
}

.lp-compare__card--aspace {
  background: var(--color-brand-blue);
  border: 0;
  color: #fff;
  box-shadow: var(--home-shadow-lift);
}

.lp-compare__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}

.lp-compare__tags {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
  opacity: 0.9;
}

.lp-compare__card > p:not(.lp-compare__tags) {
  margin: 0.4rem 0 0;
  max-width: 36rem; /* readable measure without feeling corner-squeezed */
  font-size: clamp(0.98rem, 1.35vw, 1.125rem);
  line-height: 1.55;
  color: inherit;
  opacity: 0.95;
}

.lp-compare__list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.lp-compare__list li {
  font-size: 1.0625rem;
  line-height: var(--home-line);
  padding-left: 1rem;
  position: relative;
}

.lp-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: currentColor;
}

/* ===========================================================
   Product
=========================================================== */

.lp-product__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: none;
  width: 100%;
}

.lp-product__intro-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.lp-product__intro .lp-display--lg {
  flex: 1 1 28rem;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: min(100%, 47.5rem);
}

.lp-product__intro-row .lp-btn {
  flex: 0 0 auto;
  align-self: flex-end;
}

@media (max-width: 639px) {
  .lp-product__intro-row .lp-btn {
    width: 100%;
  }
}

.lp-product__top {
  margin-bottom: 0.85rem;
}

.lp-product__feature {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 11.5rem;
  background: var(--color-brand-blue);
  box-shadow: var(--home-shadow-soft);
  color: #fff;
}

@media (min-width: 900px) {
  .lp-product__feature {
    /* Slightly taller than the half-height frame */
    aspect-ratio: 1024 / 300;
    min-height: 0;
  }
}

@media (max-width: 899px) {
  .lp-product__feature {
    min-height: 14rem;
  }

  .lp-product__feature-copy {
    max-width: none;
  }
}

.lp-product__media {
  position: absolute;
  inset: 0;
}

.lp-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

/* Scrim so white copy stays readable on the light sky */
.lp-product__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--color-brand-blue) 78%, transparent) 0%,
    color-mix(in srgb, var(--color-brand-blue) 42%, transparent) 42%,
    color-mix(in srgb, var(--color-brand-blue) 8%, transparent) 72%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.lp-product__feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: flex-start;
  max-width: min(100%, 54.6rem); /* +30% vs prior 42rem */
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  color: #fff;
}

.lp-product__feature h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

@media (min-width: 900px) {
  .lp-product__feature h3 {
    white-space: nowrap;
  }
}

.lp-product__feature .lp-body {
  margin: 0;
  max-width: 52rem; /* +30% vs prior 40rem */
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  color: #fff;
}

.lp-product__feature .lp-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
}

.lp-product__grid {
  display: grid;
  gap: 0.85rem;
}

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

.lp-product__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
  min-height: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
}

.lp-product__card h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  letter-spacing: -0.015em;
  line-height: var(--home-line-heading);
}

.lp-product__card p {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.55;
}

.lp-product__card .lp-icon {
  color: var(--color-ink);
}

/* ===========================================================
   Core Engine
=========================================================== */

.lp-engine__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: none;
  width: 100%;
}

.lp-engine__intro .lp-display--lg {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: none;
}

.lp-engine__intro .lp-body {
  color: var(--color-brand-blue);
  font-weight: 400;
  max-width: none;
  width: 100%;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.55;
}

.lp-engine__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 960px) {
  .lp-engine__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
  }
}

.lp-engine__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--color-brand-blue);
  box-shadow: var(--home-shadow-soft);
  /* Intrinsic height so absolute overlays never collapse layout */
  aspect-ratio: 1024 / 742;
  width: 100%;
  min-height: 0;
}

.lp-engine__visual-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Reading card — coded overlay */
.lp-engine__card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(86%, 22rem);
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: color-mix(in srgb, #fff 90%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: var(--home-shadow-lift);
  color: var(--color-brand-blue);
  transform: translate(-50%, -50%);
}

.lp-engine__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.lp-engine__field-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand-blue) 10%, #fff);
  color: var(--color-brand-blue);
  font-family: var(--font-ui-label, var(--font-mono));
  font-size: var(--text-ui-label, 14pt);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.lp-engine__logo {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.lp-engine__metric {
  display: grid;
  gap: 0.3rem;
}

.lp-engine__metric-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-brand-blue);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
}

.lp-engine__metric-swatch {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--brand-coral);
  flex-shrink: 0;
}

.lp-engine__metric-value {
  margin: 0;
  color: var(--color-brand-blue);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lp-engine__alert {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  background: var(--brand-lime);
  color: var(--brand-black);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
}

.lp-dims {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.lp-dims__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  border-top: 2px solid color-mix(in srgb, var(--brand-black) 72%, transparent);
  color: var(--color-ink);
}

.lp-dims__row > :first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.lp-dims__row:last-of-type {
  border-bottom: 2px solid color-mix(in srgb, var(--brand-black) 72%, transparent);
}

.lp-dims__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: var(--home-line-heading);
  color: var(--color-ink);
}

.lp-dims__desc {
  color: var(--color-ink);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  font-weight: 400;
}

.lp-dims__id {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 0.35rem;
  line-height: 1;
  text-align: right;
  color: color-mix(in srgb, var(--color-ink) 55%, transparent);
}

.lp-dims .lp-btn {
  margin-top: 4.75rem;
  align-self: flex-start;
  min-height: 90px;
  height: 90px;
  padding: 0 32px;
  box-sizing: border-box;
}

@media (max-width: 639px) {
  .lp-engine__visual {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .lp-engine__visual-img {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 12rem;
  }

  .lp-engine__card {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 1.5rem);
    margin: -2.25rem auto 1rem;
    transform: none;
    padding: 1rem;
  }

  .lp-engine__logo {
    width: 1.75rem;
    height: 1.75rem;
  }

  .lp-dims .lp-btn {
    margin-top: 2rem;
    width: 100%;
    height: 90px;
    min-height: 90px;
    padding: 0 32px;
  }
}

@media (max-width: 479px) {
  .lp-dims__row {
    flex-direction: column;
    gap: 0.35rem;
  }

  .lp-dims__id {
    text-align: left;
    padding-top: 0;
  }
}

/* ===========================================================
   Proof / case studies
=========================================================== */

.lp-proof__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.lp-proof__metrics {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.lp-proof__layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .lp-proof__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.lp-proof__cases {
  display: grid;
  gap: 1rem;
  align-content: stretch;
  min-width: 0;
}

@media (min-width: 900px) {
  .lp-proof__cases {
    grid-template-rows: 1fr 1fr;
  }
}

.lp-proof__actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-start;
}

.lp-proof__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  height: 100%;
}

.lp-proof__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 16rem;
  background: var(--color-brand-blue);
  box-shadow: var(--home-shadow-soft);
}

@media (min-width: 900px) {
  .lp-proof__media {
    min-height: 0;
    height: 100%;
  }
}

.lp-proof__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  mix-blend-mode: normal;
}

@media (max-width: 899px) {
  .lp-proof__media {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .lp-proof__actions .lp-btn {
    width: 100%;
  }
}

.lp-proof__card h3 {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: var(--home-line-heading);
  margin: 0;
}

.lp-proof__card p {
  color: var(--color-ink);
  font-size: 1.125rem;
  line-height: var(--home-line);
  margin: 0;
}

.lp-proof__card .lp-icon {
  color: var(--color-ink);
}

/* ===========================================================
   Metrics + manifesto
=========================================================== */

.lp-metrics__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

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

@media (min-width: 1100px) {
  .lp-metrics__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--color-brand-lime);
  border: 0;
  border-radius: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-ink);
  min-height: 100%;
  box-shadow: var(--home-shadow-soft);
}

.lp-metric .lp-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-ink);
}

.lp-metric__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--color-ink);
  line-height: var(--home-line-heading);
  margin-bottom: 0;
}

.lp-metric__label {
  font-size: 1.0625rem;
  line-height: var(--home-line);
  color: var(--color-ink);
  font-weight: 500;
}

.lp-metrics__prompt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(3.5rem, 8vw, 6rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: 1rem;
  background: var(--color-brand-lime);
  box-shadow: var(--home-shadow-soft);
}

.lp-metrics__prompt p {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 700;
  max-width: none;
  width: 100%;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lp-metrics__prompt-line {
  display: block;
}

@media (min-width: 900px) {
  .lp-metrics__prompt-line {
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .lp-metrics__prompt-line {
    text-wrap: balance;
  }

  .lp-metrics__prompt .lp-btn {
    width: 100%;
  }
}

.lp-metrics__prompt .lp-btn {
  align-self: flex-start;
}

.lp-metrics__prompt .lp-btn__mark {
  background: #fff;
}

.lp-manifesto {
  display: grid;
  gap: 1.5rem;
}

.lp-manifesto__text p {
  color: var(--color-brand-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: var(--home-line-heading);
}

.lp-manifesto__media {
  aspect-ratio: 21 / 9;
  min-height: 12rem;
}

@media (max-width: 639px) {
  .lp-manifesto__media {
    aspect-ratio: 16 / 10;
  }
}

/* ===========================================================
   Testimonial + Final CTA (two-column close)
=========================================================== */

.lp-close {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.lp-close__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .lp-close__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: stretch;
  }
}

.lp-quote {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  margin: 0;
  min-width: 0;
}

@media (min-width: 640px) {
  .lp-quote {
    grid-template-columns: minmax(11rem, 1fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
}

@media (min-width: 960px) {
  .lp-quote {
    height: 100%;
    align-items: stretch;
  }
}

.lp-quote__media {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 1024 / 899;
  border-radius: 1rem;
  overflow: hidden;
  align-self: start;
  background: transparent;
  box-shadow: none;
  border: 0;
}

@media (min-width: 960px) {
  .lp-quote {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .lp-quote__media {
    width: auto;
    height: 100%;
    max-height: 100%;
    max-width: min(100%, 28rem);
    aspect-ratio: 1024 / 899;
    align-self: stretch;
  }
}

@media (max-width: 639px) {
  .lp-quote__media {
    max-width: 20rem;
  }
}

.lp-quote__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: none;
  mix-blend-mode: normal;
}

.lp-quote__content {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  align-content: start;
  padding-top: 0.1rem;
}

.lp-quote__mark {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-brand-blue);
}

.lp-quote__text {
  margin: 0;
  color: var(--color-brand-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.15vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.lp-quote__text p {
  margin: 0;
}

.lp-quote__who {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.35rem;
}

.lp-quote__name {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lp-quote__role {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.35;
}

.lp-close .lp-final__panel {
  background: var(--color-brand-lime);
  border: 0;
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  align-content: start;
  box-shadow: var(--home-shadow-soft);
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.lp-close .lp-final__panel h2 {
  color: var(--color-brand-blue);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: var(--home-line-heading);
  max-width: 18ch;
  margin: 0;
}

.lp-close .lp-final__panel p {
  color: var(--color-ink);
  max-width: none;
  font-size: 1.0625rem;
  line-height: var(--home-line);
  margin: 0;
}

@media (max-width: 639px) {
  .lp-close .lp-final__panel .lp-btn {
    width: 100%;
  }

  .lp-quote__text {
    font-size: clamp(1.15rem, 5.5vw, 1.4rem);
  }
}

