:root {
  /* Brand identity (from Intellectum logoguide) */
  --brand-primary: #3e4193;
  --brand-primary-600: #34376f;
  --brand-yellow: #fbbc1b;
  --brand-violet: #b56aff;
  --brand-red: #ff6a6b;
  --brand-blue: #16c0d7;
  /* Cera Round Pro / Blogger Sans are licensed; Poppins/Nunito are close web substitutes */
  --font-display: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Nunito", "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.bloom-page {
  --panel-edge-gap: clamp(2rem, 5vw, 4.5rem);
  --chrome-actions-reserve: 11rem;
  --video-overlay-strength: 0;
  --bloom-ink: #413546;
  --bloom-surface: #cac6d2;
  --bloom-mist: #f3f0f5;
  --radius: 1rem;
  --text-100: #ffffff;
  --text-80: rgba(255, 255, 255, 0.8);
  --text-60: rgba(255, 255, 255, 0.6);
  --text-50: rgba(255, 255, 255, 0.5);
  --bloom-accent: var(--brand-blue);
  --bloom-scrollbar-size: 6px;
  --bloom-scrollbar-track: rgba(255, 255, 255, 0.08);
  --bloom-scrollbar-thumb: rgba(255, 255, 255, 0.24);
  --bloom-scrollbar-thumb-hover: color-mix(in srgb, var(--bloom-accent) 55%, white);
  --bloom-scrollbar-thumb-active: color-mix(in srgb, var(--bloom-accent) 72%, white);
  --brand-logo-height: 2.25rem;
  --brand-logo-height-chrome: 1.95rem;
  --brand-logo-height-hero: 2.4rem;
  --brand-logo-height-footer: 1.7rem;
  --brand-logo-max-width: min(16rem, 52vw);

  margin: 0;
  min-height: 100vh;
  scroll-behavior: auto;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-100);
  background: #000;
  overflow-x: hidden;
}

.bloom-page:has(.inner-actions) {
  --chrome-actions-reserve: 6.25rem;
}

.bloom-page:has(.inner-page) {
  --chrome-actions-reserve: 0;
}

.bloom-page *,
.bloom-page *::before,
.bloom-page *::after {
  box-sizing: border-box;
}

html.is-boot-loading .site-chrome,
html.is-boot-loading .hero-stage,
html.is-boot-loading .site-footer,
html.is-boot-loading .lead-form__select-menu {
  visibility: hidden;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: #000;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.boot-screen[hidden] {
  display: none;
}

.boot-screen.is-leaving {
  opacity: 0;
}

.boot-screen__logo {
  width: auto;
  height: clamp(8.5rem, 32vw, 13rem);
  max-width: min(26rem, 92vw);
  animation: boot-logo-pulse 1.6s ease-in-out infinite;
}

.boot-screen__spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--bloom-accent);
  animation: boot-spin 0.9s linear infinite;
}

@keyframes boot-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes boot-logo-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boot-screen {
    transition: none;
  }

  .boot-screen__logo,
  .boot-screen__spinner {
    animation: none;
  }
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
  background-color: #f4f4f6;
}

/* Hero visual is an art-directed <img> (video engine is disabled). Using a
   replaced element instead of a CSS background / canvas guarantees it always
   paints and lets us control framing per breakpoint via object-position. */
/* The .hero-stage wraps the whole page (legacy full-page background pattern),
   so the hero visual must be clamped to the first viewport instead of inset:0,
   otherwise object-fit:cover stretches it over the full document height and the
   product render collapses into a flat sliver. */
.hero-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-art__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the product cluster in the lower band; upper-left stays clear for brand lockup. */
  object-position: center bottom;
}

/* Tablet: keep the product cluster in the lower band. */
@media (min-width: 721px) and (max-width: 1023px) {
  .hero-art__img {
    object-position: center 85%;
  }
}

/* Mobile: portrait art — products in the lower band; lockup sits above. */
@media (max-width: 720px) {
  .hero-art {
    height: var(--hero-mobile-vh, 100svh);
    max-height: var(--hero-mobile-vh, 100svh);
    overflow: hidden;
  }

  .hero-stage__overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--hero-mobile-vh, 100svh);
    max-height: var(--hero-mobile-vh, 100svh);
  }

  .hero-art__img {
    object-position: center bottom;
  }
}

/* Video engine is disabled: hide the unused video layers and canvas so the
   <picture> is the single hero visual. */
.hero-stage .bg-video,
.hero-stage .bg-canvas {
  display: none !important;
}

/* Videos are kept off-screen and tiny so browsers (e.g. Yandex) do not
   treat them as a real player and never show a floating/PiP control.
   Their frames are painted onto .bg-canvas instead. */
.hero-stage .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-stage .bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


@media (hover: none) and (pointer: coarse) {
  .hero-stage .bg-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s ease;
  }

  .hero-stage .bg-video.is-active {
    opacity: 1;
  }

  .hero-stage.is-image-background .bg-video {
    opacity: 0;
  }

  .hero-stage .bg-canvas {
    display: none;
  }
}

.hero-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(4, 17, 12, calc(0.35 * var(--video-overlay-strength) / 100)) 0%,
    rgba(4, 17, 12, calc(0.12 * var(--video-overlay-strength) / 100)) 45%,
    rgba(4, 17, 12, calc(0.42 * var(--video-overlay-strength) / 100)) 100%
  );
}

/* First-screen stack: brand lockup + email CTA (bento follows below). */
.hero-intro {
  position: relative;
  z-index: 5;
}

/* ---------- Liquid glass tiers ---------- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ---------- Layout ---------- */
.split {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  /* Anchor copy to the upper band: the product render fills the lower 2/3 of
     the art, so keeping text/CTAs up top in the empty left zone avoids overlap. */
  align-items: start;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(5rem, 12vh, 8rem) var(--panel-edge-gap) calc(var(--panel-edge-gap) + 1rem);
}

/* Soft readability wash on the text side. The product render lives in the
   lower band of the image while the headline sits over the empty upper-left,
   so the wash stays light and fades out early to keep the products visible. */
.split::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 24%,
    rgba(255, 255, 255, 0) 46%
  );
}

.hero-copy {
  grid-column: 1;
  align-self: start;
  min-width: 0;
  max-width: min(46rem, 56%);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 2.25rem);
  max-width: 44rem;
  min-width: 0;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
}

.hero-brand__mark {
  flex: 0 0 auto;
  width: clamp(3.5rem, 7vw, 6.5rem);
  height: clamp(3.5rem, 7vw, 6.5rem);
  object-fit: contain;
}

.hero-brand__text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.35rem, 1vh, 0.65rem);
  min-width: 0;
}

.hero-brand__name {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--hero-text-color, var(--brand-primary));
  text-wrap: balance;
  overflow-wrap: break-word;
  user-select: text;
}

.hero-brand__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35em;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--hero-text-color, var(--brand-primary)) 72%, #ffffff);
}

.hero-brand__rule {
  flex: 0 0 auto;
  width: clamp(1.25rem, 2.5vw, 1.75rem);
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hero-text-color, var(--brand-primary)) 55%, transparent);
}

.split-headline {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--hero-text-color, #16183c);
  text-wrap: balance;
  overflow-wrap: break-word;
  user-select: text;
  text-shadow: 0 2px 18px color-mix(in srgb, #ffffff 55%, transparent);
}

.split-headline__line {
  display: block;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-btn--solid {
  background: var(--brand-primary);
  color: #fff;
  border: 1px solid var(--brand-primary);
  box-shadow: 0 14px 28px -16px var(--brand-primary);
}

.hero-btn--solid:hover {
  background: var(--brand-primary-600);
  border-color: var(--brand-primary-600);
  transform: translateY(-1px);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-btn--ghost:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ---------- Email CTA strip (below hero) ----------
   The lead form was lifted out of the hero into a full-width band so the hero
   text zone is no longer shared with the product render. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.email-cta {
  position: relative;
  z-index: 5;
  padding: clamp(1.75rem, 4.5vw, 3rem) var(--panel-edge-gap);
  background: linear-gradient(
    118deg,
    var(--brand-primary) 0%,
    var(--brand-primary-600, #2f3270) 58%,
    color-mix(in srgb, var(--brand-primary) 70%, #6f72d6) 100%
  );
}

.email-cta__inner {
  /* field tokens normally provided by .lead-form — set them directly so the
     band keeps a clean horizontal layout (the .lead-form class forces a column
     flow and clipping). */
  --lead-field-text: #16183c;
  --lead-field-placeholder: #707689;
  --lead-field-focus: var(--brand-yellow);
  color-scheme: light;
  accent-color: var(--brand-primary);
  max-width: 74rem;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.1rem, 3.5vw, 2.75rem);
  overflow: visible;
}

.email-cta__copy {
  flex: 1 1 20rem;
  min-width: 0;
  color: #fff;
}

.email-cta__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.email-cta__lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.email-cta__form {
  flex: 0 1 30rem;
  min-width: min(100%, 17rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.email-cta__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.6rem;
}

.email-cta__consent {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.email-cta__consent a {
  color: #fff;
}

/* Honeypot field: hidden from users, used to catch bots. */
.lead-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.email-cta__field {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.email-cta .lead-form__control {
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.email-cta .lead-form__control:focus-within {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-yellow) 45%, transparent);
}

.email-cta .lead-form__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.82rem 1.1rem;
}

.email-cta .lead-form__submit {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.82rem 1.6rem;
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #16183c;
}

.email-cta .lead-form__submit:hover {
  background: #ffca3f;
  border-color: #ffca3f;
}

@media (max-width: 720px) {
  .email-cta__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .email-cta__copy {
    flex: 0 0 auto;
  }

  .email-cta__form {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 0.35rem;
  }

  .email-cta__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .email-cta__field,
  .email-cta .lead-form__control {
    width: 100%;
  }

  .email-cta .lead-form__submit {
    width: 100%;
  }

  .email-cta__consent {
    text-align: center;
  }
}

.hero-panel {
  grid-column: 2;
  justify-self: end;
  align-self: start;
}

.hero-panel.left-content {
  width: 100%;
  max-width: 100%;
}

/* Tablet: narrower form column, slightly smaller headline so nothing collides
   with the centered product render. */
@media (min-width: 721px) and (max-width: 1023px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    padding-top: clamp(5.5rem, 12vh, 7.5rem);
  }

  .hero-copy {
    max-width: min(32rem, 64%);
  }

  .hero-brand__name {
    font-size: clamp(2rem, 4.6vw, 3.25rem);
  }
}

/* Desktop: brand + form fill the viewport; hero art ends where the form begins. */
@media (min-width: 721px) {
  .hero-art {
    height: calc(100dvh - var(--hero-form-band, 9.5rem));
    max-height: calc(100dvh - var(--hero-form-band, 9.5rem));
  }

  .hero-stage__overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100dvh - var(--hero-form-band, 9.5rem));
    max-height: calc(100dvh - var(--hero-form-band, 9.5rem));
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .split {
    min-height: 0;
    flex: 0 0 auto;
  }

  .hero-intro > .email-cta {
    flex: 0 0 auto;
    margin-top: auto;
    padding: clamp(1rem, 1.8vw, 1.35rem) var(--panel-edge-gap);
  }

  .hero-intro > .email-cta .email-cta__inner {
    gap: clamp(0.7rem, 1.8vw, 1.15rem);
  }

  .hero-intro > .email-cta .email-cta__title {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    margin-bottom: 0.15rem;
  }

  .hero-intro > .email-cta .email-cta__lead {
    font-size: clamp(0.86rem, 1.15vw, 0.95rem);
    line-height: 1.35;
  }

  .hero-intro > .email-cta .email-cta__form {
    gap: 0.35rem;
  }

  .hero-intro > .email-cta .lead-form__field input {
    padding: 0.7rem 1rem;
  }

  .hero-intro > .email-cta .lead-form__submit {
    padding: 0.7rem 1.3rem;
  }

  .hero-intro > .email-cta .email-cta__consent {
    font-size: 0.58rem;
  }
}

.left-content {
  --left-glass-blur: 50px;
  --left-glass-backdrop-filter: blur(90px) saturate(212%) contrast(129%);
  --left-glass-shadow: 15;
  --panel-tint-color: #1a264c;
  --panel-dim-strength: 10;
  --lead-field-opacity: 64;
  --panel-text-color: #000000;
  --text-100: var(--panel-text-color);
  --text-80: color-mix(in srgb, var(--panel-text-color) 80%, transparent);
  --text-60: color-mix(in srgb, var(--panel-text-color) 60%, transparent);
  --text-50: color-mix(in srgb, var(--panel-text-color) 50%, transparent);
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(42vw, 32rem);
  max-width: min(42vw, 32rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: fit-content;
  max-height: calc(100dvh - 2 * var(--panel-edge-gap));
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(0.85rem, 3cqw, 1.75rem);
  color: var(--text-100);
  container-type: inline-size;
  container-name: bloom-panel;
  --lead-inline-pad: 0.2rem;
  --bloom-scrollbar-track: color-mix(in srgb, var(--panel-text-color) 7%, transparent);
  --bloom-scrollbar-thumb: color-mix(
    in srgb,
    var(--panel-text-color) 32%,
    rgba(255, 255, 255, 0.52)
  );
  --bloom-scrollbar-thumb-hover: color-mix(
    in srgb,
    var(--bloom-accent) 48%,
    var(--panel-text-color) 52%
  );
  --bloom-scrollbar-thumb-active: color-mix(
    in srgb,
    var(--bloom-accent) 62%,
    var(--panel-text-color) 38%
  );
}

.left-content svg {
  color: inherit;
}

.left-content.liquid-glass {
  backdrop-filter: var(--left-glass-backdrop-filter);
  -webkit-backdrop-filter: var(--left-glass-backdrop-filter);
  background: color-mix(
    in srgb,
    var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 52%),
    transparent
  );
  background-blend-mode: normal;
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.12 + var(--left-glass-shadow) * 0.006)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.08 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.left-content.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: color-mix(
    in srgb,
    var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 22%),
    transparent
  );
}

.left-content.liquid-glass > * {
  position: relative;
  z-index: 1;
}

.glass-tuner {
  margin-top: auto;
  flex: 1 1 auto;
  min-height: 0;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  overflow-y: auto;
}

.glass-tuner__control {
  min-width: 0;
}

.glass-tuner__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: clamp(0.62rem, 2.5cqw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-60);
  overflow-wrap: anywhere;
}

.glass-tuner__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.glass-tuner__range {
  flex: 1;
  min-width: 0;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.glass-tuner__range::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--text-100);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.glass-tuner__range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--text-100);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.glass-tuner__value {
  flex: 0 0 auto;
  min-width: 2.5rem;
  font-size: clamp(0.7rem, 2.8cqw, 0.8rem);
  font-variant-numeric: tabular-nums;
  color: var(--text-80);
  text-align: right;
}

.glass-tuner__save {
  align-self: flex-start;
  padding: 0.4rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-100);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.glass-tuner__save:hover {
  background: rgba(255, 255, 255, 0.2);
}

.glass-tuner__save.is-saved {
  background: rgba(120, 220, 160, 0.35);
}

.glass-tuner__select {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  color: inherit;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.glass-tuner__color-input {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.glass-tuner__color-input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.glass-tuner__color-input::-webkit-color-swatch {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.4rem;
}

.glass-tuner__hex {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-100);
  font-family: inherit;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.glass-tuner__hex:focus,
.glass-tuner__hex:focus-visible,
.glass-tuner__hex:active {
  outline: none;
  border-color: #ff8a2a;
  box-shadow: 0 0 0 2px rgba(255, 138, 42, 0.28);
}

/* ---------- Top nav ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  color: var(--text-100);
}

.brand-mark {
  width: auto;
  height: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-mark svg,
.brand-mark img {
  width: auto;
  height: var(--brand-logo-height);
  max-width: var(--brand-logo-max-width);
  display: block;
}

.brand-mark picture,
.hero-brand picture {
  display: contents;
}

.brand-text {
  display: inline-block;
  font-size: clamp(1.05rem, 5cqw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.menu-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--text-100);
  font-size: clamp(0.8rem, 3.5cqw, 0.95rem);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.menu-pill svg {
  width: 18px;
  height: 18px;
}

.nav-menu-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 50;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: min(17.5rem, calc(100vw - 2rem));
  max-width: min(22rem, calc(100vw - 2rem));
  min-height: 0;
  padding: 0.85rem;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav-menu.liquid-glass {
  /* Stronger panel to separate from busy background */
  backdrop-filter: blur(34px) saturate(150%) contrast(112%);
  -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(112%);
  background: rgba(30, 42, 74, 0.82);
  border: 1px solid rgba(214, 231, 255, 0.34);
  color: #eef5ff;
}

.nav-menu.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(6, 12, 28, 0.34) 100%
  );
}

.nav-menu.liquid-glass > * {
  position: relative;
  z-index: 1;
}

.nav-menu[hidden] {
  display: none;
}

.nav-menu__bar {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  margin: -0.15rem -0.15rem 0;
}

.nav-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-menu__close svg {
  width: 1.05rem;
  height: 1.05rem;
}

.nav-menu__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-menu__cta {
  width: 100%;
  justify-content: center;
}

.nav-menu__tuner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-menu .glass-tuner {
  margin-top: 0;
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
  padding: 0.5rem 0 0;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: none;
}

.nav-menu .glass-tuner__label {
  color: rgba(231, 241, 255, 0.86);
}

.nav-menu .glass-tuner__value {
  color: rgba(238, 246, 255, 0.9);
}

.nav-menu .glass-tuner__select,
.nav-menu .glass-tuner__hex {
  background: rgba(8, 14, 34, 0.42);
  border-color: rgba(214, 231, 255, 0.28);
}

.nav-menu .glass-tuner::before {
  display: none;
}

/* ---------- Site scrollbars (panel + form overlays) ---------- */
.left-content .lead-form__body,
.left-content .glass-tuner,
.lead-form__select-menu .lead-form__select-list {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--bloom-scrollbar-thumb) var(--bloom-scrollbar-track);
}

.left-content .lead-form__body::-webkit-scrollbar,
.left-content .glass-tuner::-webkit-scrollbar,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar {
  width: var(--bloom-scrollbar-size);
  height: var(--bloom-scrollbar-size);
}

.left-content .lead-form__body::-webkit-scrollbar-track,
.left-content .glass-tuner::-webkit-scrollbar-track,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar-track {
  background: var(--bloom-scrollbar-track);
  border-radius: 999px;
  margin: 3px 0;
}

.left-content .lead-form__body::-webkit-scrollbar-thumb,
.left-content .glass-tuner::-webkit-scrollbar-thumb,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bloom-scrollbar-thumb) 88%, white) 0%,
    var(--bloom-scrollbar-thumb) 100%
  );
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--bloom-scrollbar-thumb) 55%, white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.left-content .lead-form__body::-webkit-scrollbar-thumb:hover,
.left-content .glass-tuner::-webkit-scrollbar-thumb:hover,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar-thumb:hover {
  background: var(--bloom-scrollbar-thumb-hover);
  border-color: color-mix(in srgb, var(--bloom-scrollbar-thumb-hover) 60%, white);
}

.left-content .lead-form__body::-webkit-scrollbar-thumb:active,
.left-content .glass-tuner::-webkit-scrollbar-thumb:active,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar-thumb:active {
  background: var(--bloom-scrollbar-thumb-active);
}

.left-content .lead-form__body::-webkit-scrollbar-corner,
.left-content .glass-tuner::-webkit-scrollbar-corner,
.lead-form__select-menu .lead-form__select-list::-webkit-scrollbar-corner {
  background: transparent;
}

/* ---------- Lead form ---------- */
.lead-form {
  --lead-field-text: var(--text-100);
  --lead-field-placeholder: var(--text-50);
  --lead-field-glow: rgba(255, 255, 255, 0.55);
  --lead-field-glow-ring: rgba(255, 255, 255, 0.28);
  --lead-field-glow-halo: rgba(255, 255, 255, 0.14);
  --lead-field-focus: var(--brand-blue);
  --lead-field-focus-ring: color-mix(in srgb, var(--brand-blue) 55%, transparent);
  --lead-field-focus-halo: color-mix(in srgb, var(--brand-blue) 38%, transparent);
  --lead-field-glass-blur: 5px;
  --lead-select-menu-blur: 30px;
  --lead-select-menu-bg: color-mix(in srgb, var(--panel-tint-color, #cac6d2) 16%, rgba(255, 255, 255, 0.97));
  --lead-select-menu-text: var(--panel-text-color, #343232);
  margin-top: 0.6rem;
  padding: 0.15rem var(--lead-inline-pad) 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  color-scheme: light;
  accent-color: var(--lead-field-focus);
}

.lead-form h1.lead-form__title {
  margin: 0;
  font-size: clamp(1.8rem, 7.2cqw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--text-100);
}

.lead-form__lead {
  margin: 0;
  color: var(--text-80);
  font-size: clamp(0.82rem, 3.1cqw, 0.95rem);
  line-height: 1.5;
}

.lead-form__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.lead-form__field {
  display: block;
}

.lead-form__reason legend {
  flex: 1 1 100%;
  font-size: 0.78rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--text-100) 86%, #eaf2ff 14%);
}

.lead-form__control {
  display: block;
  border-radius: 999px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lead-form__control--area {
  border-radius: 1rem;
}

.lead-form__field--select {
  position: relative;
  z-index: 0;
}

.lead-form__select-label {
  display: block;
}

.lead-form__field--select:has(.lead-form__select.is-open) {
  z-index: 35;
}

.lead-form__control.liquid-glass > .lead-form__select {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.lead-form__select {
  display: block;
  width: 100%;
}

.lead-form__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--lead-field-text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.62rem 0.85rem;
  padding-right: 2.2rem;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.lead-form__select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-form__select-caret {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.75;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.lead-form__select.is-open .lead-form__select-caret {
  transform: translateY(-50%) rotate(180deg);
}

.lead-form__select-menu[hidden] {
  display: none !important;
}

.lead-form__select-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  right: auto;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0.4rem;
  border-radius: 1rem;
  color: var(--lead-select-menu-text);
  max-height: min(16rem, 44vh);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(var(--lead-select-menu-blur)) saturate(118%);
  -webkit-backdrop-filter: blur(var(--lead-select-menu-blur)) saturate(118%);
  background-color: var(--lead-select-menu-bg);
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border: 1.5px solid var(--lead-field-glow);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.65),
    0 0 0 1px var(--lead-field-glow-ring),
    0 12px 28px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.lead-form__select-menu.is-menu-open {
  position: fixed !important;
  margin: 0 !important;
  inset: auto;
}

.lead-form__select-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lead-form__field--select.is-select-open .lead-form__control.liquid-glass,
.lead-form__field--select:has(.lead-form__select.is-open) .lead-form__control.liquid-glass {
  border-color: color-mix(in srgb, var(--lead-field-focus) 78%, white);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    0 0 0 1px var(--lead-field-focus-ring),
    0 0 16px var(--lead-field-focus-halo);
}

.lead-form:has(.lead-form__select.is-open),
.lead-form:has(.lead-form__field--select.is-select-open) {
  position: relative;
  z-index: 40;
}

.lead-form__select-search {
  flex-shrink: 0;
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--lead-field-glow-ring) 65%, transparent);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--lead-select-menu-text);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 0.5rem 0.7rem;
  box-sizing: border-box;
}

.lead-form__select-search::placeholder {
  color: var(--lead-field-placeholder);
}

.lead-form__select-search:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--lead-field-focus) 70%, white);
  box-shadow: 0 0 0 2px var(--lead-field-focus-ring);
}

.lead-form__select-search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.25rem;
  border-radius: 50%;
  cursor: pointer;
  background: color-mix(in srgb, var(--lead-select-menu-text) 22%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23413546' stroke-width='2.25' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E")
    center / 0.55rem no-repeat;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.lead-form__select-search::-webkit-search-cancel-button:hover {
  background-color: color-mix(in srgb, var(--lead-field-focus) 28%, rgba(255, 255, 255, 0.88));
  transform: scale(1.05);
}

.lead-form__select-list {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
}

.lead-form__select-list li {
  position: relative;
  z-index: 1;
  padding: 0.52rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lead-select-menu-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lead-form__select-list li[hidden] {
  display: none;
}

.lead-form__select-list li:hover,
.lead-form__select-list li[aria-selected="true"] {
  background: color-mix(in srgb, var(--lead-field-focus) 24%, rgba(255, 255, 255, 0.88));
  color: var(--lead-select-menu-text);
}

.lead-form__select-list li:focus-visible {
  outline: 2px solid var(--lead-field-focus-ring);
  outline-offset: 1px;
}

.lead-form__select-empty {
  margin: 0;
  padding: 0.45rem 0.7rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--lead-field-placeholder);
  text-align: center;
  letter-spacing: 0.01em;
}

.lead-form__select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

.lead-form__control.liquid-glass {
  background: rgba(255, 255, 255, calc(0.01 + var(--lead-field-opacity) * 0.0008));
  backdrop-filter: blur(var(--lead-field-glass-blur)) saturate(112%);
  -webkit-backdrop-filter: blur(var(--lead-field-glass-blur)) saturate(112%);
  border: 1.5px solid var(--lead-field-glow);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.22),
    0 0 0 1px var(--lead-field-glow-ring),
    0 0 14px var(--lead-field-glow-halo);
}

.lead-form__control.liquid-glass::before {
  opacity: 0.5;
}

.lead-form__control.liquid-glass:focus-within {
  border-color: color-mix(in srgb, var(--lead-field-focus) 78%, white);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    0 0 0 1px var(--lead-field-focus-ring),
    0 0 16px var(--lead-field-focus-halo);
}

.lead-form__field input,
.lead-form__field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--lead-field-text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.62rem 0.85rem;
  box-sizing: border-box;
  transition: color 0.2s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.lead-form__field textarea {
  min-height: 5.4rem;
  resize: vertical;
}

.lead-form__field input::placeholder,
.lead-form__field textarea::placeholder {
  color: var(--lead-field-placeholder);
}

.lead-form__field input:focus,
.lead-form__field textarea:focus,
.lead-form__select-trigger:focus-visible {
  outline: none;
}

.lead-form__reason {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}

.lead-form__reason label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: var(--text-80);
  white-space: nowrap;
}

.lead-form__reason input[type="radio"] {
  accent-color: color-mix(in srgb, var(--panel-text-color) 42%, #8cd4ff);
}

.lead-form__actions {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.7rem var(--lead-inline-pad) 0.1rem;
  position: relative;
  z-index: 1;
}

.lead-form__submit {
  width: 100%;
  border: 1px solid var(--brand-primary);
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.72rem 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form__submit:hover {
  background: var(--brand-primary-600);
  border-color: var(--brand-primary-600);
}

.lead-form__submit:active:not(.is-error) {
  transform: translateY(1px);
}

.lead-form__toast {
  position: fixed;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem 0.7rem 0.72rem;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #20243a;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 48px -18px rgba(31, 38, 73, 0.4),
    0 8px 18px -10px rgba(31, 38, 73, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top center;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(92vw, 23rem);
}

.lead-form__toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-form__toast-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 3px 10px -2px rgba(5, 150, 105, 0.55);
}

.lead-form__toast-text {
  white-space: normal;
}

.lead-form__toast--error {
  color: #20243a;
}

.lead-form__toast--error .lead-form__toast-icon {
  background: linear-gradient(135deg, #fb7185, #e11d48);
  box-shadow: 0 3px 10px -2px rgba(225, 29, 72, 0.55);
}

@media (prefers-color-scheme: dark) {
  .lead-form__toast {
    color: #f3f4f8;
    background: rgba(28, 30, 44, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
      0 22px 48px -18px rgba(0, 0, 0, 0.6),
      0 8px 18px -10px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .lead-form__toast--error {
    color: #f3f4f8;
  }
}

@keyframes lead-form-submit-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  12% {
    transform: translateX(-6px);
  }

  24% {
    transform: translateX(5px);
  }

  36% {
    transform: translateX(-4px);
  }

  48% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-2px);
  }

  72% {
    transform: translateX(2px);
  }

  84% {
    transform: translateX(-1px);
  }
}

@keyframes lead-form-submit-error-flash {
  0%,
  100% {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    box-shadow: none;
  }

  20%,
  55% {
    background-color: #2a1212;
    border-color: #e04a4a;
    box-shadow: inset 0 0 0 2px rgba(224, 74, 74, 0.45);
  }
}

.lead-form__submit.is-error {
  animation:
    lead-form-submit-shake 0.62s cubic-bezier(0.36, 0.07, 0.19, 0.97),
    lead-form-submit-error-flash 0.62s ease-in-out;
}

@media (max-width: 720px) {
  .lead-form__grid {
    grid-template-columns: 1fr;
  }
}

.left-content h1 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.35rem, 9cqw, 2.75rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--text-100);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bloom-page h1 em,
.bloom-page h2 em,
.bloom-page h3 em {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-80);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.6rem 0.6rem 0.6rem 1.1rem;
  border-radius: 999px;
  color: var(--text-100);
  font-size: clamp(0.8rem, 3.8cqw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dl-circle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dl-circle svg {
  width: 16px;
  height: 16px;
}

/* ---------- Site chrome: brand (left) + nav (center), merge on scroll ---------- */
.site-chrome {
  --panel-tint-color: #cac6d2;
  --panel-dim-strength: 16;
  --left-glass-shadow: 20;
  --left-glass-backdrop-filter: blur(18px) saturate(132%) contrast(109%);
  --panel-text-color: #413546;
  --chrome-glass-dim-boost: 0;
  --chrome-glass-shade: #1c1826;
  --chrome-glass-fill: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 52%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 2.75%)
    ),
    transparent
  );
  --chrome-glass-fill-soft: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 22%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 1.85%)
    ),
    transparent
  );
  --site-chrome-bar-min-height: 3rem;
  --site-chrome-pad-y: 0.4rem;
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  pointer-events: none;
  transition:
    gap 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease,
    transform 0.4s ease,
    width 0.4s ease;
}

.site-chrome > * {
  pointer-events: auto;
}

/* Hero state: brand (left) + nav (center) in one row, actions reserved on the right */
.bloom-page:not(.is-nav-merged) .site-chrome {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding-left: var(--panel-edge-gap);
  padding-right: calc(var(--chrome-actions-reserve) + var(--panel-edge-gap));
}

.bloom-page:not(.is-nav-merged) .site-brand {
  position: static;
  top: auto;
  left: auto;
  grid-column: 1;
  justify-self: start;
}

.bloom-page:not(.is-nav-merged) .site-nav {
  grid-column: 2;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
}

/* Merged state: one shared glass bar (chrome), brand + nav inside */
.bloom-page.is-nav-merged .site-chrome {
  left: 50%;
  right: auto;
  width: max-content;
  max-width: calc(100vw - 2rem);
  transform: translateX(-50%);
  gap: 0;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  border-radius: 999px;
  overflow: visible;
  flex-wrap: nowrap;
  background: var(
    --chrome-glass-fill,
    color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 52%), transparent)
  );
  backdrop-filter: var(--left-glass-backdrop-filter);
  -webkit-backdrop-filter: var(--left-glass-backdrop-filter);
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.12 + var(--left-glass-shadow) * 0.006)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.08 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition:
    box-shadow 0.4s ease,
    background 0.4s ease,
    padding 0.4s ease,
    gap 0.4s ease;
}

body.is-chrome-on-dark.is-nav-merged .site-chrome {
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.14 + var(--left-glass-shadow) * 0.006)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.09 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.07);
}

body.is-chrome-on-dark.is-nav-merged .site-chrome::before {
  opacity: 0.55;
}

.bloom-page.is-nav-merged .site-chrome::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.bloom-page.is-nav-merged .site-chrome::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: var(
    --chrome-glass-fill-soft,
    color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 22%), transparent)
  );
}

.bloom-page.is-nav-merged .site-chrome > * {
  position: relative;
  z-index: 1;
}

.bloom-page.is-nav-merged .site-brand {
  position: static;
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  transform: none;
  padding: 0.15rem 0.75rem 0.15rem 0.2rem;
  margin: 0;
  border-radius: 0;
  border-right: 1px solid color-mix(in srgb, var(--panel-text-color) 20%, rgba(255, 255, 255, 0.12));
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.bloom-page.is-nav-merged .site-brand.liquid-glass::before,
.bloom-page.is-nav-merged .site-brand.liquid-glass::after,
.bloom-page.is-nav-merged .site-nav.liquid-glass::before,
.bloom-page.is-nav-merged .site-nav.liquid-glass::after {
  display: none;
}

.bloom-page.is-nav-merged .site-nav {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  min-height: 0;
  padding: 0.1rem 0.2rem 0.1rem 0.15rem;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-brand {
  --panel-tint-color: #cac6d2;
  --panel-dim-strength: 16;
  --left-glass-shadow: 20;
  --left-glass-backdrop-filter: blur(18px) saturate(132%) contrast(109%);
  --panel-text-color: #413546;
  --chrome-glass-dim-boost: 0;
  --chrome-glass-shade: #1c1826;
  --chrome-glass-fill: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 52%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 2.75%)
    ),
    transparent
  );
  --chrome-glass-fill-soft: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 22%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 1.85%)
    ),
    transparent
  );
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
  min-height: var(--site-chrome-bar-min-height);
  padding: var(--site-chrome-pad-y) 0.95rem var(--site-chrome-pad-y) 0.6rem;
  border-radius: 999px;
  color: var(--panel-text-color);
  text-decoration: none;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    left 0.4s ease,
    color 0.3s ease;
}

.site-brand .brand-mark {
  width: auto;
  height: auto;
}

.site-brand .brand-mark svg,
.site-brand .brand-mark img {
  width: auto;
  height: var(--brand-logo-height-chrome);
  max-width: min(13rem, 44vw);
}

.site-brand .brand-text {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-nav {
  --panel-tint-color: #cac6d2;
  --panel-dim-strength: 16;
  --left-glass-shadow: 20;
  --left-glass-backdrop-filter: blur(18px) saturate(132%) contrast(109%);
  --panel-text-color: #413546;
  --chrome-glass-dim-boost: 0;
  --chrome-glass-shade: #1c1826;
  --chrome-glass-fill: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 52%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 2.75%)
    ),
    transparent
  );
  --chrome-glass-fill-soft: color-mix(
    in srgb,
    color-mix(
      in srgb,
      var(--panel-tint-color) calc((var(--panel-dim-strength) + var(--chrome-glass-dim-boost)) / 100 * 22%),
      var(--chrome-glass-shade) calc(var(--chrome-glass-dim-boost) * 1.85%)
    ),
    transparent
  );
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: var(--site-chrome-bar-min-height);
  max-width: calc(100vw - 2rem);
  padding: var(--site-chrome-pad-y) 0.55rem;
  border-radius: 999px;
  color: var(--panel-text-color);
  font-size: 0.88rem;
  transition:
    transform 0.4s ease,
    color 0.3s ease;
}

body.is-chrome-on-dark .site-chrome {
  --chrome-glass-dim-boost: 5;
}

body.is-chrome-on-dark:not(.is-nav-merged) .site-brand,
body.is-chrome-on-dark:not(.is-nav-merged) .site-nav {
  --chrome-glass-dim-boost: 5;
}

.site-brand.liquid-glass,
.site-nav.liquid-glass,
.site-actions.liquid-glass,
.inner-actions.liquid-glass,
.lead-form__toast.liquid-glass {
  backdrop-filter: var(--left-glass-backdrop-filter);
  -webkit-backdrop-filter: var(--left-glass-backdrop-filter);
  background: var(
    --chrome-glass-fill,
    color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 52%), transparent)
  );
  background-blend-mode: normal;
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.12 + var(--left-glass-shadow) * 0.006)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.08 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

body.is-chrome-on-dark:not(.is-nav-merged) .site-brand.liquid-glass,
body.is-chrome-on-dark:not(.is-nav-merged) .site-nav.liquid-glass {
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.16 + var(--left-glass-shadow) * 0.007)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.1 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

body.is-chrome-on-dark:not(.is-nav-merged) .site-brand.liquid-glass::before,
body.is-chrome-on-dark:not(.is-nav-merged) .site-nav.liquid-glass::before {
  opacity: 0.42;
}

.bloom-page.is-nav-merged .site-brand.liquid-glass,
.bloom-page.is-nav-merged .site-nav.liquid-glass {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-brand.liquid-glass::after,
.site-nav.liquid-glass::after,
.site-actions.liquid-glass::after,
.inner-actions.liquid-glass::after,
.lead-form__toast.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: var(
    --chrome-glass-fill-soft,
    color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 22%), transparent)
  );
}

.site-brand.liquid-glass > *,
.site-nav.liquid-glass > *,
.site-actions.liquid-glass > *,
.inner-actions.liquid-glass > * {
  position: relative;
  z-index: 1;
}

.site-nav svg,
.site-actions svg {
  color: inherit;
}

/* ---------- Site actions (account / language / menu) — hidden site-wide ---------- */
.site-actions {
  display: none !important;
}

.site-actions.liquid-glass {
  overflow: visible;
}

.site-actions:has(.menu-pill[aria-expanded="true"]) {
  z-index: 120;
}

.site-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.site-actions__btn svg {
  width: 18px;
  height: 18px;
}

.site-actions__btn:hover {
  background: color-mix(in srgb, var(--panel-text-color) 12%, transparent);
}

.site-actions .nav-menu-wrap {
  display: inline-flex;
  align-items: center;
  position: static;
  z-index: auto;
}

.site-actions .menu-pill {
  padding: 0;
  gap: 0;
  font-size: inherit;
  color: color-mix(in srgb, var(--panel-text-color) 55%, #ffffff);
  transition: background-color 0.2s ease;
}

.site-actions .menu-pill:hover,
.site-actions .menu-pill:active {
  transform: none;
}

.site-actions .nav-menu {
  position: fixed;
  z-index: 130;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--bloom-scrollbar-thumb) var(--bloom-scrollbar-track);
}

.site-actions .nav-menu::-webkit-scrollbar {
  width: var(--bloom-scrollbar-size);
}

.site-actions .nav-menu::-webkit-scrollbar-track {
  background: var(--bloom-scrollbar-track);
  border-radius: 999px;
}

.site-actions .nav-menu::-webkit-scrollbar-thumb {
  background: var(--bloom-scrollbar-thumb);
  border-radius: 999px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.site-nav__item {
  position: static;
}

.site-nav__item--has-menu {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.site-nav__link:hover {
  background: color-mix(in srgb, var(--panel-text-color) 12%, transparent);
}

.site-nav__caret {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.site-nav__icon {
  display: none;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.site-nav__item--has-menu:hover .site-nav__caret,
.site-nav__item--has-menu:focus-within .site-nav__caret {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.4rem);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 12rem;
  margin: 0;
  padding: 0.4rem;
  border-radius: 0.9rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-nav__dropdown.liquid-glass {
  backdrop-filter: blur(34px) saturate(150%) contrast(112%);
  -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(112%);
  background: color-mix(
    in srgb,
    var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 60%),
    rgba(20, 28, 48, 0.72)
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.site-nav__dropdown.liquid-glass > * {
  position: relative;
  z-index: 1;
}

.site-nav__item--has-menu:hover .site-nav__dropdown,
.site-nav__item--has-menu:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.55rem;
  color: inherit;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.site-nav__dropdown a:hover {
  background: color-mix(in srgb, var(--panel-text-color) 14%, transparent);
}

@media (max-width: 720px) {
  .site-nav {
    gap: 0.2rem;
    font-size: 0.8rem;
  }

  .site-nav__list {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav__list::-webkit-scrollbar {
    display: none;
  }
}

/* Tablet (721–1023): the full text nav is too wide to fit the centered pill,
   so compact it (drop the brand wordmark, tighten links) and never let the
   chrome exceed the viewport. */
@media (min-width: 721px) and (max-width: 1023px) {
  .site-chrome {
    max-width: calc(100vw - 1rem);
  }

  .site-brand .brand-text {
    display: none;
  }

  .site-nav {
    min-width: 0;
    max-width: 100%;
  }

  .site-nav__list {
    gap: 0.05rem;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav__list::-webkit-scrollbar {
    display: none;
  }

  .site-nav__link {
    padding: 0.4rem 0.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

/* ---------- Index hero: centered nav cluster + brand reveal (all breakpoints) ---------- */
.bloom-page:has(.hero-brand__mark) .site-chrome {
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none;
  gap: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.bloom-page:has(.hero-brand__mark) .site-chrome::before,
.bloom-page:has(.hero-brand__mark) .site-chrome::after {
  display: none;
}

.bloom-page:has(.hero-brand__mark) .site-chrome__cluster {
  position: fixed;
  left: 50%;
  top: max(1rem, env(safe-area-inset-top));
  z-index: 101;
  display: inline-flex;
  align-items: stretch;
  max-width: calc(100vw - 2rem);
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
  isolation: isolate;
}

.bloom-page:has(.hero-brand__mark) .site-chrome__cluster::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transition:
    left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}


.bloom-page:has(.hero-brand__mark) .site-chrome__cluster::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  padding: 1.4px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition:
    left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

.bloom-page:has(.hero-brand__mark) .site-chrome__cluster .site-nav {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  grid-column: auto;
  justify-self: auto;
  z-index: 1;
  margin: 0;
  pointer-events: auto;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-radius 0.35s ease,
    padding 0.35s ease;
}

.bloom-page:has(.hero-brand__mark) .site-chrome__cluster .site-brand {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0.1rem 0;
  border-radius: 0;
  border-right: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
  transition:
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
}

.bloom-page:has(.hero-brand__mark):not(.is-nav-merged) .site-chrome__cluster .site-brand {
  opacity: 0;
  pointer-events: none;
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-brand.liquid-glass::before,
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-brand.liquid-glass::after,
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-nav.liquid-glass::before,
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-nav.liquid-glass::after {
  display: none;
}

/* Index hero after scroll: same merged pill as other pages (all breakpoints) */
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome {
  display: flex;
  justify-content: center;
  left: 50%;
  right: auto;
  width: max-content;
  transform: translateX(-50%);
  gap: 0;
  border-radius: 999px;
  overflow: visible;
  flex-wrap: nowrap;
  background: var(
    --chrome-glass-fill,
    color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 52%), transparent)
  );
  backdrop-filter: var(--left-glass-backdrop-filter);
  -webkit-backdrop-filter: var(--left-glass-backdrop-filter);
  box-shadow:
    0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
      rgba(0, 0, 0, calc(0.12 + var(--left-glass-shadow) * 0.006)),
    0 calc(var(--left-glass-shadow) * 0.12px) calc(var(--left-glass-shadow) * 0.45px)
      rgba(0, 0, 0, calc(0.08 + var(--left-glass-shadow) * 0.004)),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome::before,
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome::after {
  display: block;
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  display: flex;
  align-items: center;
  max-width: none;
  transform: none;
  pointer-events: auto;
  border-radius: 0;
  isolation: auto;
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster::before,
.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster::after {
  content: none;
  display: none;
  opacity: 0;
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-brand {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  max-width: none;
  opacity: 1;
  overflow: visible;
  margin: 0;
  border-radius: 0;
  border-right: 1px solid color-mix(in srgb, var(--panel-text-color) 20%, rgba(255, 255, 255, 0.12));
  pointer-events: auto;
}

.bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-nav {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

@media (min-width: 721px) {
  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome {
    max-width: calc(100vw - 2rem);
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-brand {
    padding: 0.15rem 0.75rem 0.15rem 0.2rem;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-nav {
    min-height: 0;
    padding: 0.1rem 0.2rem 0.1rem 0.15rem;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-nav__list {
    gap: 0.15rem;
  }

  /* Before scroll: full-size standalone nav pill at center */
  .bloom-page:has(.hero-brand__mark):not(.is-nav-merged) .site-chrome__cluster .site-nav {
    min-height: var(--site-chrome-bar-min-height);
    padding: var(--site-chrome-pad-y) 0.55rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Tablet: compact cluster pill so logo + nav fit */
@media (min-width: 721px) and (max-width: 1023px) {
  .bloom-page:has(.hero-brand__mark) .site-chrome__cluster {
    max-width: calc(100vw - 1rem);
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome {
    max-width: calc(100vw - 1rem);
  }

  .bloom-page:has(.hero-brand__mark) .site-brand .brand-text {
    display: none;
  }

  .bloom-page:has(.hero-brand__mark):not(.is-nav-merged) .site-chrome__cluster .site-nav {
    min-width: 0;
    max-width: 100%;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-nav {
    min-width: 0;
    max-width: 100%;
  }

  .bloom-page:has(.hero-brand__mark) .site-nav__list {
    gap: 0.05rem;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .bloom-page:has(.hero-brand__mark) .site-nav__list::-webkit-scrollbar {
    display: none;
  }

  .bloom-page:has(.hero-brand__mark) .site-nav__link {
    padding: 0.4rem 0.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

/* Dev-only glass tuner: kept in the DOM so the saved preset still themes the
   panels, but hidden from the production menu UI. */
.nav-menu__tuner,
.nav-menu .glass-tuner {
  display: none !important;
}

/* ---------- Interactions ---------- */
.menu-pill:hover,
.cta:hover {
  transform: scale(1.05);
}

.menu-pill:active,
.cta:active {
  transform: scale(0.95);
}

.bloom-page button:focus-visible,
.bloom-page a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

/* ---------- Product categories (below hero) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-categories {
  position: relative;
  z-index: 10;
  scroll-margin-top: 5rem;
  background: #f5f5f5;
  color: #1f1f1f;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.product-categories__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.product-categories__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 0.6vw, 0.5rem);
  width: 100%;
}

.product-categories__card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #e8f3fb;
  overflow: hidden;
}

.product-categories__card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.35rem, 3.5vw, 2.35rem) clamp(1rem, 2.5vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
}

.product-categories__card-tag {
  margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
  max-width: 16rem;
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  line-height: 1.45;
  color: rgba(31, 31, 31, 0.58);
}

.product-categories__card-title {
  margin: 0;
  max-width: 14rem;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.product-categories__card-link {
  margin-top: clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  font-weight: 500;
  color: #1f1f1f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.product-categories__card-link:hover {
  opacity: 0.72;
}

.product-categories__card-media {
  flex: 0 0 42%;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.product-categories__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.product-categories__card:nth-child(2) .product-categories__card-media img,
.product-categories__card:nth-child(3) .product-categories__card-media img {
  object-fit: contain;
  padding: 0 0.5rem 0.25rem;
}

@media (max-width: 900px) {
  .product-categories__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .product-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-categories__card:last-child {
    grid-column: 1 / -1;
  }
}

/* ---------- Bento showcase (layout block) ---------- */
.bento-showcase {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background: var(--bloom-mist);
}

.bento-showcase__header {
  display: none;
}

.bento-showcase__body {
  display: none;
}

.bento-showcase__grid {
  --bento-gap: clamp(0.35rem, 0.6vw, 0.5rem);
  display: grid;
  width: 100%;
  /* Center column is 5:8 → grid height = (viewport col width) × 8/5 */
  aspect-ratio: 15 / 8;
  min-height: calc(((100vw - 2 * var(--bento-gap)) / 3) * 8 / 5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 3fr) minmax(0, 2fr);
  grid-template-areas:
    "a e c"
    "b f d";
  gap: var(--bento-gap);
}

.bento-showcase__cell {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: color-mix(in srgb, var(--bloom-ink) 5%, white);
  border: 1px solid color-mix(in srgb, var(--bloom-ink) 10%, transparent);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.bento-showcase__cell:has(.bento-showcase__media) .bento-showcase__img,
.bento-showcase__cell > .bento-showcase__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bento-showcase__cell:hover {
  z-index: 2;
  transform: scale(1.025);
  border-color: color-mix(in srgb, var(--bloom-ink) 18%, transparent);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.bento-showcase__cell:active {
  transform: scale(0.985);
  transition-duration: 0.12s;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.05);
}

.bento-showcase__cell:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--bloom-ink) 35%, transparent);
  outline-offset: 3px;
}

.bento-showcase__cell--a {
  grid-area: a;
}

.bento-showcase__cell--b {
  grid-area: b;
}

.bento-showcase__cell--c {
  grid-area: c;
}

.bento-showcase__cell--d {
  grid-area: d;
}

.bento-showcase__cell--e {
  grid-area: e;
  background: #fff;
}

.bento-showcase__cell--f {
  grid-area: f;
  background: #fff;
}

.bento-showcase__cell--f .bento-showcase__img {
  object-position: center top;
}

.bento-showcase__cell:has(.bento-showcase__img) {
  background: #fff;
}

.bento-showcase__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
}

.bento-showcase__media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.bento-showcase__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bento-showcase__cell--e .bento-showcase__img {
  object-position: center top;
}

@media (max-width: 900px) {
  .bento-showcase__grid {
    aspect-ratio: auto;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    grid-template-areas: none;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  .bento-showcase__cell {
    grid-area: auto;
    aspect-ratio: 1;
  }

  .bento-showcase__cell .bento-showcase__img {
    object-fit: contain;
    padding: 0.5rem;
    background: #fff;
  }
}

@media (max-width: 560px) {
  .bento-showcase__grid {
    aspect-ratio: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .bento-showcase__cell {
    aspect-ratio: 16 / 10;
  }

  .bento-showcase__cell--a,
  .bento-showcase__cell--b,
  .bento-showcase__cell--c,
  .bento-showcase__cell--d,
  .bento-showcase__cell--e,
  .bento-showcase__cell--f {
    grid-area: auto;
  }

  .bento-showcase__cell--e {
    aspect-ratio: 5 / 8;
  }
}

/* ---------- Landing sections (below hero) ---------- */
.land-section {
  position: relative;
  z-index: 10;
  scroll-margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: min(100dvh, 52rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.land-section--mist {
  background: var(--bloom-mist);
  color: var(--bloom-ink);
}

.land-section--lavender {
  background: linear-gradient(160deg, #cac6d2 0%, #b8b2c4 45%, #a39aad 100%);
  color: var(--bloom-ink);
}

.land-section__inner {
  max-width: 34rem;
}

.land-section__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.land-section__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.land-section__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.55;
  opacity: 0.88;
}

.land-section__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.land-section__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.land-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--bloom-ink);
  opacity: 0.45;
}

.land-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 0;
  background: var(--bloom-ink);
  color: #f8f6fa;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.land-section__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(65, 53, 70, 0.25);
}

.land-section__cta--dark {
  background: rgba(65, 53, 70, 0.92);
  color: #fff;
}

.land-section__visual--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 22rem;
  justify-self: end;
}

.land-section__visual--grid span {
  aspect-ratio: 1;
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--bloom-surface) 65%, #ffffff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 40px rgba(65, 53, 70, 0.12);
}

.land-section__visual--grid span:nth-child(2) {
  transform: translateY(1.5rem);
}

.land-section__visual--grid span:nth-child(3) {
  transform: translateY(-0.75rem);
}

.land-section__stats {
  display: grid;
  gap: 1rem;
  align-self: center;
  justify-self: end;
  max-width: 20rem;
  width: 100%;
}

.land-stat {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(65, 53, 70, 0.1);
}

.land-stat__value {
  display: block;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.land-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  opacity: 0.75;
}

.land-section--lavender .land-section__cta:focus-visible,
.land-section--mist .land-section__cta:focus-visible {
  outline: 2px solid var(--bloom-ink);
  outline-offset: 3px;
}

.land-section__cta--ghost {
  background: transparent;
  color: var(--bloom-ink);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--bloom-ink) 45%, transparent);
}

.land-section__cta--ghost:hover {
  box-shadow:
    inset 0 0 0 1.5px var(--bloom-ink),
    0 10px 28px rgba(65, 53, 70, 0.18);
}

/* ---------- Featured solutions blocks ---------- */
.land-feature {
  position: relative;
  z-index: 10;
  scroll-margin-top: 5rem;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.land-feature--mist {
  background: var(--bloom-mist);
  color: var(--bloom-ink);
}

.land-feature--lavender {
  background: linear-gradient(160deg, #cac6d2 0%, #b8b2c4 45%, #a39aad 100%);
  color: var(--bloom-ink);
}

.land-feature--cta {
  background: var(--bloom-mist);
  color: var(--bloom-ink);
}

.land-feature__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.land-feature__inner--center {
  max-width: 48rem;
  text-align: center;
}

.land-feature__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.land-feature__title {
  margin: 0 0 0.75rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.land-feature__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.5;
  opacity: 0.78;
}

.land-feature__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  opacity: 0.88;
}

.land-feature__lead:last-child {
  margin-bottom: 0;
}

.land-feature__body {
  max-width: 42rem;
  margin: 0 auto;
}

.land-feature__list {
  margin: 1.25rem 0 0;
}

.land-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.land-feature__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 16px 40px rgba(65, 53, 70, 0.12);
}

.land-feature__card-kicker {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.land-feature__card-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.land-feature__card-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.85;
}

.land-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ---------- Responsive ---------- */
@container bloom-panel (max-width: 22rem) {
  .glass-tuner__row {
    flex-wrap: wrap;
  }

  .glass-tuner__value {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .land-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .land-section__visual--grid,
  .land-section__stats {
    justify-self: start;
    max-width: 100%;
  }

  .land-section__visual--grid {
    width: min(100%, 18rem);
  }

  .land-feature__grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 720px) {
  html.is-nav-menu-open .site-actions {
    z-index: 1001;
  }

  .nav-menu.nav-menu--overlay {
    position: fixed;
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
    top: max(0.65rem, env(safe-area-inset-top));
    right: var(--panel-edge-gap);
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    left: var(--panel-edge-gap);
    width: calc(100vw - var(--panel-edge-gap) * 2);
    min-width: 0;
    max-width: none;
    min-height: 12rem;
    max-height: none;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.nav-menu--overlay.liquid-glass {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .nav-menu.nav-menu--overlay .glass-tuner {
    flex: 0 0 auto;
    max-height: none;
    overflow: visible;
  }

  .nav-menu.nav-menu--overlay .glass-tuner__control,
  .nav-menu.nav-menu--overlay .nav-menu__tuner .glass-tuner__control {
    min-width: 0;
  }

  .nav-menu.nav-menu--overlay .glass-tuner__row {
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
  }

  .nav-menu.nav-menu--overlay .glass-tuner__value {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .nav-menu.nav-menu--overlay .glass-tuner__select,
  .nav-menu.nav-menu--overlay .glass-tuner__hex {
    width: 100%;
    box-sizing: border-box;
  }

  .nav-menu.nav-menu--overlay .nav-menu__close {
    width: 2.25rem;
    height: 2.25rem;
  }

  .bloom-page {
    --panel-edge-gap: clamp(0.85rem, 4vw, 1.25rem);
    --chrome-actions-reserve: 10.75rem;
    --mobile-tap-size: 2.25rem;
    --mobile-icon-size: 1.05rem;
  }

  .bloom-page:has(.inner-actions) {
    --chrome-actions-reserve: 5.5rem;
  }

  .hero-stage {
    --site-actions-reserve: var(--chrome-actions-reserve);
    min-height: auto;
    height: auto;
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    min-height: var(--hero-mobile-vh, 100svh);
    max-height: var(--hero-mobile-vh, 100svh);
  }

  .site-chrome {
    top: max(0.65rem, env(safe-area-inset-top));
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    max-width: none;
    gap: 0.35rem;
    padding-left: var(--panel-edge-gap);
    padding-right: calc(var(--chrome-actions-reserve) + var(--panel-edge-gap));
  }

  .bloom-page:not(.is-nav-merged) .site-brand {
    position: static;
    grid-column: 1;
    justify-self: start;
    z-index: 2;
    min-height: var(--mobile-tap-size);
    padding: 0.25rem 0.55rem;
    border-right: 0;
    border-radius: 999px;
  }

  .bloom-page.is-nav-merged .site-brand {
    min-height: 0;
    padding: 0.1rem 0.55rem 0.1rem 0.2rem;
  }

  .site-brand .brand-mark {
    width: auto;
    height: auto;
  }

  .site-brand .brand-mark img,
  .site-brand .brand-mark svg {
    width: auto;
    height: var(--brand-logo-height-chrome);
    max-width: min(12rem, 62vw);
  }

  .site-brand .brand-text,
  .bloom-page.is-nav-merged .site-brand .brand-text,
  .bloom-page:not(.is-nav-merged) .site-brand .brand-text {
    display: none;
  }

  .bloom-page.is-nav-merged .site-chrome {
    left: 50%;
    right: auto;
    width: max-content;
    max-width: calc(100vw - 1.25rem);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.3rem 0.5rem 0.3rem 0.35rem;
    overflow: visible;
  }

  .bloom-page:not(.is-nav-merged) .site-nav {
    position: static;
    grid-column: 2;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    left: auto;
    z-index: 1;
    transform: none;
    min-height: var(--mobile-tap-size);
    padding: 0.3rem 0.35rem;
    border-radius: 999px;
    background: var(
      --chrome-glass-fill,
      color-mix(in srgb, var(--panel-tint-color) calc(var(--panel-dim-strength) / 100 * 52%), transparent)
    );
    backdrop-filter: var(--left-glass-backdrop-filter);
    -webkit-backdrop-filter: var(--left-glass-backdrop-filter);
    box-shadow:
      0 calc(var(--left-glass-shadow) * 0.4px) calc(var(--left-glass-shadow) * 1.25px)
        rgba(0, 0, 0, calc(0.12 + var(--left-glass-shadow) * 0.006)),
      inset 0 1px 1px rgba(255, 255, 255, 0.1);
  }

  .bloom-page.is-nav-merged .site-nav {
    grid-column: auto;
    justify-self: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  /* Index hero cluster: mobile-only overrides (structure lives in base scope) */
  .bloom-page:has(.hero-brand__mark) .site-chrome__cluster {
    top: max(0.65rem, env(safe-area-inset-top));
    max-width: calc(100vw - 1.25rem);
  }

  .bloom-page:has(.hero-brand__mark) .site-brand .brand-text,
  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-brand .brand-text,
  .bloom-page:has(.hero-brand__mark):not(.is-nav-merged) .site-brand .brand-text {
    display: none;
  }

  /* Index hero merged on mobile: match other pages' centered pill */
  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome {
    max-width: calc(100vw - 1.25rem);
    padding: 0.3rem 0.5rem 0.3rem 0.35rem;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-brand {
    min-height: 0;
    padding: 0.1rem 0.55rem 0.1rem 0.2rem;
  }

  .bloom-page:has(.hero-brand__mark).is-nav-merged .site-chrome__cluster .site-nav {
    min-height: var(--mobile-tap-size);
    padding: 0.3rem 0.35rem;
  }

  .bloom-page:has(.hero-brand__mark):not(.is-nav-merged) .site-nav__list {
    gap: 0.1rem;
  }

  .site-nav__link {
    justify-content: center;
    width: var(--mobile-tap-size);
    height: var(--mobile-tap-size);
    padding: 0;
  }

  .site-nav__link > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-nav__icon {
    display: block;
    width: var(--mobile-icon-size);
    height: var(--mobile-icon-size);
  }

  .site-nav__caret {
    display: none;
  }

  .site-nav__dropdown {
    left: 0;
    transform: translateY(0.4rem);
  }

  .site-nav__item--has-menu:hover .site-nav__dropdown,
  .site-nav__item--has-menu:focus-within .site-nav__dropdown {
    transform: translateY(0);
  }

  .site-actions {
    position: fixed;
    top: max(0.65rem, env(safe-area-inset-top));
    right: var(--panel-edge-gap);
    min-height: var(--mobile-tap-size);
    padding: 0.25rem 0.3rem;
    gap: 0.1rem;
    z-index: 30;
  }

  .inner-actions {
    top: max(0.65rem, env(safe-area-inset-top));
    right: var(--panel-edge-gap);
    min-height: var(--mobile-tap-size);
    padding: 0.25rem 0.3rem;
  }

  .site-actions__btn,
  .site-actions .menu-pill {
    width: var(--mobile-tap-size);
    height: var(--mobile-tap-size);
  }

  .site-actions__btn svg,
  .site-actions .menu-pill svg {
    width: var(--mobile-icon-size);
    height: var(--mobile-icon-size);
  }

  .split {
    min-height: 0;
    flex: 0 0 auto;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: stretch;
    gap: 0.65rem;
    padding:
      clamp(4.25rem, 10svh, 5.25rem)
      var(--panel-edge-gap)
      0.35rem;
  }

  .split::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.03) 28%,
      rgba(255, 255, 255, 0) 48%
    );
  }

  .email-cta {
    flex: 0 0 auto;
    margin-top: 0.35rem;
    padding:
      clamp(0.65rem, 2vw, 0.85rem)
      var(--panel-edge-gap)
      calc(0.6rem + env(safe-area-inset-bottom));
  }

  .hero-intro > .email-cta {
    margin-top: auto;
  }

  .email-cta__inner {
    gap: 0.5rem;
  }

  .email-cta__title {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.25rem;
  }

  .email-cta__lead {
    font-size: clamp(0.82rem, 3.1vw, 0.95rem);
    line-height: 1.35;
  }

  .hero-copy {
    grid-column: 1;
    max-width: none;
    gap: 0.95rem;
    text-align: left;
  }

  .hero-brand {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .hero-brand__mark {
    width: clamp(3rem, 14vw, 4.25rem);
    height: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-brand__name {
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
    line-height: 1.05;
  }

  .hero-brand__tagline {
    font-size: clamp(0.85rem, 3.8vw, 1.05rem);
  }

  .hero-panel {
    grid-column: 1;
    justify-self: stretch;
  }

  .hero-panel.left-content {
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 1.1rem;
    padding: 0.8rem 0.85rem 0.75rem;
    --lead-inline-pad: 0;
  }

  .left-content {
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 1.1rem;
    padding: 0.8rem 0.85rem 0.75rem;
    --lead-inline-pad: 0;
  }

  .lead-form {
    margin-top: 0;
    gap: 0.4rem;
  }

  .lead-form h1.lead-form__title {
    font-size: clamp(1.2rem, 7cqw, 1.65rem);
    line-height: 1;
  }

  .lead-form__lead {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .lead-form__body {
    gap: 0.42rem;
    overflow: visible;
  }

  .lead-form__field input,
  .lead-form__select-trigger {
    font-size: 0.86rem;
    padding: 0.52rem 0.75rem;
  }

  .lead-form__select-trigger {
    padding-right: 2rem;
  }

  .lead-form__field--comment,
  .lead-form__reason {
    display: none;
  }

  .lead-form__actions {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
  }

  .lead-form__submit {
    min-height: 2.45rem;
    padding: 0.58rem 0.85rem;
    font-size: 0.86rem;
  }

  .bento-showcase {
    padding: 1rem var(--panel-edge-gap) 1.25rem;
  }

  .bento-showcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .bento-showcase__eyebrow {
    margin: 0 0 0.25rem;
    font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--bloom-ink) 55%, transparent);
  }

  .bento-showcase__title {
    margin: 0;
    font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--bloom-ink);
  }

  .bento-showcase__mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.12rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bloom-ink) 8%, white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  .bento-showcase__mode-btn {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: color-mix(in srgb, var(--bloom-ink) 62%, transparent);
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.42rem 0.62rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }

  .bento-showcase__mode-btn.is-active {
    background: #fff;
    color: var(--bloom-ink);
    box-shadow: 0 2px 8px rgba(65, 53, 70, 0.12);
  }

  .bento-showcase__mode-btn:active {
    transform: scale(0.96);
  }

  .bento-showcase--app-grid .bento-showcase__grid {
    aspect-ratio: auto;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 0.75rem;
  }

  .bento-showcase--app-grid .bento-showcase__cell {
    aspect-ratio: 1;
    min-height: 0;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow:
      0 10px 24px rgba(65, 53, 70, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .bento-showcase--app-grid .bento-showcase__cell--a,
  .bento-showcase--app-grid .bento-showcase__cell--b,
  .bento-showcase--app-grid .bento-showcase__cell--c,
  .bento-showcase--app-grid .bento-showcase__cell--d,
  .bento-showcase--app-grid .bento-showcase__cell--e,
  .bento-showcase--app-grid .bento-showcase__cell--f {
    grid-area: auto;
  }

  .bento-showcase--app-grid .bento-showcase__body {
    display: none;
  }

  .bento-showcase--app-grid .bento-showcase__media {
    border-radius: inherit;
  }

  .bento-showcase--app-grid .bento-showcase__img {
    object-fit: contain;
    padding: 0.35rem;
  }

  .bento-showcase--product-list .bento-showcase__grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    aspect-ratio: auto;
    min-height: auto;
  }

  .bento-showcase--product-list .bento-showcase__cell {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 5.25rem;
    padding: 0.65rem 0.75rem 0.65rem 0.65rem;
    aspect-ratio: auto;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 8px 20px rgba(65, 53, 70, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .bento-showcase--product-list .bento-showcase__media {
    position: relative;
    inset: auto;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    flex-shrink: 0;
    background: #fff;
    overflow: hidden;
  }

  .bento-showcase--product-list .bento-showcase__img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
  }

  .bento-showcase--product-list .bento-showcase__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
  }

  .bento-showcase--product-list .bento-showcase__name {
    font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--bloom-ink);
  }

  .bento-showcase--product-list .bento-showcase__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.76rem;
    line-height: 1.35;
    color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
  }

  .bento-showcase--product-list .bento-showcase__cta {
    display: none;
  }

  .bento-showcase--product-list .bento-showcase__cell::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-right: 0.15rem;
    border-right: 2px solid color-mix(in srgb, var(--bloom-ink) 45%, transparent);
    border-top: 2px solid color-mix(in srgb, var(--bloom-ink) 45%, transparent);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .bento-showcase--product-list .bento-showcase__cell:active::after {
    transform: rotate(45deg) translateX(2px);
  }

  .bento-showcase__cell {
    animation: bento-card-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .bento-showcase__cell:nth-child(2) {
    animation-delay: 0.05s;
  }

  .bento-showcase__cell:nth-child(3) {
    animation-delay: 0.1s;
  }

  .bento-showcase__cell:nth-child(4) {
    animation-delay: 0.15s;
  }

  .bento-showcase__cell:nth-child(5) {
    animation-delay: 0.2s;
  }

  .land-section {
    gap: 1.75rem;
    padding: clamp(2.25rem, 10vw, 3.25rem) var(--panel-edge-gap);
  }

  .land-section__title {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .land-section__lead {
    margin-bottom: 1rem;
  }

  .land-section__list {
    margin-bottom: 1.35rem;
  }

  .land-section__visual--grid {
    width: min(100%, 16rem);
    gap: 0.7rem;
  }

  .land-section__visual--grid span {
    border-radius: 1rem;
  }

  .land-section__stats {
    gap: 0.75rem;
  }

  .land-stat {
    padding: 1rem;
  }

  .site-footer__inner {
    padding:
      clamp(2.25rem, 9vw, 3.25rem)
      var(--panel-edge-gap)
      clamp(1.5rem, 6vw, 2.25rem);
  }

  .site-footer__bar {
    padding:
      1rem
      var(--panel-edge-gap)
      calc(1.5rem + env(safe-area-inset-bottom));
  }
}

@keyframes bento-card-in {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    gap: 1.35rem;
  }

  .site-footer__heading {
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 430px) {
  .split-headline {
    font-size: clamp(1.5rem, 7.6vw, 2.1rem);
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 0.72rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-showcase__cell {
    animation: none;
  }
}

/* Disable nav merge animations while the user is actively scrolling. */
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome,
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome__cluster,
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome__cluster::before,
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome__cluster::after,
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome__cluster .site-brand,
body.is-scrolling .bloom-page:has(.hero-brand__mark) .site-chrome__cluster .site-nav {
  transition: none !important;
}

/* ---------- Stub pages (Partners / About) ---------- */
.page-stub {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  isolation: isolate;
  overflow: hidden;
}

.page-stub__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 75% 45%, rgba(58, 122, 90, 0.55), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(20, 40, 32, 0.8), transparent 60%),
    linear-gradient(135deg, #04110c 0%, #0a1f17 55%, #020805 100%);
}

.page-stub__inner {
  max-width: 36rem;
  text-align: center;
  color: #ffffff;
}

.page-stub__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.page-stub__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-stub__lead {
  margin: 0 auto 2rem;
  max-width: 30rem;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-stub__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.page-stub__cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* ---------- Inner pages (Partners / About) ---------- */
.inner-actions {
  --panel-tint-color: #cac6d2;
  --panel-dim-strength: 16;
  --left-glass-shadow: 20;
  --left-glass-backdrop-filter: blur(18px) saturate(132%) contrast(109%);
  --panel-text-color: #413546;
  position: fixed;
  top: 1rem;
  right: clamp(1rem, 5vw, 3rem);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  color: var(--panel-text-color);
}

.inner-page__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(20rem, 56vh, 32rem);
  padding: clamp(7rem, 16vh, 11rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 8vh, 5rem);
  background: var(--bloom-mist);
  color: var(--bloom-ink);
}

.inner-page__hero-inner {
  max-width: 46rem;
}

.inner-page__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bloom-ink) 55%, transparent);
}

.inner-page__title {
  margin: 0 0 1.25rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inner-page__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  color: color-mix(in srgb, var(--bloom-ink) 78%, transparent);
}

.inner-section {
  position: relative;
  z-index: 10;
}

.inner-section--mist {
  background: var(--bloom-mist);
  color: var(--bloom-ink);
}

.inner-section--surface {
  background: linear-gradient(160deg, #d4d0db 0%, #c3bdcd 55%, #b3acbc 100%);
  color: var(--bloom-ink);
}

.inner-section__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.inner-lead-panel__inner {
  display: flex;
  justify-content: center;
}

.inner-lead-panel .left-content {
  width: min(100%, 32rem);
  max-width: 32rem;
  max-height: none;
}

.inner-lead-panel .left-content--inner {
  --panel-tint-color: var(--bloom-surface);
  --panel-text-color: var(--bloom-ink);
  --panel-dim-strength: 0;
  --left-glass-shadow: 0;
  --left-glass-backdrop-filter: none;
  --lead-field-opacity: 100;
  --text-100: var(--bloom-ink);
  --text-80: color-mix(in srgb, var(--bloom-ink) 78%, transparent);
  --text-60: color-mix(in srgb, var(--bloom-ink) 58%, transparent);
  --text-50: color-mix(in srgb, var(--bloom-ink) 48%, transparent);
  --bloom-scrollbar-track: color-mix(in srgb, var(--bloom-ink) 8%, transparent);
  --bloom-scrollbar-thumb: color-mix(in srgb, var(--bloom-ink) 28%, rgba(255, 255, 255, 0.55));
  --bloom-scrollbar-thumb-hover: color-mix(in srgb, var(--brand-primary) 42%, var(--bloom-ink) 58%);
  --bloom-scrollbar-thumb-active: color-mix(in srgb, var(--brand-primary) 58%, var(--bloom-ink) 42%);
}

.inner-lead-panel .left-content--inner.liquid-glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: color-mix(in srgb, var(--bloom-surface) 50%, #ffffff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 40px rgba(65, 53, 70, 0.12);
}

.inner-lead-panel .left-content--inner.liquid-glass::after {
  content: none;
}

.inner-lead-panel .left-content--inner .lead-form__control.liquid-glass {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1.5px solid color-mix(in srgb, var(--bloom-ink) 12%, transparent);
  box-shadow: inset 0 1px 2px rgba(65, 53, 70, 0.05);
}

.inner-lead-panel .left-content--inner .lead-form__control.liquid-glass::before {
  opacity: 0;
}

.inner-lead-panel .left-content--inner .lead-form__control.liquid-glass:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 22%, transparent);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  margin-bottom: 0.35rem;
}

.left-content.liquid-glass > .top-nav {
  z-index: 20;
}

.inner-section__head {
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.inner-section__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.inner-section__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.inner-section__lead {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.6;
  opacity: 0.88;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.feature-card {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--bloom-surface) 50%, #ffffff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 40px rgba(65, 53, 70, 0.12);
}

.feature-card__title {
  margin: 0 0 0.6rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feature-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.82;
}

.feature-card--detail {
  text-align: left;
}

.feature-card__eyebrow {
  margin: 0 0 0.4rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bloom-accent);
}

.feature-card__sub {
  margin: 1.1rem 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.feature-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.feature-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0.82;
}

.feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--bloom-accent);
}

/* ---------- Nodi Ecosystem: connected stage cards ---------- */
.feature-grid--stages {
  --stage-gap: clamp(1rem, 2.5vw, 1.6rem);
  counter-reset: stage;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--stage-gap);
  align-items: stretch;
}

.feature-grid--stages .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    color-mix(in srgb, var(--bloom-surface) 38%, #ffffff) 100%
  );
  border: 1px solid color-mix(in srgb, var(--bloom-ink) 8%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 34px rgba(65, 53, 70, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* Top accent bar */
.feature-grid--stages .feature-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--bloom-accent),
    color-mix(in srgb, var(--bloom-accent) 40%, #7a5cff)
  );
  opacity: 0.9;
}

.feature-grid--stages .feature-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--bloom-accent) 35%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 24px 52px rgba(65, 53, 70, 0.18);
}

/* Numbered stage badge before the eyebrow label */
.feature-grid--stages .feature-card__eyebrow {
  counter-increment: stage;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.95rem;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--bloom-ink) 58%, transparent);
}

.feature-grid--stages .feature-card__eyebrow::before {
  content: counter(stage, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border-radius: 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(
    140deg,
    var(--bloom-accent),
    color-mix(in srgb, var(--bloom-accent) 45%, #6b5cff)
  );
  box-shadow: 0 8px 18px color-mix(in srgb, var(--bloom-accent) 35%, transparent);
}

/* Push the key-areas list to the bottom so cards align */
.feature-grid--stages .feature-card__sub {
  margin-top: 1.25rem;
}

.feature-grid--stages .feature-card__list {
  margin-top: 0.6rem;
}

/* Connector chevrons between stages on wide desktop (single row of 4) */
@media (min-width: 64rem) {
  .feature-grid--stages .feature-card:not(:nth-child(4n))::before {
    content: "";
    position: absolute;
    top: 3rem;
    right: calc(var(--stage-gap) * -0.5);
    width: 0.7rem;
    height: 0.7rem;
    border-top: 2px solid color-mix(in srgb, var(--bloom-accent) 70%, transparent);
    border-right: 2px solid color-mix(in srgb, var(--bloom-accent) 70%, transparent);
    transform: translate(50%, -50%) rotate(45deg);
    z-index: 2;
  }
}

@media (max-width: 64rem) {
  .feature-grid--stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 36rem) {
  .feature-grid--stages {
    grid-template-columns: 1fr;
  }
}

.inner-section__note {
  max-width: 42rem;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.82;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.inner-cta {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.inner-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.inner-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 0;
  background: var(--bloom-ink);
  color: #f8f6fa;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inner-cta__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(65, 53, 70, 0.25);
}

.inner-cta__link {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
}

.inner-cta__link:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .inner-page__hero {
    min-height: clamp(16rem, 48vh, 24rem);
  }
}

/* ---------- Product pages: hero with media background ---------- */
.inner-page__hero--media {
  min-height: clamp(26rem, 68vh, 40rem);
  color: #f6f4fa;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-page__hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(20, 16, 24, 0.82) 0%,
    rgba(31, 25, 36, 0.62) 45%,
    rgba(31, 25, 36, 0.28) 100%
  );
}

.inner-page__hero--media .inner-page__eyebrow {
  color: color-mix(in srgb, #f6f4fa 72%, transparent);
}

.inner-page__hero--media .inner-page__lead {
  color: color-mix(in srgb, #f6f4fa 88%, transparent);
}

.inner-page__hero--telos {
  --hero-bg: url("assets/telos/hero.png");
}

.inner-page__hero--telos + .email-cta--telos-hero .email-cta__copy {
  display: block;
}

@media (min-width: 721px) {
  .inner-page__hero--telos.inner-page__hero--media {
    /* 16:9 image at full width — avoid vertical crop on 27–32" screens */
    min-height: clamp(28rem, 56.25vw, 100svh);
    background-size: cover;
    background-position: center center;
  }

  .inner-page__hero--telos::before {
    display: none;
  }

  .inner-page__hero--telos .inner-page__hero-inner {
    position: relative;
    z-index: 0;
    padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  }

  .inner-page__hero--telos .inner-page__hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 1rem;
    background: linear-gradient(
      135deg,
      rgba(20, 16, 24, 0.9) 0%,
      rgba(31, 25, 36, 0.78) 60%,
      rgba(31, 25, 36, 0.55) 100%
    );
  }
}

@media (max-width: 720px) {
  .inner-page__hero--telos {
    --hero-bg: url("assets/telos/hero-mobile.webp");
    align-items: flex-end;
    min-height: clamp(34rem, 92svh, 42rem);
    padding: clamp(5.5rem, 14vh, 7rem) 0 0;
    background-position: center top;
  }

  .inner-page__hero--telos::before {
    display: none;
  }

  .inner-page__hero--telos .inner-page__hero-inner {
    position: relative;
    z-index: 0;
    align-self: stretch;
    max-width: none;
    width: 100%;
    margin-top: auto;
    padding: clamp(1rem, 4vw, 1.35rem) clamp(1rem, 4vw, 1.5rem)
      max(1.25rem, env(safe-area-inset-bottom));
    box-sizing: border-box;
  }

  .inner-page__hero--telos .inner-page__hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 0;
    background: linear-gradient(
      180deg,
      rgba(20, 16, 24, 0.45) 0%,
      rgba(20, 16, 24, 0.62) 100%
    );
  }

  .inner-page__hero--telos .inner-page__eyebrow,
  .inner-page__hero--telos .inner-page__lead,
  .inner-page__hero--telos .inner-hero__actions {
    display: none;
  }

  .inner-page__hero--telos .inner-page__title {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.05;
  }

  .inner-page__hero--telos + .email-cta--telos-hero {
    padding-top: clamp(2rem, 6vw, 2.75rem);
  }
}

@media (max-width: 420px) {
  .inner-page__hero--telos {
    --hero-bg: url("assets/telos/hero-mobile-400.webp");
  }
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.inner-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inner-hero__btn--solid {
  background: #f6f4fa;
  color: var(--bloom-ink);
}

.inner-hero__btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.inner-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #f6f4fa;
  backdrop-filter: blur(8px);
}

.inner-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ---------- Product pages: image placeholders ---------- */
.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.25rem;
  border: 2px dashed color-mix(in srgb, var(--bloom-ink) 35%, transparent);
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--bloom-ink) 5%, transparent) 0,
      color-mix(in srgb, var(--bloom-ink) 5%, transparent) 12px,
      transparent 12px,
      transparent 24px
    ),
    color-mix(in srgb, var(--bloom-surface) 40%, #ffffff);
  color: color-mix(in srgb, var(--bloom-ink) 60%, transparent);
  overflow: hidden;
}

.media-frame::after {
  content: attr(data-size);
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: color-mix(in srgb, var(--bloom-ink) 14%, #ffffff);
  color: color-mix(in srgb, var(--bloom-ink) 70%, transparent);
}

.media-frame__label {
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

.media-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
  max-width: 56rem;
  margin-inline: auto;
}

.media-frame--card {
  aspect-ratio: 4 / 3;
  max-width: 30rem;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
  max-width: 24rem;
}

.media-frame--photo {
  display: block;
  max-width: 56rem;
  margin-inline: auto;
  border: none;
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--bloom-ink) 8%, #ffffff),
      color-mix(in srgb, var(--bloom-surface) 55%, #ffffff)
    );
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 16px 40px rgba(65, 53, 70, 0.12);
}

.media-frame--photo::after {
  content: none;
}

.media-frame--photo > picture {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.media-frame--photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
}

/* Filled photo slots (wide / card / cover) — ready for final assets */
.media-frame--photo.media-frame--wide,
.media-frame--photo.media-frame--card,
.media-frame--photo.media-frame--square,
.media-frame--photo.media-frame--cover {
  overflow: hidden;
}

.media-frame--photo.media-frame--wide img,
.media-frame--photo.media-frame--card img,
.media-frame--photo.media-frame--square img,
.media-frame--photo.media-frame--cover img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.split-section__media .media-frame--split,
.split-section__media .media-frame--photo {
  max-width: none;
}

.check-list--stack {
  grid-template-columns: 1fr;
  max-width: 36rem;
}

.media-frame--after-tags {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.split-section__body > .inner-section__head {
  text-align: start;
  margin-inline: 0;
  max-width: none;
}

/* ---------- TELOS: intro section ---------- */
.telos-intro {
  --telos-intro-accent: #4f7fd4;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, color-mix(in srgb, var(--telos-intro-accent) 10%, transparent), transparent),
    var(--bloom-mist);
}

.telos-intro__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 3rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.telos-intro__head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.telos-intro__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--telos-intro-accent);
}

.telos-intro__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2b4b;
}

.telos-intro__lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
}

.telos-intro__figure {
  margin: 0;
  width: 100%;
}

.telos-intro__visual {
  position: relative;
  max-width: 58rem;
  margin-inline: auto;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(26, 43, 75, 0.04),
    0 20px 48px rgba(26, 43, 75, 0.1);
}

.telos-intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--telos-intro-accent) 14%, transparent);
  pointer-events: none;
}

.telos-intro__visual picture {
  display: block;
  line-height: 0;
}

.telos-intro__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.telos-intro__footer {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.telos-intro__tags-label {
  margin: 0 0 clamp(0.85rem, 2.5vw, 1.15rem);
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bloom-ink) 55%, transparent);
}

.telos-intro__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.telos-intro__chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, #ffffff 88%, var(--bloom-mist));
  border: 1px solid color-mix(in srgb, var(--telos-intro-accent) 16%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 14px rgba(26, 43, 75, 0.05);
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(0.82rem, 2.8vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #1a2b4b;
  text-align: left;
}

.telos-intro__chip::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--telos-intro-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--telos-intro-accent) 18%, transparent);
}

@media (min-width: 640px) {
  .telos-intro__chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .telos-intro__chip {
    padding: 0.75rem 1.05rem;
    justify-content: center;
    text-align: center;
  }

  .telos-intro__chip::before {
    display: none;
  }
}

@media (min-width: 960px) {
  .telos-intro__chips {
    gap: 0.85rem 1rem;
  }

  .telos-intro__chip {
    font-size: 0.92rem;
  }
}

/* ---------- TELOS: how it works section ---------- */
.telos-how {
  --telos-how-accent: #5c63c7;
  background:
    radial-gradient(ellipse 75% 45% at 15% 0%, color-mix(in srgb, var(--telos-how-accent) 14%, transparent), transparent),
    radial-gradient(ellipse 60% 40% at 95% 100%, color-mix(in srgb, #4f7fd4 10%, transparent), transparent),
    linear-gradient(160deg, #d4d0db 0%, #c3bdcd 55%, #b3acbc 100%);
}

.telos-how__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 3rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.telos-how__head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.telos-how__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--telos-how-accent);
}

.telos-how__title {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2b4b;
}

.telos-how__lead {
  margin: 0;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
}

.telos-how__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.telos-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.telos-how__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
  padding: clamp(1rem, 2.5vw, 1.2rem) clamp(1rem, 2.8vw, 1.35rem);
  border-radius: 1rem;
  background: color-mix(in srgb, #ffffff 72%, transparent);
  border: 1px solid color-mix(in srgb, #ffffff 55%, var(--bloom-ink));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 24px rgba(26, 43, 75, 0.07);
  backdrop-filter: blur(6px);
}

.telos-how__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--telos-how-accent), color-mix(in srgb, var(--telos-how-accent) 75%, #4f7fd4));
  color: #fff;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--telos-how-accent) 35%, transparent);
}

.telos-how__step-title {
  margin: 0.1rem 0 0.35rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a2b4b;
}

.telos-how__step-text {
  margin: 0;
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--bloom-ink) 68%, transparent);
}

.telos-how__figure {
  margin: 0;
  min-width: 0;
}

.telos-how__visual {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(26, 43, 75, 0.04),
    0 20px 48px rgba(26, 43, 75, 0.12);
}

.telos-how__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--telos-how-accent) 16%, transparent);
  pointer-events: none;
}

.telos-how__visual picture {
  display: block;
  line-height: 0;
}

.telos-how__visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 861px) {
  .telos-how__figure {
    position: sticky;
    top: clamp(5rem, 12vh, 7rem);
  }
}

@media (max-width: 860px) {
  .telos-how__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .telos-how__steps {
    order: 3;
  }

  .telos-how__figure {
    order: 2;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }
}

/* ---------- TELOS: audience section ---------- */
.telos-who {
  --telos-who-accent: #4ea3e0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, color-mix(in srgb, var(--telos-who-accent) 12%, transparent), transparent),
    radial-gradient(ellipse 55% 40% at 10% 90%, color-mix(in srgb, #5c63c7 8%, transparent), transparent),
    linear-gradient(160deg, #d4d0db 0%, #c3bdcd 55%, #b3acbc 100%);
}

.telos-who__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.telos-who__head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.telos-who__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--telos-who-accent);
}

.telos-who__title {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2b4b;
}

.telos-who__lead {
  margin: 0;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
}

.telos-who__roles {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.65rem, 2vw, 0.85rem);
  max-width: 54rem;
}

.telos-who__role {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: clamp(0.95rem, 2.5vw, 1.15rem) clamp(1rem, 2.8vw, 1.35rem);
  border-radius: 1rem;
  background: color-mix(in srgb, #ffffff 72%, transparent);
  border: 1px solid color-mix(in srgb, #ffffff 55%, var(--bloom-ink));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 24px rgba(26, 43, 75, 0.07);
  backdrop-filter: blur(6px);
}

.telos-who__role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--telos-who-accent) 14%, #ffffff);
  color: var(--telos-who-accent);
  flex-shrink: 0;
}

.telos-who__role-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.telos-who__role-label {
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #1a2b4b;
}

@media (min-width: 560px) {
  .telos-who__roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .telos-who__roles {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .telos-who__role:nth-child(1),
  .telos-who__role:nth-child(2),
  .telos-who__role:nth-child(3) {
    grid-column: span 2;
  }

  .telos-who__role:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .telos-who__role:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ---------- TELOS: key features section ---------- */
.telos-features {
  --telos-features-accent: #4f7fd4;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, color-mix(in srgb, var(--telos-features-accent) 10%, transparent), transparent),
    var(--bloom-mist);
}

.telos-features__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.telos-features__head {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.telos-features__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--telos-features-accent);
}

.telos-features__title {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a2b4b;
}

.telos-features__lead {
  margin: 0;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
}

.telos-features__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.6rem, 2vw, 0.75rem);
  max-width: 58rem;
}

.telos-features__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.9rem;
  align-items: start;
  padding: clamp(0.85rem, 2.2vw, 1rem) clamp(0.95rem, 2.5vw, 1.15rem);
  border-radius: 0.9rem;
  background: color-mix(in srgb, #ffffff 88%, var(--bloom-mist));
  border: 1px solid color-mix(in srgb, var(--telos-features-accent) 14%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 14px rgba(26, 43, 75, 0.05);
}

.telos-features__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--telos-features-accent) 16%, #ffffff);
  color: var(--telos-features-accent);
  flex-shrink: 0;
}

.telos-features__check svg {
  width: 0.85rem;
  height: 0.85rem;
}

.telos-features__label {
  font-size: clamp(0.88rem, 2.2vw, 0.96rem);
  font-weight: 500;
  line-height: 1.45;
  color: color-mix(in srgb, var(--bloom-ink) 82%, transparent);
}

@media (min-width: 560px) {
  .telos-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .telos-features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---------- TELOS: spotlight blocks (Observe / Analyze / Develop) ---------- */
.telos-spotlight {
  --telos-spotlight-accent: #4f7fd4;
}

.telos-spotlight--observe {
  --telos-spotlight-accent: #4ea3e0;
}

.telos-spotlight--analyze {
  --telos-spotlight-accent: #5c63c7;
}

.telos-spotlight--develop {
  --telos-spotlight-accent: #4f7fd4;
}

.telos-spotlight .inner-section__inner {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.telos-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.telos-spotlight__copy {
  min-width: 0;
}

.telos-spotlight__intro {
  min-width: 0;
}

.telos-spotlight__body {
  min-width: 0;
}

.telos-spotlight__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--telos-spotlight-accent);
}

.telos-spotlight__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  color: #1a2b4b;
}

.telos-spotlight__lead {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  max-width: 34rem;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: color-mix(in srgb, var(--bloom-ink) 72%, transparent);
}

.telos-spotlight__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

.telos-spotlight__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
}

.telos-spotlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--telos-spotlight-accent) 14%, #ffffff);
  color: var(--telos-spotlight-accent);
  flex-shrink: 0;
}

.telos-spotlight__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.telos-spotlight__feature-title {
  margin: 0 0 0.2rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a2b4b;
}

.telos-spotlight__feature-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--bloom-ink) 68%, transparent);
}

.telos-spotlight__visual {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 4px 6px rgba(26, 43, 75, 0.04),
    0 24px 48px rgba(26, 43, 75, 0.1);
}

.telos-spotlight__visual picture {
  display: block;
  line-height: 0;
}

.telos-spotlight__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.telos-spotlight__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 6;
  min-height: clamp(16rem, 42vw, 22rem);
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in srgb, var(--telos-spotlight-accent) 6%, #ffffff) 0,
      color-mix(in srgb, var(--telos-spotlight-accent) 6%, #ffffff) 12px,
      #ffffff 12px,
      #ffffff 24px
    ),
    linear-gradient(160deg, #f8f9fc 0%, #eef1f7 100%);
  border: 2px dashed color-mix(in srgb, var(--telos-spotlight-accent) 28%, transparent);
  box-shadow:
    0 4px 6px rgba(26, 43, 75, 0.04),
    0 16px 32px rgba(26, 43, 75, 0.08);
}

.telos-spotlight__visual-label {
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--telos-spotlight-accent) 55%, var(--bloom-ink));
  opacity: 0.7;
}

@media (min-width: 861px) {
  .telos-spotlight--reverse .telos-spotlight__copy {
    order: 2;
  }

  .telos-spotlight--reverse .telos-spotlight__visual {
    order: 1;
  }

  .telos-spotlight__visual:not(.telos-spotlight__visual--placeholder) {
    aspect-ratio: 5 / 6;
    min-height: 22rem;
  }

  .telos-spotlight__visual:not(.telos-spotlight__visual--placeholder) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .telos-spotlight--analyze .telos-spotlight__visual img,
  .telos-spotlight--observe .telos-spotlight__visual img,
  .telos-spotlight--develop .telos-spotlight__visual img {
    object-position: center center;
  }
}

@media (max-width: 860px) {
  .telos-spotlight__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .telos-spotlight__copy {
    display: contents;
  }

  .telos-spotlight__intro {
    order: 1;
  }

  .telos-spotlight__visual {
    order: 2;
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
  }

  .telos-spotlight__body {
    order: 3;
  }

  .telos-spotlight__title {
    margin-bottom: 0.35rem;
  }

  .telos-spotlight__visual--placeholder {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .telos-spotlight__visual img {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
  }
}

/* ---------- Product pages: two-column split ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.split-section--reverse .split-section__media {
  order: -1;
}

.split-section__title {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.split-section__text {
  margin: 0 0 1.25rem;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-section__media {
    order: 0;
  }
}

/* ---------- Product pages: numbered steps ---------- */
.steps-list {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.steps-list__item {
  counter-increment: steps;
  position: relative;
  padding-left: 3.5rem;
}

.steps-list__item::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bloom-ink);
  color: #f6f4fa;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.steps-list__title {
  margin: 0.2rem 0 0.5rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.steps-list__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.82;
}

/* ---------- Product pages: checklist ---------- */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 0.85rem 1.5rem;
}

.check-list__item {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.98rem;
  line-height: 1.5;
  opacity: 0.88;
}

.check-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--bloom-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--bloom-accent) 22%, transparent);
}

/* ---------- Product pages: tag chips ---------- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  max-width: 52rem;
}

.tag-row__chip {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bloom-surface) 55%, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Product pages: final CTA band ---------- */
.inner-cta-band {
  position: relative;
  z-index: 10;
  background:
    radial-gradient(circle at 80% 0%, rgba(94, 184, 255, 0.12), transparent 45%),
    linear-gradient(160deg, #2f2835 0%, #1e1924 55%, #141018 100%);
  color: #f6f4fa;
}

.inner-cta-band .inner-section__inner {
  text-align: center;
}

.inner-cta-band .inner-section__title {
  margin-bottom: 1rem;
}

.inner-cta-band .inner-section__lead {
  max-width: 42rem;
  margin: 0 auto;
  opacity: 0.85;
}

.inner-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.inner-cta-band .inner-hero__btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
}

/* ---------- Site footer ---------- */
.site-footer {
  position: relative;
  z-index: 10;
  background:
    radial-gradient(circle at 80% 0%, rgba(94, 184, 255, 0.08), transparent 45%),
    linear-gradient(180deg, #2f2835 0%, #1e1924 55%, #141018 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 20rem;
}

.site-footer__logo {
  align-self: flex-start;
  color: #f8f6fa;
  padding: 0;
  min-height: 0;
}

.left-content .brand-mark svg,
.left-content .brand-mark img {
  height: var(--brand-logo-height-hero);
  max-width: min(17rem, 58vw);
}

.site-footer__logo .brand-mark {
  width: auto;
  height: auto;
}

.site-footer__logo .brand-mark img {
  width: auto;
  height: var(--brand-logo-height-footer);
  max-width: min(14rem, 48vw);
}

.site-footer__logo .brand-text {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-family: "Rajdhani", "Segoe UI", ui-sans-serif, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__list a,
.site-footer__contact-line a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__contact-line a:hover {
  color: var(--bloom-accent);
}

.site-footer__contact-line {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 6vw, 5rem) clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.bloom-page .site-footer a:focus-visible {
  outline: 2px solid var(--bloom-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

/* Legal pages (Privacy Policy, Terms of Use) */
.legal-document {
  max-width: 46rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.88);
}

.legal-document h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display, "Poppins", sans-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.95);
}

.legal-document h3 {
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-display, "Poppins", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(15, 23, 42, 0.92);
}

.legal-document p,
.legal-document ul {
  margin: 0 0 1rem;
}

.legal-document ul {
  padding-left: 1.35rem;
}

.legal-document li {
  margin-bottom: 0.35rem;
}

.legal-document li ul {
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}

.legal-document a {
  color: var(--bloom-accent, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-document a:hover {
  color: #1d4ed8;
}

.legal-document__meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.65);
}

.lead-form__consent {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(15, 23, 42, 0.55);
}

.lead-form__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-cta .lead-form__consent {
  color: rgba(255, 255, 255, 0.9);
}

.email-cta .lead-form__consent a {
  color: #fff;
}

/* Compact band forms: consent sits below the form row */
.lead-form__actions .lead-form__consent {
  margin-top: 0.55rem;
  padding: 0 0.25rem;
  font-size: 0.65rem;
  line-height: 1.35;
  text-align: center;
  color: rgba(15, 23, 42, 0.52);
}

@media (max-width: 560px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* US strategy presentation — tables + Texas ISD map */
.strategy-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(62, 65, 147, 0.12);
  -webkit-overflow-scrolling: touch;
}

.strategy-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--bloom-ink);
}

.strategy-table th,
.strategy-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(65, 53, 70, 0.1);
}

.strategy-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(65, 53, 70, 0.62);
  background: rgba(243, 240, 245, 0.9);
}

.strategy-table tbody tr:last-child td {
  border-bottom: none;
}

.strategy-table tbody tr:hover td {
  background: rgba(22, 192, 215, 0.06);
}

.tx-map {
  margin-top: 0.5rem;
}

.tx-map__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tx-map__card {
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(22, 192, 215, 0.12), transparent 62%),
    radial-gradient(ellipse 80% 60% at 15% 10%, rgba(62, 65, 147, 0.35), transparent 55%),
    linear-gradient(165deg, #14162e 0%, #23264a 48%, #1a3340 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  min-height: 28rem;
}

.tx-map__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  overflow: hidden;
}

.tx-map__pan {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0.5rem 0.35rem 0.75rem;
}

.tx-map__svg {
  width: 100%;
  max-width: 52rem;
  height: auto;
  max-height: min(82vh, 40rem);
  display: block;
}

.tx-map__state {
  fill: rgba(32, 40, 72, 0.94);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 2.4;
  stroke-linejoin: round;
  pointer-events: none;
}

.tx-map__idle {
  stroke: none;
  opacity: 0.95;
}

.tx-map__idle-label {
  fill: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  pointer-events: none;
}

.tx-map__legend {
  margin: 0 1rem 1rem;
  padding: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.tx-map__region {
  cursor: pointer;
  outline: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
  stroke-linejoin: round;
  paint-order: stroke fill;
  opacity: 1;
  transition: opacity 0.2s ease, stroke 0.15s ease, stroke-width 0.15s ease, filter 0.15s ease;
  animation: txRegionIn 0.5s ease both;
}

.tx-map__region:nth-child(1) { animation-delay: 0.03s; }
.tx-map__region:nth-child(2) { animation-delay: 0.06s; }
.tx-map__region:nth-child(3) { animation-delay: 0.09s; }
.tx-map__region:nth-child(4) { animation-delay: 0.12s; }
.tx-map__region:nth-child(5) { animation-delay: 0.15s; }
.tx-map__region:nth-child(6) { animation-delay: 0.18s; }
.tx-map__region:nth-child(7) { animation-delay: 0.21s; }
.tx-map__region:nth-child(8) { animation-delay: 0.24s; }
.tx-map__region:nth-child(9) { animation-delay: 0.27s; }
.tx-map__region:nth-child(10) { animation-delay: 0.3s; }
.tx-map__region:nth-child(11) { animation-delay: 0.33s; }

@keyframes txRegionIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tx-map.is-map-ready .tx-map__region {
  animation: none;
}

.tx-map.is-dimmed-siblings.is-map-ready .tx-map__region:not(.is-active):not(.is-hover) {
  opacity: 0.72;
}

.tx-map.is-dimmed-siblings.is-map-ready .tx-map__region.is-active,
.tx-map.is-dimmed-siblings.is-map-ready .tx-map__region.is-hover {
  opacity: 1;
}

.tx-map__region:hover,
.tx-map__region.is-hover,
.tx-map__region:focus-visible {
  stroke: rgba(251, 188, 27, 0.85);
  stroke-width: 2.4;
  filter: brightness(1.12);
}

.tx-map__region.is-active {
  stroke: #fbbc1b;
  stroke-width: 2.8;
  filter: brightness(1.18);
  opacity: 1;
}

.tx-map__label {
  fill: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-weight: 600;
  pointer-events: none;
  paint-order: stroke fill;
  stroke: rgba(12, 14, 32, 0.72);
  stroke-width: 3.5px;
  transition: fill 0.15s ease, opacity 0.2s ease, font-size 0.15s ease;
}

.tx-map__label--dfw {
  fill: rgba(255, 255, 255, 0.82);
  stroke-width: 2.8px;
}

.tx-map.is-dimmed-siblings.is-map-ready .tx-map__label:not(.is-active):not(.is-hover) {
  opacity: 0.55;
}

.tx-map__label.is-hover,
.tx-map__label.is-active {
  fill: #fff;
  opacity: 1;
  stroke-width: 4px;
}

.tx-map__label--dfw.is-hover,
.tx-map__label--dfw.is-active {
  font-size: 12px;
  stroke-width: 3.5px;
}

@media (prefers-reduced-motion: reduce) {
  .tx-map__region {
    animation: none;
    opacity: 1;
  }
}

.tx-map__side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.tx-map__panel {
  padding: 1.15rem 1.25rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(62, 65, 147, 0.12);
  color: var(--bloom-ink);
}

.tx-map__panel-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(65, 53, 70, 0.55);
}

.tx-map__panel-name {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.tx-map__panel-meta {
  margin: 0 0 0.85rem;
  display: grid;
  gap: 0.65rem;
}

.tx-map__panel-meta dt {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(65, 53, 70, 0.5);
}

.tx-map__panel-meta dd {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.tx-map__panel-meta [data-tx-panel-portal] a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.tx-map__panel-meta [data-tx-panel-portal] a:hover {
  color: var(--brand-blue);
}

.tx-map__portal-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.2rem;
}

.tx-map__portal-list li {
  margin: 0;
  padding: 0;
}

.tx-map__schools-total {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
}

.tx-map__schools-list {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.tx-map__schools-list li {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(65, 53, 70, 0.78);
}

.tx-map__panel-schools-note {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(65, 53, 70, 0.5);
}

.tx-map__panel-practice {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(65, 53, 70, 0.82);
}

.tx-map__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  max-height: 18rem;
  overflow-y: auto;
}

.tx-map__list button {
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(62, 65, 147, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--bloom-ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tx-map__list button:hover,
.tx-map__list button:focus-visible {
  border-color: rgba(62, 65, 147, 0.35);
  background: rgba(255, 255, 255, 0.95);
  outline: none;
}

.tx-map__list button.is-active {
  background: color-mix(in srgb, var(--brand-primary) 88%, black);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 960px) {
  .tx-map__grid {
    grid-template-columns: 1fr;
  }

  .tx-map__card,
  .tx-map__stage {
    min-height: 24rem;
  }

  .tx-map__list {
    max-height: none;
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }
}

@media (max-width: 560px) {
  .tx-map__label {
    font-size: 10px;
    stroke-width: 3px;
  }

  .strategy-table {
    font-size: 0.85rem;
  }
}

/* Accurate Texas ISD locator + geographic lenses */
.tx-map__grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(17rem, 0.8fr);
  gap: 1.35rem;
  align-items: start;
}

.tx-map__card {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 76% 22%, rgba(32, 196, 216, 0.13), transparent 30%),
    radial-gradient(circle at 12% 8%, rgba(100, 106, 204, 0.26), transparent 42%),
    linear-gradient(160deg, #121a31 0%, #17213b 52%, #152c39 100%);
  box-shadow: 0 24px 60px rgba(22, 24, 54, 0.22);
}

.tx-map__stage {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 1rem 1rem 0;
  overflow: visible;
}

.tx-map__map-head,
.tx-map__lens-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.tx-map__map-head {
  padding: 0.15rem 0.25rem 0.85rem;
  color: #fff;
}

.tx-map__map-kicker {
  margin: 0 0 0.18rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(204, 231, 242, 0.58);
}

.tx-map__map-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
}

.tx-map__source-badge {
  flex: 0 0 auto;
  padding: 0.38rem 0.6rem;
  border: 1px solid rgba(142, 207, 224, 0.24);
  border-radius: 999px;
  background: rgba(9, 15, 33, 0.34);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: rgba(224, 242, 248, 0.76);
  white-space: nowrap;
}

.tx-map__viewport {
  position: relative;
  isolation: isolate;
}

.tx-map__zoom-controls {
  position: absolute;
  z-index: 5;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, 2.45rem) auto;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid rgba(164, 205, 224, 0.2);
  border-radius: 0.85rem;
  background: rgba(15, 26, 49, 0.9);
  box-shadow: 0 12px 30px rgba(4, 9, 23, 0.28);
  backdrop-filter: blur(10px);
}

.tx-map__zoom-controls button {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(169, 203, 222, 0.18);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.tx-map__zoom-controls button:hover:not(:disabled) {
  border-color: rgba(32, 196, 216, 0.72);
  background: rgba(32, 196, 216, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.tx-map__zoom-controls button:focus-visible {
  border-color: #fbbc1b;
  outline: 2px solid rgba(251, 188, 27, 0.38);
  outline-offset: 2px;
}

.tx-map__zoom-controls button:disabled {
  opacity: 0.34;
  cursor: default;
}

.tx-map__zoom-status {
  min-width: 3.35rem;
  padding: 0 0.32rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: rgba(224, 242, 248, 0.78);
}

.tx-map__viewport-hint {
  position: absolute;
  z-index: 3;
  left: 0.85rem;
  bottom: 0.85rem;
  max-width: calc(100% - 1.7rem);
  margin: 0;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(164, 205, 224, 0.16);
  border-radius: 999px;
  background: rgba(10, 16, 34, 0.8);
  box-shadow: 0 8px 22px rgba(4, 9, 23, 0.2);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(224, 242, 248, 0.7);
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 0.16s ease;
}

.tx-map.is-panning .tx-map__viewport-hint {
  opacity: 0;
}

.tx-map__pan {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.35rem;
  border: 1px solid rgba(169, 203, 222, 0.11);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 70% 50%, rgba(32, 196, 216, 0.09), transparent 38%),
    rgba(8, 14, 31, 0.22);
  overflow: hidden;
}

.tx-map__svg {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  display: block;
  aspect-ratio: 1000 / 780;
  outline: none;
  cursor: default;
  touch-action: pan-y;
  user-select: none;
}

.tx-map__svg:focus-visible {
  border-radius: 0.8rem;
  outline: 2px solid #fbbc1b;
  outline-offset: -3px;
}

.tx-map.is-zoomed .tx-map__svg {
  cursor: grab;
  touch-action: none;
}

.tx-map.is-panning .tx-map__svg {
  cursor: grabbing;
}

.tx-map__grid-pattern {
  pointer-events: none;
}

.tx-map__state {
  fill: rgba(31, 43, 73, 0.94);
  stroke: rgba(173, 199, 220, 0.62);
  stroke-width: 2;
  stroke-linejoin: round;
  pointer-events: none;
}

.tx-map__region,
.tx-map__inset-region {
  cursor: pointer;
  outline: none;
  fill: rgba(134, 166, 200, 0.5);
  stroke: rgba(216, 234, 244, 0.88);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
  opacity: 0.82;
  transition: fill 0.18s ease, opacity 0.18s ease, stroke 0.18s ease, filter 0.18s ease;
}

.tx-map__svg .tx-map__region {
  fill: rgba(134, 166, 200, 0.64);
  stroke: rgba(232, 245, 250, 0.98);
  stroke-width: 2;
  opacity: 0.96;
}

.tx-map.is-detail-view #map-hot .tx-map__grid-pattern {
  opacity: 0.28;
}

.tx-map__region:hover,
.tx-map__region.is-hover,
.tx-map__region:focus-visible,
.tx-map__inset-region:hover,
.tx-map__inset-region.is-hover,
.tx-map__inset-region:focus-visible {
  fill: rgba(32, 196, 216, 0.72);
  stroke: #fbbc1b;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 7px rgba(32, 196, 216, 0.55));
  opacity: 1;
}

.tx-map__region.is-active,
.tx-map__inset-region.is-active {
  fill: #20c4d8;
  stroke: #fbbc1b;
  stroke-width: 2.65;
  filter: drop-shadow(0 0 9px rgba(32, 196, 216, 0.62));
  opacity: 1;
}

.tx-map.is-dimmed-siblings.is-map-ready .tx-map__region:not(.is-active):not(.is-hover),
.tx-map.is-dimmed-siblings.is-map-ready .tx-map__inset-region:not(.is-active):not(.is-hover) {
  opacity: 0.48;
}

.tx-map__marker {
  cursor: pointer;
  outline: none;
  color: #86a6c8;
  transition: opacity 0.16s ease;
}

.tx-map.is-detail-view #map-hot .tx-map__marker {
  opacity: 0;
  pointer-events: none;
}

.tx-map__marker-hit {
  fill: transparent;
}

.tx-map__marker-line,
.tx-map__inset-label-line {
  stroke: rgba(164, 196, 218, 0.56);
  stroke-width: 1.25;
  stroke-dasharray: 3 4;
  transition: stroke 0.18s ease;
}

.tx-map__marker-ring {
  fill: rgba(15, 26, 50, 0.92);
  stroke: currentColor;
  stroke-width: 2;
  transition: fill 0.18s ease, stroke 0.18s ease, transform 0.18s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.tx-map__marker-dot {
  fill: currentColor;
  transition: fill 0.18s ease;
}

.tx-map__marker:hover,
.tx-map__marker.is-hover,
.tx-map__marker:focus-visible,
.tx-map__marker.is-active {
  color: #20c4d8;
}

.tx-map__marker:hover .tx-map__marker-ring,
.tx-map__marker.is-hover .tx-map__marker-ring,
.tx-map__marker:focus-visible .tx-map__marker-ring,
.tx-map__marker.is-active .tx-map__marker-ring {
  fill: rgba(20, 52, 69, 0.96);
  stroke: #fbbc1b;
  transform: scale(1.16);
}

.tx-map__marker:hover .tx-map__marker-line,
.tx-map__marker.is-hover .tx-map__marker-line,
.tx-map__marker:focus-visible .tx-map__marker-line,
.tx-map__marker.is-active .tx-map__marker-line {
  stroke: rgba(251, 188, 27, 0.9);
}

.tx-map__label,
.tx-map__marker-label {
  fill: rgba(239, 247, 251, 0.9);
  stroke: rgba(10, 16, 34, 0.92);
  stroke-width: 4px;
  paint-order: stroke fill;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  transition: fill 0.18s ease, opacity 0.18s ease;
}

.tx-map__label.is-active,
.tx-map__label.is-hover,
.tx-map__marker.is-active .tx-map__marker-label,
.tx-map__marker.is-hover .tx-map__marker-label {
  fill: #fff;
  opacity: 1;
}

.tx-map__lenses {
  margin: 1rem;
  border: 1px solid rgba(169, 203, 222, 0.14);
  border-radius: 1rem;
  background: rgba(8, 14, 31, 0.38);
  overflow: hidden;
}

.tx-map__lens-head {
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(169, 203, 222, 0.1);
}

.tx-map__lens-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(222, 239, 247, 0.62);
}

.tx-map__lens-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.tx-map__lens-tabs button {
  min-height: 2rem;
  margin: 0;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(169, 203, 222, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(232, 244, 249, 0.74);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.tx-map__lens-tabs button:hover,
.tx-map__lens-tabs button:focus-visible {
  border-color: rgba(32, 196, 216, 0.6);
  color: #fff;
  outline: none;
}

.tx-map__lens-tabs button.is-active {
  border-color: rgba(32, 196, 216, 0.72);
  background: rgba(32, 196, 216, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 196, 216, 0.12);
}

.tx-map__lens-panel[hidden] {
  display: none;
}

.tx-map__lens-panel {
  padding: 0.65rem;
}

.tx-map__lens-panel--notice {
  min-height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.25rem;
  color: rgba(236, 247, 251, 0.86);
  text-align: left;
}

.tx-map__lens-panel--notice[hidden] {
  display: none;
}

.tx-map__lens-panel--notice strong {
  display: block;
  margin-bottom: 0.18rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.tx-map__lens-panel--notice p {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(222, 239, 247, 0.6);
}

.tx-map__notice-marker {
  width: 1.1rem;
  height: 1.1rem;
  border: 0.23rem solid #20c4d8;
  border-radius: 50%;
  box-shadow: 0 0 0 0.18rem rgba(251, 188, 27, 0.8), 0 0 1rem rgba(32, 196, 216, 0.5);
}

.tx-map__inset-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
}

.tx-map__inset-backdrop {
  fill: rgba(15, 26, 49, 0.76);
  stroke: rgba(169, 203, 222, 0.1);
  stroke-width: 1;
}

.tx-map__inset-region {
  fill: rgba(134, 166, 200, 0.58);
  stroke-width: 1.7;
}

.tx-map__inset-label {
  font-size: 20px;
  stroke-width: 5px;
}

.tx-map__legend {
  margin: 0;
  padding: 0 1.1rem 1.15rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(226, 240, 247, 0.58);
}

.tx-map__side {
  align-self: start;
  gap: 0.75rem;
}

.tx-map__panel {
  padding: 1.25rem 1.3rem 1.35rem;
  border-color: rgba(62, 65, 147, 0.14);
  background: rgba(248, 247, 251, 0.92);
  box-shadow: 0 18px 45px rgba(59, 50, 76, 0.1);
}

.tx-map__panel-name {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.025em;
}

.tx-map__list {
  max-height: none;
  overflow: visible;
  gap: 0.45rem;
}

.tx-map__list button {
  min-height: 2.65rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
}

.tx-map__list button.is-active {
  background: #3e4193;
  box-shadow: 0 8px 18px rgba(62, 65, 147, 0.2);
}

@media (max-width: 1100px) {
  .tx-map__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.82fr);
  }

  .tx-map__marker-label {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .tx-map__grid {
    grid-template-columns: 1fr;
  }

  .tx-map__card,
  .tx-map__stage {
    min-height: 0;
  }

  .tx-map__side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .tx-map__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .tx-map__side {
    display: flex;
  }

  .tx-map__map-head,
  .tx-map__lens-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tx-map__lens-tabs {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .tx-map__stage {
    padding: 0.75rem 0.75rem 0;
  }

  .tx-map__map-head {
    padding-bottom: 0.65rem;
  }

  .tx-map__pan {
    padding: 0.15rem;
  }

  .tx-map__zoom-controls {
    top: 0.5rem;
    right: 0.5rem;
    grid-template-columns: repeat(3, 2.55rem) auto;
    padding: 0.28rem;
  }

  .tx-map__zoom-controls button {
    width: 2.55rem;
    height: 2.55rem;
  }

  .tx-map__zoom-status {
    min-width: 2.85rem;
    padding: 0 0.18rem;
    font-size: 0.62rem;
  }

  .tx-map__viewport-hint {
    left: 0.5rem;
    bottom: 0.5rem;
    max-width: calc(100% - 1rem);
    padding: 0.34rem 0.5rem;
    font-size: 0;
  }

  .tx-map__viewport-hint::after {
    content: "+/− — масштаб · drag — обзор";
    font-size: 0.61rem;
  }

  .tx-map__marker-line,
  .tx-map__marker-label {
    display: none;
  }

  .tx-map__marker-ring {
    stroke-width: 3;
  }

  .tx-map__lenses {
    margin: 0.75rem;
  }

  .tx-map__lens-head {
    padding: 0.75rem;
  }

  .tx-map__lens-tabs button {
    flex: 1 1 auto;
    text-align: center;
  }

  .tx-map__inset-label {
    font-size: 23px;
  }

  .tx-map__legend {
    padding: 0 0.85rem 0.95rem;
  }

  .tx-map__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-map__list button {
    min-height: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tx-map__region,
  .tx-map__inset-region,
  .tx-map__marker,
  .tx-map__marker-ring,
  .tx-map__lens-tabs button,
  .tx-map__zoom-controls button,
  .tx-map__viewport-hint {
    transition: none;
  }
}

/* Admin-gated US strategy presentation */
body.admin-strategy:not(.is-admin-authed) {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 0% 0%, #141823 0%, #0f1115 55%);
}

body.admin-strategy:not(.is-admin-authed) #admin-strategy-content {
  display: none !important;
  pointer-events: none;
}

body.admin-strategy:not(.is-admin-authed) .admin__login {
  position: relative;
  z-index: 200;
}

body.admin-strategy:not(.is-admin-authed) .admin__login a {
  color: #4f8cff;
}

.admin-strategy__bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 17, 21, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.admin-strategy__bar .admin__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
