/* BrandBased landing — futuristic minimal, aligned with Brand Console tokens */

:root {
  --bb-bg: #050508;
  --bb-bg-elevated: #0d0d12;
  --bb-blue: #0a3fff;
  --bb-purple: #635bff;
  --bb-accent: #f55f0a;
  --bb-text: #f5f5f7;
  --bb-muted: rgba(245, 245, 247, 0.58);
  --bb-border: rgba(255, 255, 255, 0.08);
  --bb-glass: rgba(255, 255, 255, 0.04);
  --bb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bb-nav-h: 72px;
  --bb-max: 1120px;
  --bb-pad: clamp(1.25rem, 4vw, 2.5rem);
  --bb-pad-hero-right: clamp(1.1rem, 2.2vw, 1.925rem);
  --bb-hero-wide-max: calc(var(--bb-max) * 1.3);
  --bb-hero-visual-shift-left: 200px;
  --bb-land-gutter: var(--bb-pad);
  --bb-land-bp-desktop: 1200px;
  --bb-land-bp-pin-desktop: 1300px;
  --bb-z-intro: 10050;
  --bb-z-skip: 10001;
  --bb-z-nav: 10000;
  --bb-z-demo-fs-control: 9999;
  --bb-z-demo-fs: 9998;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

html.bb-land-no-smooth {
  scroll-behavior: auto;
}

html.bb-land-scroll-home {
  scroll-behavior: auto !important;
}

body.bb-land {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bb-text);
  background: var(--bb-bg);
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}

#main {
  overflow-x: clip;
  max-width: 100%;
}

.bb-land-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: var(--bb-z-skip);
  padding: 0.75rem 1rem;
  background: var(--bb-purple);
  color: #fff;
}

.bb-land-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Ambient — theme videos from backgrounds/ */
.bb-land-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bb-bg);
}

.bb-land-video-bg {
  position: absolute;
  inset: 0;
}

.bb-land-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s var(--bb-ease), transform 8s linear;
  will-change: opacity, transform;
}

.bb-land-bg-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.bb-land-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, transparent 0%, rgba(5, 5, 8, 0.55) 70%, rgba(5, 5, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.35) 0%, rgba(5, 5, 8, 0.5) 45%, rgba(5, 5, 8, 0.88) 100%);
}

/* Nav */
.bb-land-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--bb-z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--bb-nav-h);
  padding: 0 var(--bb-land-gutter);
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--bb-border);
}

.bb-land-nav__brand {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.bb-land-nav__brand:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.bb-land-nav__brand img {
  display: block;
  height: 22px;
  width: auto;
}

.bb-land-nav__links {
  display: none;
  gap: 2rem;
}

.bb-land-nav__links a {
  color: var(--bb-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}

.bb-land-nav__links a:hover {
  color: var(--bb-text);
}

.bb-land-nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bb-purple), var(--bb-blue));
  border: none;
  box-shadow: 0 8px 32px rgba(99, 91, 255, 0.35);
  transition: transform 0.25s var(--bb-ease), box-shadow 0.25s;
}

.bb-land-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.45);
}

@media (min-width: 768px) {
  .bb-land-nav__links {
    display: flex;
  }
}

/* Mobile header — fixed 2-row grid so items never shift during page motion */
@media (max-width: 767px) {
  :root {
    --bb-nav-mobile-row-top: 2.5rem;
    --bb-nav-mobile-row-pills: 60px;
    --bb-nav-mobile-pad-top: max(0.5rem, env(safe-area-inset-top, 0px));
    --bb-nav-mobile-black-h: 60px;
    --bb-nav-h: calc(var(--bb-nav-mobile-black-h) + 10px + var(--bb-nav-mobile-row-pills));
  }

  .bb-land-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: var(--bb-nav-mobile-row-top) var(--bb-nav-mobile-row-pills);
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: var(--bb-nav-h);
    min-height: var(--bb-nav-h);
    max-height: var(--bb-nav-h);
    padding:
      var(--bb-nav-mobile-pad-top)
      var(--bb-land-gutter)
      0;
    overflow: visible;
    transform: none;
    isolation: isolate;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Black strip — logo + CTA row only */
  .bb-land-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    height: 60px;
    background: rgb(5, 5, 8);
    border-bottom: 1px solid var(--bb-border);
    pointer-events: none;
  }

  .bb-land-nav__brand {
    position: relative;
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    min-width: 0;
    transform: none;
  }

  .bb-land-nav__brand img {
    height: 20px;
    width: auto;
    display: block;
  }

  .bb-land-nav__cta {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    flex: none;
    font-size: 0.72rem;
    padding: 0.48rem 0.72rem;
    white-space: nowrap;
    transition: none;
    transform: none;
  }

  /* Glass tray — nav pills row only */
  .bb-land-nav__links {
    position: relative;
    z-index: 1;
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    box-sizing: border-box;
    width: calc(100% + 2 * var(--bb-land-gutter));
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    align-items: center;
    align-self: stretch;
    margin: 10px calc(-1 * var(--bb-land-gutter)) 0;
    padding: 0 var(--bb-land-gutter);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transform: none;
  }

  .bb-land-nav__links::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 50%),
      rgba(12, 12, 18, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(1.35);
    -webkit-backdrop-filter: blur(20px) saturate(1.35);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(0, 0, 0, 0.28);
    pointer-events: none;
  }

  .bb-land-nav__links a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    align-self: center;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--bb-text);
    padding: calc(0.35rem + 3px) 0.3rem;
    border-radius: 999px;
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%),
      rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: none;
    transform: none;
    animation: none;
    will-change: auto;
  }

  .bb-land-nav__links a:hover,
  .bb-land-nav__links a:focus-visible {
    color: var(--bb-text);
    background:
      linear-gradient(165deg, rgba(99, 91, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%),
      rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 91, 255, 0.42);
  }
}

/* Section 1 (hero) — extra breathing room on stacked/mobile layout */
@media (max-width: 1199px) {
  .bb-land-hero {
    padding-top: calc(var(--bb-nav-h) + 2.5rem);
    padding-left: clamp(1.35rem, 5vw, 2rem);
    padding-right: clamp(1.35rem, 5vw, 2rem);
    padding-bottom: clamp(4rem, 10vw, 5rem);
    gap: clamp(2.75rem, 8vw, 3.5rem);
  }

  .bb-land-hero__copy {
    padding-inline: 0.15rem;
  }

  .bb-land-hero__actions {
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .bb-land-hero {
    padding-top: calc(var(--bb-nav-h) + 1.75rem);
    padding-bottom: 4.25rem;
    gap: 2.85rem;
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
    isolation: isolate;
  }

  .bb-land-hero__glyph,
  .bb-land-hero__glyph-stage {
    overflow: hidden;
    max-width: 100%;
  }

  .bb-land-hero__visual {
    overflow: visible;
    min-height: min(72vh, 480px);
    padding-top: 0.35rem;
    padding-bottom: clamp(1.5rem, 5vw, 2.25rem);
    gap: clamp(1.35rem, 4vw, 1.75rem);
    max-width: 100%;
  }

  .bb-land-hero__thought-bubble {
    max-width: min(100%, 340px);
    margin-top: -6%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0 clamp(1rem, 3.5vw, 1.5rem);
    overflow: visible;
  }

  .bb-land-hero__thought-frame {
    overflow: visible;
  }

  .bb-land-hero__thought-ring {
    width: clamp(140px, 42vw, 196px);
    height: clamp(140px, 42vw, 196px);
  }

  .bb-land-hero__thought-aura {
    inset: -8%;
  }

  .bb-land-hero__thought-aura::before {
    inset: -8%;
  }

  .bb-land-hero__thought-aura::after {
    inset: -14%;
    animation: none;
  }

  .bb-land-hero__thought-aura::before,
  .bb-land-hero__thought-aura::after {
    animation: none;
  }

  .bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-float {
    animation: bb-land-breathe-mobile 5.6s ease-in-out infinite;
  }

  .bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-glow {
    animation: bb-land-glow-breathe-mobile 5.6s ease-in-out infinite;
  }

  .bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-ring:not(.bb-land-hero__glyph-ring--outer) {
    animation: none;
  }

  .bb-land-hero__copy {
    text-align: center;
  }

  .bb-land-hero__title {
    margin-bottom: 0.35rem;
  }

  .bb-land-hero__lede {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.25rem;
  }

  .bb-land-hero__actions {
    justify-content: center;
  }
}

@keyframes bb-land-breathe-mobile {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.08) translateY(-12px); }
}

@keyframes bb-land-glow-breathe-mobile {
  0%, 100% { transform: translateZ(-60px) scale(1); opacity: 0.72; }
  50% { transform: translateZ(-60px) scale(1.22); opacity: 1; }
}

@keyframes bb-land-thought-float-mobile {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -16px); }
}

/* Typography utilities */
.bb-land-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: clamp(0.14em, 0.6vw, 0.32em);
  text-transform: uppercase;
  color: var(--bb-purple);
  margin: 0 0 1rem;
  display: block;
  width: 100%;
}

.bb-land-inline-b {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin: 0 0.15em;
  vertical-align: -0.15em;
}

.bb-land-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--bb-ease), box-shadow 0.25s, background 0.25s;
}

.bb-land-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bb-purple), var(--bb-blue));
  box-shadow: 0 8px 32px rgba(99, 91, 255, 0.35);
}

.bb-land-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.45);
}

.bb-land-btn--ghost {
  color: var(--bb-text);
  border: 1px solid var(--bb-border);
  background: transparent;
}

.bb-land-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bb-glass);
}

/* Hero */
.bb-land-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: calc(var(--bb-nav-h) + 2rem) var(--bb-pad-hero-right) 4rem var(--bb-pad);
  max-width: var(--bb-max);
  margin: 0 auto;
  gap: 3rem;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .bb-land-hero {
    padding-left: var(--bb-land-gutter);
    padding-right: var(--bb-pad-hero-right);
  }
}

@media (min-width: 1200px) {
  .bb-land-hero {
    grid-template-columns: minmax(0, 2.064fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-right: var(--bb-pad-hero-right);
    overflow: visible;
    align-items: center;
  }

  .bb-land-hero__lede {
    max-width: 71.25em;
  }
}

@media (min-width: 1441px) and (max-width: 1599px) {
  .bb-land-hero {
    padding-left: var(--bb-pad);
    padding-right: var(--bb-pad-hero-right);
  }
}

.bb-land-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: min(72vh, 420px);
  order: -1;
}

.bb-land-hero__glyph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: min(56vh, 360px);
  overflow: visible;
  perspective: 1400px;
  perspective-origin: 50% 42%;
}

@media (min-width: 1200px) {
  .bb-land-hero__visual {
    order: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.25rem, 0.85vw, 0.75rem);
    width: 100%;
    min-height: min(78vh, 520px);
    transform: translateX(calc(-1 * var(--bb-hero-visual-shift-left)));
  }

  .bb-land-hero__glyph {
    width: auto;
    min-height: min(72vh, 480px);
    margin: 0;
    transform: none;
    flex-shrink: 0;
  }

  .bb-land-hero__glyph-stage {
    width: min(74vw, 500px);
    height: min(74vw, 500px);
    min-width: 380px;
    min-height: 380px;
  }

  .bb-land-hero__glyph-glow {
    width: min(60vw, 400px);
    height: min(60vw, 400px);
    min-width: 310px;
    min-height: 310px;
  }

  .bb-land-hero__glyph-floor {
    width: min(52vw, 340px);
    margin-left: min(-26vw, -170px);
  }

  .bb-land-hero__glyph-ring {
    width: min(74vw, 520px);
    height: min(74vw, 520px);
    min-width: 400px;
    min-height: 400px;
  }

  .bb-land-hero__glyph-ring--outer {
    width: min(84vw, 600px);
    height: min(84vw, 600px);
    min-width: 470px;
    min-height: 470px;
  }

  .bb-land-hero__b {
    height: clamp(248px, 38vw, 372px);
    min-height: 248px;
  }

  .bb-land-hero__thought-bubble {
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1649px) {
  .bb-land-hero__visual {
    transform: translateX(calc(-1 * var(--bb-hero-visual-shift-left) + 20%));
  }

}

@media (min-width: 1600px) {
  .bb-land-hero {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(var(--bb-pad), calc((100vw - var(--bb-hero-wide-max)) / 2 + var(--bb-pad)));
    padding-right: var(--bb-pad-hero-right);
    gap: 5.2rem;
  }

  .bb-land-hero__lede {
    max-width: 92.63em;
  }

  .bb-land-hero__visual {
    gap: clamp(0.35rem, 1vw, 0.85rem);
    transform: translateX(calc(-1 * var(--bb-hero-visual-shift-left)));
  }

  .bb-land-hero__glyph-stage {
    width: min(68vw, 540px);
    height: min(68vw, 540px);
    min-width: 440px;
    min-height: 440px;
  }

  .bb-land-hero__glyph-glow {
    width: min(56vw, 430px);
    height: min(56vw, 430px);
    min-width: 350px;
    min-height: 350px;
  }

  .bb-land-hero__glyph-floor {
    width: min(48vw, 360px);
    margin-left: min(-24vw, -180px);
  }

  .bb-land-hero__glyph-ring {
    width: min(68vw, 560px);
    height: min(68vw, 560px);
    min-width: 460px;
    min-height: 460px;
  }

  .bb-land-hero__glyph-ring--outer {
    width: min(78vw, 640px);
    height: min(78vw, 640px);
    min-width: 520px;
    min-height: 520px;
  }

  .bb-land-hero__b {
    height: clamp(280px, 36vw, 400px);
    min-height: 280px;
  }
}

.bb-land-hero__glyph-stage {
  position: relative;
  z-index: 2;
  width: min(72vw, 320px);
  height: min(72vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.bb-land-hero__glyph-pivot,
.bb-land-hero__glyph-float {
  transform-style: preserve-3d;
  will-change: transform;
}

.bb-land-hero__glyph-float {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-land-hero__glyph-glow {
  position: absolute;
  width: min(58vw, 260px);
  height: min(58vw, 260px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(99, 91, 255, 0.55) 0%,
    rgba(10, 63, 255, 0.28) 38%,
    transparent 72%
  );
  filter: blur(28px);
  z-index: 0;
  transform: translateZ(-60px) scale(1);
  will-change: transform, opacity;
}

.bb-land-hero__glyph-floor {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: min(50vw, 220px);
  height: 28px;
  margin-left: min(-25vw, -110px);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(99, 91, 255, 0.35) 0%, transparent 70%);
  filter: blur(12px);
  transform: rotateX(78deg) translateZ(-30px);
  opacity: 0.7;
  z-index: 1;
}

.bb-land-hero__glyph-ring {
  position: absolute;
  width: min(72vw, 340px);
  height: min(72vw, 340px);
  border-radius: 50%;
  border: 1px solid rgba(99, 91, 255, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 100px rgba(10, 63, 255, 0.25),
    0 0 40px rgba(99, 91, 255, 0.15);
  z-index: 1;
  will-change: transform, opacity;
}

.bb-land-hero__glyph-ring--outer {
  width: min(82vw, 400px);
  height: min(82vw, 400px);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  animation: bb-land-ring-spin 24s linear infinite;
}

@keyframes bb-land-ring-spin {
  from { transform: rotateZ(0deg); }
  to { transform: rotateZ(360deg); }
}

.bb-land-hero__b {
  position: relative;
  display: block;
  width: auto;
  height: clamp(160px, 32vw, 240px);
  transform: translateZ(56px);
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45))
    drop-shadow(0 28px 56px rgba(99, 91, 255, 0.5))
    drop-shadow(0 0 48px rgba(10, 63, 255, 0.35));
  will-change: transform, filter;
}

.bb-land-hero__thought-bubble {
  position: relative;
  flex: 0 0 auto;
  z-index: 5;
  pointer-events: none;
  will-change: transform, opacity;
}

@media (max-width: 1199px) {
  .bb-land-hero__thought-tail {
    display: none;
  }

  .bb-land-hero__thought-bubble {
    margin-top: -20%;
  }

  .bb-land-hero__glyph.is-css-breathe + .bb-land-hero__thought-bubble,
  .bb-land-hero__visual:has(.bb-land-hero__glyph.is-css-breathe) .bb-land-hero__thought-bubble {
    animation: none;
    transform: none;
  }
}

@media (max-width: 767px) {
  .bb-land-hero__thought-bubble {
    margin-top: calc(-20% + 15px);
  }

  .bb-land-hero__glyph.is-css-breathe + .bb-land-hero__thought-bubble,
  .bb-land-hero__visual:has(.bb-land-hero__glyph.is-css-breathe) .bb-land-hero__thought-bubble {
    animation: bb-land-thought-float-mobile 5.6s ease-in-out infinite;
  }
}

.bb-land-hero__thought-shell {
  position: relative;
  pointer-events: auto;
}

.bb-land-hero__thought-frame {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.bb-land-hero__thought-aura {
  position: absolute;
  inset: -14%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.bb-land-hero__thought-aura::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border: 1px solid rgba(99, 91, 255, 0.38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 80px rgba(10, 63, 255, 0.28),
    0 0 36px rgba(99, 91, 255, 0.22);
}

.bb-land-hero__thought-aura::after {
  content: '';
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(
    circle at 50% 45%,
    rgba(99, 91, 255, 0.5) 0%,
    rgba(10, 63, 255, 0.24) 42%,
    transparent 72%
  );
  filter: blur(22px);
  opacity: 0.9;
}

.bb-land-hero__thought-ring {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: clamp(120px, 22vw, 176px);
  height: clamp(120px, 22vw, 176px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 0 0 1px rgba(99, 91, 255, 0.55) inset,
    0 0 0 5px rgba(99, 91, 255, 0.14),
    0 0 0 11px rgba(10, 63, 255, 0.09),
    0 14px 36px rgba(0, 0, 0, 0.52),
    0 0 56px rgba(99, 91, 255, 0.42),
    0 0 96px rgba(10, 63, 255, 0.24);
  background: rgba(6, 6, 14, 0.55);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-land-hero__thought-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  transition: border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Minimised bubble — red glass play (matches section 2 embed play/pause) */
.bb-land-hero__thought-launch {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 96, 96, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 40%, transparent 100%),
    rgba(185, 28, 28, 0.34);
  color: #fff;
  box-shadow:
    0 8px 24px rgba(185, 28, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.bb-land-hero__thought-launch:hover {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 100%),
    rgba(220, 38, 38, 0.52);
  border-color: rgba(255, 120, 120, 0.62);
  box-shadow:
    0 10px 28px rgba(220, 38, 38, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.05);
}

.bb-land-hero__thought-launch:focus {
  outline: none;
}

.bb-land-hero__thought-launch:focus-visible {
  outline: 2px solid rgba(255, 120, 120, 0.85);
  outline-offset: 3px;
}

.bb-land-hero__thought-launch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.bb-land-hero__thought-launch-svg {
  display: block;
  margin-left: 2px;
}

.bb-land-hero__thought-launch[hidden] {
  display: none !important;
}

.bb-land-hero__thought-minimise {
  display: none;
  position: absolute;
  z-index: 6;
  top: 10px;
  right: 10px;
  left: auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(99, 91, 255, 0.92);
  box-shadow:
    0 8px 28px rgba(99, 91, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.bb-land-hero__thought-minimise:hover {
  background: #5548e8;
  transform: scale(1.06);
}

.bb-land-hero__thought-minimise:focus {
  outline: none;
}

.bb-land-hero__thought-minimise:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.bb-land-hero__thought-minimise-icon {
  display: block;
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.bb-land-hero__thought-minimise[hidden] {
  display: none !important;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-minimise:not([hidden]) {
  display: inline-flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
  z-index: 8;
}

/* Expanded — toolbar under video: custom play/pause beside native controls */
.bb-land-hero__thought-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  margin-top: 12px;
  pointer-events: auto;
}

.bb-land-hero__thought-toolbar[hidden] {
  display: none !important;
}

.bb-land-hero__thought-playback {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 96, 96, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 40%, transparent 100%),
    rgba(185, 28, 28, 0.34);
  color: #fff;
  box-shadow:
    0 8px 24px rgba(185, 28, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.bb-land-hero__thought-playback:hover {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 100%),
    rgba(220, 38, 38, 0.52);
  border-color: rgba(255, 120, 120, 0.62);
  box-shadow:
    0 10px 28px rgba(220, 38, 38, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.05);
}

.bb-land-hero__thought-playback:focus {
  outline: none;
}

.bb-land-hero__thought-playback:focus-visible {
  outline: 2px solid rgba(255, 120, 120, 0.85);
  outline-offset: 3px;
}

.bb-land-hero__thought-playback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.bb-land-hero__thought-playback-svg {
  display: block;
}

.bb-land-hero__thought-playback-svg--play {
  display: none;
}

.bb-land-hero__thought-playback.is-paused .bb-land-hero__thought-playback-svg--pause {
  display: none;
}

.bb-land-hero__thought-playback.is-paused .bb-land-hero__thought-playback-svg--play {
  display: block;
}

.bb-land-hero__thought-tail {
  position: absolute;
  top: 50%;
  right: -5%;
  left: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bb-land-hero__thought-tail span {
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 14px rgba(99, 91, 255, 0.28);
}

.bb-land-hero__thought-tail span:nth-child(1) {
  width: 10px;
  height: 10px;
  margin-bottom: 0;
  margin-left: 0;
}

.bb-land-hero__thought-tail span:nth-child(2) {
  width: 17px;
  height: 17px;
}

.bb-land-hero__thought-tail span:nth-child(3) {
  width: 26px;
  height: 26px;
}

.bb-land-hero__thought-backdrop {
  position: absolute;
  inset: 0;
  z-index: 20;
  border: 0;
  padding: 0;
  background: rgba(4, 4, 8, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

@media (min-width: 1200px) {
  .bb-land-hero__thought-ring {
    width: clamp(148px, 14vw, 208px);
    height: clamp(148px, 14vw, 208px);
  }

  .bb-land-hero__thought-tail {
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
  }

  .bb-land-hero__thought-launch {
    width: 52px;
    height: 52px;
  }

  .bb-land-hero__thought-launch-icon {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 1600px) {
  .bb-land-hero__thought-ring {
    width: clamp(168px, 10vw, 228px);
    height: clamp(168px, 10vw, 228px);
  }
}

.bb-land-hero.is-thought-expanded {
  z-index: 280;
}

.bb-land-hero.is-thought-expanded .bb-land-hero__glyph,
.bb-land-hero.is-thought-expanded .bb-land-hero__copy,
.bb-land-hero.is-thought-expanded .bb-land-hero__scroll {
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.bb-land-hero.is-thought-expanded .bb-land-hero__thought-backdrop {
  position: fixed;
  inset: var(--bb-nav-h) 0 0 0;
  z-index: 290;
}

.bb-land-hero.is-thought-expanded .bb-land-hero__thought-bubble {
  visibility: hidden;
  pointer-events: none;
}

.bb-land-hero__thought-shell.is-expanded {
  position: fixed;
  inset: var(--bb-nav-h) 0 0 0;
  z-index: 291;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem var(--bb-pad) 2rem;
  pointer-events: none;
  transform: none;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: auto;
  line-height: normal;
  width: min(
    calc(100vw - 2 * var(--bb-pad)),
    calc((100vh - var(--bb-nav-h) - 5.5rem) * 16 / 9)
  );
  max-width: 100%;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-aura {
  inset: -3%;
  border-radius: 24px;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-aura::before {
  inset: -4%;
  border-radius: 24px;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-aura::after {
  inset: -8%;
  border-radius: 28px;
  filter: blur(32px);
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-ring {
  position: relative;
  pointer-events: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - var(--bb-nav-h) - 6.5rem);
  overflow: visible;
  border-radius: 20px;
  border-width: 2px;
  box-shadow:
    0 0 0 1px rgba(99, 91, 255, 0.55) inset,
    0 0 0 8px rgba(99, 91, 255, 0.14),
    0 0 0 16px rgba(10, 63, 255, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 88px rgba(99, 91, 255, 0.38),
    0 0 120px rgba(10, 63, 255, 0.22);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
  background: #06060e;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-video::-webkit-media-controls-panel {
  background: rgba(8, 8, 14, 0.82);
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-launch {
  display: none !important;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-toolbar {
  display: flex;
  flex: 0 0 auto;
}

.bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-playback-icon {
  width: 22px;
  height: 22px;
}

/* Mobile: full-viewport overlay + video edge-to-edge */
@media (max-width: 767px) {
  .bb-land-hero.is-thought-expanded .bb-land-hero__thought-backdrop {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .bb-land-hero__thought-shell.is-expanded {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding:
      max(env(safe-area-inset-top), 0px)
      0
      max(env(safe-area-inset-bottom), 0px);
    align-items: stretch;
    justify-content: center;
  }

  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-frame {
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: 0;
    max-height: none;
    justify-content: flex-start;
    overflow: visible;
    padding:
      calc(var(--bb-nav-h) + 0.35rem)
      max(var(--bb-pad), env(safe-area-inset-right, 0px))
      0
      max(var(--bb-pad), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
  }

  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-ring {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - var(--bb-nav-h) - 7.5rem);
    margin-top: 0;
    border-radius: 16px;
    overflow: visible;
  }

  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-aura {
    display: none;
  }

  /* Row under video: play/pause left, minimise right — aligned to video edges */
  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
    padding: 0;
    box-sizing: border-box;
  }

  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-playback {
    flex: 0 0 auto;
    margin: 0;
  }

  .bb-land-hero__thought-shell.is-expanded .bb-land-hero__thought-minimise:not([hidden]) {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    flex: 0 0 auto;
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }
}

body.bb-land-hero-thought-expanded {
  overflow: hidden;
}

body.bb-land-hero-thought-expanded .bb-land-nav {
  z-index: 300;
}

@media (prefers-reduced-motion: reduce) {
  .bb-land-hero__thought-ring,
  .bb-land-hero__thought-video,
  .bb-land-hero__thought-tail {
    transition: none !important;
  }
}

.bb-land-hero__glyph.is-css-breathe + .bb-land-hero__thought-bubble,
.bb-land-hero__visual:has(.bb-land-hero__glyph.is-css-breathe) .bb-land-hero__thought-bubble {
  animation: bb-land-thought-float 5.6s ease-in-out infinite;
}

@keyframes bb-land-thought-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, -12px); }
}

/* CSS breathing fallback when GSAP is off */
.bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-float {
  animation: bb-land-breathe 5.6s ease-in-out infinite;
}

.bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-glow {
  animation: bb-land-glow-breathe 5.6s ease-in-out infinite;
}

@keyframes bb-land-breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-10px); }
}

@keyframes bb-land-glow-breathe {
  0%, 100% { transform: translateZ(-60px) scale(1); opacity: 0.75; }
  50% { transform: translateZ(-60px) scale(1.18); opacity: 1; }
}

.bb-land-hero__title {
  font-size: clamp(1.875rem, 4.875vw, 3.1875rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.bb-land-line {
  display: block;
  overflow: hidden;
}

.bb-land-hero__lede {
  color: var(--bb-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 42.59em;
  margin: 0 0 2rem;
  will-change: clip-path, opacity;
}

.bb-land-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bb-land-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--bb-pad);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bb-muted);
}

.bb-land-hero__scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--bb-purple), transparent);
  transform-origin: left;
}

@media (max-width: 1199px) {
  .bb-land-hero__scroll {
    display: none;
  }
}

/* Pinned story */
.bb-land-pin {
  position: relative;
  z-index: 1;
  height: 300vh;
}

.bb-land-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--bb-nav-h) var(--bb-pad) var(--bb-pad);
  max-width: none;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.bb-land-pin__layout {
  display: grid;
  gap: 2.5rem;
  flex: 1;
  min-height: 0;
  align-content: stretch;
}

@media (min-width: 1300px) {
  .bb-land-pin__layout {
    grid-template-columns: minmax(0, 1fr) 50%;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
  }

  .bb-land-pin__story {
    align-self: center;
  }

  .bb-land-pin__demo {
    align-self: stretch;
  }
}

.bb-land-pin__story {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

@media (min-width: 1300px) {
  .bb-land-pin__story {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: 1fr auto;
    gap: 2rem 3rem;
    align-content: center;
  }

  .bb-land-pin__aside {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
  }

  .bb-land-pin__stage {
    grid-column: 2;
    grid-row: 1;
  }

  .bb-land-pin__progress {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
}

.bb-land-pin__panel-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--bb-purple);
  opacity: 0.85;
}

/* Live premium modal preview (iframe) */
@property --bb-land-halo-light-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes bb-land-demo-halo-light {
  to {
    --bb-land-halo-light-angle: 360deg;
  }
}

.bb-land-pin__demo {
  position: relative;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  isolation: isolate;
}

/* Outer glass halo (behind shell) — soft light catch travels around the edge */
.bb-land-pin__demo::after {
  content: '';
  position: absolute;
  top: calc(25px - 14px);
  left: -14px;
  right: -14px;
  bottom: -14px;
  border-radius: 32px;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(
      from var(--bb-land-halo-light-angle, 0deg),
      transparent 0deg 286deg,
      rgba(255, 255, 255, 0.06) 300deg,
      rgba(255, 255, 255, 0.38) 318deg,
      rgba(255, 255, 255, 0.72) 332deg,
      rgba(255, 255, 255, 0.28) 342deg,
      transparent 356deg 360deg
    ),
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.28),
    inset 0 0 28px rgba(255, 255, 255, 0.05);
  --bb-land-halo-light-angle: 0deg;
  animation: none;
}

.bb-land-pin__demo.is-halo-light-active::after {
  animation: bb-land-demo-halo-light 5.2s ease-in-out 1 forwards;
}

.bb-land-pin__demo-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: auto;
  margin-top: 25px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bb-glass);
  border: none;
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 12px 32px rgba(99, 91, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Multi-colour rim — 2× thickness (4px) */
.bb-land-pin__demo-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 4px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(99, 91, 255, 0.72) 34%,
    rgba(16, 48, 245, 0.45) 62%,
    rgba(255, 255, 255, 0.18) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.bb-land-pin__demo-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  border-radius: 22px;
}

.bb-land-pin__demo-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(12, 14, 22, 0.72);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.bb-land-pin__demo-expand:hover {
  background: rgba(99, 91, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.04);
}

.bb-land-pin__demo-expand.is-active {
  background: rgba(99, 91, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.bb-land-pin__demo-expand img {
  display: block;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

@media (min-width: 1300px) {
  .bb-land-pin__demo-expand {
    right: 22px;
  }

  .bb-land-pin__demo-expand.is-floating {
    right: max(22px, env(safe-area-inset-right, 0px));
  }
}

.bb-land-pin__demo-backdrop {
  display: none !important;
}

.bb-land-pin.is-demo-fullscreen .bb-land-pin__demo::after {
  display: none;
}

body.bb-land-demo-fullscreen #platform.bb-land-pin {
  z-index: var(--bb-z-demo-fs);
  position: relative;
  isolation: isolate;
}

.bb-land-pin.is-demo-fullscreen .bb-land-pin__demo {
  flex: none;
  width: 100%;
  min-height: 0;
  height: 100dvh;
  z-index: var(--bb-z-demo-fs);
}

.bb-land-pin.is-demo-fullscreen .bb-land-pin__demo-shell {
  position: fixed;
  inset: 0;
  z-index: var(--bb-z-demo-fs);
  flex: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  max-height: none;
  max-width: none;
  margin-top: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.bb-land-pin.is-demo-fullscreen .bb-land-pin__demo-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.bb-land-pin.is-demo-fullscreen .bb-land-pin__demo-shell::before {
  display: none;
}

/* Full screen: button portaled to body (see bb-landing-platform-demo.js) */
.bb-land-pin__demo-expand.is-floating {
  position: fixed;
  z-index: var(--bb-z-demo-fs-control);
  top: calc(var(--bb-nav-h) + 12px);
  right: max(12px, env(safe-area-inset-right, 0px));
  background: rgba(99, 91, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 28px rgba(99, 91, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bb-land-pin__demo-expand.is-floating:hover {
  background: #5548e8;
  transform: scale(1.06);
}

.bb-land-pin__demo-expand.is-floating img {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

body.bb-land-demo-fullscreen {
  overflow: hidden;
}

body.bb-land-demo-fullscreen .bb-land-nav {
  z-index: var(--bb-z-nav);
}

@media (max-width: 1299px) {
  body.bb-land-demo-fullscreen--mobile .bb-land-ambient,
  body.bb-land-demo-fullscreen--mobile .bb-land-hero,
  body.bb-land-demo-fullscreen--mobile .bb-land-features,
  body.bb-land-demo-fullscreen--mobile .bb-land-showcase,
  body.bb-land-demo-fullscreen--mobile .bb-land-cta,
  body.bb-land-demo-fullscreen--mobile .bb-land-app-soon,
  body.bb-land-demo-fullscreen--mobile .bb-land-premium-spotlight,
  body.bb-land-demo-fullscreen--mobile .bb-land-footer,
  body.bb-land-demo-fullscreen--mobile .bb-land-pin__story,
  body.bb-land-demo-fullscreen--mobile .bb-land-pin::after {
    display: none !important;
  }

  body.bb-land-demo-fullscreen--mobile .bb-land-pin {
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
    margin: 0;
    max-width: none;
  }

  body.bb-land-demo-fullscreen--mobile .bb-land-pin__sticky {
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
  }

  body.bb-land-demo-fullscreen--mobile .bb-land-pin__layout {
    display: block;
    height: 100%;
    min-height: 100dvh;
    gap: 0;
  }

  body.bb-land-demo-fullscreen--mobile .bb-land-pin__demo {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
  }

  body.bb-land-demo-fullscreen--mobile .bb-land-nav {
    background: rgba(5, 5, 8, 0.88);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border-bottom-color: var(--bb-border);
  }

  /* Mobile fullscreen: hide pill nav row — logo + CTA only */
  body.bb-land-demo-fullscreen--mobile .bb-land-nav__links {
    display: none !important;
  }

  @media (max-width: 767px) {
    body.bb-land-demo-fullscreen--mobile {
      --bb-nav-h: calc(var(--bb-nav-mobile-black-h) + var(--bb-nav-mobile-pad-top));
    }

    body.bb-land-demo-fullscreen--mobile .bb-land-nav {
      grid-template-rows: var(--bb-nav-mobile-row-top);
      height: var(--bb-nav-h);
      min-height: var(--bb-nav-h);
      max-height: var(--bb-nav-h);
    }

    body.bb-land-demo-fullscreen--mobile .bb-land-pin__demo-expand.is-floating {
      top: calc(var(--bb-nav-h) + 12px);
    }
  }

  /* Stacked layout: natural height + tall iframe */
  .bb-land-pin,
  .bb-land-pin.bb-land-pin--mobile-flow {
    height: auto;
    min-height: 0;
  }

  /* No extra scroll spacer on stacked mobile — was a full viewport gap before section 3 */
  .bb-land-pin.bb-land-pin--mobile-flow::after {
    content: none;
    display: none;
    height: 0;
  }

  .bb-land-pin__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: calc(var(--bb-nav-h) + 0.75rem);
    padding-bottom: 0;
  }

  .bb-land-pin__layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: none;
    padding-bottom: 0;
  }

  .bb-land-pin__heading-wrap {
    min-height: clamp(3.2rem, 11vw, 4.6rem);
  }

  .bb-land-pin__heading {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  .bb-land-pin .bb-land-pin__stage {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    touch-action: pan-y;
    min-height: clamp(400px, calc(52vw + 100px), 500px);
  }

  .bb-land-pin .bb-land-pin__panel {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(24px, 0, 0);
    justify-content: flex-start;
    padding: 2rem 1.25rem 1.35rem;
    will-change: opacity, transform;
  }

  .bb-land-pin .bb-land-pin__panel.is-active {
    pointer-events: auto;
  }

  /* GSAP crossfade owns opacity/transform — not .is-active (avoids flash) */
  .bb-land-pin.bb-land-pin--mobile-flow:not(.bb-land-pin--css-steps) .bb-land-pin__panel,
  .bb-land-pin.bb-land-pin--mobile-flow:not(.bb-land-pin--css-steps) .bb-land-pin__panel.is-active,
  .bb-land-pin.bb-land-pin--gsap-panels:not(.bb-land-pin--css-steps) .bb-land-pin__panel,
  .bb-land-pin.bb-land-pin--gsap-panels:not(.bb-land-pin--css-steps) .bb-land-pin__panel.is-active {
    opacity: unset;
    visibility: unset;
    transform: unset;
  }

  .bb-land-pin__progress {
    position: relative;
    z-index: 3;
    margin-top: 0.25rem;
  }

  .bb-land-pin__demo {
    margin-top: 0.25rem;
    margin-bottom: 0;
    min-height: 0;
    flex: none;
    width: 100%;
  }

  .bb-land-pin__demo::after {
    top: -14px;
  }

  .bb-land-pin__demo-shell {
    margin-top: 0;
    flex: none;
    width: 100%;
    min-height: min(78dvh, 78vh);
    height: min(78dvh, 78vh);
    max-height: none;
  }

  .bb-land-pin.bb-land-pin--mobile-flow {
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
  }
}

@media (max-width: 767px) {
  #platform-partners.bb-land-showcase--platform {
    margin-top: clamp(2rem, 5vh, 3rem);
    padding-top: clamp(2rem, 4vh, 2.75rem);
    gap: clamp(1.75rem, 5vh, 2.5rem);
  }

  /* How It Works — center rotating headings + eyebrow on phone */
  .bb-land-pin__aside {
    text-align: center;
  }

  .bb-land-pin__aside .bb-land-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .bb-land-pin__heading-wrap,
  .bb-land-pin__heading,
  .bb-land-pin__heading-set,
  .bb-land-pin__heading-line {
    text-align: center;
  }

  .bb-land-pin__heading-set {
    left: 0;
    right: 0;
    width: 100%;
  }

  /* How It Works step panels — center titles + body copy */
  .bb-land-pin .bb-land-pin__panel {
    text-align: center;
    align-items: center;
  }

  .bb-land-pin__panel .bb-land-pin__index,
  .bb-land-pin__panel h3,
  .bb-land-pin__panel p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Section intros + paragraphs (Platform Partners, etc.) */
  .bb-land-showcase__copy,
  .bb-land-showcase__copy h2,
  .bb-land-showcase__copy p {
    text-align: center;
  }

  .bb-land-partners__head,
  .bb-land-partners__head h2,
  .bb-land-partners__lede {
    text-align: center;
  }

  .bb-land-partners__success,
  .bb-land-partners__success h3,
  .bb-land-partners__success p {
    text-align: center;
  }

  .bb-land-cta,
  .bb-land-cta h2,
  .bb-land-cta > p {
    text-align: center;
  }
}

.bb-land-pin__heading-wrap {
  position: relative;
  min-height: clamp(3.6rem, 9vw, 6.1rem);
  overflow: hidden;
}

.bb-land-pin__heading {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.bb-land-pin__heading-set {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0;
}

.bb-land-pin__heading-set.is-active {
  position: relative;
}

.bb-land-pin__heading-set[hidden] {
  display: none !important;
}

.bb-land-pin__heading-line {
  display: block;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.45));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bb-land-pin__stage {
  position: relative;
  min-height: 320px;
  overflow: visible;
}

.bb-land-pin__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2.25rem 2rem 1.5rem;
  border-radius: 24px;
  overflow: visible;
  box-sizing: border-box;
  background: var(--bb-glass);
  border: 1px solid var(--bb-border);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(48px);
  transition: none;
  -webkit-user-select: none;
  user-select: none;
}

.bb-land-pin__panel.is-active {
  opacity: 1;
  visibility: visible;
}

/* GSAP owns panel visibility during slide transitions (desktop + mobile) */
.bb-land-pin.bb-land-pin--gsap-panels:not(.bb-land-pin--css-steps) .bb-land-pin__panel,
.bb-land-pin.bb-land-pin--gsap-panels:not(.bb-land-pin--css-steps) .bb-land-pin__panel.is-active {
  opacity: unset;
  visibility: unset;
  transform: unset;
}

.bb-land-pin__pause {
  position: absolute;
  right: clamp(12px, 3vw, 18px);
  bottom: clamp(12px, 3vw, 18px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease;
}

.bb-land-pin__panel.is-active .bb-land-pin__pause {
  opacity: 0.88;
  visibility: visible;
  pointer-events: auto;
}

.bb-land-pin__pause:hover {
  opacity: 1;
}

.bb-land-pin__pause:focus {
  outline: none;
}

.bb-land-pin__pause:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.bb-land-pin__pause-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.bb-land-pin__pause-svg {
  display: block;
}

.bb-land-pin__pause-svg--play {
  display: none;
}

.bb-land-pin__pause.is-paused .bb-land-pin__pause-svg--pause {
  display: none;
}

.bb-land-pin__pause.is-paused .bb-land-pin__pause-svg--play {
  display: block;
}

/* Reduced-motion / no-GSAP: single CSS crossfade (no panel pulse + content pulse) */
.bb-land-pin.bb-land-pin--css-steps .bb-land-pin__panel {
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s step-end;
}

.bb-land-pin.bb-land-pin--css-steps .bb-land-pin__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.bb-land-pin.bb-land-pin--css-steps .bb-land-pin__panel:not(.is-active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(24px, 0, 0);
}

@keyframes bb-land-pin-panel-pulse-in {
  0%   { opacity: 0; transform: translateX(48px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Used by the fallback (no GSAP) + auto-rotate. */
.bb-land-pin__panel.is-pulse-in {
  animation: bb-land-pin-panel-pulse-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bb-land-pin-panel-content-in {
  0%   { opacity: 0; transform: translateX(24px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* During step swap: show glass only, then contents fade/pulse in. */
.bb-land-pin__panel.is-content-hidden > * {
  opacity: 0 !important;
}

.bb-land-pin__panel.is-content-reveal > * {
  animation: bb-land-pin-panel-content-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bb-land-pin__index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--bb-purple);
  margin: 0 0 0.75rem;
  flex-shrink: 0;
  line-height: 1.2;
}

/* Small laptops 1300–1600px — centre section 2 in viewport */
@media (min-width: 1300px) and (max-width: 1600px) {
  #platform.bb-land-pin {
    scroll-margin-top: calc(var(--bb-nav-h) + 1.25rem);
  }

  .bb-land-pin__sticky {
    justify-content: center;
    padding-top: calc(var(--bb-nav-h) + clamp(2.5rem, 6vh, 4.25rem));
    padding-bottom: clamp(0.35rem, 1.25vh, 0.85rem);
  }

  .bb-land-pin__layout {
    align-content: center;
  }

  .bb-land-pin__story {
    align-content: center;
    align-self: center;
    gap: 1.5rem 2.5rem;
  }

  .bb-land-pin__demo {
    align-self: center;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
  }

  .bb-land-pin__demo-shell {
    flex: 0 0 auto;
    height: min(
      80dvh,
      calc(100dvh - var(--bb-nav-h) - clamp(5rem, 14vh, 8rem))
    );
    max-height: none;
    min-height: 320px;
    width: 100%;
  }

  .bb-land-pin__demo-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
}

@media (min-width: 1601px) and (max-width: 1649px) {
  .bb-land-pin__story {
    align-self: stretch;
    gap: 1.25rem 2rem;
  }
}

/* Desktop 1300–1649px — keep 01/02/03 inside glass panels */
@media (min-width: 1300px) and (max-width: 1649px) {
  .bb-land-pin__stage {
    min-height: clamp(340px, 40vh, 440px);
    overflow: visible;
    align-self: stretch;
  }

  .bb-land-pin__panel {
    justify-content: flex-start;
    padding: 1.625rem 1.65rem 1.25rem;
    overflow: visible;
  }

  .bb-land-pin__panel:nth-child(2),
  .bb-land-pin__panel:nth-child(3) {
    padding-bottom: calc(1.25rem + 10px);
  }

  .bb-land-pin__index {
    margin-bottom: 0.65rem;
  }

  .bb-land-pin__panel h3 {
    font-size: clamp(1.15rem, 1.85vw, 1.38rem);
    margin-bottom: 0.6rem;
  }

  .bb-land-pin__panel p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .bb-land-pin__visual {
    min-height: 56px;
    margin-top: auto;
  }
}

/* Medium desktop 1600–1900px — deeper glass panels (B / lock / tick fit) */
@media (min-width: 1600px) and (max-width: 1900px) {
  .bb-land-pin__story {
    align-self: stretch;
    align-content: stretch;
    gap: 1.35rem 2.25rem;
  }

  .bb-land-pin__stage {
    min-height: clamp(420px, 48vh, 540px);
    align-self: stretch;
    overflow: visible;
  }

  .bb-land-pin__panel {
    justify-content: flex-start;
    padding: 2rem 2rem 1.75rem;
    overflow: visible;
    min-height: 100%;
    box-sizing: border-box;
  }

  .bb-land-pin__panel:nth-child(2),
  .bb-land-pin__panel:nth-child(3) {
    padding-bottom: calc(1.75rem + 16px);
  }

  .bb-land-pin__index {
    margin-bottom: 0.7rem;
  }

  .bb-land-pin__panel h3 {
    font-size: clamp(1.22rem, 1.55vw, 1.48rem);
    margin-bottom: 0.65rem;
    flex-shrink: 0;
  }

  .bb-land-pin__panel p {
    margin-bottom: 0.9rem;
    font-size: 0.93rem;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .bb-land-pin__visual {
    min-height: clamp(88px, 11vh, 120px);
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 0.35rem;
  }

  .bb-land-pin__visual img,
  .bb-land-pin__visual--tick svg,
  .bb-land-pin__visual--lock svg {
    height: var(--bb-pin-visual-icon);
  }

  .bb-land-pin__visual--tick svg,
  .bb-land-pin__visual--lock svg {
    width: var(--bb-pin-visual-icon);
    flex-shrink: 0;
  }

  .bb-land-pin__pause {
    bottom: clamp(14px, 2vw, 20px);
    right: clamp(14px, 2vw, 20px);
  }
}

.bb-land-pin__panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.bb-land-pin__panel p {
  color: var(--bb-muted);
  margin: 0 0 1.5rem;
  max-width: 28em;
}

.bb-land-pin__visual {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  --bb-pin-visual-icon: 48px;
}

.bb-land-pin__visual img {
  height: var(--bb-pin-visual-icon);
  width: auto;
  opacity: 0.9;
}

.bb-land-pin__panel:first-child .bb-land-pin__visual img {
  transform: translateY(-20px);
}

.bb-land-pin__visual--tick svg,
.bb-land-pin__visual--lock svg {
  width: var(--bb-pin-visual-icon);
  height: var(--bb-pin-visual-icon);
  flex-shrink: 0;
}

.bb-land-pin__visual--tick svg {
  transform: translateY(-10px);
}

.bb-land-pin__visual--tick,
.bb-land-pin__visual--lock {
  color: var(--bb-purple);
}

.bb-land-pin__visual--themes {
  gap: 0.5rem;
}

.bb-land-pin__visual--themes span {
  width: 48px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--bb-border);
}

.bb-land-pin__visual--themes span:nth-child(1) {
  background: linear-gradient(180deg, #0a3fff, #050508);
}

.bb-land-pin__visual--themes span:nth-child(2) {
  background: linear-gradient(180deg, #635bff, #1a1030);
}

.bb-land-pin__visual--themes span:nth-child(3) {
  background: linear-gradient(180deg, #f5f5f7, #888);
}

.bb-land-pin__progress {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.bb-land-pin__progress button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.bb-land-pin__progress button {
  flex: 1;
  height: 18px; /* bigger tap target */
  background: transparent;
  position: relative;
  transition: transform 0.4s;
}

.bb-land-pin__progress button::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  transform: translateY(-50%);
  background: var(--bb-border);
  transition: background 0.4s var(--bb-ease), transform 0.4s;
}

.bb-land-pin__progress button.is-active::before {
  background: linear-gradient(90deg, var(--bb-purple), var(--bb-blue));
  transform: translateY(-50%) scaleY(1.5);
}

.bb-land-pin__stage {
  touch-action: pan-y;
}

/* Features */
.bb-land-features {
  position: relative;
  z-index: 1;
  padding: 6rem var(--bb-pad);
  max-width: var(--bb-max);
  margin: 0 auto;
}

.bb-land-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16em;
}

.bb-land-feature-grid {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.bb-land-feature-card {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: var(--bb-glass);
  border: 1px solid var(--bb-border);
  transition: border-color 0.35s, transform 0.35s var(--bb-ease);
}

.bb-land-feature-card:hover {
  border-color: rgba(99, 91, 255, 0.35);
  transform: translateY(-4px);
}

.bb-land-feature-card__mark {
  display: block;
  margin-bottom: 1.25rem;
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.bb-land-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

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

/* Showcase */
.bb-land-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4rem var(--bb-pad) 6rem;
  max-width: var(--bb-max);
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .bb-land-showcase {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.bb-land-showcase__frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bb-border);
  background: var(--bb-bg-elevated);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.bb-land-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bb-border);
  background: rgba(0, 0, 0, 0.4);
}

.bb-land-showcase__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.bb-land-showcase__wordmark {
  margin-left: auto;
  height: 14px;
  width: auto;
  opacity: 0.7;
}

.bb-land-showcase__body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 220px;
}

.bb-land-showcase__sidebar {
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--bb-border);
}

.bb-land-showcase__sidebar span {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.bb-land-showcase__sidebar span.is-active {
  background: linear-gradient(90deg, var(--bb-purple), var(--bb-blue));
  width: 80%;
}

.bb-land-showcase__main {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.bb-land-showcase__tile {
  border-radius: 10px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__tile--accent {
  grid-column: span 2;
  min-height: 96px;
  background: linear-gradient(135deg, rgba(10, 63, 255, 0.25), rgba(99, 91, 255, 0.2));
  border-color: rgba(99, 91, 255, 0.3);
}

.bb-land-showcase__copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.bb-land-showcase__copy p {
  color: var(--bb-muted);
  margin: 0 0 1.5rem;
}

#platform-partners.bb-land-showcase--platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vh, 3.5rem);
  max-width: min(1664px, 100%);
  text-align: center;
  margin-top: clamp(5rem, 12vh, 8rem);
  padding-top: calc(4rem + 30px);
}

#platform.bb-land-pin::before,
#platform-partners.bb-land-showcase--platform::before,
.bb-land-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  border-top: 1px solid var(--bb-border);
  pointer-events: none;
}

.bb-land-platform-partners__intro {
  width: 100%;
  max-width: 40em;
  margin: 0 auto;
}

.bb-land-platform-partners__intro .bb-land-eyebrow {
  color: #635bff;
}

.bb-land-platform-partners__intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 auto clamp(2.5rem, 5vh, 3.75rem);
  max-width: 16em;
}

.bb-land-platform-partners__intro > p:not(.bb-land-eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.bb-land-platform-partners__intro .bb-land-btn {
  margin-top: 0.25rem;
}

.bb-land-platform-partners__cta {
  margin: 0;
  text-align: center;
}

/* Platform Partners — panoramic “Goes Everywhere” glass panel */
.bb-land-platform-everywhere {
  width: 100%;
  max-width: min(1612px, 100%);
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
}

.bb-land-platform-everywhere__panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(99, 91, 255, 0.12) inset;
  isolation: isolate;
}

.bb-land-platform-everywhere__glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(99, 91, 255, 0.14), transparent 65%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(8, 10, 18, 0.42));
  backdrop-filter: blur(48px) saturate(1.65);
  -webkit-backdrop-filter: blur(48px) saturate(1.65);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bb-land-platform-everywhere__glass {
    background: rgba(12, 14, 24, 0.82);
  }
}

.bb-land-platform-everywhere__shimmer {
  position: absolute;
  inset: -20% -40%;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.04) 44%,
    rgba(255, 255, 255, 0.16) 50%,
    rgba(255, 255, 255, 0.04) 56%,
    transparent 62%
  );
  transform: translateX(-55%) skewX(-12deg);
  animation: bb-land-everywhere-shimmer 5.2s ease-in-out infinite;
}

@keyframes bb-land-everywhere-shimmer {
  0% {
    transform: translateX(-60%) skewX(-12deg);
  }

  42% {
    transform: translateX(60%) skewX(-12deg);
  }

  100% {
    transform: translateX(60%) skewX(-12deg);
  }
}

.bb-land-platform-everywhere__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(135deg, #635bff 0%, #5548e8 55%, #4a3fd4 100%);
  color: #fff;
}

.bb-land-platform-everywhere__head-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.bb-land-platform-everywhere__head-wordmark {
  display: block;
  width: auto;
  height: clamp(14px, 1.85vw, 18px);
  opacity: 0.96;
}

.bb-land-platform-everywhere__title-suffix {
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  padding-top: 5px;
}

.bb-land-platform-everywhere__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.bb-land-platform-everywhere__viewport.is-everywhere-dragging {
  cursor: grabbing;
}

.bb-land-platform-everywhere__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.bb-land-platform-everywhere__viewport.is-everywhere-flowing .bb-land-platform-everywhere__track {
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-land-platform-everywhere__viewport.is-everywhere-dragging .bb-land-platform-everywhere__track {
  transition: none;
}

.bb-land-platform-everywhere__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  justify-content: center;
  flex: 0 0 auto;
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(0.65rem, 1.4vw, 0.9rem);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
  -webkit-user-select: none;
}

.bb-land-platform-everywhere__item:last-child {
  border-right: 0;
}

.bb-land-platform-everywhere__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #635bff, #5548e8);
  box-shadow: 0 8px 22px rgba(99, 91, 255, 0.35);
  flex-shrink: 0;
}

.bb-land-platform-everywhere__item h4 {
  margin: 0;
  font-size: clamp(0.72rem, 1.35vw, 0.88rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
}

.bb-land-platform-everywhere__item p {
  margin: 0;
  font-size: clamp(0.62rem, 1.1vw, 0.75rem);
  line-height: 1.35;
  color: var(--bb-muted);
}

@media (max-width: 767px) {
  .bb-land-platform-everywhere__item {
    padding: 1rem 0.75rem;
  }

  .bb-land-platform-everywhere__icon {
    width: 42px;
    height: 42px;
  }

  .bb-land-platform-everywhere__glass {
    backdrop-filter: blur(36px) saturate(1.55);
    -webkit-backdrop-filter: blur(36px) saturate(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-land-platform-everywhere__shimmer {
    animation: none;
    opacity: 0;
  }
}

#platform-partners,
#brand-partners {
  scroll-margin-top: calc(var(--bb-nav-h) + 1rem);
}

/* Platform Partners — globe spiderweb + breathing platform nodes */
.bb-land-partners-globe {
  --globe-panel-bg: #0c0e16;
  --globe-dot: clamp(48px, 10vw, 68px);
  --globe-core-size: clamp(148px, 30vw, 210px);
  --globe-web: #635bff;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
}

.bb-land-partners-globe__panel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--bb-border);
  background:
    radial-gradient(ellipse 85% 75% at 50% 48%, rgba(99, 91, 255, 0.14) 0%, transparent 68%),
    var(--globe-panel-bg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.bb-land-partners-globe__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.bb-land-partners-globe__map,
.bb-land-partners-globe__web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.bb-land-partners-globe__map {
  z-index: 1;
  opacity: 0.95;
}

.bb-land-partners-globe__web {
  z-index: 2;
}

.bb-land-partners-globe__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.bb-land-partners-globe__node {
  position: absolute;
  left: var(--globe-x);
  top: var(--globe-y);
  width: var(--globe-dot);
  height: var(--globe-dot);
  transform: translate(-50%, -50%);
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__node,
.bb-land-partners-globe.is-floating .bb-land-partners-globe__node {
  animation: bb-land-partners-globe-node-float ease-in-out infinite;
  animation-duration: calc(4.8s + var(--pulse-i, 0) * 0.28s);
  animation-delay: calc(var(--pulse-i, 0) * -0.42s);
  will-change: transform;
}

.bb-land-partners-globe.is-floating .bb-land-partners-globe__web path {
  transition: none;
}

.bb-land-partners-globe__dot {
  --pulse-delay: calc(var(--pulse-i, 0) * 0.22s);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(9px, 2vw, 13px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transform-origin: center center;
  opacity: 1;
  transform: scale(1);
  will-change: transform, opacity, box-shadow;
}

.bb-land-partners-globe.is-sequence-pending:not(.is-live) .bb-land-partners-globe__node:not(.is-visible) .bb-land-partners-globe__dot {
  opacity: 0;
  transform: scale(0);
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__dot,
.bb-land-partners-globe__node.is-visible .bb-land-partners-globe__dot {
  opacity: 1;
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__dot {
  animation: bb-land-partners-globe-breathe 2.6s ease-in-out infinite;
  animation-delay: var(--pulse-delay);
}

.bb-land-partners-globe__dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bb-land-partners-globe__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--globe-core-size);
  height: var(--globe-core-size);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bb-land-partners-globe__core-halo {
  position: absolute;
  width: 145%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(99, 91, 255, 0.65) 0%,
    rgba(10, 63, 255, 0.28) 45%,
    transparent 74%
  );
  filter: blur(22px);
  pointer-events: none;
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__core-halo {
  animation: bb-land-partners-globe-halo-strong 2.6s ease-in-out infinite;
}

.bb-land-partners-globe__core-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(155deg, rgb(255 255 255) 0%, rgb(255 255 255) 48%, rgba(255, 255, 255, 0.62) 100%);
  border: 1px solid rgb(255 255 255);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(99, 91, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 0 28px rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__core-glass {
  animation: bb-land-partners-globe-glass-strong 2.6s ease-in-out infinite;
}

.bb-land-partners-globe__core-ring {
  position: absolute;
  inset: -3%;
  border-radius: 50%;
  border: 1px solid rgba(99, 91, 255, 0.35);
  box-shadow: 0 0 32px rgba(99, 91, 255, 0.25);
  animation: bb-land-partners-globe-ring 12s linear infinite;
  pointer-events: none;
}

.bb-land-partners-globe__b {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: clamp(88px, 18vw, 124px);
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45))
    drop-shadow(0 22px 44px rgba(99, 91, 255, 0.5));
}

.bb-land-partners-globe.is-live .bb-land-partners-globe__b {
  animation: bb-land-partners-globe-b-strong 2.6s ease-in-out infinite;
}

@keyframes bb-land-partners-globe-node-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate(6px, -12px);
  }
  50% {
    transform: translate(-50%, -50%) translate(-8px, -4px);
  }
  75% {
    transform: translate(-50%, -50%) translate(4px, 10px);
  }
}

@keyframes bb-land-partners-globe-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.3),
      0 0 0 0 rgba(99, 91, 255, 0.45);
  }
  50% {
    transform: scale(1.2);
    box-shadow:
      0 16px 40px rgba(99, 91, 255, 0.62),
      0 0 0 24px rgba(99, 91, 255, 0);
  }
}

@keyframes bb-land-partners-globe-halo {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes bb-land-partners-globe-glass {
  0%,
  100% {
    transform: scale(1);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.68) 0%,
      rgba(255, 255, 255, 0.44) 48%,
      rgba(255, 255, 255, 0.58) 100%
    );
    box-shadow:
      0 24px 56px rgba(0, 0, 0, 0.45),
      0 0 32px rgba(99, 91, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 0 28px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.08);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.58) 48%,
      rgba(255, 255, 255, 0.74) 100%
    );
    box-shadow:
      0 32px 72px rgba(0, 0, 0, 0.5),
      0 0 56px rgba(99, 91, 255, 0.35),
      0 0 0 12px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 0 40px rgba(255, 255, 255, 0.45);
  }
}

@keyframes bb-land-partners-globe-ring {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes bb-land-partners-globe-b {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.06) translateY(-4px);
  }
}

@keyframes bb-land-partners-globe-b-strong {
  0%,
  100% {
    transform: scale(1) translateY(0);
    filter:
      drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45))
      drop-shadow(0 22px 44px rgba(99, 91, 255, 0.5));
  }
  50% {
    transform: scale(1.28) translateY(-16px);
    filter:
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55))
      drop-shadow(0 40px 80px rgba(99, 91, 255, 0.85));
  }
}

@keyframes bb-land-partners-globe-halo-strong {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.38);
  }
}

@keyframes bb-land-partners-globe-glass-strong {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.24);
  }
}

@media (max-width: 1199px) {
  .bb-land-partners-globe__panel {
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .bb-land-partners-globe__canvas {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bb-land-partners-globe__core-glass,
  .bb-land-partners-globe__core-halo,
  .bb-land-partners-globe__core-ring,
  .bb-land-partners-globe__b,
  .bb-land-partners-globe.is-floating .bb-land-partners-globe__node {
    animation: none;
  }

  .bb-land-partners-globe.is-live .bb-land-partners-globe__dot {
    animation: bb-land-partners-globe-breathe 3.6s ease-in-out infinite;
  }

  .bb-land-partners-globe:not(.is-live) .bb-land-partners-globe__dot {
    opacity: 1;
    transform: none;
  }
}

/* Brand Partners — 3-step form */
.bb-land-partners {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vh, 6.5rem) var(--bb-pad);
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.bb-land-partners__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bb-land-partners__head h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 calc(0.75rem + 10px);
}

.bb-land-partners__register-cta {
  color: #635bff;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 auto 1.25rem;
  max-width: 40em;
  text-align: center;
}

.bb-land-partners__body {
  max-width: 40em;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.bb-land-partners__body p {
  color: var(--bb-muted);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.bb-land-partners__body p:last-child {
  margin-bottom: 0;
}

.bb-land-partners__lede {
  color: var(--bb-muted);
  margin: 0 auto;
  max-width: 32em;
}

.bb-land-partners__shell {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    var(--bb-glass);
  border: 1px solid var(--bb-border);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(99, 91, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bb-land-partners__shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(99, 91, 255, 0.45), rgba(10, 63, 255, 0.2), transparent 55%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bb-land-partners__progress {
  margin-bottom: 1.75rem;
}

.bb-land-partners__progress-track {
  height: 3px;
  border-radius: 999px;
  background: var(--bb-border);
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.bb-land-partners__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bb-purple), var(--bb-blue));
  transition: width 0.45s var(--bb-ease);
}

.bb-land-partners__steps-labels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-muted);
}

.bb-land-partners__steps-labels li.is-active {
  color: var(--bb-text);
}

.bb-land-partners__steps-labels li.is-done {
  color: var(--bb-purple);
}

.bb-land-partners__form {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

.bb-land-partners__pane {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  animation: bb-land-partners-pane-in 0.42s var(--bb-ease) both;
}

.bb-land-partners__pane[hidden] {
  display: none;
}

@keyframes bb-land-partners-pane-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bb-land-partners__pane-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-purple);
  margin: 0 0 1.25rem;
  padding: 0;
}

.bb-land-partners__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .bb-land-partners__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bb-land-partners__grid--single {
    grid-template-columns: 1fr;
  }
}

.bb-land-partners__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bb-muted);
}

.bb-land-partners__field span {
  letter-spacing: 0.02em;
}

.bb-land-partners__field input,
.bb-land-partners__field select,
.bb-land-partners__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--bb-border);
  background: rgba(0, 0, 0, 0.28);
  color: var(--bb-text);
  font: 500 0.95rem/1.4 Inter, system-ui, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bb-land-partners__field input:focus,
.bb-land-partners__field select:focus,
.bb-land-partners__field textarea:focus {
  outline: none;
  border-color: rgba(99, 91, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.2);
}

.bb-land-partners__field select[name="role"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.bb-land-partners__field select[name="role"]::-ms-expand {
  display: none;
}

.bb-land-partners__field textarea {
  resize: vertical;
  min-height: 110px;
}

.bb-land-partners__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--bb-muted);
  cursor: pointer;
}

.bb-land-partners__check input {
  margin-top: 0.2rem;
  accent-color: var(--bb-purple);
}

.bb-land-partners__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bb-land-partners__error {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #ffb4b4;
  background: rgba(180, 40, 40, 0.18);
  border: 1px solid rgba(255, 120, 120, 0.25);
}

.bb-land-partners__error[hidden] {
  display: none;
}

.bb-land-partners__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Match hero / CTA primary buttons — strip native <button> chrome */
.bb-land-partners__actions button.bb-land-btn {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
}

.bb-land-partners__actions button.bb-land-btn--primary {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--bb-purple), var(--bb-blue));
  box-shadow: 0 8px 32px rgba(99, 91, 255, 0.35);
}

.bb-land-partners__actions button.bb-land-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.45);
}

.bb-land-partners__actions button.bb-land-btn--primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.bb-land-partners__actions button.bb-land-btn--ghost {
  border: 1px solid var(--bb-border);
  background: transparent;
  color: var(--bb-text);
}

@media (max-width: 640px) {
  .bb-land-partners__actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .bb-land-partners__actions button.bb-land-btn {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.8075rem;
    padding: 0.7225rem 1.0625rem;
    white-space: nowrap;
  }
}

.bb-land-partners__success {
  text-align: center;
  padding: 2rem 1rem 1rem;
  animation: bb-land-partners-pane-in 0.5s var(--bb-ease) both;
}

.bb-land-partners__success[hidden] {
  display: none;
}

.bb-land-partners__shell.is-success .bb-land-partners__progress,
.bb-land-partners__shell.is-success .bb-land-partners__form {
  display: none;
}

.bb-land-partners__success-mark {
  margin: 0 auto 1.25rem;
  opacity: 0.95;
  filter: drop-shadow(0 8px 24px rgba(99, 91, 255, 0.45));
}

.bb-land-partners__success h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.bb-land-partners__success p {
  color: var(--bb-muted);
  margin: 0 0 1.5rem;
}

/* CTA */
.bb-land-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(5rem, 14vh, 8rem) var(--bb-pad);
  border-top: 1px solid var(--bb-border);
}

.bb-land-cta__logo {
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(99, 91, 255, 0.4));
}

.bb-land-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.bb-land-cta p {
  color: var(--bb-muted);
  max-width: 28em;
  margin: 0 auto 1.15rem;
}

.bb-land-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.bb-land-cta__actions--below {
  margin-top: calc(0.65rem + 10px);
  padding-top: 0.35rem;
}

.bb-land-cta__actions--below .bb-land-btn {
  min-width: min(100%, 220px);
  min-height: 48px;
  padding: 0.9rem 2rem;
}

.bb-land-cta__visual {
  width: 100%;
  max-width: min(1100px, 100%);
  margin: clamp(1.75rem, 4vh, 2.5rem) auto 0;
  text-align: left;
}

.bb-land-cta__visual .bb-land-showcase__body {
  min-height: 280px;
}

@media (min-width: 1200px) {
  .bb-land-cta__visual .bb-land-showcase__body {
    min-height: 320px;
  }
}

/* CTA — 3D perspective panel showcase (0 = cover mockup, 1–6 = screenshots) */
.bb-land-showcase-carousel {
  width: 100%;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
}

.bb-land-showcase-carousel__stage {
  position: relative;
  min-height: clamp(260px, calc(44vw + 2.5rem), 360px);
  height: clamp(260px, calc(44vw + 2.5rem), 360px);
  perspective: 1800px;
  perspective-origin: 50% 42%;
  overflow: visible;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.bb-land-showcase-carousel.is-showcase-dragging .bb-land-showcase-carousel__stage {
  cursor: grabbing;
}

.bb-land-showcase-carousel__track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.bb-land-showcase-carousel .bb-land-showcase__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 86vw);
  margin: 0;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
  filter: brightness(0.72);
  backface-visibility: hidden;
}

.bb-land-showcase-carousel .bb-land-showcase__frame.is-showcase-active {
  pointer-events: auto;
  filter: brightness(1);
}

/* Screenshot panels — full image, no crop */
.bb-land-showcase__frame--screen .bb-land-showcase__screen {
  line-height: 0;
  background: #07080e;
  overflow: visible;
}

.bb-land-showcase__frame--screen .bb-land-showcase__screen img,
.bb-land-showcase__frame--screen .bb-land-showcase__screen video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.bb-land-showcase-carousel.is-showcase-dragging .bb-land-showcase__frame {
  pointer-events: none;
}

/* Ultra-minimal mockup primitives (panel 0 + legacy) */
.bb-land-showcase__main--split {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  align-content: start;
}

.bb-land-showcase__main--list {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.bb-land-showcase__pane {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.bb-land-showcase__pane--blob {
  justify-content: center;
  align-items: center;
  min-height: 100%;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(10, 63, 255, 0.35), rgba(99, 91, 255, 0.22));
  border: 1px solid rgba(99, 91, 255, 0.28);
}

.bb-land-showcase__pane--stack {
  gap: 0.55rem;
}

.bb-land-showcase__pane--controls {
  gap: 0.42rem;
}

.bb-land-showcase__bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__bar--title {
  width: 58%;
  height: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.bb-land-showcase__bar--muted {
  width: 72%;
  opacity: 0.55;
}

.bb-land-showcase__bar--tiny {
  width: 48%;
  height: 6px;
  margin-top: 0.15rem;
}

.bb-land-showcase__bar--short {
  width: 42%;
}

.bb-land-showcase__bar--slider {
  height: 6px;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, var(--bb-purple) 0%, var(--bb-purple) 45%, rgba(255, 255, 255, 0.08) 45%);
  border-color: rgba(99, 91, 255, 0.35);
}

.bb-land-showcase__bar--dropdown {
  height: 22px;
  border-radius: 6px;
}

.bb-land-showcase__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(7px, 1.1vw, 9px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.bb-land-showcase__pill--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.45);
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.28);
}

.bb-land-showcase__pill--white {
  width: 78%;
  color: rgba(0, 0, 0, 0.82);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.bb-land-showcase__pill--green {
  color: #fff;
  background: linear-gradient(135deg, #0d9668, #12b886);
  border-color: rgba(18, 184, 134, 0.45);
}

.bb-land-showcase__pill--purple {
  color: #fff;
  background: linear-gradient(135deg, #5548e8, var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.45);
}

.bb-land-showcase__pill--sm {
  width: 62%;
  height: 16px;
  align-self: center;
}

.bb-land-showcase__glyph {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bb-land-showcase__upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.bb-land-showcase__block {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__block--square {
  aspect-ratio: 1;
  position: relative;
}

.bb-land-showcase__block--square::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.bb-land-showcase__block--dim {
  background: rgba(255, 255, 255, 0.02);
}

.bb-land-showcase__block--card {
  flex: 1;
  min-height: 52px;
  border-radius: 10px;
}

.bb-land-showcase__block--light {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.35);
}

.bb-land-showcase__block--modal {
  min-height: 88px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(99, 91, 255, 0.12));
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bb-land-showcase__block--product {
  min-height: 96px;
}

.bb-land-showcase__block--media {
  max-width: 56px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.25), rgba(10, 63, 255, 0.18));
}

.bb-land-showcase__block--media::after {
  content: none;
}

.bb-land-showcase__block--media::before {
  content: '';
  position: absolute;
  inset: 22% 18%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.bb-land-showcase__swatch-row {
  display: flex;
  gap: 5px;
  margin-top: 0.1rem;
}

.bb-land-showcase__swatch-row span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__swatch-row span.is-accent {
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.5);
}

.bb-land-showcase__icon-row {
  display: flex;
  gap: 6px;
}

.bb-land-showcase__icon-row span {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__dots-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 0.15rem;
}

.bb-land-showcase__dots-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.bb-land-showcase__dots-row span.is-on {
  background: rgba(255, 255, 255, 0.88);
}

.bb-land-showcase__list-row {
  display: grid;
  grid-template-columns: 14px 1fr 28px;
  align-items: center;
  gap: 0.45rem;
}

.bb-land-showcase__list-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__list-row .bb-land-showcase__bar {
  width: 100%;
}

.bb-land-showcase__toggle {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--bb-border);
  position: relative;
}

.bb-land-showcase__toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.bb-land-showcase__toggle.is-on {
  background: linear-gradient(90deg, var(--bb-purple), var(--bb-blue));
  border-color: rgba(99, 91, 255, 0.45);
}

.bb-land-showcase__toggle.is-on::after {
  left: auto;
  right: 2px;
  background: #fff;
}

.bb-land-showcase__pane > .bb-land-showcase__bar:not([class*='bar--']) {
  width: 88%;
}

.bb-land-showcase-carousel .bb-land-showcase__sidebar span {
  height: 6px;
}

.bb-land-showcase-carousel .bb-land-showcase__main--split .bb-land-showcase__pane--blob {
  min-height: 140px;
}

/* Labels, fields, and screen-faithful mini layouts */
.bb-land-showcase__heading {
  font-size: clamp(8px, 1.25vw, 10px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.bb-land-showcase__heading--center {
  text-align: center;
}

.bb-land-showcase__heading--xs {
  font-size: clamp(7px, 1.05vw, 9px);
}

.bb-land-showcase__subhead {
  font-size: clamp(6px, 0.95vw, 8px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.25;
}

.bb-land-showcase__caption {
  font-size: clamp(6px, 0.9vw, 7px);
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

.bb-land-showcase__caption--lead {
  color: rgba(255, 255, 255, 0.72);
}

.bb-land-showcase__caption--foot {
  margin-top: auto;
  opacity: 0.65;
}

.bb-land-showcase__caption em {
  font-style: normal;
  color: var(--bb-blue);
}

.bb-land-showcase__label {
  font-size: clamp(9px, 1.35vw, 11px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bb-land-showcase__label--brand {
  color: var(--bb-blue);
}

.bb-land-showcase__label--foot {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.65rem;
}

.bb-land-showcase__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: clamp(6px, 0.85vw, 7px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--bb-border);
  white-space: nowrap;
}

.bb-land-showcase__badge--foot {
  align-self: center;
  margin-top: 0.15rem;
}

.bb-land-showcase__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.bb-land-showcase__field {
  display: flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: clamp(6px, 0.9vw, 8px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bb-border);
  line-height: 1.2;
}

.bb-land-showcase__field--ghost {
  color: rgba(255, 255, 255, 0.38);
}

.bb-land-showcase__field--hex {
  flex: 0 0 auto;
  width: 42px;
  font-family: ui-monospace, monospace;
  font-size: 6px;
  color: var(--bb-blue);
}

.bb-land-showcase__field--xs {
  flex: 1;
  min-height: 14px;
  justify-content: center;
  font-size: 6px;
  padding: 1px 4px;
}

.bb-land-showcase__field--half {
  flex: 1;
  min-width: 0;
}

.bb-land-showcase__field--area {
  min-height: 28px;
}

.bb-land-showcase__field-row {
  display: flex;
  gap: 0.35rem;
}

.bb-land-showcase__main--with-foot {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
}

.bb-land-showcase__split-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  flex: 1;
  min-height: 0;
}

.bb-land-showcase__main--auth {
  padding: 0;
}

.bb-land-showcase__pane--auth {
  justify-content: center;
  gap: 0.38rem;
  padding: 0.85rem 0.9rem;
  background: rgba(0, 0, 0, 0.35);
}

.bb-land-showcase__mini-logo {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  margin-bottom: 0.15rem;
}

.bb-land-showcase__pane--blob {
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
}

.bb-land-showcase__pane--blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(99, 91, 255, 0.35) 0 1px, transparent 2px);
  background-size: 18px 18px, 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}

.bb-land-showcase__glyph--lg {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1;
}

.bb-land-showcase__glyph--sm {
  width: 22px;
  height: 22px;
}

.bb-land-showcase__glyph--xs {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.bb-land-showcase__glyph--white {
  background: rgba(255, 255, 255, 0.92);
}

.bb-land-showcase__foot-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.35), rgba(10, 63, 255, 0.28));
  border: 1px solid rgba(99, 91, 255, 0.32);
}

.bb-land-showcase__foot-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.bb-land-showcase__pill--xs {
  width: auto;
  min-height: 16px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.bb-land-showcase__preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  flex: 1;
}

.bb-land-showcase__block--preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 72px;
  padding: 0.45rem;
  position: relative;
}

.bb-land-showcase__block--preview em {
  font-style: normal;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.45);
}

.bb-land-showcase__block--light-upload {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.35);
}

.bb-land-showcase__block--light-upload::after {
  color: rgba(0, 0, 0, 0.22);
}

.bb-land-showcase__block--square em,
.bb-land-showcase__block--light-upload em {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-style: normal;
  font-size: 5px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.bb-land-showcase__block--light-upload em {
  color: rgba(0, 0, 0, 0.38);
}

.bb-land-showcase__ctrl-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bb-land-showcase__bar--flex {
  flex: 1;
  width: auto;
}

.bb-land-showcase__dot-radio {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--bb-border);
  background: transparent;
  flex-shrink: 0;
}

.bb-land-showcase__dot-radio.is-on {
  border-color: var(--bb-blue);
  background: radial-gradient(circle at center, var(--bb-blue) 0 35%, transparent 36%);
}

.bb-land-showcase__theme-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
}

.bb-land-showcase__theme-grid span {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__theme-grid span.is-accent {
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.45);
}

.bb-land-showcase__theme-add {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.bb-land-showcase__pane--preview {
  gap: 0.35rem;
}

.bb-land-showcase__modal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(99, 91, 255, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bb-land-showcase__modal-head {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.bb-land-showcase__bar--name {
  flex: 1;
  height: 6px;
  width: auto;
}

.bb-land-showcase__close {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
}

.bb-land-showcase__close::before,
.bb-land-showcase__close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.bb-land-showcase__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bb-land-showcase__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bb-land-showcase__modal-body {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 0.35rem;
  align-items: start;
}

.bb-land-showcase__block--product-img {
  aspect-ratio: 1;
  min-height: 0;
  background: linear-gradient(145deg, rgba(10, 63, 255, 0.22), rgba(99, 91, 255, 0.14));
  border-color: rgba(99, 91, 255, 0.28);
  position: relative;
}

.bb-land-showcase__block--product-img::after {
  content: none;
}

.bb-land-showcase__block--product-img::before {
  content: '';
  position: absolute;
  inset: 28% 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.bb-land-showcase__modal-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.1rem;
}

.bb-land-showcase__modal-copy .bb-land-showcase__bar {
  width: 100%;
  height: 5px;
}

.bb-land-showcase__modal-fields {
  display: flex;
  gap: 0.25rem;
}

.bb-land-showcase__pill--buy {
  width: 100%;
  min-height: 18px;
  font-size: clamp(6px, 0.85vw, 7px);
}

.bb-land-showcase__num-row {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.bb-land-showcase__num-row span {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.bb-land-showcase__num-row span.is-on {
  color: #fff;
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.45);
}

.bb-land-showcase__check-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.bb-land-showcase__check {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1px solid var(--bb-border);
  background: transparent;
  flex-shrink: 0;
  position: relative;
}

.bb-land-showcase__check.is-on {
  background: linear-gradient(135deg, var(--bb-blue), var(--bb-purple));
  border-color: rgba(99, 91, 255, 0.45);
}

.bb-land-showcase__check.is-on::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 1px;
  width: 4px;
  height: 6px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.bb-land-showcase__bar--check {
  flex: 1;
  width: auto;
  height: 5px;
}

.bb-land-showcase__block--preview.bb-land-showcase__block--light em {
  color: rgba(0, 0, 0, 0.42);
}

.bb-land-showcase__card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bb-border);
}

.bb-land-showcase__card .bb-land-showcase__pill {
  width: 100%;
}

.bb-land-showcase__card .bb-land-showcase__pill--white {
  color: rgba(0, 0, 0, 0.82);
}

.bb-land-showcase__platform-row {
  display: grid;
  grid-template-columns: 14px 1fr 28px;
  align-items: center;
  gap: 0.35rem;
}

.bb-land-showcase__platform-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bb-land-showcase__platform-icon.is-google {
  background: linear-gradient(135deg, #4285f4, #ea4335 50%, #fbbc05 80%);
}

.bb-land-showcase__platform-icon.is-reddit {
  background: #ff4500;
}

.bb-land-showcase__platform-icon.is-x {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bb-land-showcase__platform-icon.is-facebook {
  background: #1877f2;
}

.bb-land-showcase__platform-name {
  font-size: clamp(6px, 0.9vw, 8px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.bb-land-showcase-carousel .bb-land-showcase__pane--controls {
  gap: 0.32rem;
}

.bb-land-showcase-carousel .bb-land-showcase__pane--stack {
  gap: 0.32rem;
}

.bb-land-showcase-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 0.5rem;
  padding-top: 0.15rem;
}

.bb-land-showcase-carousel__dots button {
  position: relative;
  width: 28px;
  min-height: 40px;
  padding: 16px 6px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.bb-land-showcase-carousel__dots button::before {
  content: '';
  display: block;
  width: 22px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.bb-land-showcase-carousel__dots button:hover::before {
  background: rgba(99, 91, 255, 0.38);
}

.bb-land-showcase-carousel__dots button.is-active::before {
  background: linear-gradient(90deg, var(--bb-purple), var(--bb-blue));
  transform: scaleY(1.45);
}

.bb-land-showcase-carousel__dots button:focus-visible {
  outline: 2px solid var(--bb-purple);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .bb-land-showcase-carousel__stage {
    min-height: clamp(210px, 54vw, 300px);
    perspective: 1400px;
  }

  .bb-land-showcase-carousel .bb-land-showcase__frame {
    width: min(92vw, 420px);
  }

  .bb-land-showcase-carousel .bb-land-showcase__main {
    padding: 0.65rem 0.75rem;
  }

  .bb-land-showcase-carousel .bb-land-showcase__main--auth {
    padding: 0;
  }

  .bb-land-showcase-carousel .bb-land-showcase__main--with-foot {
    padding: 0.55rem 0.65rem;
  }
}

/* Footer */
.bb-land-app-soon {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3rem, 8vh, 4.75rem) var(--bb-pad);
  border-top: 1px solid var(--bb-border);
}

.bb-land-app-soon__title {
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 auto 1.85rem;
  max-width: 20em;
  color: var(--bb-text);
}

.bb-land-app-soon__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.35rem, 4.5vw, 2.25rem);
}

.bb-land-app-soon__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(72px, 16vw, 92px);
  height: clamp(72px, 16vw, 92px);
  border-radius: 22%;
  animation: bb-land-app-soon-pulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 14px 32px rgba(99, 91, 255, 0.38));
}

.bb-land-app-soon__icon-wrap--android {
  animation-delay: 0.55s;
}

.bb-land-app-soon__icon-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

/* Premium spotlight — below app stores */
.bb-land-premium-spotlight {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3.5rem, 9vh, 5.5rem) var(--bb-pad) clamp(4rem, 10vh, 6rem);
  border-top: 1px solid var(--bb-border);
}

.bb-land-premium-spotlight__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 auto 1.25rem;
  max-width: 18em;
  color: var(--bb-text);
}

.bb-land-premium-spotlight__lede {
  color: var(--bb-muted);
  max-width: 40em;
  margin: 0 auto 2rem;
  line-height: 1.55;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.bb-land-premium-spotlight__media {
  width: min(960px, 100%);
  margin: 0 auto 1.75rem;
}

.bb-land-premium-spotlight__video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  background: #0a0c14;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.bb-land-premium-spotlight__actions {
  margin: 0;
}

.bb-land-premium-spotlight__actions .bb-land-btn {
  min-width: min(100%, 220px);
  min-height: 48px;
  padding: 0.9rem 2rem;
}

@keyframes bb-land-app-soon-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.bb-land-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem var(--bb-pad) 3rem;
  border-top: 1px solid var(--bb-border);
}

.bb-land-footer__wordmark {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.bb-land-footer__wordmark-inner {
  position: relative;
  display: inline-block;
  line-height: 0;
  vertical-align: top;
  isolation: isolate;
}

.bb-land-footer__wordmark-img {
  display: block;
  height: 19.8px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.bb-land-footer__wordmark-img--base {
  position: relative;
  z-index: 1;
  opacity: 0.92;
  filter: brightness(0.6);
}

.bb-land-footer__wordmark-img--shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.55;
  filter: brightness(0.88);
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

.bb-land-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--bb-muted);
}

.bb-land-footer__legal {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .bb-land-footer__legal {
    white-space: normal;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.72rem;
  }
}

.bb-land-footer p.bb-land-footer__legal {
  color: #949ba8;
}

.bb-land-footer__line {
  display: inline;
  line-height: 1.55;
  color: #949ba8;
}

.bb-land-footer__b-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  padding-left: 2px;
  white-space: nowrap;
  color: #949ba8;
  letter-spacing: -0.05em;
}

.bb-land-footer__b-img {
  display: inline-block;
  height: 1.045em;
  width: calc(1.045em * 30 / 43);
  min-width: 0.6em;
  margin: 0;
  vertical-align: -0.14em;
  overflow: visible;
  flex-shrink: 0;
}

.bb-land-footer__b-mark sup {
  position: relative;
  top: -7px;
  margin-left: -0.1em;
  padding-left: 0;
  vertical-align: baseline;
  color: #949ba8;
  font-size: 0.65em;
  line-height: 0;
}

.bb-land-footer__legal sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
}

/* Motion hooks — GSAP sets initial state; reduced motion resets */
[data-reveal],
[data-line],
[data-card] {
  will-change: transform, opacity;
}

/* Full-page load intro */
html,
body.bb-land-intro-pending {
  background: #050508;
}

body.bb-land-intro-pending .bb-land-page {
  opacity: 0;
  visibility: hidden;
}

body.bb-land-intro-pending .bb-land-intro__b-wrap {
  opacity: 0;
  visibility: hidden;
}

body.bb-land-intro-video-ready .bb-land-intro__b-wrap {
  opacity: 1;
  visibility: visible;
}

body.bb-land-intro-active {
  overflow: hidden;
}

.bb-land-intro {
  position: fixed;
  inset: 0;
  z-index: var(--bb-z-intro);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
  overflow: hidden;
}

.bb-land-intro.is-done {
  pointer-events: none;
}

.bb-land-intro__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-land-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bb-land-intro__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(94vw, 960px);
  min-height: clamp(280px, 52vh, 560px);
}

.bb-land-intro__b-wrap {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-land-intro__b-pulse {
  position: relative;
  z-index: 1;
  width: clamp(176px, 32vw, 240px);
  height: clamp(252px, 46vw, 344px);
  transform-origin: 50% 50%;
}

.bb-land-intro__b-full {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

.bb-land-intro__b-shards {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bb-land-intro__b-shard {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: 50% 50%;
}

.bb-land-intro__b-shard img {
  display: block;
  width: 100%;
  height: 100%;
}

.bb-land-intro__b-shard--1 {
  clip-path: polygon(0% 0%, 36% 0%, 30% 100%, 0% 100%);
}

.bb-land-intro__b-shard--2 {
  clip-path: polygon(32% 0%, 50% 0%, 46% 100%, 26% 100%);
}

.bb-land-intro__b-shard--3 {
  clip-path: polygon(48% 0%, 64% 0%, 58% 100%, 44% 100%);
}

.bb-land-intro__b-shard--4 {
  clip-path: polygon(62% 0%, 100% 0%, 100% 52%, 56% 58%);
}

.bb-land-intro__b-shard--5 {
  clip-path: polygon(54% 54%, 100% 58%, 100% 100%, 42% 100%);
}

.bb-land-intro__b-shard--6 {
  clip-path: polygon(0% 68%, 42% 62%, 38% 100%, 0% 100%);
}

.bb-land-intro__wordmark {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.bb-land-intro__wordmark img {
  display: block;
  width: min(220px, 52vw);
  height: auto;
  max-width: none;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .bb-land-intro {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bb-land-bg-video:not(.is-active) {
    display: none;
  }

  .bb-land-bg-video.is-active {
    opacity: 0.35;
  }

  .bb-land-pin {
    height: auto;
  }

  .bb-land-pin__sticky {
    position: relative;
    height: auto;
  }

  .bb-land-pin__panel {
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-bottom: 1rem;
  }

  .bb-land-pin__progress {
    display: none;
  }

  .bb-land-hero__glyph-ring--outer {
    animation: none;
  }

  .bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-float,
  .bb-land-hero__glyph.is-css-breathe .bb-land-hero__glyph-glow {
    animation: none;
  }

  .bb-land-footer__legal,
  .bb-land-footer__line,
  .bb-land-footer__b-mark {
    color: #949ba8 !important;
  }

  .bb-land-footer__wordmark-img--shine {
    display: none !important;
  }

  .bb-land-app-soon__icon-wrap {
    animation: none;
  }

}
