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

:root {
  --bg: #11110f;
  --bg-name: #1a1815;
  --cream: #cec8be;
  --muted: #8d8d8d;
  --white: #f0ece7;
  --text: #f0ece7;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #b8ff68;
  --accent-on-light: #2d77f3;
  --accent-on-light-bg: #2d77f3;
  --cyan: var(--accent);
  --font-ui: 'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --trusted-overlap: clamp(220px, 46vh, 620px);
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
  scroll-snap-type: none;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  scroll-snap-align: none;
  /* fallback while image loads */
}

/* ── BACKGROUND (matches Framer framer-1mzog65 structure) ── */
.hero__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

/* framer-1uln8ae: wide soft-light radial glow, opacity 0.5 */
.hero__vig1 {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  background: radial-gradient(46% 80% at 50% 23%, #fff 0%, rgba(0, 0, 0, 0.1) 100%);
  overflow: hidden;
}

/* framer-1va3jpn: tighter soft-light radial glow */
.hero__vig2 {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  background: radial-gradient(25% 78% at 50% 23.8%, #fff 0%, rgba(0, 0, 0, 0.1) 100%);
  overflow: hidden;
}

/* ── HUGE BACKGROUND NAME ─────────────────────────── */
/* framer-o2knqe-container: bottom: 0, left: 50%, translate(-50%) */
.bg-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 27vw;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--bg-name);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  will-change: transform;
  z-index: 1;
}

/* ══════════════════════════════════════════════════
   PORTRAIT  (framer-199krna)
   aspect-ratio: 1.10674 (2090 / 1869 of original image)
   height: 100vh, centered absolute
══════════════════════════════════════════════════ */
.portrait-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1.10674;
  height: 100vh;
  width: auto;
  z-index: 2;
  overflow: visible;
  will-change: transform;
}

/* ── Base portrait image — on top of eye masks ── */
.portrait-base {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}

.portrait-base__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

/* ── Eye masks — ABOVE portrait (Framer DOM order: after portrait-base) ──
   The mask clips the 64px iris image to just the pupil-sized area.

   Lens geometry (at 1440px design width):
     Portrait width  = 1440 × 1.10674 = 1594px
     Specs width     = 29% × 1594 = 462px  → each lens ≈ 231px
     Iris img 64px   = 64 / 1594 = 4.01% of portrait width   (mask width)
     Height same     = 64 / 1440 = 4.44% of portrait height  (mask height)

   Center coords:
     Vertical: specs top 24.69% + height 13% / 2 = 31.19%
       → mask top  = 31.19% − 4.44%/2 = 28.97% ≈ 29%
     Left lens:  35.14% + 29%×0.25 = 42.39%
       → mask left = 42.39% − 4.01%/2 = 40.39% ≈ 40.4%
     Right lens: 35.14% + 29%×0.75 = 56.89%
       → mask left = 56.89% − 4.01%/2 = 54.89% ≈ 54.9%               */
.eye-mask {
  position: absolute;
  overflow: hidden;
  width: 2.4%;
  height: 26px;
  border-radius: 60%;
  z-index: 2;
}

.eye-mask--left {
  top: 36.2%;
  left: 42.8%;
}

.eye-mask--right {
  top: 36.3%;
  left: 54.9%;
}

.eye {
  position: absolute;
  width: 64px;
  height: 64px;
  /* Centered in mask; JS will add translate offset on top via CSS var */
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
  /* Framer transition: 500ms cubic-bezier(0, 0, 0.58, 1) */
  transition: transform 500ms cubic-bezier(0, 0, 0.58, 1);
  /* Start at zero offset so it shows the center of the iris image */
  transform: translate(0px, 0px);
}

.eye img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ── Specs (framer-fdrxls) ── */
/* width: 29%, height: 13%, top: 24.6875%, left: 35.1412% of portrait-wrap */
.specs {
  position: absolute;
  width: 29%;
  height: 13%;
  top: 32%;
  left: 35.5%;
  overflow: visible;
  z-index: 2;
  /* above portrait-base */
}

.specs-bg {
  position: absolute;
  inset: 0;
}

.specs-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

/* ── Lens shine (framer-1jxzwbk/1hf1ob-container) ── */
/* opacity: 0.1 — very subtle glass reflection */
.lens-shine {
  position: absolute;
  opacity: 0.1;
  width: 36%;
  height: 89%;
  overflow: visible;
  pointer-events: none;
  --lens-delay: 0s;
}

/* Left lens: top: 6.79612%, left: 5.51181% of specs */
.lens-shine--left {
  top: 6.79612%;
  left: 5.51181%;
}

/* Right lens: mirrored */
.lens-shine--right {
  top: 6.79612%;
  left: 58.49%;
  --lens-delay: 0.8s;
}

/* Blurred circular container (framer-1b90vbj) */
.lens-shine__blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  border-radius: 9999px;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: radial-gradient(circle at center, #000 66%, transparent 73%);
  mask-image: radial-gradient(circle at center, #000 66%, transparent 73%);
}

/* White fill circle (framer-8k1rju — Ellipse Right) */
.lens-shine__circle {
  position: absolute;
  aspect-ratio: 1.00917;
  height: 218px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: #fff;
  opacity: 0.08;
}

/* Moving shine band, clipped by round lens mask */
.lens-shine__blur::before {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -65%;
  width: 42%;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.62) 48%,
      rgba(255, 255, 255, 0) 100%);
  transform: translateX(0) rotate(14deg);
  transform-origin: center;
  animation: lens-band-lr 2.8s linear infinite;
  animation-delay: var(--lens-delay);
}

/* Lens flare streak SVG — rotated 30deg (framer-ptsc4l) */
.lens-shine__streak {
  position: absolute;
  width: 37px;
  height: 316px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  transform-origin: 50% 50%;
  image-rendering: pixelated;
  flex-shrink: 0;
}

@keyframes lens-band-lr {
  0% {
    transform: translateX(0) rotate(14deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateX(310%) rotate(14deg);
    opacity: 0;
  }
}

/* ── Bottom vignette to blend into bg ── */
.portrait-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 30%),
    linear-gradient(to right, var(--bg) 0%, transparent 20%),
    linear-gradient(to left, var(--bg) 0%, transparent 20%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 12%);
  pointer-events: none;
  z-index: 5;
}

/* ── TRAIT LABELS — Framer framer-k3s0o9 structure ── */
.trait {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: clamp(130px, 12vw, 180px);
  overflow: hidden;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  /* under portrait layer */
}

/* Stars — exact Framer SVG as background-image */
.trait__stars {
  width: 74px;
  height: 13px;
  flex-shrink: 0;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 116 20'%3E%3Cpath d='M 9.902 0.1 L 12.126 6.942 L 19.32 6.942 L 13.5 11.171 L 15.723 18.014 L 9.902 13.785 L 4.082 18.014 L 6.305 11.171 L 0.485 6.942 L 7.679 6.942 Z' fill='rgba(255,255,255,0.25)'/%3E%3Cpath d='M 33.951 0.1 L 36.174 6.942 L 43.369 6.942 L 37.549 11.171 L 39.772 18.014 L 33.951 13.785 L 28.131 18.014 L 30.354 11.171 L 24.533 6.942 L 31.728 6.942 Z' fill='rgba(255,255,255,0.25)'/%3E%3Cpath d='M 58 0.1 L 60.223 6.942 L 67.418 6.942 L 61.597 11.171 L 63.821 18.014 L 58 13.785 L 52.179 18.014 L 54.403 11.171 L 48.582 6.942 L 55.777 6.942 Z' fill='rgba(255,255,255,0.25)'/%3E%3Cpath d='M 82.049 0.1 L 84.272 6.942 L 91.467 6.942 L 85.646 11.171 L 87.869 18.014 L 82.049 13.785 L 76.228 18.014 L 78.451 11.171 L 72.631 6.942 L 79.826 6.942 Z' fill='rgba(255,255,255,0.25)'/%3E%3Cpath d='M 106.098 0.1 L 108.321 6.942 L 115.515 6.942 L 109.695 11.171 L 111.918 18.014 L 106.098 13.785 L 100.277 18.014 L 102.5 11.171 L 96.68 6.942 L 103.874 6.942 Z' fill='rgba(255,255,255,0.25)'/%3E%3C/svg%3E");
}

/* Title — gradient applied directly, clipped to text shape.
   Base white at 42% always readable; bright 95% sweep animates across. */
.trait__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  /* Gradient clipped to text */
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(100deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.42) 35%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.42) 65%,
      rgba(255, 255, 255, 0.42) 100%);
  background-size: 250% 100%;
  background-position: 200% center;
  animation: trait-shine 9s ease-in-out infinite;
  animation-delay: var(--shine-delay, 0s);
}

@keyframes trait-shine {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -100% center;
  }
}

/* Staggered delays spread across the 8s period */
.trait--left-top {
  --shine-delay: 0.0s;
}

.trait--left-middle {
  --shine-delay: 0.6s;
}

.trait--left-bottom {
  --shine-delay: 1.2s;
}

.trait--left-inner-upper {
  --shine-delay: 1.8s;
}

.trait--left-inner-center {
  --shine-delay: 2.4s;
}

.trait--left-inner-lower {
  --shine-delay: 3.0s;
}

.trait--right-inner-upper {
  --shine-delay: 3.6s;
}

.trait--right-inner-center {
  --shine-delay: 4.2s;
}

.trait--right-inner-lower {
  --shine-delay: 4.8s;
}

.trait--right-top {
  --shine-delay: 5.4s;
}

.trait--right-middle {
  --shine-delay: 6.0s;
}

.trait--right-bottom {
  --shine-delay: 6.6s;
}

/* Person block */
.trait__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  overflow: hidden;
}

/* Name — Bebas Neue, ~30px (1.88rem), rgb(140,140,139) */
.trait__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  color: rgb(140, 140, 139);
  width: 100%;
  max-width: 100%;
  white-space: normal;
  margin: 0;
}

/* Description — Roboto 16px, letter-spacing -0.04em */
.trait__desc {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(9px, 0.65vw, 11px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2em;
  text-align: center;
  color: rgb(140, 140, 139);
  width: 100%;
  max-width: 100%;
  white-space: normal;
  margin: 0;
  text-wrap: pretty;
}

.trait__desc strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* ── INDIVIDUAL POSITIONS (center-anchored via translate(-50%,-50%)) ── */
.trait--left-top {
  top: 18%;
  left: 18%;
}

.trait--left-middle {
  top: 42%;
  left: 19%;
}

.trait--left-bottom {
  top: 70%;
  left: 11%;
}

.trait--left-inner-upper {
  top: 26%;
  left: 29%;
}

.trait--left-inner-center {
  top: 45%;
  left: 30%;
}

.trait--left-inner-lower {
  top: 64%;
  left: 24%;
}

.trait--right-inner-upper {
  top: 26%;
  left: 71%;
}

.trait--right-inner-center {
  top: 45%;
  left: 70%;
}

.trait--right-inner-lower {
  top: 64%;
  left: 76%;
}

.trait--right-top {
  top: 18%;
  left: 82%;
}

.trait--right-middle {
  top: 42%;
  left: 81%;
}

.trait--right-bottom {
  top: 70%;
  left: 89%;
}

/* ── TAGLINE ──────────────────────────────────────── */
.tagline {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 5;
}

.tagline__top {
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.tagline__main {
  font-size: clamp(12px, 1.3vw, 18px);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tagline__star {
  color: var(--cyan);
  font-size: 1.1em;
  line-height: 1;
}

/* Mobile-only down arrow */
.tagline__arrow {
  display: none;
  margin-top: 18px;
  color: var(--cyan);
  font-size: 14px;
}

/* ── SIDE BUTTON ──────────────────────────────────── */
.side-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  padding: 14px 0;
  background: #1a1714;
  border: 1px solid #282420;
  border-right: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-align: center;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.side-btn:hover {
  background: #222018;
  color: var(--white);
}

:root {
  --bg: #11110f;
  --text: #f0ece7;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #b8ff68;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
}

/* Родитель может быть ЛЮБОЙ ширины */
.hero-about {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-template-rows: minmax(280px, 0.9fr) minmax(220px, 0.56fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}


.hero-about__cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

/* Верхняя левая */
.hero-about__intro {
  padding: clamp(24px, 3vw, 48px);
  min-height: clamp(260px, 34vw, 460px);
  display: flex;
  align-items: flex-start;
}

.hero-about__intro-inner {
  max-width: min(100%, 48rem);
}

.hero-about__name {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-about__roles {
  margin-top: clamp(20px, 2vw, 32px);
}

.hero-about__roles p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.hero-about__roles p+p {
  margin-top: 0.45em;
  color: var(--muted);
  font-weight: 500;
}

/* Верхняя правая */
.hero-about__stats {
  padding: clamp(24px, 3vw, 48px);
  min-height: clamp(260px, 34vw, 460px);
}

.hero-about__stats-list {
  display: grid;
  gap: clamp(20px, 2.5vw, 40px);
  align-content: start;
}

.hero-about__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  align-items: start;
}

.hero-about__stat-num {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
  font-weight: 700;
  color: var(--accent);
}

.hero-about__stat-text {
  padding-top: 0.15em;
  font-size: clamp(1.1rem, 1.9vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 16ch;
}

/* Нижняя левая */
.hero-about__statement {
  padding: clamp(24px, 3vw, 48px);
  min-height: clamp(280px, 36vw, 520px);
  display: flex;
  align-items: flex-start;
}

.hero-about__statement-inner {
  max-width: min(100%, 18ch);
  font-size: clamp(2rem, 5.3vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 500;
  text-wrap: balance;
}

.hero-about__statement-inner span {
  color: var(--accent);
}

/* Нижняя правая */
.hero-about__meta {
  padding: clamp(24px, 3vw, 48px);
  min-height: clamp(280px, 36vw, 520px);
  display: flex;
  align-items: end;
}

.hero-about__meta-inner {
  width: 100%;
}

.hero-about__meta-label {
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: clamp(10px, 1.2vw, 18px);
  font-weight: 600;
}

.hero-about__meta-value {
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 600;
}

/* Планшет */
@media (max-width: 980px) {
  .hero-about {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-about__intro,
  .hero-about__stats,
  .hero-about__statement,
  .hero-about__meta {
    padding: clamp(24px, 3vw, 40px);
  }

  .hero-about__statement-inner {
    max-width: 100%;
  }

  .hero-about__meta {
    align-items: flex-start;
  }
}

.hero-about__intro {
  min-height: 0;
}

.hero-about__stats {
  min-height: 0;
}

.hero-about__statement {
  min-height: 0;
  align-items: center;
}

:root {
  --bg: #11110f;
  --text: #f0ece7;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #b8ff68;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
}

.hero-person {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #000;
}

.hero-person__main,
.hero-person__side {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* LEFT */

.hero-person__main {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: clamp(520px, 62vw, 860px);
}

.hero-person__top {
  padding: clamp(24px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
}

.hero-person__name {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-person__roles {
  margin-top: clamp(20px, 2vw, 30px);
}

.hero-person__roles p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-person__roles p+p {
  margin-top: 0.45em;
  color: var(--muted);
  font-weight: 500;
}

.hero-person__bottom {
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
}

.hero-person__statement {
  max-width: 20ch;
  font-size: clamp(2.5rem, 5vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 500;
  text-wrap: balance;
}

.hero-person__statement span {
  color: var(--accent);
}

.hero-person__note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.35;
  color: var(--muted);
}

/* RIGHT */

.hero-person__side {
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-person__stats {
  padding: clamp(24px, 3vw, 48px);
  display: grid;
  align-content: start;
  gap: clamp(22px, 2.3vw, 38px);
  border-bottom: 1px solid var(--line);
}

.hero-person__stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
  align-items: start;
}

.hero-person__stat-num {
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
  font-weight: 700;
  color: var(--accent);
}

.hero-person__stat-text {
  max-width: 14ch;
  padding-top: 0.18em;
  font-size: clamp(1rem, 1.45vw, 1.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-person__community {
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(180px, 18vw, 260px);
}

.hero-person__community-label {
  margin-bottom: 10px;
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.hero-person__community-value {
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 650;
}

.hero-person__community-text {
  margin-top: 14px;
  max-width: 24ch;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.35;
  color: var(--muted);
}

@media (min-width: 1366px) {
  #about-me {
    display: flex;
    flex-direction: column;
  }

  #about-me .hero-person {
    flex: 1 1 auto;
    min-height: 0;
  }
}

/* TABLET */
/* главный якорь */
.hero-person__name {
  font-weight: 800;
}

/* основной смысл */
.hero-person__statement {
  font-weight: 500;
}

/* цифры */
.hero-person__stat-num {
  font-weight: 600;
}

/* роли */
.hero-person__roles p {
  font-weight: 500;
}

/* подписи */
.hero-person__stat-text {
  font-weight: 400;
}

/* meta label */
.hero-person__community-label {
  font-weight: 500;
}

/* РВИ */
.hero-person__community-value {
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-person {
    grid-template-columns: 1fr;
  }

  .hero-person__main {
    min-height: auto;
  }

  .hero-person__side {
    grid-template-rows: auto auto;
  }

  .hero-person__community {
    min-height: auto;
  }

  .hero-person__statement {
    max-width: 100%;
  }
}

/* MOBILE */

@media (max-width: 560px) {
  .hero-person__name {
    max-width: none;
  }

  .hero-person__stat {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-person__stat-text {
    max-width: none;
    padding-top: 0;
  }

  .hero-person__statement {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }
}

/* Очень узкие контейнеры */
@media (max-width: 560px) {
  .hero-about__stat {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-about__stat-text {
    max-width: none;
    padding-top: 0;
  }

  .hero-about__statement-inner {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
}

.hero-about__statement-inner {
  max-width: 20ch;
  font-size: clamp(2.6rem, 4.6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.hero-about__meta {
  min-height: 0;
  align-items: center;
}

.hero-about__meta-value {
  font-size: clamp(4rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 600;
}

.hero-about__meta-text {
  margin-top: 14px;
  max-width: 24ch;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.35;
  color: var(--muted);
}

/* ── NEXT SECTION: Trusted panel over hero ───────── */
.trusted-panel {
  position: relative;
  margin-top: 0;
  z-index: 14;
  background: #11110f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  scroll-snap-align: none;
  box-shadow: 0 -24px 42px rgba(0, 0, 0, 0.4);
}

.trusted-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -46px;
  height: 46px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(17, 17, 15, 0.9), transparent);
}

.trusted-panel__inner {
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--page-gutter) 52px;
}

.trusted-panel__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 236, 231, 0.72);
  margin: 0 0 18px;
}

.trusted-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  left: 0;
  transform: none;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.trusted-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 52px);
  width: max-content;
  animation: trusted-marquee-move 34s linear infinite;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(188px, 16vw, 248px);
  height: clamp(118px, 10vw, 152px);
  min-width: 188px;
  padding: 8px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.trusted-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.trusted-logo:hover {
  transform: translateY(-1px);
}

.trusted-logo:hover .trusted-logo__img {
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.28));
  opacity: 1;
}

/* ── Shorts panel ─────────────────────────────────── */
.shorts-panel {
  position: relative;
  z-index: 12;
  background: #11110f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  height: 100vh;
  height: 100svh;
}

.shorts-panel.section {
  padding: 0;
  border-bottom: none;
}

.shorts-panel__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  height: 100%;
}

.shorts-featured-grid {
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.shorts-grid-wrap {
  grid-column: span 2;
  display: flex;
  min-height: 0;
}

.shorts-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.shorts-nav__btn {
  width: clamp(46px, 3.8vw, 64px);
  aspect-ratio: 1 / 1;
  border: 1px solid #4f4f4f;
  border-radius: 0;
  background: #060606;
  color: #f0ece7;
  font-family: var(--font-mono);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shorts-nav__btn:hover {
  background: #11110f;
  border-color: rgba(240, 236, 231, 0.65);
}

.shorts-nav__btn:active {
  transform: translateY(1px);
}

.shorts-grid {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  height: 100%;
  min-height: 0;
}

.shorts-grid.is-shift-left {
  animation: shorts-shift-left 0.26s ease;
}

.shorts-grid.is-shift-right {
  animation: shorts-shift-right 0.26s ease;
}

.shorts-card {
  position: relative;
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  background: #141412;
  transition: flex-grow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.shorts-grid:hover .shorts-card:not(:hover):not(.is-playing) {
  flex-grow: 0.85;
}

.shorts-card:hover,
.shorts-card:focus-within,
.shorts-card.is-playing {
  flex-grow: 1.6;
}

.shorts-card__toggle {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  background: transparent;
  color: inherit;
  position: relative;
}

.shorts-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(0.92);
  transition: filter 0.26s ease;
}

.shorts-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.35) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f7f4ef;
  transition: opacity 0.24s ease;
}

.shorts-card__overlay--dim {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.42) 100%);
}

.shorts-card__play {
  width: 52px;
  height: 52px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  font-size: 21px;
  background: rgba(10, 10, 10, 0.4);
}

.shorts-card__hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.shorts-card.is-playing .shorts-card__overlay {
  opacity: 0;
  pointer-events: none;
}

.shorts-card.is-playing .shorts-card__video {
  filter: saturate(1) contrast(1);
}

.shorts-card--more {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(145deg, #181815, #0f0f0d 56%, #131310);
}

.shorts-card__more-link {
  width: 100%;
  height: 100%;
  color: #f4f0eb;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
}

.shorts-card__more-icon {
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: grid;
  place-items: center;
  font-size: 32px;
  line-height: 1;
}

.shorts-card__more-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.shorts-card__more-subtitle {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.72);
}

@keyframes shorts-shift-left {
  0% {
    transform: translateX(18px);
    opacity: 0.96;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shorts-shift-right {
  0% {
    transform: translateX(-18px);
    opacity: 0.96;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shorts-shift-left-mobile {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes shorts-shift-right-mobile {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@media (max-width: 1199px) {
  .shorts-panel {
    height: auto;
    min-height: 100svh;
  }

  .shorts-featured-grid {
    grid-template-rows: auto auto;
  }

  .shorts-grid-wrap {
    min-height: unset;
  }

  .shorts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
  }

  .shorts-card {
    width: 100%;
    flex: initial;
    aspect-ratio: 9 / 16;
    height: auto;
  }
}

@media (min-width: 768px) {
  .shorts-featured-grid .bb-featured-grid-col.-header {
    padding: clamp(40px, 4.2vw, 64px) var(--page-gutter) clamp(24px, 2.6vw, 40px);
    border-right: 1px #4f4f4f solid;
  }

  .shorts-featured-grid .bb-featured-grid-col.-more {
    padding: clamp(40px, 4.2vw, 64px) var(--page-gutter) clamp(24px, 2.6vw, 40px);
    border-bottom: 1px #4f4f4f solid;
  }
}

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

@keyframes trusted-marquee-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Landing Sections ─────────────────────────────── */
.landing {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 140px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24% 100%,
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.04), transparent 30%),
    #090909;
}

.landing-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 18px clamp(16px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.55);
  position: sticky;
  top: 0;
  z-index: 15;
  backdrop-filter: blur(10px);
}

.landing-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(240, 236, 231, 0.96);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.landing-nav__item:hover {
  background: #ef3224;
  border-color: #ef3224;
}

.section {
  padding: clamp(44px, 6vw, 86px) var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
}

.section__eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 122px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: #f6f3ee;
  margin-bottom: 20px;
  max-width: 14ch;
}

.section__lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.45;
}

.about-grid,
.proof-grid,
.expert-grid,
.case-grid,
.list-grid,
.consult-grid,
.contacts-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-grid,
.proof-grid,
.expert-grid,
.consult-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contacts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-tile,
.proof-card,
.expert-card,
.case-card,
.list-card,
.consult-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.5);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.stat-tile:hover,
.proof-card:hover,
.expert-card:hover,
.case-card:hover,
.list-card:hover,
.consult-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
}

.stat-tile__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.8vw, 56px);
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-tile__label,
.proof-card p,
.expert-card li,
.case-card p,
.list-card p,
.consult-card p {
  font-family: 'Roboto', sans-serif;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.proof-card h3,
.expert-card h3,
.case-card h3,
.list-card h3,
.consult-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 2.7vw, 44px);
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.expert-card ul {
  margin: 0;
  padding-left: 18px;
}

.expert-card li {
  margin-bottom: 8px;
}

.case-card p {
  margin-bottom: 10px;
}

.proof-card:nth-child(1),
.case-card:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(95, 88, 138, 0.52), rgba(55, 52, 78, 0.28)),
    #191820;
}

.proof-card:nth-child(2),
.case-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(30, 90, 148, 0.38), rgba(11, 39, 68, 0.22)),
    #121922;
}

.proof-card:nth-child(3),
.case-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(113, 39, 39, 0.32), rgba(62, 20, 20, 0.2)),
    #1a1212;
}

/* ── Featured Expertise (inspired by bb-featured -inverse) ── */
.bb-featured.-inverse {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #060606;
}

.black-bg-text {
  color: #fff;
}

.bb-featured.white-headline {
  color: #f0ece7;
  background: #060606;
}

.bb-featured.white-headline .bb-featured-header h2 p {
  color: #f0ece7;
}

.bb-featured.white-headline .bb-featured-header-text {
  color: rgba(240, 236, 231, 0.72);
}

.bb-featured.white-headline .cta-intro-accent {
  color: #f0ece7;
}

#cta-intro.bb-featured.white-headline .bb-featured-grid-col.-header,
#cta-intro.bb-featured.white-headline .bb-featured-grid-col.-more {
  background: #060606;
}

#cta-intro.bb-featured.white-headline .bb-featured-header h2 p {
  color: #f0ece7;
}

#cta-intro.bb-featured.white-headline .cta-intro-description {
  color: rgba(240, 236, 231, 0.72);
}

#cta-intro.bb-featured.white-headline .cta-intro-accent {
  color: #f0ece7;
}

#about-me {
  position: relative;
  z-index: 15;
  background: #11110f;
  color: #fff;
  border-top: 1px solid #4f4f4f;
  padding: 0;
}

#about-me .bb-talk-grid-col::before {
  background: #4f4f4f;
}

#about-me .bb-talk-grid-col::after {
  background: #11110f;
}

#about-me .bb-talk-grid.-home {
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
}

@media (min-width: 768px) {
  #about-me .bb-talk-grid.-home {
    grid-template-columns: 18% calc(32% - 1px) calc(12.5% - 1px) calc(12.5% - 1px) calc(12.5% - 1px) 12.5%;
  }
}

#about-me .bb-talk-header {
  line-height: normal;
}

#about-me .bb-talk-quote {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.bb-featured__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: clamp(44px, 5vw, 70px) clamp(16px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bb-featured__title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 11vw, 210px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  color: #f2f1ef;
}

.bb-featured__intro {
  margin: 10px 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.5vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  max-width: 520px;
}

.bb-featured__body {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  min-height: 680px;
}

.bb-featured__projects {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.bb-featured__project {
  position: relative;
  padding: clamp(20px, 2vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: background-color 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bb-featured__project:last-child {
  border-bottom: none;
}

.bb-featured__project.is-active {
  background: rgba(255, 255, 255, 0.04);
}

.bb-featured__tags {
  display: flex;
  gap: 8px;
}

.bb-featured__tags span {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 5px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.bb-featured__visual {
  margin: 24px 0;
  width: 100%;
  height: clamp(120px, 14vw, 220px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.bb-featured__visual--violet {
  background: linear-gradient(135deg, #4f3fe0, #7a6fff);
}

.bb-featured__visual--blue {
  background: linear-gradient(135deg, #0f4ac7, #2a73f0);
}

.bb-featured__visual--ink {
  background: linear-gradient(135deg, #252732, #41465e);
}

.bb-featured__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.bb-featured__play {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(0, 0, 0, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.bb-featured__project:hover .bb-featured__media,
.bb-featured__project.is-active .bb-featured__media {
  opacity: 0.95;
  transform: scale(1.06);
  filter: saturate(1.15);
}

.bb-featured__caption {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 58ch;
}

.bb-featured__details {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-featured__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 7px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
  text-transform: uppercase;
}

.bb-featured__detail-title {
  margin: 0 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.98;
  color: #f4f2ef;
}

.bb-featured__detail-text {
  margin: 0 0 20px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.bb-featured__kpis {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 10px;
}

.bb-featured__kpis li {
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
}

/* Matrix variant to match featured inverse composition closer */
.bb-featured__matrix {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 1fr;
  grid-template-rows: minmax(340px, auto) minmax(260px, auto);
  grid-template-areas:
    "rail showcase details"
    "rail showcase quote";
  min-height: 760px;
}

.bb-featured__rail {
  grid-area: rail;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.bb-featured__showcase {
  grid-area: showcase;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background: #0f0f0f;
}

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

.bb-featured__details {
  grid-area: details;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bb-featured__quote {
  grid-area: quote;
  margin: 0;
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bb-featured__quote p {
  margin: 0 0 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 44px);
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

.bb-featured__quote cite {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
}

.bb-featured__project {
  padding: clamp(16px, 1.6vw, 24px);
}

.bb-featured__thumb {
  width: 100%;
  height: clamp(118px, 10vw, 170px);
  object-fit: cover;
  margin: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.75;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.bb-featured__project:hover .bb-featured__thumb,
.bb-featured__project.is-active .bb-featured__thumb {
  opacity: 1;
  transform: scale(1.02);
}

.text-link,
.contact-link {
  color: #f7f4ef;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 244, 239, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.contact-link:hover,
.text-link:hover {
  opacity: 0.8;
}

/* Unified style for CTA + form + FAQ */
#cta-intro,
#lead-form,
#faq,
#tech-stack,
#news-mentions {
  position: relative;
  background: #f0f3f7;
  border-top: 1px solid #4f4f4f;
  padding-top: 0;
  padding-bottom: 0;
}

#lead-form,
#faq,
#tech-stack,
#news-mentions {
  border-top: 0;
}

#faq {
  border-top: 1px solid #4f4f4f;
}

#news-mentions {
  border-top: 1px solid #4f4f4f;
}

#cta-intro>div,
#lead-form>div,
#faq>div,
#tech-stack>div,
#news-mentions>div {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#faq>.w-full,
#tech-stack>.w-full,
#news-mentions>.w-full {
  background: transparent;
  gap: 0;
  padding: 0;
}

#lead-form>.w-full>.w-full.grid {
  background: #4f4f4f;
  gap: 1px;
  padding: 0 1px 0 0;
}

#faq [data-faq-accordion],
#tech-stack [data-stack-accordion],
#news-mentions [data-news-accordion] {
  display: grid;
  gap: 1px;
  background: #4f4f4f;
  padding: 0;
  overflow: hidden;
}

#faq [data-faq-accordion] .accordion-item:first-child {
  border-top: 1px solid #4f4f4f;
}

#news-mentions [data-news-accordion] .accordion-item:first-child {
  border-top: 1px solid #4f4f4f;
}

#lead-form,
#faq,
#tech-stack,
#news-mentions {
  padding: 0;
}

#lead-form>.w-full,
#faq>.w-full,
#tech-stack>.w-full,
#news-mentions>.w-full {
  max-width: none;
}

#lead-form [data-card],
#faq [data-card],
#faq .accordion-item,
#tech-stack [data-card],
#tech-stack .accordion-item,
#news-mentions [data-card],
#news-mentions .accordion-item {
  background: #f0f3f7;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

#lead-form [data-card-title],
#faq [data-card-title],
#faq [data-accordion-button],
#tech-stack [data-card-title],
#tech-stack [data-accordion-button],
#news-mentions [data-card-title],
#news-mentions [data-accordion-button] {
  color: #11110f;
}

#lead-form [data-card-title],
#faq [data-card-title],
#tech-stack [data-card-title],
#news-mentions [data-card-title] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.2rem, 5.6vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

#lead-form [data-card-title] {
  font-size: clamp(3.2rem, 4.2vw, 5.8rem);
  line-height: 0.92;
}

#lead-form .text-label,
#faq .text-label,
#tech-stack .text-label,
#news-mentions .text-label {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

#lead-form .lead-contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 4.2vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #11110f;
}

#faq [data-accordion-button],
#tech-stack [data-accordion-button],
#news-mentions [data-accordion-button] {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 3.4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

#faq [data-accordion-content]>div,
#tech-stack [data-accordion-content]>div,
#news-mentions [data-accordion-content]>div,
#lead-form [data-card-body],
#lead-form label span {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 1.4vw, 2.2rem);
  line-height: 1.38;
}

#lead-form [data-card-body],
#lead-form .text-gray-800,
#lead-form .text-gray-600,
#lead-form .text-label,
#faq .text-gray-600,
#faq .text-gray-400,
#tech-stack .text-gray-600,
#tech-stack .text-gray-400,
#news-mentions .text-gray-600,
#news-mentions .text-gray-400 {
  color: rgba(17, 17, 15, 0.72);
}

#lead-form .contact-method-card>div {
  background: #f6f8fb;
  border-color: #4f4f4f;
  color: #11110f;
  box-shadow: none;
  border-radius: 0;
}

#lead-form .contact-method-card.is-selected>div {
  border-color: #11110f;
  background: #e8edf3;
}

#lead-form .contact-method-card input:checked+div {
  border-color: #11110f;
  background: #e8edf3;
}

#lead-form .contact-method-card span {
  color: #11110f;
}

#lead-form input[type="text"] {
  background: #f6f8fb;
  border-color: #4f4f4f;
  color: #11110f;
  border-radius: 0;
}

#lead-form input[type="text"]::placeholder {
  color: rgba(17, 17, 15, 0.44);
}

#lead-form input[type="checkbox"] {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  display: inline-block;
  background: #f6f8fb;
  border: 2px solid #4f4f4f;
  position: relative;
  vertical-align: middle;
}

#lead-form input[type="checkbox"]:checked {
  background: #11110f;
  border-color: #11110f;
}

#lead-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  height: 62%;
  border: 2px solid #f0ece7;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -58%) rotate(45deg);
  box-sizing: border-box;
}

#lead-form .contact-method-card .w-5.h-5,
#lead-form .contact-method-card .w-2\.5.h-2\.5 {
  border-radius: 0;
}

#lead-form .contact-method-card .w-5.h-5 {
  border-color: #4f4f4f;
  background: #f6f8fb;
}

#lead-form .contact-method-card .w-2\.5.h-2\.5 {
  opacity: 0;
  background: #11110f;
}

#lead-form .contact-method-card input:checked+div .w-5.h-5,
#lead-form .contact-method-card.is-selected .w-5.h-5 {
  border-color: #11110f;
  background: #11110f;
}

#lead-form .contact-method-card input:checked+div .w-2\.5.h-2\.5,
#lead-form .contact-method-card.is-selected .w-2\.5.h-2\.5 {
  opacity: 1;
  background: #f0ece7;
}

#lead-form button[type="submit"] {
  background: var(--accent-on-light-bg);
  color: #f0f3f7;
  border: 1px solid var(--accent-on-light-bg);
  border-radius: 0;
}

#lead-form button[type="submit"]:hover {
  filter: brightness(0.92);
}

#lead-form .form-status {
  margin: 1.2rem 0 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.4;
  color: rgba(17, 17, 15, 0.72);
}

/* Normalize Tailwind blue utility accents to site accent within form/faq sections. */
#lead-form [class*="text-blue-"],
#faq [class*="text-blue-"],
#tech-stack [class*="text-blue-"],
#news-mentions [class*="text-blue-"] {
  color: var(--accent-on-light);
}

#lead-form [class*="border-blue-"],
#faq [class*="border-blue-"],
#tech-stack [class*="border-blue-"],
#news-mentions [class*="border-blue-"] {
  border-color: var(--accent-on-light);
}

#lead-form [class*="bg-blue-"],
#faq [class*="bg-blue-"],
#tech-stack [class*="bg-blue-"],
#news-mentions [class*="bg-blue-"] {
  background: var(--accent-on-light-bg);
  color: #f0f3f7;
}

#lead-form .form-status.is-error {
  color: #9d2626;
}

#lead-form .form-status.is-success {
  color: #1d5f29;
}

#lead-form a,
#faq a,
#tech-stack a,
#news-mentions a {
  color: #11110f;
}

#faq [data-accordion-icon],
#tech-stack [data-accordion-icon],
#news-mentions [data-accordion-icon] {
  color: rgba(17, 17, 15, 0.58);
}

#lead-form .rounded-2xl,
#faq .rounded-2xl,
#tech-stack .rounded-2xl,
#news-mentions .rounded-2xl {
  border-radius: 0;
}

#news-mentions {
  background: #060606 !important;
  border-top: 1px solid #4f4f4f;
}

#news-mentions>div {
  background: #060606 !important;
}

#news-mentions [data-news-accordion] {
  background: rgba(240, 243, 247, 0.18);
}

#news-mentions [data-news-accordion] .accordion-item:first-child {
  border-top: 1px solid rgba(240, 243, 247, 0.18);
}

#news-mentions [data-card],
#news-mentions .accordion-item {
  background: #060606 !important;
  color: #f0f3f7;
}

#news-mentions [data-card-title],
#news-mentions [data-accordion-button],
#news-mentions .news-mentions__item-link {
  color: #f0f3f7;
}

#news-mentions .text-label,
#news-mentions [data-accordion-content]>div,
#news-mentions .text-gray-600,
#news-mentions .text-gray-400 {
  color: rgba(240, 243, 247, 0.78);
}

#news-mentions [data-accordion-icon] {
  color: rgba(240, 243, 247, 0.86);
}

#news-mentions .news-mentions__link,
#news-mentions .news-mentions__item-link {
  color: #f0f3f7;
}

#news-mentions .news-mentions__item-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 3.4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

#news-mentions .news-mentions__all-icon {
  color: rgba(240, 243, 247, 0.86);
}

#news-mentions .cta-intro-description {
  position: static;
  max-width: 62rem;
  margin: 1.8rem 0 0;
  color: rgba(240, 236, 231, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 1.45vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

#news-mentions .news-mentions__link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

#news-mentions .news-mentions__item-link:hover,
#news-mentions .news-mentions__link:hover {
  color: #9ec4ff;
}

#cta-intro .bb-featured-grid-col.-header,
#cta-intro .bb-featured-grid-col.-more {
  background: #f0f3f7;
}

#cta-intro .bb-featured-grid-col.-header {
  border-right: 1px solid #4f4f4f;
}

#cta-intro .bb-featured-header h2 p {
  color: #11110f;
}

#cta-intro .cta-intro-description {
  position: static;
  max-width: 62rem;
  margin: 1.8rem 0 0;
  color: rgba(17, 17, 15, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 1.45vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

.shorts-panel .cta-intro-description {
  position: static;
  max-width: 62rem;
  margin: 1.8rem 0 0;
  color: rgba(240, 236, 231, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 1.45vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

#cta-intro .bb-featured-grid-col.-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shorts-panel .bb-featured-grid-col.-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contacts block in "Our results" visual language */
#contacts {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
}

#contacts .bb-featured-grid {
  border: 1px solid #4f4f4f;
}

#contacts .bb-featured-grid-col.-header,
#contacts .bb-featured-grid-col.-more,
#contacts .bb-featured-grid-col.-items {
  background: #060606;
}

#contacts .bb-featured-grid-col.-header {
  border-right: 1px solid #4f4f4f;
}

#contacts .bb-featured-grid-col.-more {
  align-content: center;
  text-align: center;
  border-bottom: 1px solid #4f4f4f;
}

.cta-intro-accent {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: #11110f;
}

.cta-intro-accent__dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(17, 17, 15, 0.35);
}

@media (max-width: 768px) {
  #cta-intro .bb-featured-grid-col.-header {
    border-right: 0;
    border-bottom: 1px solid #4f4f4f;
  }

  #cta-intro {
    padding-top: 3.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  #cta-intro .bb-featured-grid-col.-more {
    display: none;
  }

  #lead-form .lead-mobile-hide-icon {
    display: none;
  }

  #cta-intro .cta-intro-description {
    margin-top: 2.6rem;
    margin-bottom: 2.2rem;
  }

  .shorts-panel .cta-intro-description {
    margin-top: 2.6rem;
    margin-bottom: 2.2rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 92px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 20% 100%,
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.08), transparent 30%),
    #11110f;
  border-top: 1px solid #4f4f4f;
  color: #f2ede6;
}

.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 5.4rem) clamp(1rem, 4vw, 4.8rem) clamp(1.8rem, 3vw, 2.8rem);
}

.site-footer__shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.site-footer__header {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__kicker {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 236, 231, 0.68);
}

.site-footer__title {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4.4vw, 74px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #f5f0ea;
  max-width: 12ch;
}

.site-footer__desc {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.5;
  color: rgba(240, 236, 231, 0.82);
  max-width: 52ch;
}

.site-footer__primary {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #f5f0ea;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.site-footer__primary:hover {
  border-color: #ef3224;
  background: #ef3224;
  color: #fff;
}

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

.social-tile {
  position: relative;
  text-decoration: none;
  color: #f3efe9;
  min-height: 180px;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  transition: background-color 0.24s ease, color 0.24s ease;
}

.social-tile:last-child {
  border-right: none;
}

.social-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.social-tile--telegram::after {
  background: linear-gradient(145deg, rgba(39, 132, 255, 0.24), rgba(39, 132, 255, 0.02));
}

.social-tile--email::after {
  background: linear-gradient(145deg, rgba(255, 166, 56, 0.24), rgba(255, 166, 56, 0.02));
}

.social-tile--github::after {
  background: linear-gradient(145deg, rgba(222, 222, 222, 0.18), rgba(222, 222, 222, 0.02));
}

.social-tile--linkedin::after {
  background: linear-gradient(145deg, rgba(44, 125, 255, 0.24), rgba(44, 125, 255, 0.02));
}

.social-tile:hover::after {
  opacity: 1;
}

.social-tile__tag,
.social-tile__name,
.social-tile__meta {
  position: relative;
  z-index: 1;
}

.social-tile__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 239, 233, 0.66);
}

.social-tile__name {
  margin: 10px 0 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #f7f2eb;
}

.social-tile__meta {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(243, 239, 233, 0.84);
}

.site-footer__copy {
  margin: 0;
  color: rgba(240, 236, 231, 0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.site-footer__mini-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__mini-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 236, 231, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 236, 231, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__mini-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.site-footer-simple {
  background: #090909;
  border-top: 1px solid #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
}

.site-footer-simple__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #4f4f4f;
}

.site-footer-simple__cell {
  background: #060606;
  min-height: 220px;
  padding: clamp(2.2rem, 3.3vw, 3.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.site-footer-simple__label {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2.6vw, 3.6rem);
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #f0ece7;
}

.site-footer-simple__value {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 1.3vw, 2.2rem);
  line-height: 1.45;
  color: rgba(240, 236, 231, 0.78);
}

.site-footer-simple__value a {
  color: #f0ece7;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 236, 231, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-simple__value a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.site-footer-simple__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

/* ══════════════════════════════════════════════════
   MOBILE  (≤ 768px)
   Portrait fills the full screen.
   Only one label shown at top, tagline at bottom.
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Portrait wrap: fill full screen on mobile */
  .portrait-wrap {
    aspect-ratio: unset;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    transform: none;
  }

  /* Portrait image: cover full screen */
  .portrait-base__img {
    object-position: center top;
  }

  /* Glasses: scale up to fill mobile proportionally */
  .specs {
    width: 56%;
    height: 10%;
    top: 30%;
    left: 22%;
  }

  /* Hide eye iris tracking on mobile */
  .eye-mask {
    display: none;
  }

  /* Heavier vignette so top label reads clearly */
  .portrait-vignette {
    background:
      linear-gradient(to top, var(--bg) 0%, transparent 40%),
      linear-gradient(to bottom, var(--bg) 0%, transparent 22%),
      linear-gradient(to right, var(--bg) 0%, transparent 3%),
      linear-gradient(to left, var(--bg) 0%, transparent 3%);
  }

  /* Background name: hidden on mobile */
  .bg-name {
    display: none;
  }

  /* Hide all trait labels */
  .trait {
    display: none;
  }

  /* Show one trait label at top center on mobile */
  .trait--left-inner-center {
    display: flex;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    z-index: 5;
  }

  .trait--left-inner-center .trait__title {
    font-size: 36px;
  }

  /* Tagline: larger on mobile, more padding */
  .tagline {
    bottom: 8%;
    white-space: normal;
    width: 80vw;
  }

  .tagline__top {
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .tagline__main {
    font-size: 16px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* Show down arrow on mobile */
  .tagline__arrow {
    display: block;
  }

  /* Side button: move slightly, still visible */
  .side-btn {
    font-size: 9px;
    width: 24px;
  }

  .trusted-panel {
    margin-top: 0;
  }

  .trusted-panel__inner {
    width: 100%;
    padding: 18px var(--page-gutter) 28px;
  }

  .trusted-marquee {
    padding: 14px 0;
  }

  .trusted-marquee__track {
    gap: 34px;
    animation-duration: 26s;
  }

  .trusted-logo {
    width: 158px;
    height: 104px;
    min-width: 158px;
    padding: 8px;
  }

  .shorts-featured-grid .bb-featured-grid-col.-header {
    padding: 40px var(--page-gutter) 24px;
  }

  #news-mentions .bb-featured-grid-col.-more {
    display: none;
  }

  .shorts-featured-grid .bb-featured-grid-col.-more {
    padding: 18px var(--page-gutter);
    border-bottom: 1px #4f4f4f solid;
  }

  .shorts-grid-wrap {
    grid-column: auto;
    padding: 0;
    border-top: none;
    overflow: hidden;
  }

  .shorts-grid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    border: none;
  }

  .shorts-grid.is-shift-left {
    animation: shorts-shift-left-mobile 0.3s ease;
  }

  .shorts-grid.is-shift-right {
    animation: shorts-shift-right-mobile 0.3s ease;
  }

  .shorts-card {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 72vh;
    border-right: none;
  }

  .shorts-card--more {
    display: none;
  }

  .shorts-nav__btn {
    width: 44px;
    font-size: 24px;
  }

  .landing-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 16px;
  }

  .bb-featured__head {
    grid-template-columns: 1fr;
    padding: 34px 16px;
  }

  .bb-featured__matrix {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "showcase"
      "details"
      "quote"
      "rail";
    min-height: 0;
  }

  .bb-featured__showcase {
    border-right: none;
  }

  .bb-featured__details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 24px 16px 28px;
  }

  .bb-featured__quote {
    padding: 24px 16px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .bb-featured__rail {
    border-right: none;
  }

  .section {
    padding: 56px var(--page-gutter);
  }

  #tech-stack,
  #cta-intro {
    background: #f0f3f7 !important;
  }

  .about-grid,
  .proof-grid,
  .expert-grid,
  .case-grid,
  .list-grid,
  .consult-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .stat-tile,
  .proof-card,
  .expert-card,
  .case-card,
  .list-card,
  .consult-card {
    min-height: 0;
    padding: 18px;
  }

  .site-footer__shell {
    display: block;
  }

  .site-footer__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__title {
    max-width: 100%;
  }

  .site-footer__desc {
    max-width: 100%;
  }

  .site-footer__primary {
    margin-top: 14px;
    width: 100%;
  }

  .site-footer__social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-tile {
    min-height: 140px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .social-tile:nth-child(2n) {
    border-right: none;
  }

  .social-tile:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer__mini-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer-simple__grid {
    grid-template-columns: 1fr;
  }

  .site-footer-simple__cell {
    min-height: 0;
  }

  /* Prevent light seams between stacked sections on mobile */
  body,
  main.landing,
  #pricing-comparsion-merged,
  .section,
  .bb-featured,
  .black-bg-text {
    background: #060606 !important;
  }

  section {
    margin-top: 0;
    margin-bottom: 0;
  }

  #cta-intro,
  #lead-form,
  #faq,
  #tech-stack,
  #news-mentions {
    background: #060606 !important;
    border-top-color: rgba(255, 255, 255, 0.12) !important;
  }
}

/* Social-proof mobile/tabet stabilization (keeps desktop composition intact) */
#social-proof .bb-mission-item:not(:last-child):after {
  bottom: -7rem;
  height: 5rem;
}

/* About-me overflow protection */
#about-me {
  font-size: 0.88em;
}

#about-me .bb-talk-grid-col,
#about-me .bb-talk-grid-place,
#about-me .bb-talk-info {
  min-width: 0;
}

#about-me .bb-talk-title p,
#about-me .bb-talk-counter-value,
#about-me .bb-talk-quote-text q {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#about-me .bb-talk-header h2 {
  white-space: normal;
  text-wrap: balance;
}

@media (max-width: 768px) {
  #about-me {
    font-size: 0.9em;
  }

  #about-me .bb-talk-grid-col:not(.-pattern) {
    padding: 2.2rem 1.6rem 2rem;
  }

  /* Mobile order for about-me cards */
  #about-me .bb-talk-grid-col {
    order: 10;
  }

  #about-me .bb-talk-grid-col.-header {
    order: 0;
  }

  #about-me .bb-talk-grid-col.about-mobile-rvi {
    order: 1;
  }

  #about-me .bb-talk-grid-col.about-mobile-hours {
    order: 2;
  }

  #about-me .bb-talk-grid-col.about-mobile-quote {
    order: 3;
  }

  #about-me .bb-talk-grid-col.about-mobile-empty {
    display: none;
  }

}

@media (min-width: 1440px) {
  #about-me {
    font-size: 0.92em;
  }
}

@media (min-width: 768px) {
  #social-proof .bb-mission-item:not(:last-child):after {
    bottom: -12rem;
    height: 10rem;
  }
}

/* Social-proof mobile overflow hardening */
#social-proof,
#social-proof .bb-mission,
#social-proof .bb-mission-container {
  overflow-x: clip;
}

#social-proof .bb-mission-text,
#social-proof .bb-mission-text h3,
#social-proof .bb-mission-text p,
#social-proof .bb-mission-text span {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  #social-proof .bb-mission-text {
    font-size: clamp(1.7rem, 8.8vw, 4.8rem) !important;
    line-height: 0.94 !important;
    letter-spacing: 0.01em !important;
    text-wrap: pretty;
  }

  #social-proof .bb-mission-media {
    width: calc(100% - 1.6rem) !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Cases mobile layout polish */
@media (max-width: 768px) {

  #cases,
  #contacts {
    padding-left: 0;
    padding-right: 0;
  }

  #cases .bb-featured-grid,
  #contacts .bb-featured-grid {
    border: 1px solid #4f4f4f;
  }

  #cases .bb-featured-grid-col.-header,
  #cases .bb-featured-grid-col.-more,
  #cases .bb-featured-grid-col.-items,
  #contacts .bb-featured-grid-col.-header,
  #contacts .bb-featured-grid-col.-more,
  #contacts .bb-featured-grid-col.-items {
    border-bottom: 1px solid #4f4f4f;
    padding-right: var(--page-gutter);
  }

  #cases .bb-featured-grid-col.-header,
  #contacts .bb-featured-grid-col.-header {
    padding: 2.2rem 1.2rem 1.8rem;
  }

  #cases .bb-featured-grid-col.-more,
  #contacts .bb-featured-grid-col.-more {
    display: flex;
    justify-content: center;
    padding: 1.6rem 0 1.8rem;
  }

  #cases .bb-btn_intouch,
  #contacts .bb-btn_intouch {
    font-size: 8.8rem;
  }

  #cases .bb-featured-items,
  #contacts .bb-featured-items {
    grid-template-columns: 1fr;
  }

  #cases .bb-featured-item,
  #contacts .bb-featured-item {
    border-top: 1px solid #4f4f4f;
    padding: 1rem 0;
  }

  #cases .bb-featured-item:first-child,
  #contacts .bb-featured-item:first-child {
    border-top: 0;
  }

  #cases .bb-featured-item-grid,
  #contacts .bb-featured-item-grid {
    gap: 1.6rem;
    padding: 0 1.2rem 1.2rem;
  }

  #cases .bb-featured-item-title,
  #contacts .bb-featured-item-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  #cases .bb-featured-item.-spacer,
  #contacts .bb-featured-item.-spacer {
    display: none;
  }

  #cases .bb-featured-item.-text,
  #contacts .bb-featured-item.-text {
    padding: 2.4rem 1.2rem;
    border-top: 1px solid #4f4f4f;
  }

  #cases .bb-featured-item-caption,
  #contacts .bb-featured-item-caption {
    margin-top: 1.4rem;
  }
}

/* Unified horizontal text rail for major sections */
#social-proof .bb-mission-container {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

#cases .bb-featured-grid-col.-header,
#cta-intro .bb-featured-grid-col.-header,
#contacts .bb-featured-grid-col.-header {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

#cases .bb-featured-grid-col.-more,
#cta-intro .bb-featured-grid-col.-more,
#contacts .bb-featured-grid-col.-more {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

#cases .bb-featured-header-text {
  position: static;
  left: auto;
  top: auto;
  max-width: 62rem;
  margin: 1.8rem 0 0;
}

#contacts .bb-featured-header-text {
  position: static;
  left: auto;
  top: auto;
  max-width: 62rem;
  margin: 1.8rem 0 0;
}

@media (min-width: 768px) {

  #cases .bb-featured-grid-col.-header,
  #cta-intro .bb-featured-grid-col.-header,
  #contacts .bb-featured-grid-col.-header {
    padding-top: 7.7rem;
    padding-bottom: 5.3rem;
  }
}



@media all {
  .bb-featured-grid {
    position: relative;
    display: grid;
  }
}

@media (min-width: 768px) {
  .bb-featured-grid {
    grid-template-columns: auto 48rem;
  }
}

@media all {

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

  :selection {
    color: #fff;
    background: red;
  }

  .bb-featured-grid-col.-header {
    border-bottom: 1px #4f4f4f solid;
  }
}

@media (min-width: 768px) {
  .bb-featured-grid-col.-header {
    padding: 7.7rem 0 5.3rem 34rem;
    border-right: 1px #4f4f4f solid;
  }

  .bb-featured-grid-col.-more {
    align-content: center;
    text-align: center;
    border-bottom: 1px #4f4f4f solid;
  }

  .bb-featured-grid-col.-items {
    grid-column: span 2;
  }
}

@media all {
  .bb-featured-header {
    position: relative;
  }

  a {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
    -webkit-tap-highlight-color: initial;
  }

  .bb-btn_intouch {
    position: relative;
    display: inline-block;
    height: auto;
    margin: 0;
    padding: 0;
    color: inherit;
    background: 0 0;
    border: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: inherit;
    text-transform: inherit;
    text-indent: inherit;
    text-decoration: none;
  }

  .bb-btn_intouch {
    height: 1em;
    width: 1em;
    font-size: 12.7rem;
  }

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

  .bb-btn_intouch:hover {
    text-decoration: none;
  }
}

@media (pointer: fine) {
  .bb-btn_intouch:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
  }
}

@media all {
  .bb-featured-items {
    display: grid;
  }
}

@media (min-width: 768px) {
  .bb-featured-items {
    grid-template-columns: 1fr 1.44fr .56fr 1fr;
  }
}

@media all {
  h2 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .bb-featured-header h2 {
    font-family: "Forma DJR Display", sans-serif;
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 89%;
    letter-spacing: .03em;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-featured-header h2 {
    font-size: 15rem;
  }
}

@media all {
  .bb-featured-header-text {
    margin: 4.7rem 0 0;
    font-size: 1.5rem;
    line-height: 134%;
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  .bb-featured-header-text {
    position: absolute;
    top: 0;
    max-width: 31.7rem;
    margin: 0;
    font-size: 1.8rem;
    line-height: 110%;
  }
}

@media all {
  .bb-btn_intouch-path {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: clip;
    overflow-clip-margin: .5rem;
  }

  .bb-btn_intouch-box {
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bb-btn_intouch-box:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: red;
    border-radius: 50%;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  }
}

@media (pointer: fine) {
  .bb-btn:hover .bb-btn_intouch-box::before {
    transform: scale(.9);
  }
}

@media all {
  .bb-featured-item {
    position: relative;
    display: block;
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .bb-featured-item.-xl {
    grid-column: span 4;
  }

  .bb-featured-item.-lg {
    grid-column: 2/5;
    border-left: 1px #4f4f4f solid;
  }

  .bb-featured-item.-md {
    grid-column: 2/5;
    border-left: 1px #4f4f4f solid;
  }

  .bb-featured-item:nth-child(4) {
    position: relative;
    top: -1px;
    grid-column: 1;
    grid-row: 3;
    border-top: 1px #4f4f4f solid;
  }

  .bb-featured-item:nth-child(5) {
    position: relative;
    top: -1px;
    right: -1px;
    grid-column: 1;
    border-top: 1px #4f4f4f solid;
  }

  .bb-featured-item.-spacer {
    position: relative;
    top: -2px;
    grid-column: 1/3;
    order: 999;
    height: 10.8rem;
    border-top: 1px #4f4f4f solid;
  }

  .bb-featured-item.-text {
    grid-column: 3;
    border-left: 1px #4f4f4f solid;
  }

  .bb-featured-item.-text {
    grid-row: span 2;
    grid-column: 3/5;
    align-content: center;
    padding: 10rem 16.9rem 10rem 15.9rem;
  }

  /* Contacts: no split before spacer, keep bottom spacer row */
  #contacts .bb-featured-item:nth-child(5) {
    grid-row: 4;
  }

  #contacts .bb-featured-item.-text {
    grid-row: 4 / span 2;
  }

}

@media all {
  p {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .bb-btn_intouch-path svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: bb-fx-rotating-360 15s infinite linear;
  }

  .bb-btn_intouch-arr {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: .2em;
    line-height: 0;
  }

  .bb-featured-item-grid {
    display: grid;
    gap: 2.7rem;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-grid {
    align-items: center;
    gap: 0;
    border-bottom: 1px #4f4f4f solid;
  }

  #contacts .bb-featured-item-grid {
  }

  .bb-featured-item.-xl .bb-featured-item-grid {
    grid-template-columns: 2.44fr 1.56fr;
  }

  .bb-featured-item.-lg .bb-featured-item-grid {
    direction: rtl;
    grid-template-columns: 1.56fr 1.4375fr;
  }

  .bb-featured-item.-md .bb-featured-item-grid {
    grid-template-columns: 1.4375fr 1.56fr;
  }

  .bb-featured-item:nth-child(5) .bb-featured-item-grid {
    border-right: 1px #4f4f4f solid;
  }
}

@media all {
  .bb-featured-item-text {
    font-family: "Forma DJR Display", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 100%;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-text {
    font-size: 4rem;
  }
}

@media all {
  .bb-featured-item-caption {
    margin: 2.4rem 0 0;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 100%;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-caption {
    margin: 1.9rem 0 0;
    font-size: 1.8rem;
  }
}

@media all {
  .bb-btn_intouch-path text {
    fill: currentColor;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: -.09em;
    text-transform: uppercase;
  }

  .bb-svgsprite {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
  }

  .bb-featured-item-grid-col {
    direction: ltr;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-grid-col {
    align-content: center;
    height: 100%;
  }

  .bb-featured-item-grid-col:first-child {
    padding: 2.7rem 2.4rem;
  }

  .bb-featured-item-grid-col:last-child {
    padding: 0 2.4rem 2.5rem;
  }

  .bb-featured-item.-xl .bb-featured-item-grid-col:last-child {
    padding: 0 19.1rem 0 15.8rem;
    border-left: 1px #4f4f4f solid;
  }

  .bb-featured-item.-lg .bb-featured-item-grid-col:first-child {
    border-left: 1px #4f4f4f solid;
  }

  .bb-featured-item.-lg .bb-featured-item-grid-col:last-child {
    padding: 0 11.4rem 0 14.9rem;
  }

  .bb-featured-item.-md .bb-featured-item-grid-col:last-child {
    padding: 0 14.1rem 0 15.8rem;
    border-left: 1px #4f4f4f solid;
  }
}

@media all {
  .bb-featured-item-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: .8rem;
  }

  .bb-featured-item-name {
    display: inline-block;
    padding: .8rem 1.7rem;
    border: 1px solid;
    border-radius: 99999px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 100%;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-name {
    font-size: 1.8rem;
  }
}

@media all {
  .bb-featured-item-title {
    margin: 2.4rem 0 0;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 100%;
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-title {
    font-size: 6rem;
  }

  .bb-featured-item.-xs .bb-featured-item-title {
    margin: 2rem 0 0;
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
  }
}

@media all {
  .bb-featured-item-text strong.-primary {
    color: red;
  }

  .bb-featured-item-preview {
    height: 21.8rem;
    overflow: hidden;
    border-radius: .8rem;
  }
}

@media (min-width: 768px) {
  .bb-featured-item.-xl .bb-featured-item-preview {
    height: 69.1rem;
  }
}

@media all {
  .bb-featured-item-overlay {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5rem;
    opacity: 0;
    background: rgba(56, 56, 56, .85);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    will-change: opacity, backdrop-filter;
    transition: opacity .4s, -webkit-backdrop-filter .4s;
    transition: opacity .4s, backdrop-filter .4s;
    transition: opacity .4s, backdrop-filter .4s, -webkit-backdrop-filter .4s;
  }

  .bb-featured-item.-xl .bb-featured-item-overlay {
    padding: 6rem;
  }
}

@media (pointer: fine) {
  .bb-featured-item:hover .bb-featured-item-overlay {
    opacity: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

@media all {
  .bb-featured-item-name i {
    margin-right: .9rem;
    font-style: normal;
  }
}

@media (min-width: 768px) {
  .bb-featured-item.-lg .bb-featured-item-preview {
    height: 43.9rem;
  }

  .bb-featured-item.-md .bb-featured-item-preview {
    height: 44.5rem;
  }

  .bb-featured-item.-xs .bb-featured-item-preview {
    height: 22.7rem;
  }
}

@media all {
  .bb-featured-item.-xs .bb-featured-item-overlay {
    padding: 3rem;
  }

  .bb-featured-item-preview video {
    width: 100%;
    height: 100%;
  }

  .bb-featured-item-preview video {
    object-fit: cover;
  }

  .bb-featured-item-preview {
    position: relative;
  }

  .case-preview-video {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .case-preview-video.is-loaded {
    opacity: 1;
  }

  .bb-featured-item-overlay-badges {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    gap: .8rem;
  }

  .bb-featured-item-overlay-text {
    font-size: 1.5rem;
    line-height: 130%;
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-overlay-text {
    max-width: 78rem;
    font-size: 2.4rem;
  }

  .bb-featured-item.-xl .bb-featured-item-overlay-text {
    max-width: 50%;
  }

  .bb-featured-item.-xs .bb-featured-item-overlay-text {
    font-size: 1.8rem;
  }
}

@media all {
  .bb-featured-item-overlay-badge {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: .6rem;
    padding: .6rem;
    border-radius: 9999px;
    border: 1px solid;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 100%;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-overlay-badge {
    padding: .7rem 1.2rem;
    font-size: 1.8rem;
  }
}

@media all {
  .bb-featured-item-preview img {
    width: 100%;
    height: 100%;
  }

  .bb-featured-item-preview img {
    object-fit: cover;
  }
}

@media (min-width: 768px) {
  .bb-featured-item.-xs .bb-featured-item-overlay-badge {
    font-size: 1.6rem;
  }
}


@keyframes bb-fx-rotating-360 {
  0% {
    transform: rotate(0);
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }

}

/* These were inline style tags. Uses id+class to override almost everything */
#style-1TRDF.style-1TRDF {
  top: 0.5rem;
  left: 36rem;
}

#style-aiK9d.style-aiK9d {
  translate: none;
  rotate: none;
  scale: none;
  will-change: auto;
  opacity: 1;
  transform: translate(0px, 0px);
}

@media all {
  body {
    color: #fff;
    background: #000;
    font-size: 1.4rem;
    font-family: Satoshi, sans-serif;
    line-height: 1.15;
    text-align: left;
  }
}

@media (min-width: 768px) {
  body {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 10px;
  }
}


@font-face {
  font-family: Satoshi;
  src: url(https://bornandbredbrand.com/assets/fonts/satoshi/satoshi-variableitalic.woff2) format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Forma DJR Display";
  src: url(https://bornandbredbrand.com/assets/fonts/forma-djr-display/formadjrdisplay-regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Forma DJR Display";
  src: url(https://bornandbredbrand.com/assets/fonts/forma-djr-display/formadjrdisplay-medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Forma DJR Display";
  src: url(https://bornandbredbrand.com/assets/fonts/forma-djr-display/formadjrdisplay-bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@media all {
  * {
    box-sizing: border-box;
  }

  html {
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    font-family: Satoshi, sans-serif;
    font-size: 2.5445292621vw;
    line-height: 1.15;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media (min-width: 768px) {
  html {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

@media all {

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

  :selection {
    color: #fff;
    background: red;
  }

  .bb-talk-grid {
    position: relative;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    overflow: hidden;
  }
}

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

@media all {
  .bb-talk-grid.-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .bb-talk-grid.-home {
    grid-template-columns: 25% calc(25% - 1px) calc(12.5% - 1px) calc(12.5% - 1px) calc(12.5% - 1px) 12.5%;
  }
}

@media all {
  .bb-talk-grid-col {
    position: relative;
  }

  .bb-talk-grid-col:not(.-pattern) {
    padding: 3.2rem 3.2rem 2.7rem;
  }
}

@media (min-width: 768px) {
  .bb-talk-grid-col:not(.-pattern) {
    padding: 7.2rem 4.6rem 6.6rem;
  }

  .bb-talk-grid-col.-header {
    grid-row: span 2;
  }
}

@media all {
  .bb-talk-grid-col:before {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: #d9d8ce;
  }

  .bb-talk.-inverse .bb-talk-grid-col::before {
    background: #4f4f4f;
  }

  .bb-talk-grid-col:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }

  .bb-talk.-inverse .bb-talk-grid-col::after {
    background: #000;
  }
}

@media (min-width: 768px) {
  .bb-talk-grid-col.-d-double {
    grid-column: span 2;
  }

  .bb-talk-grid-col.-ending {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bb-talk-grid-col.-m-spacer {
    display: none;
  }
}

@media all {
  .bb-talk-grid-place {
    position: relative;
    display: flex;
    height: 100%;
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .bb-talk-grid-place {
    justify-content: center;
  }
}

@media all {
  h2 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .gen-QIp-bb-feature {
    font-family: "Forma DJR Display", sans-serif;
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 89%;
    letter-spacing: .03em;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .gen-oWR-bb-feature {
    font-size: 15rem;
  }
}

@media all {
  .bb-talk-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
  }

  .bb-talk-grid-col.-pattern {
    position: relative;
  }
}

@media (min-width: 768px) {
  .bb-talk-grid-col.-pattern {
    grid-row: 1/-1;
    border: none;
  }
}

@media all {
  .bb-talk-pattern-item {
    width: 18.7rem;
    height: 8.7rem;
    overflow: hidden;
  }

  p {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .bb-svgsprite {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
  }

  .bb-talk-pattern-item svg {
    width: 100%;
    height: 100%;
    will-change: transform;
  }

  .gen-eC3-bb-btninto {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: bb-fx-rotating-360 15s infinite linear;
  }

  .bb-talk-header {
    font-family: "Forma DJR Display", sans-serif;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 89%;
    letter-spacing: .144rem;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-talk-header {
    font-size: 10rem;
    line-height: 89%;
    letter-spacing: .3rem;
  }
}

@media all {
  .bb-talk-counter {
    display: inline-flex;
    font-family: Satoshi, sans-serif;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}

@media (min-width: 768px) {
  .bb-talk-counter {
    font-family: "Forma DJR Display", sans-serif;
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
  }
}

@media all {
  .bb-talk-title {
    font-family: "Forma DJR Display", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 107%;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-talk-title {
    font-size: 2rem;
    line-height: 106%;
  }
}

@media all {
  .bb-talk-quote-text {
    font-family: "Forma DJR Display", sans-serif;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: .069rem;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-talk-quote-text {
    font-size: 3.6rem;
    letter-spacing: .108rem;
    text-wrap: balance;
  }
}

@media all {
  .bb-talk-quote-note {
    margin: 2.7rem 0 0;
    font-family: "Forma DJR Display", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 106%;
  }
}

@media (min-width: 768px) {
  .bb-talk-quote-note {
    font-size: 2rem;
  }
}

@media all {
  h3 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }
}

@media (min-width: 768px) {
  .bb-featured-item-grid-col:last-child {
    padding: 0 2.4rem 2.5rem;
  }

  .bb-featured-item:nth-child(4) {
    position: relative;
    top: -1px;
    grid-column: 1;
    grid-row: 3;
    border-top: 1px #4f4f4f solid;
  }

  .bb-featured-item-grid-col:first-child {
    padding: 2.7rem 2.4rem;
  }
}


@keyframes bb-fx-rotating-360 {
  0% {
    transform: rotate(0);
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }

}

/* These were inline style tags. Uses id+class to override almost everything */
#style-JH2c4.style-JH2c4 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-3NMno.style-3NMno {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-LGXca.style-LGXca {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-5lcFL.style-5lcFL {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-K1MAy.style-K1MAy {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-dEXqY.style-dEXqY {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-TkJ4f.style-TkJ4f {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-ALsKF.style-ALsKF {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-CDdcP.style-CDdcP {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-MT8go.style-MT8go {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-lVUrF.style-lVUrF {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-z86xg.style-z86xg {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-HlKHV.style-HlKHV {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-LwxNH.style-LwxNH {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-RxNfC.style-RxNfC {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-sJyTl.style-sJyTl {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-SeoPW.style-SeoPW {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-qS6kP.style-qS6kP {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-DC4Wp.style-DC4Wp {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-GIHak.style-GIHak {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-WoVUE.style-WoVUE {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-cnOf1.style-cnOf1 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-iVJqv.style-iVJqv {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-EHEXm.style-EHEXm {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-LmNfQ.style-LmNfQ {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-TexFM.style-TexFM {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-NGkKa.style-NGkKa {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-9HUcK.style-9HUcK {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-EIvGN.style-EIvGN {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-I9w7g.style-I9w7g {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-scIcp.style-scIcp {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-qGMLG.style-qGMLG {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-8xE4Q.style-8xE4Q {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-CNccn.style-CNccn {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-OZ8FZ.style-OZ8FZ {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-e9QrS.style-e9QrS {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-O6ELj.style-O6ELj {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-pXSlY.style-pXSlY {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-LfQj9.style-LfQj9 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-E9kC5.style-E9kC5 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-Vd4QG.style-Vd4QG {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-VWJLR.style-VWJLR {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-i9bla.style-i9bla {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-hJTho.style-hJTho {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-9FmhH.style-9FmhH {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-hcPc7.style-hcPc7 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-6Mini.style-6Mini {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-lZDJ3.style-lZDJ3 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-Zt9s8.style-Zt9s8 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-LJaOc.style-LJaOc {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-XiUi4.style-XiUi4 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-JVgoU.style-JVgoU {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-U9tSG.style-U9tSG {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-vL68J.style-vL68J {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-yJtYy.style-yJtYy {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-G6p3v.style-G6p3v {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-Rnnw4.style-Rnnw4 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-2YmNf.style-2YmNf {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-Kbqps.style-Kbqps {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-6Ysho.style-6Ysho {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-cUVIQ.style-cUVIQ {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-pS5y1.style-pS5y1 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-JCaBi.style-JCaBi {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-4eUN4.style-4eUN4 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-mnOk8.style-mnOk8 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-5AEjk.style-5AEjk {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-ZYa9x.style-ZYa9x {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-bO5Ad.style-bO5Ad {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-Gmbvn.style-Gmbvn {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-smY4q.style-smY4q {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-9Syiz.style-9Syiz {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-dSZnW.style-dSZnW {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-PSjQz.style-PSjQz {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-BPLzQ.style-BPLzQ {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-dPmpk.style-dPmpk {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-5d6vo.style-5d6vo {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-35gG6.style-35gG6 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-PGTYU.style-PGTYU {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-4Em19.style-4Em19 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-1dlNX.style-1dlNX {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-ebvTB.style-ebvTB {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-7BOo4.style-7BOo4 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-nG5wT.style-nG5wT {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-1cadz.style-1cadz {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-eWUJE.style-eWUJE {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-nnTW6.style-nnTW6 {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-T8jXO.style-T8jXO {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-ZL5nj.style-ZL5nj {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

#style-fy6F7.style-fy6F7 {
  overflow: clip;
  margin: -0.2em;
  display: inline-block;
}

#style-peVUY.style-peVUY {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0%);
  padding: 0.2em;
  display: inline-block;
  will-change: auto;
}

@media (min-width: 768px) {
  body {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 10px;
  }
}

@media all {
  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    color: #000;
    background: #fff;
    -webkit-tap-highlight-color: transparent;
    font-size: 1.4rem;
  }

  html {
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    font-family: Satoshi, sans-serif;
    font-size: 2.5445292621vw;
    line-height: 1.15;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media (min-width: 768px) {
  html {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

@media all {

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

  :selection {
    color: #fff;
    background: red;
  }

  .bb-mission-container {
    position: relative;
    display: flex;
    gap: 4.7rem 0;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.6rem;
  }
}

@media (min-width: 768px) {
  .bb-mission-container {
    gap: 6.7rem 0;
    padding: 0 30.8rem;
  }
}

@media all {
  .bb-mission {
    position: relative;
    padding: 23.5rem 0 14.9rem;
    background-color: #f8f7f6;
  }
}

@media (min-width: 768px) {
  .bb-mission {
    padding: 25.4rem 0;
  }
}

@media all {
  .bb-mission-header {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1.7rem 1rem;
    margin: auto;
    color: #fff;
    border-radius: 10rem;
    border: 1px solid #000;
    background: #000;
    font-family: "Forma DJR Display", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: .06rem;
    text-align: center;
    text-transform: uppercase;
  }

  .bb-mission-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20rem 0;
  }

  .bb-mission-pointer {
    display: none;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
  }
}

@media (min-width: 768px) {
  .bb-mission-pointer {
    position: absolute;
    top: -3.5rem;
    left: calc(50% + 38.1rem);
    display: block;
  }
}

@media all {
  .bb-mission-pointer-arrow {
    position: relative;
    display: block;
    bottom: 0;
    left: -3.5rem;
    width: 3rem;
    height: 5.4rem;
    background-size: contain;
    background-repeat: no-repeat;
  }

  h2 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .bb-mission-header h2 {
    display: inline-flex;
    gap: 0 .9rem;
  }

  .bb-mission-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bb-mission-item:not(:last-child):after {
    position: absolute;
    left: calc(50% - .5px);
    bottom: -15rem;
    content: "";
    width: 1px;
    height: 10rem;
    background: #d9d8ce;
  }
}

@media (min-width: 768px) {
  .bb-mission-item:not(:last-child):after {
    bottom: -18.5rem;
    height: 16.5rem;
  }
}

@media all {
  .bb-mission-header h2 i {
    font-style: normal;
  }

  .bb-mission-text {
    max-width: 148.5rem;
    margin: auto;
    font-family: "Forma DJR Display", sans-serif;
    font-size: 8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 89%;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
  }
}

@media (min-width: 768px) {
  .bb-mission-text {
    font-size: 8rem;
    letter-spacing: .3rem;
  }
}

@media all {
  .bb-mission-divdiver {
    position: relative;
    display: block;
    width: 1px;
    height: 9.8rem;
    margin: 3.8rem auto 4.3rem;
    background: #d9d8ce;
  }
}

@media (min-width: 768px) {
  .bb-mission-divdiver {
    height: 14.7rem;
    margin: 1.7rem auto 2.4rem;
  }
}

@media all {
  .bb-mission-media {
    position: relative;
    width: 100%;
    height: 19rem;
    overflow: hidden;
    margin: auto;
    border-radius: 1.5rem;
  }
}

@media (min-width: 768px) {
  .bb-mission-media {
    width: 35.3rem;
    height: 15rem;
  }
}

@media all {
  h3 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  p {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  .bb-mission-media img {
    width: 100%;
    height: 100%;
  }

  .bb-mission-media img {
    object-fit: cover;
    object-position: center;
  }
}


/* These were inline style tags. Uses id+class to override almost everything */
#style-LyvTN.style-LyvTN {
  background-image: url(&quot;  
 /assets/pointer/2.png&quot;
}

#style-t5Psj.style-t5Psj {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-a3iim.style-a3iim {
  color: #000000;
}

#style-sabHq.style-sabHq {
  color: #ff0000;
}

#style-QzM4y.style-QzM4y {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-tzgRs.style-tzgRs {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-xBEyb.style-xBEyb {
  color: #ff0000;
}

#style-2ioRy.style-2ioRy {
  color: #ff0000;
}

#style-FP49P.style-FP49P {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-jKQZb.style-jKQZb {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-sZyUM.style-sZyUM {
  color: #ff0000;
}

#style-RJobH.style-RJobH {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

#style-rvvj3.style-rvvj3 {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

@media (min-width: 768px) {
  body {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

@media all {

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

  :selection {
    color: #fff;
    background: red;
  }
}

@media (min-width: 768px) {
  .bb-recognition-items {
    padding: 8.3rem 0 0;
  }
}

@media all {
  .bb-recognition-item {
    display: grid;
    gap: .6rem 0;
    padding: 2rem 1.6rem;
    border-top: 1px solid;
    border-color: #d9d8ce;
  }
}

@media (min-width: 768px) {
  .bb-recognition-item {
    display: grid;
    gap: 0 25rem;
    grid-template-columns: 7rem repeat(2, 1fr);
    align-items: center;
    width: 100%;
    padding: 2.2rem 18.2rem 2.1rem;
  }
}

@media all {
  .bb-recognition-item {
    border-color: #4f4f4f;
  }

  .bb-recognition-item:last-child {
    border-bottom: 1px solid;
  }

  .bb-recognition-text {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-wrap: balance;
  }

  .bb-recognition-year {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}

@media (min-width: 768px) {
  .bb-recognition-year {
    font-size: 2rem;
  }
}

@media all {
  .bb-recognition-title {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-recognition-title {
    font-size: 5rem;
  }
}

@media all {
  h3 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }

  p {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    letter-spacing: inherit;
  }
}


/* These were inline style tags. Uses id+class to override almost everything */
#style-O2pci.style-O2pci {
  opacity: 1;
}

#style-ZMOvp.style-ZMOvp {
  opacity: 1;
}

#style-8nZQa.style-8nZQa {
  opacity: 1;
}

#style-QAKBU.style-QAKBU {
  opacity: 1;
}

#style-JBcD3.style-JBcD3 {
  opacity: 1;
}

#style-ZoCIf.style-ZoCIf {
  opacity: 1;
}

#style-aMOPa.style-aMOPa {
  opacity: 1;
}

@media (min-width: 768px) {
  body {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  body {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: .5208333333vw;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

@media all {

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

  :selection {
    color: #fff;
    background: red;
  }

  .bb-recognition-rellers {
    position: relative;
    padding: 8rem 0;
    width: 100%;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .bb-recognition-rellers {
    padding: 2.2rem 0;
    border-bottom: 1px solid;
    border-color: #d9d8ce;
  }

  .bb-recognition-rellers {
    border-color: #4f4f4f;
  }
}

@media all {
  .bb-recognition-reller {
    display: flex;
  }
}

@media (min-width: 768px) {
  .bb-recognition-reller.-reversed {
    display: none;
  }
}

@media all {
  .bb-recognition-reller-items {
    flex-shrink: 0;
  }

  .bb-recognition-reller-item {
    display: inline-flex;
    padding: 0 1.4rem 0 0;
    align-items: center;
    font-size: 5.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 89%;
    letter-spacing: .165rem;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .bb-recognition-reller-item {
    padding: 0 3.9rem 0 0;
    font-size: 15rem;
    letter-spacing: .45rem;
  }
}

@media all {
  .bb-recognition-reller-item i {
    position: relative;
    padding: 0 1.3rem 0 0;
    font-size: 3rem;
    font-style: normal;
  }
}

@media (min-width: 768px) {
  .bb-recognition-reller-item i {
    padding: 0 3.7rem 0 0;
    font-size: 6.5rem;
  }
}


/* These were inline style tags. Uses id+class to override almost everything */
#style-9WcmC.style-9WcmC {
  opacity: 1;
}

#style-k4YfA.style-k4YfA {
  overflow: hidden;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
}

#style-vebH2.style-vebH2 {
  translate: none;
  rotate: none;
  scale: none;
  will-change: transform;
  transform: translate3d(-601.079px, 0px, 0px);
}

#style-oRwXK.style-oRwXK {
  overflow: hidden;
}

#style-B7rUK.style-B7rUK {
  translate: none;
  rotate: none;
  scale: none;
  will-change: auto;
}

/* Final about-me typography scale (applies to entire section, not only name) */
#about-me .bb-talk-header {
  font-size: 3.95rem;
}

#about-me .bb-talk-counter {
  font-size: 4.2rem;
}

#about-me .bb-talk-title {
  font-size: 1.35rem;
}

#about-me .bb-talk-quote-text {
  font-size: 2rem;
}

#about-me .bb-talk-quote-note {
  font-size: 1.35rem;
}

@media (min-width: 768px) {
  #about-me .bb-talk-header {
    font-size: 7.9rem;
  }

  #about-me .bb-talk-counter {
    font-size: 9.6rem;
  }

  #about-me .bb-talk-title {
    font-size: 1.7rem;
  }

  #about-me .bb-talk-quote-text {
    font-size: 3rem;
  }

  #about-me .bb-talk-quote-note {
    font-size: 1.7rem;
  }
}

/* ═══════════════════════════════════════════════════
   SOCIAL PROOF + CTA  (#social-proof-cta)
═══════════════════════════════════════════════════ */

#social-proof-cta {
  background: #060606;
}

#social-proof-cta .w-full {
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
}

/* ── Float keyframes (6 unique drifts on floater) ─── */
@keyframes rbFloat1 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  40%     { transform: translateY(-3px) translateX(2px); }
  72%     { transform: translateY(3px)  translateX(-2px); }
}
@keyframes rbFloat2 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  32%     { transform: translateY(4px) translateX(-2px); }
  68%     { transform: translateY(-3px) translateX(2px); }
}
@keyframes rbFloat3 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  48%     { transform: translateY(-3px) translateX(-1px); }
  82%     { transform: translateY(4px) translateX(1px); }
}
@keyframes rbFloat4 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  26%     { transform: translateY(3px)  translateX(2px); }
  64%     { transform: translateY(-4px) translateX(-2px); }
}
@keyframes rbFloat5 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  36%     { transform: translateY(-4px) translateX(2px); }
  74%     { transform: translateY(3px) translateX(-2px); }
}
@keyframes rbFloat6 {
  0%,100% { transform: translateY(0px) translateX(0px); }
  30%     { transform: translateY(4px) translateX(-2px); }
  66%     { transform: translateY(-3px) translateX(2px); }
}

/* ── Honeycomb grid container ─────────────────────── */
.reviews-grid {
  --bsz: clamp(64px, 7.1vw, 112px);
  position: relative;
  width: 100%;
  padding: clamp(12px, 2vw, 24px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
  isolation: isolate;
  overflow: hidden;
}

.reviews-grid::before {
  content: '';
  position: absolute;
  width: clamp(180px, 26vw, 320px);
  height: clamp(180px, 26vw, 320px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.35) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.reviews-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.reviews-orbit.is-dragging {
  cursor: grabbing;
}

.reviews-row {
  display: flex;
  gap: 0;
}

.reviews-row--offset {
  margin-left: 0;
}

.reviews-grid .rbw {
  position: absolute;
  left: 50%;
  top: 50%;
  flex: 0 0 var(--bsz);
  width: var(--bsz);
  height: var(--bsz);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  --scatter-x: 0px;
  --scatter-y: 0px;
  transform: translate(
    calc(-50% + var(--px-x, 0px) + var(--scatter-x)),
    calc(-50% + var(--px-y, 0px) + var(--scatter-y))
  );
}

.reviews-grid .rbw::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.28s ease;
  z-index: 0;
}

.reviews-grid .rbw.is-near::after {
  background: transparent;
}

.reviews-center {
  flex: 0 0 clamp(280px, 42vw, 500px);
  margin-inline: 0;
  min-height: clamp(240px, 20vw, 340px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
}

.reviews-center.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reviews-center__hexes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reviews-center__hex {
  --hex-w: clamp(96px, 11vw, 150px);
  position: absolute;
  width: var(--hex-w);
  aspect-ratio: 1 / 1.15;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 26px rgba(184, 255, 104, 0.08);
}

.reviews-center__hex--main {
  width: clamp(124px, 13.2vw, 190px);
}

.reviews-center__hex--left {
  transform: translate(-122%, -52%);
}

.reviews-center__hex--right {
  transform: translate(22%, -52%);
}

.reviews-center__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(84%, 380px);
  position: relative;
  z-index: 2;
  padding-block: clamp(12px, 1.3vw, 18px);
}

.reviews-display__quote {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
}

.reviews-display__author {
  font-size: 12px;
}

.reviews-row--text {
  justify-content: center;
  align-items: center;
  gap: var(--bgap);
}

.reviews-drag-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 2vw, 22px);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(8px);
}

.reviews-drag-hint__title {
  font-family: "Forma DJR Display", "Bebas Neue", sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.04em;
  color: rgba(243, 243, 243, 0.9);
  line-height: 1;
}

.reviews-drag-hint__sub {
  font-family: "Satoshi", "Roboto", sans-serif;
  font-size: clamp(10px, 0.78vw, 12px);
  color: rgba(243, 243, 243, 0.68);
  line-height: 1;
  white-space: nowrap;
}

.reviews-grid .rbw__floater {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.reviews-grid .rbw[data-float="1"] .rbw__floater {
  animation: rbFloat1 7.4s ease-in-out infinite;
  animation-delay: -1.6s;
}
.reviews-grid .rbw[data-float="2"] .rbw__floater {
  animation: rbFloat2 6.9s ease-in-out infinite;
  animation-delay: -2.2s;
}
.reviews-grid .rbw[data-float="3"] .rbw__floater {
  animation: rbFloat3 7.8s ease-in-out infinite;
  animation-delay: -0.8s;
}
.reviews-grid .rbw[data-float="4"] .rbw__floater {
  animation: rbFloat4 6.6s ease-in-out infinite;
  animation-delay: -3.1s;
}
.reviews-grid .rbw[data-float="5"] .rbw__floater {
  animation: rbFloat5 7.2s ease-in-out infinite;
  animation-delay: -2.5s;
}
.reviews-grid .rbw[data-float="6"] .rbw__floater {
  animation: rbFloat6 6.8s ease-in-out infinite;
  animation-delay: -1.4s;
}

/* Bubble button base */
.review-bubble {
  position: relative;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  --bubble-base-scale: var(--center-scale, 0.9);
  --bubble-boost: 1;
  transform: scale(calc(var(--bubble-base-scale) * var(--bubble-boost)));
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.18s ease,
    box-shadow 0.18s ease;
  z-index: 1;
}

.review-bubble::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 104, 0.25), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.review-bubble.is-neighbor {
  --bubble-boost: 1.04;
}

.review-bubble.is-hover-neighbor {
  --bubble-boost: 1.07;
}

.review-bubble.is-hover {
  --bubble-boost: 1.1;
}

.review-bubble.is-active {
  --bubble-boost: 1.12;
  background: rgba(184, 255, 104, 0.16);
  box-shadow:
    inset 0 0 0 1.8px rgba(184, 255, 104, 0.7),
    0 0 0 10px rgba(184, 255, 104, 0.14),
    0 0 48px rgba(184, 255, 104, 0.28);
  z-index: 3;
}

.review-bubble.is-active::before {
  opacity: 0.5;
}

.review-bubble__face {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(243, 243, 243, 0.4);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.review-bubble__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  opacity: 0.82;
  transform: scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.review-bubble.has-avatar .review-bubble__face {
  display: none;
}

.review-bubble.has-avatar.is-hover .review-bubble__avatar,
.review-bubble.has-avatar.is-active .review-bubble__avatar {
  opacity: 1;
  transform: scale(1);
}

.review-bubble.is-active .review-bubble__face {
  color: var(--accent);
}

/* ── Center review text ──────────────────────────────── */
.reviews-display__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.reviews-display__quote p {
  font-family: "Satoshi", "Roboto", sans-serif;
  font-size: clamp(17px, 1.5vw, 25px);
  line-height: 1.42;
  color: rgba(243, 243, 243, 0.9);
  font-style: normal;
  letter-spacing: 0.003em;
  margin: 0;
}

.reviews-display__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.reviews-display__name {
  font-family: "Forma DJR Display", "Bebas Neue", sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 600;
  color: #f3f3f3;
  letter-spacing: 0.03em;
  line-height: 1.02;
}

.reviews-display__role {
  font-family: "Satoshi", "Roboto", sans-serif;
  font-size: clamp(12px, 1.02vw, 16px);
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Mobile adjustments: tighter honeycomb */
@media (max-width: 1000px) {
  #social-proof-cta .w-full {
    min-height: 0;
    grid-template-rows: minmax(470px, 78vh) auto;
  }

  .reviews-grid {
    --bsz: clamp(30px, 7.4vw, 44px);
    padding: 0;
  }
  .reviews-orbit {
    touch-action: pan-y;
    cursor: default;
  }
  .reviews-grid .rbw__floater {
    animation: none !important;
  }
  .reviews-center {
    flex-basis: clamp(190px, 52vw, 260px);
    min-height: clamp(168px, 44vw, 228px);
  }
  .reviews-center__hex--main {
    width: clamp(74px, 18vw, 114px);
  }
  .reviews-center__hex {
    --hex-w: clamp(56px, 14vw, 86px);
  }
  .reviews-center__hex--left {
    transform: translate(-118%, -50%);
  }
  .reviews-center__hex--right {
    transform: translate(18%, -50%);
  }
  .reviews-center__content {
    width: min(95%, 190px);
  }
  .reviews-drag-hint {
    bottom: clamp(6px, 1.8vw, 12px);
    padding: 6px 10px;
  }
  .reviews-drag-hint__sub {
    display: none;
  }
}

.reviews-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding:
    clamp(28px, 3.5vw, 48px)
    var(--page-gutter);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.reviews-cta-bar__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--accent);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   PRICING + SERVICES  (#pricing)
═══════════════════════════════════════════════════ */

#pricing {
  background: #060606;
  padding-top: 0;
  padding-bottom: 0;
}

#pricing-comparsion-merged {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  :root {
    --pricing-screen-head-h: clamp(240px, 30svh, 340px);
  }

  .pricing-screen-head {
    min-height: var(--pricing-screen-head-h);
    display: flex;
  }

  .pricing-screen-head .bb-featured-grid {
    min-height: 100%;
    width: 100%;
  }

  #pricing-comparsion-merged > .pricing-screen-cards {
    flex: 1 1 auto;
    min-height: 0;
  }

  .pricing-screen-cards {
    min-height: 100%;
    height: 100%;
    display: flex;
  }

  .pricing-screen-cards > .w-full {
    display: flex;
    width: 100%;
  }

  .pricing-screen-cards .pricing-comparison,
  .pricing-screen-cards .pricing-boards {
    min-height: 100%;
    height: 100%;
  }

  .pricing-screen-cards .pricing-boards {
    align-items: stretch;
  }

  .pricing-screen-cards .pricing-board {
    height: 100%;
  }
}

.pricing-header {
  padding: clamp(72px, 7.7vw, 124px) 0 clamp(32px, 3.8vw, 56px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.pricing-header .section__title,
.process-header .section__title {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.pricing-header__copy {
  min-width: 0;
}

.pricing-header__actions {
  display: flex;
  justify-content: flex-end;
}

.pricing-comparison {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.2vw, 44px);
  padding: clamp(32px, 3.8vw, 56px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(71, 128, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(20, 22, 26, 0.98), rgba(9, 11, 13, 0.98));
  background-size: 26px 26px, 26px 26px, auto, auto;
  box-shadow:
    inset 0 0 0 1px rgba(103, 112, 133, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.pricing-comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.pricing-comparison__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.pricing-comparison__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-comparison__headline {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #eef4ff;
  text-shadow: 0 0 18px rgba(93, 151, 255, 0.18);
}

.pricing-comparison__text {
  max-width: 54rem;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(216, 224, 236, 0.72);
}

.pricing-comparison__actions,
.pricing-composer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pricing-composer__cta,
.pricing-composer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.pricing-composer__cta {
  background: var(--accent);
  color: #020301;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-composer__link {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(243, 243, 243, 0.84);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-composer__cta:hover,
.pricing-composer__link:hover {
  transform: translateY(-1px);
}

.pricing-composer__cta:hover {
  opacity: 0.9;
}

.pricing-composer__link:hover {
  border-color: rgba(184, 255, 104, 0.32);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-boards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px);
  position: relative;
  z-index: 1;
}

.pricing-vs {
  display: none;
}

.pricing-board {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(10, 12, 15, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.pricing-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.pricing-board--legacy {
  color: rgba(214, 214, 214, 0.64);
  background:
    linear-gradient(180deg, rgba(46, 48, 54, 0.16), rgba(18, 20, 24, 0.88)),
    rgba(10, 12, 15, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(160, 160, 160, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.18);
  filter: saturate(0.62);
}

.pricing-board--pro {
  background:
    radial-gradient(circle at top right, rgba(51, 117, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(76, 137, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(68, 123, 255, 0.08), rgba(68, 123, 255, 0.015)),
    rgba(10, 12, 15, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(68, 123, 255, 0.24),
    0 0 44px rgba(28, 89, 255, 0.14);
}

.pricing-board--pro:hover,
.pricing-board--pro.is-boosted {
  transform: translateY(-2px);
  border-color: rgba(117, 173, 255, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(96, 165, 255, 0.34),
    0 0 64px rgba(28, 89, 255, 0.2);
}

.pricing-board__header,
.pricing-board__copy {
  padding: clamp(22px, 2.5vw, 30px);
}

.pricing-board__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-board__eyebrow {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 243, 243, 0.5);
}

.pricing-board__title {
  margin: 0;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #f3f3f3;
}

.pricing-board--legacy .pricing-board__title {
  color: rgba(242, 242, 242, 0.82);
}

.pricing-board--pro .pricing-board__title {
  color: #dbe7ff;
  text-shadow: 0 0 18px rgba(68, 123, 255, 0.28);
}

.pricing-board__diagram {
  padding: clamp(22px, 2.5vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.pricing-schematic__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-align: center;
  color: #f3f8ff;
  text-shadow: 0 0 18px rgba(115, 171, 255, 0.28);
}

.pricing-schematic__canvas {
  display: grid;
  grid-template-columns: 84px minmax(140px, 1.15fr) minmax(180px, 1fr) 40px minmax(132px, 0.8fr);
  grid-template-rows: auto auto;
  gap: 18px 18px;
  align-items: center;
}

.pricing-schematic__start,
.pricing-schematic__flag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.pricing-schematic__start {
  grid-column: 1;
  grid-row: 1;
}

.pricing-schematic__flag {
  grid-column: 1;
  grid-row: 2;
}

.pricing-schematic__badge {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(120, 170, 255, 0.4);
  background: linear-gradient(180deg, rgba(34, 68, 130, 0.88), rgba(15, 29, 61, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(183, 220, 255, 0.1),
    0 0 22px rgba(44, 111, 255, 0.14);
  color: rgba(208, 231, 255, 0.9);
  font-size: 31px;
}

.pricing-schematic__badge--flag {
  border-color: rgba(121, 146, 206, 0.34);
  background: linear-gradient(180deg, rgba(37, 53, 99, 0.84), rgba(14, 22, 48, 0.96));
}

.pricing-schematic__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #b7f15f;
  color: #112000;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-schematic__pill--danger {
  background: #ef6f6f;
  color: #3e0707;
}

.pricing-schematic__pill--growth {
  background: #b7f15f;
  color: #112000;
}

.pricing-schematic__main-arrow {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: 22px;
  border-radius: 999px;
  overflow: hidden;
}

.pricing-schematic__main-arrow::before {
  content: "";
  position: absolute;
  inset: 0 16px 0 0;
  background: linear-gradient(90deg, rgba(133, 189, 255, 0.54), rgba(145, 203, 255, 0.92));
  clip-path: polygon(0 18%, 92% 18%, 92% 0, 100% 50%, 92% 100%, 92% 82%, 0 82%);
  box-shadow: 0 0 24px rgba(106, 173, 255, 0.24);
}

.pricing-schematic__beam {
  position: absolute;
  top: 50%;
  left: -18%;
  width: 24%;
  height: 100%;
  transform: translateY(-50%);
}

.pricing-schematic__beam::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 248, 255, 0.98), transparent);
  filter: blur(1px);
}

.pricing-schematic__beam--legacy {
  color: rgba(225, 236, 248, 0.88);
}

.pricing-schematic__beam--pro {
  color: rgba(190, 221, 255, 0.96);
}

.pricing-schematic__center {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-schematic__center--pro {
  gap: 16px;
}

.pricing-schematic__price-card,
.pricing-schematic__kpi-card,
.pricing-schematic__dead-zone,
.pricing-schematic__total-box {
  position: relative;
  border: 1px solid rgba(185, 238, 130, 0.56);
  background:
    linear-gradient(180deg, rgba(64, 104, 76, 0.28), rgba(26, 45, 33, 0.44)),
    rgba(12, 18, 26, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(206, 243, 158, 0.14),
    0 0 28px rgba(168, 232, 119, 0.08);
}

.pricing-schematic__price-card,
.pricing-schematic__kpi-card {
  padding: 20px 18px;
  min-height: 126px;
}

.pricing-schematic__price-card--locked {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-schematic__dead-zone {
  padding: 18px;
  min-height: 108px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(40, 42, 48, 0.28), rgba(20, 22, 26, 0.52));
  color: rgba(245, 245, 245, 0.88);
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.pricing-schematic__card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #f1f8ec;
}

.pricing-schematic__card-subtitle {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(231, 242, 222, 0.68);
}

.pricing-schematic__lock {
  margin-top: auto;
  padding-top: 22px;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(224, 239, 209, 0.8);
}

.pricing-schematic__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.pricing-schematic__tier {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(220, 241, 194, 0.1);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(230, 242, 217, 0.78);
}

.pricing-schematic__tier span {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  text-transform: uppercase;
  color: rgba(205, 233, 167, 0.76);
}

.pricing-schematic__tier strong {
  font-weight: 500;
}

.pricing-schematic__equals {
  grid-column: 4;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 4vw, 78px);
  line-height: 1;
  color: rgba(170, 215, 255, 0.95);
  text-shadow: 0 0 26px rgba(116, 170, 255, 0.34);
}

.pricing-schematic__total {
  grid-column: 5;
  grid-row: 1 / span 2;
}

.pricing-schematic__total-box {
  height: 100%;
  min-height: 360px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.pricing-schematic__total-box span,
.pricing-schematic__total-box strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 2.4vw, 46px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #f3f8ec;
}

.pricing-schematic__total-box--pro {
  box-shadow:
    inset 0 0 0 1px rgba(206, 243, 158, 0.18),
    0 0 34px rgba(168, 232, 119, 0.14);
}

.pricing-schematic__goals {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}

.pricing-schematic__goal-branch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.pricing-schematic__goal-line {
  position: absolute;
  left: 0;
  right: 18px;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
}

.pricing-schematic__goal-line--legacy {
  background: linear-gradient(90deg, rgba(121, 145, 189, 0.56), rgba(121, 145, 189, 0.22));
}

.pricing-schematic__goal-line--pro {
  background: linear-gradient(90deg, rgba(133, 189, 255, 0.72), rgba(133, 189, 255, 0.32));
}

.pricing-schematic__goal-label,
.pricing-schematic__goal-note {
  position: relative;
  z-index: 1;
  padding-left: 22px;
}

.pricing-schematic__goal-label {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(223, 232, 245, 0.88);
}

.pricing-schematic__goal-note {
  grid-column: 1;
  font-size: 12px;
  color: rgba(218, 146, 146, 0.76);
}

.pricing-schematic__goal-state {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
}

.pricing-schematic__goal-state--fail {
  color: rgba(255, 111, 111, 0.92);
  text-shadow: 0 0 18px rgba(255, 111, 111, 0.32);
}

.pricing-schematic__goal-state--ok {
  color: rgba(165, 214, 255, 0.92);
  text-shadow: 0 0 18px rgba(112, 182, 255, 0.32);
}

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

.pricing-pipeline__row {
  display: grid;
  align-items: stretch;
}

.pricing-pipeline__row--legacy {
  grid-template-columns: minmax(140px, 1fr) minmax(56px, 0.34fr) minmax(180px, 1.2fr) minmax(56px, 0.34fr) minmax(140px, 1fr);
}

.pricing-pipeline__row--pro {
  grid-template-columns: minmax(120px, 0.95fr) minmax(44px, 0.34fr) minmax(130px, 1fr) minmax(44px, 0.34fr) minmax(130px, 1fr) minmax(44px, 0.34fr) minmax(168px, 1.18fr);
  align-items: stretch;
}

.pricing-pipeline__node,
.pricing-pipeline__connector {
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-pipeline__node {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  text-transform: uppercase;
}

.pricing-pipeline__node--legacy {
  background: linear-gradient(180deg, rgba(70, 72, 77, 0.26), rgba(35, 37, 41, 0.44));
  border: 1px solid rgba(179, 179, 179, 0.14);
  color: rgba(223, 223, 223, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.pricing-pipeline__node--legacy-process {
  position: relative;
}

.pricing-pipeline__node--legacy-process::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 216, 216, 0.16);
  border-radius: 999px;
  background:
    conic-gradient(from 90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.16));
  opacity: 0.55;
  animation: pricing-hourglass-spin 8s linear infinite;
}

.pricing-pipeline__node--pro {
  background:
    linear-gradient(180deg, rgba(30, 58, 111, 0.94), rgba(12, 24, 54, 0.98)),
    linear-gradient(180deg, rgba(68, 123, 255, 0.18), rgba(68, 123, 255, 0.04));
  border: 1px solid rgba(110, 164, 255, 0.4);
  color: #ecf5ff;
  box-shadow: inset 0 0 0 1px rgba(134, 186, 255, 0.12);
}

.pricing-pipeline__node--fix,
.pricing-pipeline__node--kpi,
.pricing-pipeline__node--goal {
  position: relative;
}

.pricing-pipeline__node--fix::after,
.pricing-pipeline__node--kpi::after,
.pricing-pipeline__node--goal::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(140, 201, 255, 0.92);
  box-shadow: 0 0 14px rgba(106, 173, 255, 0.92);
}

.pricing-pipeline__node--kpi {
  border-color: rgba(127, 177, 255, 0.65);
  box-shadow:
    inset 0 0 0 1px rgba(127, 177, 255, 0.22),
    0 0 24px rgba(58, 111, 255, 0.12);
}

.pricing-pipeline__node--goal {
  background:
    linear-gradient(180deg, rgba(40, 74, 132, 0.98), rgba(16, 30, 66, 0.98)),
    linear-gradient(180deg, rgba(116, 170, 255, 0.18), rgba(68, 123, 255, 0.05));
  border-color: rgba(145, 194, 255, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(168, 208, 255, 0.16),
    0 0 28px rgba(70, 136, 255, 0.16);
}

.pricing-pipeline__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(214, 214, 214, 0.58);
}

.pricing-pipeline__value {
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.pricing-pipeline__meta,
.pricing-pipeline__caption,
.pricing-pipeline__summary {
  font-family: 'Roboto', sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.pricing-pipeline__meta {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(201, 201, 201, 0.56);
}

.pricing-pipeline__meta--pro {
  color: rgba(208, 227, 255, 0.72);
}

.pricing-pipeline__connector {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
}

.pricing-pipeline__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
}

.pricing-pipeline__line--pro {
  height: 4px;
  background: rgba(78, 145, 255, 0.42);
  box-shadow: 0 0 12px rgba(65, 139, 255, 0.18);
}

.pricing-pipeline__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(167, 206, 255, 0.72);
  text-shadow: 0 0 10px rgba(127, 177, 255, 0.22);
  pointer-events: none;
}

.pricing-pipeline__packet {
  position: absolute;
  top: 50%;
  left: -22%;
  width: 28%;
  transform: translateY(-50%);
}

.pricing-pipeline__packet::before {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}

.pricing-pipeline__packet--legacy {
  color: rgba(196, 196, 196, 0.84);
  opacity: 0.6;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

.pricing-pipeline__packet--pro {
  color: rgba(127, 177, 255, 0.98);
  filter: drop-shadow(0 0 14px rgba(65, 139, 255, 0.9));
}

.pricing-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(92px, 0.22fr) 1fr minmax(164px, 0.34fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 10px 0 2px;
}

.pricing-rail__label {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 212, 255, 0.68);
}

.pricing-rail__label--top {
  text-align: left;
}

.pricing-rail__label--bottom {
  text-align: right;
}

.pricing-workflow {
  margin-bottom: 18px;
}

.pricing-workflow__eyebrow {
  margin-bottom: 12px;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 212, 255, 0.62);
}

.pricing-workflow__grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(40px, 0.24fr) minmax(136px, 1fr) minmax(40px, 0.24fr) minmax(136px, 1fr) minmax(40px, 0.24fr) minmax(156px, 1.05fr);
  grid-template-rows: auto auto;
  gap: 12px 0;
  align-items: stretch;
}

.pricing-workflow__node,
.pricing-workflow__line,
.pricing-workflow__branch,
.pricing-workflow__branch-line {
  min-height: 104px;
}

.pricing-workflow__node {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(110, 164, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(22, 39, 77, 0.9), rgba(11, 20, 41, 0.96)),
    linear-gradient(180deg, rgba(68, 123, 255, 0.14), rgba(68, 123, 255, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(183, 220, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #eff6ff;
  overflow: hidden;
}

.pricing-workflow__node::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(146, 204, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
  pointer-events: none;
}

.pricing-workflow__node > * {
  position: relative;
  z-index: 1;
}

.pricing-workflow__node-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.pricing-workflow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(164, 207, 255, 0.26);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(92, 148, 255, 0.16), rgba(92, 148, 255, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(61, 128, 255, 0.08);
  flex: 0 0 auto;
}

.pricing-workflow__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(220, 239, 255, 0.92);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-workflow__node--checkpoint {
  border-color: rgba(139, 189, 255, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(183, 220, 255, 0.1),
    0 0 22px rgba(44, 111, 255, 0.1);
}

.pricing-workflow__node--goal,
.pricing-workflow__node--kpi {
  border-color: rgba(152, 201, 255, 0.4);
}

.pricing-workflow__node--kpi {
  background:
    linear-gradient(180deg, rgba(34, 67, 122, 0.92), rgba(13, 29, 66, 0.97)),
    linear-gradient(180deg, rgba(116, 170, 255, 0.18), rgba(68, 123, 255, 0.05));
}

.pricing-workflow__node--kpi .pricing-workflow__icon {
  border-color: rgba(196, 227, 255, 0.34);
  background: linear-gradient(180deg, rgba(121, 174, 255, 0.22), rgba(121, 174, 255, 0.06));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(88, 150, 255, 0.16);
}

.pricing-workflow__label {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 212, 255, 0.62);
}

.pricing-workflow__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 1.9vw, 31px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #eff6ff;
}

.pricing-workflow__meta {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(214, 229, 255, 0.68);
}

.pricing-workflow__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 9px;
  border: 1px solid rgba(162, 206, 255, 0.2);
  border-radius: 999px;
  background: rgba(103, 154, 255, 0.08);
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(222, 240, 255, 0.76);
}

.pricing-workflow__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(162, 206, 255, 0.92);
  box-shadow: 0 0 10px rgba(120, 182, 255, 0.68);
}

.pricing-workflow__tag--accent {
  border-color: rgba(177, 217, 255, 0.34);
  background: rgba(123, 177, 255, 0.14);
  color: rgba(235, 245, 255, 0.9);
}

.pricing-workflow__line,
.pricing-workflow__branch-line,
.pricing-workflow__branch {
  position: relative;
  overflow: hidden;
}

.pricing-rail__track {
  position: relative;
  height: 46px;
}

.pricing-workflow__line-base,
.pricing-workflow__line-glow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  border-radius: 999px;
}

.pricing-workflow__line-base {
  height: 3px;
  background: rgba(89, 147, 255, 0.34);
}

.pricing-workflow__line-glow {
  height: 7px;
  background: linear-gradient(90deg, rgba(75, 140, 255, 0.08), rgba(75, 140, 255, 0.72), rgba(75, 140, 255, 0.08));
  filter: blur(2px);
  opacity: 0.74;
}

.pricing-workflow__beam {
  position: absolute;
  top: 50%;
  left: -24%;
  width: 28%;
  height: 12px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(166, 212, 255, 0.98), transparent);
  filter: drop-shadow(0 0 14px rgba(93, 161, 255, 0.84));
}

.pricing-workflow__branch {
  grid-column: 5;
  grid-row: 2;
  min-height: 56px;
}

.pricing-workflow__branch::before {
  content: "unlock";
  position: absolute;
  top: 50%;
  left: calc(50% + 12px);
  transform: translateY(-50%);
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(190, 220, 255, 0.46);
}

.pricing-workflow__stem-line,
.pricing-workflow__stem-beam {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.pricing-workflow__stem-line {
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(89, 147, 255, 0.18), rgba(89, 147, 255, 0.72), rgba(89, 147, 255, 0.18));
}

.pricing-workflow__stem-beam {
  top: -22%;
  width: 12px;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(166, 212, 255, 0.98), transparent);
  filter: drop-shadow(0 0 14px rgba(93, 161, 255, 0.84));
}

.pricing-workflow__branch-line {
  grid-column: 6;
  grid-row: 2;
  min-height: 56px;
}

.pricing-workflow__node--kpi {
  grid-column: 7;
  grid-row: 2;
  min-height: 56px;
}

.pricing-rail__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
}

.pricing-rail__line--base {
  height: 4px;
  background: linear-gradient(90deg, rgba(94, 119, 153, 0.22), rgba(105, 136, 177, 0.32), rgba(94, 119, 153, 0.22));
}

.pricing-rail__line--glow {
  height: 8px;
  opacity: 0.52;
  background: linear-gradient(90deg, rgba(75, 140, 255, 0.08), rgba(75, 140, 255, 0.96), rgba(75, 140, 255, 0.08));
  filter: blur(3px);
}

.pricing-board--pro.is-boosted .pricing-rail__line--glow,
.pricing-board--pro:hover .pricing-rail__line--glow {
  height: 13px;
  opacity: 1;
  filter: blur(4px);
}

.pricing-rail__pulse {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 14%;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(149, 204, 255, 0.96), transparent);
  filter: drop-shadow(0 0 14px rgba(93, 161, 255, 0.9));
}

.pricing-rail__core {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 96px;
  padding: 12px 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(145, 194, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(31, 68, 134, 0.98), rgba(10, 28, 72, 0.98)),
    rgba(11, 19, 37, 0.96);
  color: #eff6ff;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(183, 220, 255, 0.12),
    0 0 32px rgba(44, 111, 255, 0.22);
}

.pricing-board--pro.is-boosted .pricing-rail__core,
.pricing-board--pro:hover .pricing-rail__core {
  box-shadow:
    inset 0 0 0 1px rgba(183, 220, 255, 0.18),
    0 0 42px rgba(44, 111, 255, 0.36);
}

.pricing-pipeline__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(214, 229, 255, 0.88);
}

.pricing-pipeline__summary span {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214, 229, 255, 0.52);
}

.pricing-pipeline__summary strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #eff6ff;
}

.pricing-pipeline__caption {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(243, 243, 243, 0.68);
}

.pricing-pipeline__caption--pro {
  color: rgba(214, 229, 255, 0.74);
}

.pricing-board__copy {
  margin-top: auto;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.65;
  color: rgba(243, 243, 243, 0.68);
}

.pricing-board__copy--accent {
  color: rgba(214, 229, 255, 0.84);
}

.pricing-specs {
  display: grid;
  grid-template-columns: minmax(140px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 18, 23, 0.94), rgba(8, 10, 14, 0.98));
  overflow: hidden;
}

.pricing-specs__head,
.pricing-specs__label,
.pricing-specs__cell {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-specs__head,
.pricing-specs__label {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-specs__head {
  background: rgba(255, 255, 255, 0.025);
  color: rgba(226, 236, 246, 0.62);
}

.pricing-specs__head--accent {
  color: #98c1ff;
  background: linear-gradient(180deg, rgba(68, 123, 255, 0.08), rgba(68, 123, 255, 0.025));
}

.pricing-specs__label {
  color: rgba(214, 214, 214, 0.42);
  background: rgba(255, 255, 255, 0.015);
}

.pricing-specs__cell {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  color: rgba(237, 242, 248, 0.82);
  background: rgba(255, 255, 255, 0.012);
}

.pricing-specs__cell--accent {
  color: rgba(223, 235, 255, 0.94);
  background: linear-gradient(180deg, rgba(68, 123, 255, 0.06), rgba(68, 123, 255, 0.015));
}

.pricing-specs__cell code {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.92em;
  color: inherit;
}

/* Pricing block typography and contrast reset */
#pricing .section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 122px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: none;
}

#pricing .section__lead {
  max-width: 860px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: 1.45;
  letter-spacing: normal;
  color: rgba(227, 233, 242, 0.82);
}

#pricing .pricing-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  padding: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

#pricing .pricing-comparison::before {
  display: none;
}

#pricing .pricing-boards {
  grid-column: 1 / -1;
  width: 100%;
}

#pricing .pricing-comparison__top {
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}

#pricing .pricing-comparison__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: none;
}

#pricing .pricing-comparison__text {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.5;
  color: rgba(215, 222, 233, 0.8);
}

#pricing .pricing-composer__cta,
#pricing .pricing-composer__link {
  min-height: 52px;
  padding: 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#pricing .pricing-comparison__actions {
  gap: 12px;
}

#pricing .pricing-composer__cta {
  border: 1px solid rgba(184, 255, 104, 0.85);
  box-shadow: 0 8px 18px rgba(184, 255, 104, 0.2);
}

#pricing .pricing-composer__link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 243, 243, 0.92);
}

#pricing .pricing-composer__cta:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

#pricing .pricing-composer__link:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 255, 104, 0.42);
  background: rgba(184, 255, 104, 0.06);
}

@media (min-width: 768px) {
  #pricing .pricing-comparison {
    grid-template-columns: 1fr;
  }
}

#pricing .pricing-board {
  border-radius: 0;
  backdrop-filter: none;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

#pricing .pricing-board::before {
  display: none;
}

#pricing .pricing-board::after {
  display: none;
}

#pricing .pricing-board__header {
  gap: 10px;
}

#pricing .pricing-board__eyebrow {
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#pricing .pricing-board__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 2.9vw, 50px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: none;
}

#pricing .pricing-board__body {
  padding: clamp(22px, 2.3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#pricing .pricing-board__line {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.04vw, 19px);
  line-height: 1.52;
  letter-spacing: normal;
}

#pricing .pricing-board__body > .pricing-board__line:first-of-type {
  order: 5;
  font-size: clamp(21px, 1.42vw, 27px);
  font-weight: 700;
  line-height: 1.3;
}

#pricing .pricing-board__body > .pricing-board__line:not(.pricing-board__line--focus):not(:first-of-type) {
  order: 10;
  margin-top: -4px;
  font-size: clamp(15px, 0.96vw, 17px);
  line-height: 1.55;
  color: rgba(240, 236, 231, 0.82);
}

#pricing .pricing-board__line--focus {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  line-height: 1.2;
  order: 30;
  margin-top: 18px;
}

#pricing .pricing-board__list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  order: 15;
}

#pricing .pricing-board__list li {
  position: relative;
  padding-left: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.62;
}

#pricing .pricing-board__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.74;
}

#pricing .pricing-board__summary {
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(18px, 1.12vw, 21px);
  line-height: 1.46;
  font-weight: 600;
  letter-spacing: normal;
  order: 20;
}

#pricing .pricing-board--legacy {
  color: rgba(240, 236, 231, 0.84);
  background: #060606;
  filter: none;
}

#pricing .pricing-board--legacy .pricing-board__line--focus {
  color: rgba(239, 244, 250, 0.9);
  background: rgba(239, 244, 250, 0.08);
}

#pricing .pricing-board--legacy .pricing-board__summary {
  color: rgba(240, 236, 231, 0.9);
}

#pricing .pricing-board--pro {
  color: rgba(240, 236, 231, 0.92);
  background: #060606;
  position: relative;
  isolation: isolate;
}

#pricing .pricing-board--pro::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 255, 104, 0.45);
  box-shadow:
    inset 0 0 20px rgba(184, 255, 104, 0.08),
    0 0 24px rgba(184, 255, 104, 0.12);
  pointer-events: none;
  display: block;
  z-index: 0;
}

#pricing .pricing-board--pro > * {
  position: relative;
  z-index: 1;
}

#pricing .pricing-board--pro .pricing-board__top-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: clamp(16px, 1.8vw, 22px) 0 0 clamp(22px, 2.3vw, 30px);
  padding: 6px 12px;
  border: 1px solid rgba(184, 255, 104, 0.7);
  background: rgba(184, 255, 104, 0.14);
  color: #d9ffaf;
  font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.2;
}

#pricing .pricing-board--pro .pricing-board__eyebrow {
  color: rgba(240, 236, 231, 0.58);
}

#pricing .pricing-board--pro .pricing-board__title {
  color: #f0ece7;
}

#pricing .pricing-board--pro .pricing-board__line--focus {
  color: #b8ff68;
  background: rgba(184, 255, 104, 0.12);
}

#pricing .pricing-board--pro .pricing-board__summary {
  color: #d9ffaf;
  font-size: clamp(19px, 1.2vw, 23px);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: 0 0 20px rgba(184, 255, 104, 0.16);
}

#pricing .pricing-board--pro:hover,
#pricing .pricing-board--pro.is-boosted {
  transform: none;
  box-shadow: none;
  border-color: inherit;
}

#pricing .pricing-board__kpi-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 0;
  background: rgba(184, 255, 104, 0.14);
  color: #b8ff68;
  border: 1.5px solid rgba(184, 255, 104, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
  vertical-align: middle;
}

#pricing .pricing-specs,
#pricing .pricing-board__diagram,
#pricing .pricing-board__copy {
  display: none;
}

#pricing .pricing-boards {
  gap: 0;
  border-top: 1px solid var(--line);
  background: #060606;
}

@media (min-width: 961px) {
  #pricing .pricing-comparison,
  #pricing .pricing-boards,
  #pricing .pricing-vs {
    height: 100%;
  }

  #pricing .pricing-boards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  #pricing .pricing-vs {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    align-items: stretch;
    color: rgba(240, 236, 231, 0.82);
  }

  #pricing .pricing-vs__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: clamp(64px, 5.2vw, 88px);
    border-left: 0;
    border-right: 1px solid var(--line);
    font-family: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(240, 236, 231, 0.96);
  }

  #pricing .pricing-vs__top::before,
  #pricing .pricing-vs__top::after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 255, 104, 0.08), rgba(184, 255, 104, 0.72));
  }

  #pricing .pricing-vs__top::after {
    background: linear-gradient(90deg, rgba(184, 255, 104, 0.72), rgba(184, 255, 104, 0.08));
  }

  #pricing .pricing-vs__center {
    width: 100%;
    border-left: 0;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 26px 10px;
    text-align: center;
  }

  #pricing .pricing-vs__text {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(24px, 1.95vw, 38px);
    font-weight: 700;
    line-height: 1.18;
    color: rgba(240, 236, 231, 0.9);
    display: grid;
    gap: 6px;
  }

  #pricing .pricing-vs__workline {
    white-space: nowrap;
  }

  #pricing .pricing-vs__normal {
    color: rgba(240, 236, 231, 0.9);
  }

  #pricing .pricing-vs__work {
    color: rgba(240, 236, 231, 0.58);
  }

  #pricing .pricing-vs__result {
    color: #b8ff68;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: 0 0 22px rgba(184, 255, 104, 0.22);
  }

  #pricing .pricing-vs__or {
    color: rgba(240, 236, 231, 0.76);
    font-size: clamp(16px, 1vw, 20px);
    font-weight: 600;
  }

  #pricing .pricing-boards {
    border-top: 0;
  }

  #pricing .pricing-board {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    height: 100%;
  }

  #pricing .pricing-board--pro {
    border-right: 0;
  }

  #pricing .pricing-board__body {
    flex: 1 1 auto;
  }

  #pricing .pricing-board__summary {
    margin-top: auto;
  }
}

@media (max-width: 960px) {
  #pricing .pricing-board {
    border-right: 0;
  }

  #pricing .pricing-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #pricing .pricing-header__actions {
    justify-content: flex-start;
  }

  #pricing .pricing-comparison__actions {
    width: 100%;
  }

  #pricing .pricing-composer__cta,
  #pricing .pricing-composer__link {
    flex: 1 1 240px;
  }
}

@keyframes pricing-hourglass-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .pricing-comparison__top {
    grid-template-columns: 1fr;
  }

  .pricing-boards {
    grid-template-columns: 1fr;
  }

  .pricing-specs {
    grid-template-columns: 1fr;
  }

  .pricing-rail {
    grid-template-columns: minmax(72px, 0.26fr) 1fr minmax(120px, 0.34fr);
    gap: 12px;
  }

  .pricing-schematic__canvas {
    grid-template-columns: 72px minmax(120px, 1fr) minmax(160px, 1fr) 30px minmax(118px, 0.82fr);
    gap: 16px 14px;
  }

  .pricing-schematic__headline {
    font-size: clamp(28px, 4vw, 40px);
  }

  .pricing-schematic__total-box {
    min-height: 318px;
  }
}

@media (max-width: 720px) {
  .pricing-comparison__headline {
    font-size: clamp(28px, 10vw, 46px);
  }

  .pricing-schematic__canvas {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .pricing-schematic__start,
  .pricing-schematic__main-arrow,
  .pricing-schematic__center,
  .pricing-schematic__equals,
  .pricing-schematic__total,
  .pricing-schematic__goals,
  .pricing-schematic__flag {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-schematic__start,
  .pricing-schematic__flag {
    flex-direction: row;
    align-items: center;
  }

  .pricing-schematic__main-arrow {
    height: 18px;
  }

  .pricing-schematic__total-box {
    min-height: 180px;
  }

  .pricing-schematic__equals {
    min-height: 42px;
  }

  .pricing-workflow__grid,
  .pricing-pipeline__row,
  .pricing-pipeline__row--legacy,
  .pricing-pipeline__row--pro {
    grid-template-columns: 1fr;
  }

  .pricing-workflow__line,
  .pricing-workflow__branch-line {
    min-height: 40px;
  }

  .pricing-workflow__branch {
    grid-column: auto;
    grid-row: auto;
    min-height: 40px;
  }

  .pricing-workflow__stem-line {
    top: 0;
    bottom: 0;
  }

  .pricing-workflow__node--kpi {
    grid-column: auto;
    grid-row: auto;
    min-height: 104px;
  }

  .pricing-pipeline__connector {
    min-height: 42px;
  }

  .pricing-pipeline__packet {
    width: 18%;
  }

  .pricing-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-rail__label--bottom {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .pricing-comparison__actions,
  .pricing-composer__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-composer__cta,
  .pricing-composer__link {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════
   HOW IT'S MADE / PROCESS  (#how-it-works)
═══════════════════════════════════════════════════ */

#how-it-works {
  background: #060606;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.process-header {
  padding: clamp(72px, 7.7vw, 124px) 0 clamp(20px, 2.6vw, 36px);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  list-style: none;
  margin: 0;
  margin-left: calc(var(--page-gutter) * -1);
  margin-right: calc(var(--page-gutter) * -1);
  padding: 0;
}

.process-step {
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 120px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 52px) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.22s ease;
}

.process-step:last-child {
  border-bottom: none;
  padding-bottom: clamp(72px, 7.7vw, 96px);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.process-step__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
  transition: -webkit-text-stroke-color 0.22s ease;
}

.process-step:hover .process-step__number {
  -webkit-text-stroke-color: var(--accent);
}

.process-step__content {
  padding-top: 4px;
}

.process-step__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.8vw, 46px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #f3f3f3;
  margin: 0 0 14px;
}

.process-step__desc {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.55;
  color: rgba(243, 243, 243, 0.72);
  max-width: 68ch;
  margin: 0;
}

@media (max-width: 560px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step__number {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .pricing-header,
  .process-header {
    padding-top: clamp(52px, 12vw, 72px);
  }

  .pricing-composer {
    padding-bottom: clamp(52px, 12vw, 72px);
  }

  .process-step:last-child {
    padding-bottom: clamp(52px, 12vw, 72px);
  }
}

/* ═══════════════════════════════════════════════════
   GUARANTEE  (#guarantee)
═══════════════════════════════════════════════════ */

#guarantee {
  background: #060606;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  border-bottom: 1px solid rgba(184, 255, 104, 0.14);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 320px);
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
  padding: clamp(44px, 6vw, 84px) 0;
}

.guarantee-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.3vw, 30px);
  max-width: 760px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 clamp(4px, 0.7vw, 10px);
}

.guarantee-headline {
  margin: 0 0 clamp(4px, 0.7vw, 10px);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.2vw, 82px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #f3f3f3;
  text-transform: uppercase;
  max-width: 14ch;
}

.guarantee-headline__accent {
  color: var(--accent);
}

.guarantee-subtext {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.58;
  color: rgba(243, 243, 243, 0.8);
  max-width: 64ch;
  margin: 0;
}

.guarantee-legal-note {
  margin: clamp(6px, 1vw, 14px) 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 255, 104, 0.88);
}

.guarantee-side {
  position: relative;
  justify-self: center;
  transform: translateX(-28px);
  width: min(100%, 220px);
  height: 220px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.guarantee-emblem {
  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  display: grid;
  place-items: center;
  opacity: 0.26;
  filter: blur(0.2px);
}

.guarantee-emblem svg {
  width: 100%;
  height: 100%;
  stroke: rgba(184, 255, 104, 0.78);
  stroke-width: 1.7;
  fill: none;
}

@media (max-width: 860px) {
  .guarantee-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .guarantee-side {
    justify-self: center;
    transform: translateX(0);
    width: 160px;
    height: 120px;
    margin-top: 8px;
  }
}

/* ═══════════════════════════════════════════════════
   STORY BLOCKS (#story-intro, #journey-timeline, #work-values)
═══════════════════════════════════════════════════ */

#story-intro,
#journey-timeline,
#work-values {
  background: #060606;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

#story-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#journey-timeline {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(10px, calc(var(--page-gutter) * 0.42));
  width: 1px;
  background: rgba(184, 255, 104, 0.32);
  pointer-events: none;
  z-index: 0;
}

#work-values {
  border-top: 1px solid rgba(184, 255, 104, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.story-shell,
.journey-shell,
.values-shell {
  width: 100%;
  margin: 0;
  padding-top: clamp(52px, 7vw, 108px);
  padding-bottom: clamp(52px, 7vw, 108px);
}

.story-headline-grid .bb-featured-grid-col.-header,
.story-headline-grid .bb-featured-grid-col.-more {
  background: #060606;
}

.story-headline-grid .bb-featured-header h2 p {
  color: #f0ece7;
}

.story-headline-grid .story-headline-text {
  position: static;
  max-width: 62rem;
  margin: 1.8rem 0 0;
  color: rgba(240, 236, 231, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 1.45vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
}

.story-headline-grid .bb-featured-grid-col.-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-headline-accent {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: #f0ece7;
}

.story-headline-accent__dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(240, 236, 231, 0.35);
}

.story-intro-copy {
  margin: clamp(30px, 3.4vw, 52px) 0 0;
  max-width: 44ch;
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 2vw, 3.6rem);
  line-height: 1.28;
  color: rgba(240, 236, 231, 0.9);
}

.journey-track {
  position: relative;
  padding-left: clamp(54px, 6vw, 92px);
  padding-right: clamp(10px, 1.2vw, 18px);
  isolation: isolate;
  padding-bottom: 22vh;
}

.journey-track::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(243, 243, 243, 0.16);
}

.journey-track__progress {
  position: absolute;
  left: 18px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(184, 255, 104, 1) 0%, rgba(184, 255, 104, 0.38) 100%);
  transform-origin: top center;
}

.journey-item {
  position: relative;
  min-height: 100vh;
  padding: clamp(30px, 3.2vw, 44px) 0;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  column-gap: clamp(28px, 3.2vw, 52px);
  align-items: stretch;
  background: rgba(6, 6, 6, 0.985);
}

.journey-item + .journey-item {
  margin-top: 0;
}

.journey-item:last-child {
  padding-bottom: clamp(30px, 3.2vw, 44px);
  margin-bottom: 0;
  border-bottom: 0;
}

.journey-item:nth-child(1) { z-index: 1; }
.journey-item:nth-child(2) { z-index: 2; }
.journey-item:nth-child(3) { z-index: 3; }
.journey-item:nth-child(4) { z-index: 4; }
.journey-item:nth-child(5) { z-index: 5; }
.journey-item:nth-child(6) { z-index: 6; }

.journey-track.is-slide-mode {
  height: 100vh;
  padding-bottom: 0;
  overflow: hidden;
}

.journey-track.is-slide-mode .journey-item {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 100%;
  box-shadow: 0 -28px 44px rgba(0, 0, 0, 0.34);
  will-change: transform;
}

.journey-track.is-slide-mode .journey-item + .journey-item {
  margin-top: 0;
}

.journey-item__dot {
  display: none;
}

.journey-item__main {
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(10px, 1vw, 16px);
  padding-right: clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-item__period {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(1.4rem, 1.2vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184, 255, 104, 0.92);
}

.journey-item__year-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8ff68;
  box-shadow: 0 0 0 4px rgba(184, 255, 104, 0.16);
  flex: 0 0 auto;
}

.journey-item__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.7rem, 2.85vw, 4.8rem);
  line-height: 1.06;
  text-transform: none;
  letter-spacing: 0.004em;
  color: rgba(243, 238, 230, 0.9);
  max-width: 26ch;
}

.journey-item__title-accent {
  display: block;
  margin: 0 0 0.08em;
  font-family: var(--font-display);
  font-size: 1.2em;
  line-height: 0.92;
  letter-spacing: 0.012em;
  color: rgba(184, 255, 104, 0.96);
}

.journey-item__subtitle {
  margin: 2px 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 1.06vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(240, 236, 231, 0.66);
}

.journey-item__side {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: clamp(6px, 0.8vw, 14px);
}

.journey-item__text {
  margin: clamp(10px, 1vw, 16px) 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 1.22vw, 2.15rem);
  line-height: 1.72;
  color: rgba(240, 236, 231, 0.76);
  max-width: 46ch;
  text-wrap: pretty;
}

.journey-item__quotes {
  margin: auto 0 0;
  padding-top: clamp(10px, 1.1vw, 16px);
  max-width: 56ch;
  display: grid;
  gap: 10px;
}

.journey-item__quotes::before {
  content: '';
  width: 100%;
  max-width: 26rem;
  height: 1px;
  background: rgba(240, 236, 231, 0.16);
  margin: 2px 0 8px;
}

.journey-item__quote {
  margin: 0;
  padding: 0 0 0 15px;
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 1.35vw, 2.35rem);
  line-height: 1.56;
  color: rgba(240, 236, 231, 0.8);
}

.journey-item__quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: 0.02em;
  color: rgba(184, 255, 104, 0.88);
  font-size: 0.95em;
  line-height: 1;
}

.journey-item__media {
  margin: 0;
  width: 100%;
  max-width: 78rem;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0.72;
}

.journey-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(0.72) contrast(0.88) brightness(0.94);
}

.values-layout {
  margin-top: clamp(22px, 3vw, 38px);
}

#how-it-works .values-layout {
  padding-bottom: clamp(72px, 7.7vw, 96px);
}

.values-manifesto {
  margin: 0;
  max-width: 48ch;
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 2.6vw, 4.8rem);
  line-height: 1.2;
  color: rgba(243, 243, 243, 0.92);
}

.values-columns {
  margin-top: clamp(30px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 42px);
}

.values-column {
  padding-top: clamp(22px, 2.2vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.values-column--yes {
  border-top-color: rgba(184, 255, 104, 0.56);
}

.values-column__title {
  margin: 0 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 1.9vw, 3.4rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f3f3f3;
}

.values-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.values-list li {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 1.55vw, 2.8rem);
  line-height: 1.38;
  color: rgba(243, 243, 243, 0.8);
}

.values-list li::before {
  content: none;
}

.values-column--yes .values-list li {
  border-left-color: rgba(184, 255, 104, 0.82);
}

@media (max-width: 860px) {
  #journey-timeline::before {
    display: none;
  }

  .story-intro-copy {
    font-size: clamp(2.1rem, 5.2vw, 2.8rem);
    max-width: 28ch;
  }

  .journey-track {
    padding-left: 34px;
  }

  .story-headline-grid .bb-featured-grid-col.-more {
    display: none;
  }

  .journey-item {
    min-height: auto;
    padding-bottom: 22px;
    grid-template-columns: 1fr;
    row-gap: 18px;
    position: relative;
    top: auto;
    background: transparent;
    backdrop-filter: none;
  }

  .journey-item + .journey-item { margin-top: 0; }

  .journey-item__main {
    border-right: 0;
    padding-right: 0;
    gap: 20px;
  }

  .journey-item__title {
    font-size: clamp(2.35rem, 6.2vw, 3.6rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .journey-item__title-accent {
    font-size: 1.14em;
  }

  .journey-item__subtitle {
    font-size: clamp(1.3rem, 3.4vw, 1.75rem);
  }

  .journey-item__side {
    max-width: 100%;
    justify-self: stretch;
  }

  .journey-item__text {
    font-size: clamp(1.55rem, 3.7vw, 2.05rem);
    line-height: 1.65;
    max-width: 100%;
  }

  .journey-item__quotes {
    max-width: 100%;
    gap: 10px;
  }

  .journey-item__quote {
    font-size: clamp(1.55rem, 3.95vw, 2.08rem);
  }

  .journey-item__media {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

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

  .values-manifesto {
    font-size: clamp(2.3rem, 6vw, 3.1rem);
  }

  .values-list li {
    font-size: clamp(1.7rem, 4.3vw, 2.2rem);
  }
}

/* ── Journey mobile: slide-mode layout ──────────── */
@media (max-width: 860px) {
  .journey-track.is-slide-mode {
    padding-left: 0;
    padding-right: 0;
  }

  .journey-track.is-slide-mode .journey-item__side,
  .journey-track.is-slide-mode .journey-item__quotes {
    display: none;
  }

  .journey-track.is-slide-mode .journey-item {
    padding: clamp(32px, 7vw, 52px) clamp(20px, 5vw, 36px);
    overflow: hidden;
  }

  .journey-track.is-slide-mode .journey-item__main {
    padding-right: 0;
    border-right: none;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════
   SITE NAV
═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.site-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 9px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.site-nav__icon {
  display: none;
}

.site-nav__item:hover {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav__item.is-active {
  background: #ffffff;
  color: #0c0c0c;
}

/* ── Mobile tab bar ─────────────────────────────── */
@media (max-width: 768px) {
  .site-nav {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 4px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 12px));
    box-shadow: none;
  }

  .site-nav__item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 12px;
    flex: 1;
    max-width: 72px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
  }

  .site-nav__item:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
  }

  .site-nav__item.is-active {
    background: transparent;
    color: #ffffff;
  }

  .site-nav__icon {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 12px));
  }
}
