
    :root {
      --section-bg: #08040d;
      --card-bg: #292923;
      --card-border: #48483f;
      --heading: #ffffff;
      --copy: #c9c7be;
      --muted: #9d9b92;
      --accent: #7323bf;
      --accent-light: #a49fff;
      --cards-visible: 5;
      --card-gap: 18px;
      --slider-width: min(var(--site-max, 1440px), calc(100vw - 48px));
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      background: var(--section-bg);
      color: var(--heading);
      font-family: "Manrope", sans-serif;
    }

    button {
      font: inherit;
    }

    .leadership {
      position: relative;
      min-height: 0;
      overflow: hidden;
      padding: 112px 24px 104px;
      background:
        radial-gradient(circle at 15% 5%, rgba(119, 112, 255, 0.13), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(119, 112, 255, 0.08), transparent 26%),
        var(--section-bg);
      isolation: isolate;
      animation: sectionFade 0.8s ease both;
    }

    .leadership::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.32;
      pointer-events: none;
      background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, black, transparent 88%);
    }

    .section-heading {
      width: min(790px, 100%);
      margin: 0 auto 62px;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--accent-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 24px;
      height: 1px;
      background: currentColor;
      opacity: 0.6;
    }

    .section-heading h1 {
      margin-bottom: 20px;
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.045em;
    }

    .section-heading p:last-child {
      color: var(--copy);
      font-size: 18px;
      line-height: 1.75;
    }

    .slider-shell {
      position: relative;
      width: var(--slider-width);
      margin: 0 auto;
    }

    .slider-viewport {
      overflow: hidden;
      padding: 12px 0 24px;
      mask-image: linear-gradient(90deg, transparent, black 2.5%, black 97.5%, transparent);
    }

    .team-track {
      display: flex;
      width: max-content;
      animation: infiniteScroll 34s linear infinite;
      will-change: transform;
    }

    .team-set {
      display: flex;
      flex: none;
      gap: var(--card-gap);
      padding-right: var(--card-gap);
    }

    /* RTL changes only the written content. The carousel coordinate system,
       starting edge and animation remain identical to the English version. */
    html[dir="rtl"] .slider-shell,
    html[dir="rtl"] .slider-viewport,
    html[dir="rtl"] .team-track,
    html[dir="rtl"] .team-set { direction: ltr; }
    html[dir="rtl"] .team-card { direction: rtl; }

    .slider-viewport:hover .team-track,
    .slider-viewport:focus-within .team-track {
      animation-play-state: paused;
    }

    .team-card {
      position: relative;
      flex: 0 0 calc((var(--slider-width) - (var(--cards-visible) - 1) * var(--card-gap)) / var(--cards-visible));
      height: 410px;
      overflow: hidden;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 38px;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.04);
      text-align: center;
      opacity: 0;
      transform: translateY(28px);
      animation: cardEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      transition: border-color 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                  translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .team-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      pointer-events: none;
      background: linear-gradient(145deg, rgba(119, 112, 255, 0.13), transparent 42%);
      transition: opacity 0.35s ease;
    }

    .team-card:hover {
      translate: 0 -4px;
      border-color: rgba(125, 100, 255, 0.5);
      box-shadow: 0 20px 60px rgba(80, 60, 255, 0.12), 0 24px 48px rgba(0, 0, 0, 0.32);
    }

    .team-card:hover::after {
      opacity: 1;
    }

    .portrait-wrap {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      width: calc(100% - 32px);
      aspect-ratio: 1;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      background: #3a3933;
      box-shadow: 0 15px 34px rgba(0, 0, 0, 0.34);
      transition: top 0.72s cubic-bezier(0.22, 1, 0.36, 1),
                  left 0.72s cubic-bezier(0.22, 1, 0.36, 1),
                  width 0.72s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.72s ease;
    }

    .portrait-wrap img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(0.82) contrast(1.04);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }

    .team-card:hover .portrait-wrap img {
      transform: scale(1.04);
      filter: saturate(1) contrast(1.03);
    }

    .team-card:hover .portrait-wrap {
      top: 190px;
      left: 16%;
      width: 68%;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36), 0 0 22px rgba(119, 112, 255, 0.08);
    }

    .card-copy {
      position: absolute;
      top: 326px;
      left: 16px;
      z-index: 1;
      width: calc(100% - 32px);
      min-height: 64px;
      padding: 0 4px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: top 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .team-card:hover .card-copy {
      top: 58px;
      transform: scale(1.03);
    }

    .card-copy h2 {
      margin-bottom: 8px;
      font-size: clamp(17px, 1.35vw, 21px);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.025em;
    }

    .card-copy p {
      color: var(--copy);
      font-size: 14px;
      font-weight: 500;
      line-height: 1.45;
    }

    /* Team hero collaboration visual */
    .inner-hero.team-hero {
      min-height: 720px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: max(43vw, 640px);
    }

    .inner-hero.team-hero::after { display: none; }

    .inner-hero .team-hero-art {
      position: absolute;
      top: 50%;
      right: max(14vw, 110px);
      z-index: 0;
      width: min(40vw, 650px);
      aspect-ratio: 1;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .team-hero-art::before {
      content: "";
      position: absolute;
      inset: 14%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240, 68, 168, .17), rgba(118, 70, 255, .06) 42%, transparent 70%);
      filter: blur(20px);
      animation: teamGlow 5s ease-in-out infinite;
    }

    .team-network { width: 100%; height: 100%; overflow: visible; }
    .network-ring { fill: none; stroke: rgba(240, 68, 168, .2); stroke-width: 1; }
    .network-ring--inner { stroke: rgba(151, 119, 255, .2); stroke-dasharray: 5 10; animation: ringSpin 28s linear infinite; transform-origin: 300px 300px; }
    .network-link { fill: none; stroke: url(#teamLine); stroke-width: 1.25; stroke-dasharray: 5 8; animation: linkFlow 8s linear infinite; }
    .network-node { filter: drop-shadow(0 0 12px rgba(240, 68, 168, .3)); }
    .network-node circle { fill: #100919; stroke: rgba(255, 76, 188, .65); stroke-width: 1.4; }
    .network-node text { fill: #f6eaf4; font: 700 10px "Manrope", sans-serif; letter-spacing: .12em; text-anchor: middle; }
    .network-avatar { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.22); }
    .network-core { transform-origin: 300px 300px; animation: coreFloat 4.5s ease-in-out infinite; }
    .network-core .core-halo { fill: rgba(240,68,168,.06); stroke: rgba(240,68,168,.42); }
    .network-core .core-disc { fill: #12091b; stroke: rgba(255,255,255,.22); }
    .network-core text { fill: white; font: 800 13px "Manrope", sans-serif; letter-spacing: .2em; text-anchor: middle; }
    .network-core .core-sub { fill: #e90a9b; font-size: 8px; letter-spacing: .24em; }
    .network-pulse { fill: #e90a9b; animation: nodePulse 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
    .network-node:nth-of-type(2) .network-pulse { animation-delay: -.7s; }
    .network-node:nth-of-type(3) .network-pulse { animation-delay: -1.4s; }
    .network-node:nth-of-type(4) .network-pulse { animation-delay: -2.1s; }

    .team-art-caption {
      position: absolute;
      right: 6%;
      bottom: 8%;
      display: flex;
      align-items: center;
      gap: 9px;
      color: #b9a9c3;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .team-art-caption i { width: 6px; height: 6px; border-radius: 50%; background: #e90a9b; box-shadow: 0 0 12px #e90a9b; animation: nodePulse 2s ease infinite; }

    html[dir="rtl"] .inner-hero.team-hero { padding-right: max(7vw, 32px); padding-left: max(48vw, 680px); }
    html[dir="rtl"] .inner-hero .team-hero-art { right: auto; left: max(4vw, 36px); }

    @keyframes ringSpin { to { transform: rotate(360deg); } }
    @keyframes linkFlow { to { stroke-dashoffset: -130; } }
    @keyframes coreFloat { 50% { transform: translateY(-8px); } }
    @keyframes teamGlow { 50% { opacity: .62; transform: scale(1.08); } }
    @keyframes nodePulse { 50% { opacity: .35; transform: scale(1.7); } }

    @media (max-width: 1100px) {
      .leadership { padding-block: 92px 84px; }
      .inner-hero.team-hero { min-height: 680px; padding-right: 42vw; }
      .inner-hero .team-hero-art { right: 2vw; width: 41vw; }
    }

    @media (max-width: 760px) {
      .leadership { padding: 72px 16px 64px; }
      .inner-hero.team-hero { min-height: auto; padding: 110px 24px 54px; }
      .inner-hero .team-hero-art { position: relative; top: auto; right: auto; order: 4; width: min(100%, 460px); margin: 30px auto -18px; transform: none; }
      html[dir="rtl"] .inner-hero.team-hero { padding: 110px 24px 54px; }
      html[dir="rtl"] .inner-hero .team-hero-art { left: auto; }
      .team-art-caption { bottom: 5%; }
    }

    @keyframes sectionFade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes cardEnter {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes infiniteScroll {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }

    /* Culture gallery */
    .culture-gallery {
      --culture-gap: 20px;
      --culture-visible: 4;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      overflow: hidden;
      padding: 120px 0 128px;
      background:
        radial-gradient(circle at 76% 20%, rgba(188, 139, 72, 0.09), transparent 28%),
        linear-gradient(180deg, #08070a, #0d0b0e);
    }

    .culture-header,
    .culture-viewport {
      width: min(var(--site-max, 1440px), calc(100% - 48px));
      margin-inline: auto;
    }

    .culture-header {
      display: grid;
      grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1fr);
      align-items: end;
      gap: 60px;
      margin-bottom: 54px;
    }

    .culture-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 17px;
      color: #e90a9b;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.2em;
    }

    .culture-label::before {
      content: "";
      width: 32px;
      height: 1px;
      background: currentColor;
    }

    .culture-header h2 {
      color: #fff;
      font-size: clamp(38px, 4.4vw, 68px);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .culture-intro {
      max-width: 650px;
      padding-bottom: 5px;
      color: #aaa6a0;
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.75;
    }

    .culture-viewport {
      overflow: hidden;
      padding: 8px 2px 30px;
    }

    .culture-track {
      display: flex;
      gap: var(--culture-gap);
      transform: translate3d(0, 0, 0);
      will-change: transform;
    }

    .culture-track.is-sliding {
      transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .culture-card {
      position: relative;
      flex: 0 0 calc((100% - (var(--culture-visible) - 1) * var(--culture-gap)) / var(--culture-visible));
      min-width: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 26px;
      background: #151316;
      color: #fff;
      cursor: pointer;
      text-align: left;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
    }

    .culture-card:hover,
    .culture-card:focus-visible {
      z-index: 2;
      border-color: rgba(240, 68, 168, 0.56);
      outline: none;
      transform: translateY(-7px) scale(1.008);
      box-shadow: 0 25px 55px rgba(0, 0, 0, 0.36), 0 0 28px rgba(240, 68, 168, 0.08);
    }

    .culture-image {
      position: relative;
      height: 290px;
      overflow: hidden;
      background: #222;
    }

    .culture-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12, 10, 12, 0.38), transparent 48%);
      pointer-events: none;
    }

    .culture-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.82);
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }

    .culture-card:hover img,
    .culture-card:focus-visible img {
      transform: scale(1.055);
      filter: saturate(1);
    }

    .culture-number {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 1;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      background: rgba(8, 7, 10, 0.55);
      font-size: 11px;
      font-weight: 700;
      backdrop-filter: blur(9px);
    }

    .culture-content {
      min-height: 190px;
      padding: 25px 25px 28px;
    }

    .culture-tag {
      display: inline-block;
      margin-bottom: 15px;
      color: #e90a9b;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .culture-content h3 {
      margin-bottom: 11px;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: -0.025em;
    }

    .culture-content p {
      color: #9f9a9d;
      font-size: 14px;
      line-height: 1.65;
    }

    .culture-hint {
      width: min(var(--site-max, 1440px), calc(100% - 48px));
      margin: 0 auto;
      color: #686368;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-align: right;
      text-transform: uppercase;
    }

    @media (max-width: 1199px) {
      :root { --cards-visible: 4; }
      .leadership { padding-inline: 20px; }
      :root { --slider-width: min(1180px, calc(100vw - 40px)); }
    }

    @media (max-width: 991px) {
      :root { --cards-visible: 3; }
      .leadership { padding-top: 88px; }
      .section-heading { margin-bottom: 48px; }
      .section-heading p:last-child { font-size: 17px; }
      .culture-gallery { --culture-visible: 2; padding-block: 96px; }
      .culture-header { grid-template-columns: 1fr; gap: 20px; }
      .culture-intro { max-width: 720px; }
    }

    @media (max-width: 767px) {
      :root { --cards-visible: 2; --card-gap: 16px; }
      .leadership { padding: 76px 16px 76px; }
      .section-heading h1 { font-size: 38px; }
      :root { --slider-width: calc(100vw - 32px); }
    }

    @media (max-width: 540px) {
      :root { --cards-visible: 1; }
      .leadership { padding-inline: 18px; }
      .section-heading { margin-bottom: 36px; }
      .section-heading h1 { margin-bottom: 16px; font-size: 30px; }
      .section-heading p:last-child { font-size: 16px; line-height: 1.65; }
      :root { --slider-width: min(315px, calc(100vw - 52px)); }
      .slider-shell { width: var(--slider-width); }
      .slider-viewport { padding-inline: 2px; }
      .team-card { height: 410px; padding: 14px; }
      .card-copy h2 { font-size: 20px; }
      .culture-gallery { --culture-visible: 1; --culture-gap: 14px; padding-block: 74px; }
      .culture-header, .culture-viewport, .culture-hint { width: calc(100% - 36px); }
      .culture-header { margin-bottom: 34px; }
      .culture-image { height: 300px; }
      .culture-content { min-height: 172px; }
      .culture-hint { text-align: left; }
    }

    /* Reference-inspired editorial culture layout */
    .culture-gallery.reference-layout {
      --culture-gold: #e90a9b;
      padding: 92px 0 76px;
      background:
        radial-gradient(circle at 88% 8%, rgba(119, 70, 255, 0.11), transparent 27%),
        radial-gradient(circle at 12% 72%, rgba(240, 68, 168, 0.08), transparent 30%),
        var(--section-bg);
    }

    .reference-layout .culture-header {
      grid-template-columns: minmax(500px, 1.3fr) minmax(280px, 0.7fr);
      align-items: center;
      margin-bottom: 42px;
    }

    .reference-layout .culture-label {
      color: var(--culture-gold);
      font-weight: 600;
      letter-spacing: 0.32em;
    }

    .reference-layout .culture-label::before { display: none; }
    .reference-layout .culture-label::after {
      content: "";
      width: 70px;
      height: 1px;
      background: rgba(240, 68, 168, 0.65);
    }

    .reference-layout .culture-header h2,
    .reference-layout .culture-content h3,
    .culture-stat strong {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
    }

    .reference-layout .culture-header h2 {
      font-size: clamp(48px, 5.2vw, 82px);
      letter-spacing: -0.045em;
    }

    .reference-layout .culture-header h2 span,
    .reference-layout .culture-content h3 span { color: var(--culture-gold); }

    .reference-layout .culture-intro {
      max-width: 660px;
      margin-top: 18px;
      padding: 0;
      color: #bcc3cc;
      font-size: 18px;
      line-height: 1.55;
    }

    .culture-purpose {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: 300px;
      color: #d7dce2;
      font-size: 14px;
      line-height: 1.5;
    }

    .culture-purpose-icon,
    .culture-stat-icon {
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      border: 1px solid rgba(240, 68, 168, 0.7);
      border-radius: 50%;
      color: var(--culture-gold);
    }

    .culture-purpose-icon { width: 64px; height: 64px; }

    .reference-layout .culture-viewport {
      padding: 0;
      overflow: visible;
    }

    .reference-layout .culture-track {
      display: grid;
      width: 100%;
      height: 438px;
      grid-template-columns: 1.38fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 14px;
      transform: none !important;
    }

    .reference-layout .culture-track.is-changing {
      animation: cultureRefresh 0.58s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reference-layout .culture-card {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 13px;
      background: #120d18;
      isolation: isolate;
    }

    .reference-layout .culture-card:nth-child(n + 4) { display: none; }
    .reference-layout .culture-card:first-child { grid-row: 1 / 3; }
    .reference-layout .culture-card:hover,
    .reference-layout .culture-card:focus-visible {
      transform: translateY(-3px);
      border-color: rgba(240, 68, 168, 0.72);
    }

    .reference-layout .culture-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .reference-layout .culture-image::after {
      background: linear-gradient(90deg, rgba(8, 4, 13, 0.76) 0%, rgba(8, 4, 13, 0.58) 28%, rgba(8, 4, 13, 0.12) 48%, transparent 64%);
    }

    .reference-layout .culture-image img { filter: saturate(0.78) brightness(0.9); }
    .reference-layout .culture-number {
      top: 32px;
      left: 34px;
      display: flex;
      width: auto;
      height: auto;
      gap: 16px;
      border: 0;
      border-radius: 0;
      background: none;
      color: var(--culture-gold);
      font-size: 13px;
      backdrop-filter: none;
    }

    .reference-layout .culture-number::after {
      content: "";
      width: 42px;
      height: 1px;
      margin-top: 7px;
      background: rgba(255, 255, 255, 0.5);
    }

    .reference-layout .culture-content {
      display: flex;
      width: 43%;
      height: 100%;
      min-height: 0;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 72px 34px 30px;
    }

    .reference-layout .culture-content h3 {
      margin-bottom: 30px;
      color: #f7f4ef;
      font-size: clamp(27px, 2.45vw, 39px);
      line-height: 1.12;
    }

    .reference-layout .culture-content p {
      margin-bottom: 22px;
      color: #c2c8ce;
      font-size: 14px;
      line-height: 1.55;
    }

    .reference-layout .culture-tag {
      order: 3;
      margin: auto 0 0;
      padding: 9px 15px;
      border: 1px solid rgba(240, 68, 168, 0.5);
      border-radius: 7px;
      color: var(--culture-gold);
      font-size: 10px;
      letter-spacing: 0.04em;
      text-transform: none;
    }

    .reference-layout .culture-card:not(:first-child) .culture-number { top: 22px; left: 26px; }
    .reference-layout .culture-card:not(:first-child) .culture-content {
      width: 49%;
      padding: 52px 26px 18px;
    }

    .reference-layout .culture-card:not(:first-child) .culture-content h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .reference-layout .culture-card:not(:first-child) .culture-content p {
      margin-bottom: 8px;
      font-size: 11px;
      line-height: 1.45;
    }

    .reference-layout .culture-card:not(:first-child) .culture-tag {
      padding: 6px 10px;
      font-size: 9px;
    }

    .culture-stats {
      display: grid;
      width: min(var(--site-max, 1440px), calc(100% - 48px));
      grid-template-columns: repeat(4, 1fr);
      margin: 24px auto 0;
      padding: 18px 22px;
      border: 1px solid rgba(240, 68, 168, 0.24);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.022);
    }

    .culture-stat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      min-height: 60px;
      border-right: 1px solid rgba(255, 255, 255, 0.28);
    }

    .culture-stat:last-child { border-right: 0; }
    .culture-stat-icon { width: 56px; height: 56px; }
    .culture-purpose-icon,.culture-stat-icon{background:linear-gradient(145deg,rgba(240,68,168,.22),rgba(129,97,255,.13));box-shadow:inset 0 0 18px rgba(240,68,168,.12),0 0 20px rgba(240,68,168,.12)}
    .culture-purpose-icon svg,.culture-stat-icon svg{display:block;width:27px;height:27px;fill:none;stroke:#fff;stroke-width:1.85;stroke-linecap:round;stroke-linejoin:round;filter:drop-shadow(0 0 6px rgba(240,68,168,.75))}
    .culture-purpose-icon svg{width:30px;height:30px}
    .culture-stat strong { display: block; font-size: 32px; line-height: 1; }
    .culture-stat span:last-child { display: block; margin-top: 7px; color: #9099a5; font-size: 12px; }
    .reference-layout .culture-hint { display: none; }

    @keyframes cultureRefresh {
      0% { opacity: 0.55; transform: translateX(24px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 991px) {
      .reference-layout .culture-header { grid-template-columns: 1fr; }
      .culture-purpose { justify-self: start; }
      .reference-layout .culture-track { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 480px 280px; }
      .reference-layout .culture-card:first-child { grid-column: 1 / 3; grid-row: auto; }
      .culture-stats { grid-template-columns: 1fr 1fr; }
      .culture-stat:nth-child(2) { border-right: 0; }
      .culture-stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    }

    @media (max-width: 620px) {
      .culture-gallery.reference-layout { padding-block: 72px 54px; }
      .reference-layout .culture-header, .reference-layout .culture-viewport, .culture-stats { width: calc(100% - 32px); }
      .reference-layout .culture-header { margin-bottom: 30px; }
      .reference-layout .culture-header h2 { font-size: 48px; }
      .reference-layout .culture-track { display: block; height: auto; }
      .reference-layout .culture-card { display: none; height: 510px; }
      .reference-layout .culture-card:first-child { display: block; }
      .reference-layout .culture-content { width: 72%; padding-inline: 26px; }
      .reference-layout .culture-image::after { background: linear-gradient(90deg, rgba(8,4,13,.96), rgba(8,4,13,.28)); }
      .culture-purpose { display: none; }
      .culture-stats { grid-template-columns: 1fr; padding-block: 8px; }
      .culture-stat { justify-content: flex-start; padding: 13px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
      .culture-stat:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.17); }
      .culture-stat:last-child { border-bottom: 0; }
    }

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