/* BeFirst Premium Club. Mobile-first, CSS only, no JS. */

:root {
  --bf-bg: #050608;
  --bf-graphite: #1A1A1D;
  --bf-graphite-2: #232327;
  --bf-line: rgba(197, 197, 204, 0.14);
  --bf-silver: #C5C5CC;
  --bf-silver-dim: rgba(197, 197, 204, 0.68);
  --bf-white: #FFFFFF;
  --bf-crimson: #8B1A1A;
  --bf-crimson-hover: #C92929;
  --bf-font-head: "Unbounded", "Arial Black", sans-serif;
  --bf-font-text: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --bf-gutter: 20px;
  --bf-container: 1200px;
  --bf-header-h: 64px;
  --bf-ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bf-bg);
  color: var(--bf-silver);
  font-family: var(--bf-font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--bf-crimson); color: var(--bf-white); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--bf-font-head);
  color: var(--bf-white);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 { font-weight: 900; font-size: clamp(38px, 10.5vw, 46px); line-height: 0.98; }
h2 { font-weight: 800; font-size: clamp(28px, 7.5vw, 34px); }
h3 { font-weight: 700; font-size: 20px; line-height: 1.15; }

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

/* Custom cursor on precise pointers */

@media (pointer: fine) {
  html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='%23C92929'/%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23C5C5CC' stroke-opacity='.5'/%3E%3C/svg%3E") 12 12, auto;
  }
  a, button, .bf-card, .bf-shot {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='%23C92929' fill-opacity='.9'/%3E%3Cpath d='M12 16h8m-3-3 3 3-3 3' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 16 16, pointer;
  }
}

/* Motion primitives */

@keyframes bf-rise {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes bf-fade { from { opacity: 0; } to { opacity: 1; } }

.bf-intro > * { animation: bf-rise .9s var(--bf-ease) both; }
.bf-intro > *:nth-child(2) { animation-delay: .1s; }
.bf-intro > *:nth-child(3) { animation-delay: .2s; }
.bf-intro > *:nth-child(4) { animation-delay: .3s; }
.bf-intro > *:nth-child(5) { animation-delay: .4s; }

@supports (animation-timeline: view()) {
  .bf-reveal {
    animation: bf-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
  .bf-gallery .bf-reveal:nth-child(even) { animation-range: entry 8% entry 48%; }
  .bf-partners .bf-reveal:nth-child(2) { animation-range: entry 8% entry 48%; }
  .bf-partners .bf-reveal:nth-child(3) { animation-range: entry 16% entry 56%; }
  .bf-partners .bf-reveal:nth-child(4) { animation-range: entry 24% entry 64%; }
}

/* Scroll progress */

.bf-progress {
  position: fixed; top: 0; left: 0; z-index: 60;
  width: 100%; height: 2px;
  background: var(--bf-crimson-hover);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .bf-progress { animation: bf-progress linear both; animation-timeline: scroll(root); }
  @keyframes bf-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* Ambient background */

.bf-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: var(--bf-bg); }

.bf-bg__grid {
  position: absolute; inset: -20% 0;
  background-image:
    linear-gradient(rgba(197, 197, 204, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 197, 204, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 100%);
}

.bf-bg__glow { position: absolute; width: 70vmax; height: 70vmax; border-radius: 999px; filter: blur(80px); opacity: .55; will-change: transform; }
.bf-bg__glow--a { top: -30vmax; right: -20vmax; background: radial-gradient(closest-side, rgba(139, 26, 26, .34), transparent 70%); animation: bf-drift-a 26s ease-in-out infinite alternate; }
.bf-bg__glow--b { bottom: -35vmax; left: -25vmax; background: radial-gradient(closest-side, rgba(197, 197, 204, .12), transparent 70%); animation: bf-drift-b 34s ease-in-out infinite alternate; }

.bf-bg__grain {
  position: absolute; inset: 0; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

@keyframes bf-drift-a { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-18vw, 22vh, 0) scale(1.15); } }
@keyframes bf-drift-b { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(20vw, -18vh, 0) scale(1.1); } }

@supports (animation-timeline: scroll()) {
  .bf-bg__grid { animation: bf-grid-scroll linear both; animation-timeline: scroll(root); }
  @keyframes bf-grid-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-12%,0); } }
}

/* Layout */

.bf-container { width: 100%; max-width: var(--bf-container); margin: 0 auto; padding: 0 var(--bf-gutter); }
.bf-section { padding: 72px 0; }
.bf-section__head { position: relative; margin-bottom: 32px; }

.bf-section__head[data-n]::before {
  content: attr(data-n);
  position: absolute; right: -4px; top: -36px; z-index: -1;
  font-family: var(--bf-font-head); font-weight: 900;
  font-size: clamp(88px, 26vw, 150px); line-height: 1; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(197, 197, 204, 0.16);
  pointer-events: none; user-select: none;
}

.bf-eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--bf-font-head); font-weight: 700; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bf-silver-dim);
}
.bf-eyebrow::before { content: ""; display: inline-block; width: 18px; height: 2px; margin-right: 10px; vertical-align: middle; background: var(--bf-crimson); }

/* Buttons */

.bf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--bf-font-text); font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.bf-btn svg { width: 18px; height: 18px; flex: none; transition: transform .3s ease; }
.bf-btn:hover svg { transform: translateX(2px); }
.bf-btn--primary { background: var(--bf-crimson); color: var(--bf-white); box-shadow: 0 0 0 0 rgba(201, 41, 41, 0); }
.bf-btn--primary:hover, .bf-btn--primary:focus-visible { background: var(--bf-crimson-hover); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(201, 41, 41, .35); }
.bf-btn--ghost { background: transparent; color: var(--bf-white); border-color: rgba(197, 197, 204, .35); }
.bf-btn--ghost:hover, .bf-btn--ghost:focus-visible { border-color: var(--bf-white); }
.bf-btn--lg { min-height: 56px; padding: 16px 30px; font-size: 16px; }
.bf-btn:focus-visible { outline: 2px solid var(--bf-crimson-hover); outline-offset: 3px; }

/* Header */

.bf-header {
  position: sticky; top: 0; z-index: 50; height: var(--bf-header-h);
  background: rgba(5, 6, 8, .78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bf-line);
}
.bf-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 100%; }

.bf-logo { display: block; width: 149px; color: var(--bf-white); }
.bf-logo img { display: block; width: 100%; height: auto; }
.bf-logo__sub { display: block; width: 100%; height: auto; margin-top: 4px; overflow: visible; }
.bf-logo__sub text {
  font-family: var(--bf-font-head); font-weight: 700; font-size: 58px;
  fill: var(--bf-silver-dim); text-transform: uppercase;
}

.bf-header__right { display: flex; align-items: center; gap: 12px; }

.bf-lang {
  display: inline-flex; align-items: center; padding: 3px;
  border: 1px solid var(--bf-line); border-radius: 999px;
  font-family: var(--bf-font-head); font-weight: 700; font-size: 11px; letter-spacing: .08em;
}
.bf-lang__item { padding: 6px 10px; border-radius: 999px; color: var(--bf-silver-dim); transition: color .2s, background-color .2s; }
.bf-lang__item:hover { color: var(--bf-white); }
.bf-lang__item[aria-current="page"] { background: var(--bf-graphite-2); color: var(--bf-white); }

.bf-header .bf-btn { min-height: 40px; padding: 10px 16px; font-size: 14px; }
.bf-header .bf-btn__label { display: none; }

/* Hero */

.bf-hero {
  position: relative;
  min-height: calc(100svh - var(--bf-header-h));
  display: flex; align-items: center;
  padding: 56px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.bf-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.bf-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: grayscale(1) contrast(1.1) brightness(.55);
  transform: scale(1.06);
  animation: bf-kenburns 34s ease-in-out infinite alternate;
}
.bf-hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--bf-crimson);
  mix-blend-mode: multiply; opacity: .55;
}
.bf-hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, .35) 0%, rgba(5, 6, 8, .55) 50%, var(--bf-bg) 100%),
    radial-gradient(70% 60% at 30% 40%, rgba(5, 6, 8, .2), rgba(5, 6, 8, .8));
}
@keyframes bf-kenburns { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.16) translate3d(-2%, -2%, 0); } }

.bf-hero__inner { position: relative; width: 100%; }
.bf-hero__title { max-width: 12ch; text-shadow: 0 10px 60px rgba(0, 0, 0, .6); }
.bf-hero__title em { font-style: normal; color: var(--bf-crimson-hover); }
.bf-hero__title::after { content: ""; display: block; width: 56px; height: 3px; margin-top: 22px; background: var(--bf-crimson-hover); }
.bf-hero__lead { margin-top: 22px; max-width: 520px; font-size: 17px; color: var(--bf-silver); }
.bf-hero__lead strong { color: var(--bf-white); font-weight: 600; }
.bf-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.bf-hero__note { margin-top: 18px; font-size: 13px; color: var(--bf-silver-dim); }

.bf-hero__media {
  position: relative; width: 100%; max-width: 380px; margin: 44px auto 0;
  aspect-ratio: 9 / 16; border-radius: 28px; overflow: hidden;
  background: var(--bf-graphite);
  border: 1px solid rgba(197, 197, 204, .22);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65), 0 0 0 6px rgba(26, 26, 29, .9), 0 0 90px rgba(139, 26, 26, .3);
  animation: bf-rise 1s .25s var(--bf-ease) both;
  transition: transform .9s var(--bf-ease), box-shadow .9s ease;
}
.bf-hero__media:hover { box-shadow: 0 50px 140px rgba(0, 0, 0, .75), 0 0 0 6px rgba(26, 26, 29, .9), 0 0 130px rgba(201, 41, 41, .4); }
.bf-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; display: block; background: var(--bf-graphite); }

.bf-hero__side { display: none; }

.bf-hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--bf-font-head); font-weight: 700; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bf-silver-dim); animation: bf-fade 1s 1s both;
}
.bf-hero__scroll::after { content: ""; width: 1px; height: 36px; background: linear-gradient(180deg, var(--bf-crimson-hover), transparent); animation: bf-scrollhint 1.8s ease-in-out infinite; }
@keyframes bf-scrollhint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.bf-hero__sound {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 11px; border-radius: 999px; border: 1px solid rgba(197, 197, 204, .3);
  background: rgba(5, 6, 8, .65); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--bf-white); font-family: var(--bf-font-head); font-weight: 700; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease;
}
.bf-hero__sound svg { width: 16px; height: 16px; }
.bf-hero__sound-on { display: none; }
.bf-hero__sound.is-on .bf-hero__sound-on { display: block; }
.bf-hero__sound.is-on .bf-hero__sound-off { display: none; }
.bf-hero__sound.is-on { background: var(--bf-crimson); border-color: var(--bf-crimson-hover); }
.bf-hero__sound:hover { border-color: var(--bf-white); }
.bf-hero__sound:focus-visible { outline: 2px solid var(--bf-crimson-hover); outline-offset: 2px; }

/* Ticker */

.bf-ticker {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--bf-line); border-bottom: 1px solid var(--bf-line);
  background: rgba(26, 26, 29, .35);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bf-ticker__track { display: flex; width: max-content; animation: bf-ticker 38s linear infinite; }
.bf-ticker__track--rev { animation: bf-ticker-rev 70s linear infinite; border-top: 1px solid var(--bf-line); }
.bf-ticker:hover .bf-ticker__track { animation-play-state: paused; }
.bf-ticker__list { display: flex; align-items: center; margin: 0; padding: 14px 0; list-style: none; }
.bf-ticker__list li {
  display: flex; align-items: center; gap: 28px; padding-right: 28px;
  font-family: var(--bf-font-head); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; color: var(--bf-silver);
}
.bf-ticker__list li::after { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--bf-crimson-hover); }
.bf-ticker__list--big { padding: 10px 0 14px; }
.bf-ticker__list--big li { font-size: 40px; font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(197, 197, 204, .35); gap: 36px; padding-right: 36px; }
.bf-ticker__list--big li::after { width: 10px; height: 10px; background: var(--bf-crimson); }
@keyframes bf-ticker { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes bf-ticker-rev { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }

/* Manifesto */

.bf-manifesto { padding: 96px 0; text-align: center; }
.bf-manifesto__text {
  margin: 0 auto; max-width: 18ch;
  font-family: var(--bf-font-head); font-weight: 900; font-size: clamp(30px, 9vw, 44px); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--bf-white);
}
.bf-manifesto__text em { font-style: normal; color: var(--bf-crimson-hover); }
.bf-manifesto__sub { margin: 24px auto 0; max-width: 520px; font-size: 16px; color: var(--bf-silver-dim); }

@supports (animation-timeline: view()) and (-webkit-background-clip: text) {
  .bf-manifesto__text {
    background: linear-gradient(90deg, #FFFFFF 0 50%, rgba(197, 197, 204, .22) 50% 100%);
    background-size: 210% 100%; background-position: 100% 0;
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    animation: bf-fill linear both; animation-timeline: view(); animation-range: entry 25% cover 60%;
  }
  .bf-manifesto__text em { -webkit-text-fill-color: var(--bf-crimson-hover); }
  @keyframes bf-fill { from { background-position: 100% 0; } to { background-position: 0% 0; } }
}

/* Privileges: sticky stack */

.bf-stack { display: grid; gap: 20px; }

.bf-card {
  position: sticky; top: calc(var(--bf-header-h) + 12px);
  display: grid; grid-template-rows: auto 1fr;
  border-radius: 24px; overflow: hidden;
  background: var(--bf-graphite); border: 1px solid var(--bf-line);
  box-shadow: 0 -20px 60px rgba(5, 6, 8, .7);
  transition: border-color .3s ease;
}
.bf-card:nth-child(2) { top: calc(var(--bf-header-h) + 20px); }
.bf-card:nth-child(3) { top: calc(var(--bf-header-h) + 28px); }
.bf-card:nth-child(4) { top: calc(var(--bf-header-h) + 36px); }
.bf-card:nth-child(5) { top: calc(var(--bf-header-h) + 44px); }
.bf-card:hover { border-color: rgba(197, 197, 204, .32); }

.bf-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bf-graphite-2); }
.bf-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: grayscale(1) contrast(1.05); transform: scale(1.001);
  transition: filter .6s ease, transform 1.1s var(--bf-ease);
}
.bf-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 26, 29, 0) 55%, rgba(26, 26, 29, 1) 100%); }
.bf-card:hover .bf-card__media img { filter: grayscale(0) contrast(1); transform: scale(1.04); }

.bf-card__body { position: relative; display: flex; flex-direction: column; padding: 4px 24px 28px; }
.bf-card__index { font-family: var(--bf-font-head); font-weight: 800; font-size: 12px; letter-spacing: .14em; color: var(--bf-crimson-hover); }
.bf-card__ghost {
  position: absolute; right: 16px; top: -10px;
  font-family: var(--bf-font-head); font-weight: 900; font-size: 120px; line-height: 1; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(197, 197, 204, .14); pointer-events: none; user-select: none;
}
.bf-card__icon { width: 28px; height: 28px; margin-top: 18px; color: var(--bf-white); }
.bf-card__title { margin-top: 14px; }
.bf-card__text { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--bf-silver); max-width: 46ch; }

.bf-card::before {
  content: ""; position: absolute; left: 0; bottom: 0; z-index: 2; width: 0; height: 3px;
  background: var(--bf-crimson-hover); transition: width .7s var(--bf-ease);
}
.bf-card:hover::before { width: 100%; }

/* Gallery */

.bf-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: 10px; perspective: 1200px; }
.bf-shot {
  position: relative; margin: 0; border-radius: 14px; overflow: hidden;
  background: var(--bf-graphite); border: 1px solid var(--bf-line);
  transform-style: preserve-3d;
  transition: transform .8s var(--bf-ease), border-color .3s ease;
}
.bf-shot--wide { grid-column: span 2; }
.bf-shot--tall { grid-row: span 2; }
.bf-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: grayscale(1) contrast(1.05); transform: scale(1.001);
  transition: filter .5s ease, transform 1s var(--bf-ease);
}
.bf-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,8,0) 55%, rgba(5,6,8,.55) 100%); transition: opacity .5s ease; }
.bf-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 14px 16px;
  font-family: var(--bf-font-head); font-weight: 700; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--bf-white);
  transform: translateY(110%); transition: transform .6s var(--bf-ease);
}
.bf-shot figcaption::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 999px; background: var(--bf-crimson-hover); vertical-align: middle; }
.bf-shot:hover { transform: rotateX(2deg) rotateY(-2deg) translateY(-3px); border-color: rgba(197, 197, 204, .35); }
.bf-shot:hover img { filter: grayscale(0) contrast(1); transform: scale(1.06); }
.bf-shot:hover figcaption { transform: translateY(0); }
.bf-gallery__note { display: none; margin-top: 18px; font-size: 13px; color: var(--bf-silver-dim); }
@media (hover: hover) and (pointer: fine) { .bf-gallery__note { display: block; } }

/* Announcements */

.bf-announce { padding: 40px 24px; border-radius: 24px; background: var(--bf-graphite); border: 1px solid var(--bf-line); }
.bf-announce__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(5, 6, 8, .6); border: 1px solid var(--bf-line);
  font-family: var(--bf-font-head); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bf-white);
}
.bf-announce__badge svg { width: 14px; height: 14px; color: var(--bf-crimson-hover); }
.bf-announce h2 { margin-top: 20px; max-width: 18ch; }
.bf-announce p { margin-top: 16px; max-width: 540px; font-size: 16px; }
.bf-announce .bf-tg { margin-top: 28px; }

.bf-tg { position: relative; display: grid; gap: 12px; padding: 22px; border-radius: 20px; background: rgba(5, 6, 8, .7); border: 1px solid var(--bf-line); overflow: hidden; }
.bf-tg__msg { max-width: 88%; padding: 12px 16px; border-radius: 16px 16px 16px 4px; background: var(--bf-graphite-2); font-size: 14px; line-height: 1.45; color: var(--bf-silver); filter: blur(4px); opacity: .75; user-select: none; }
.bf-tg__msg strong { display: block; margin-bottom: 2px; font-weight: 700; color: var(--bf-white); }
.bf-tg__msg:nth-child(2) { max-width: 70%; }
.bf-tg__msg:nth-child(3) { max-width: 80%; }
.bf-tg__typing { display: flex; gap: 5px; padding: 10px 14px; width: max-content; border-radius: 16px 16px 16px 4px; background: var(--bf-graphite-2); }
.bf-tg__typing i { width: 6px; height: 6px; border-radius: 999px; background: var(--bf-silver-dim); animation: bf-typing 1.2s ease-in-out infinite; }
.bf-tg__typing i:nth-child(2) { animation-delay: .15s; }
.bf-tg__typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bf-typing { 0%, 80%, 100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-4px); opacity: 1; } }
.bf-tg__lock { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(60% 60% at 50% 50%, rgba(5, 6, 8, .55), rgba(5, 6, 8, .15)); }
.bf-tg__lock span {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
  background: var(--bf-bg); border: 1px solid rgba(197, 197, 204, .3);
  font-family: var(--bf-font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bf-white);
}
.bf-tg__lock svg { width: 16px; height: 16px; color: var(--bf-crimson-hover); }

/* Partners */

.bf-partners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bf-partner {
  display: grid; place-items: center; aspect-ratio: 3 / 2; padding: 20px; border-radius: 16px;
  background: var(--bf-graphite); border: 1px solid var(--bf-line);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.bf-partner:hover { border-color: rgba(197, 197, 204, .35); box-shadow: 0 20px 60px rgba(0, 0, 0, .45); transform: translateY(-3px); }
.bf-partner img { max-height: 72px; width: auto; mix-blend-mode: screen; filter: grayscale(1) brightness(1.15); opacity: .85; transition: filter .3s ease, opacity .3s ease; }
.bf-partner:hover img { filter: none; opacity: 1; }

/* Final */

.bf-final { position: relative; padding: 80px 0; border-top: 1px solid var(--bf-line); text-align: center; overflow: hidden; }
.bf-final h2 { margin: 0 auto; max-width: 16ch; font-size: clamp(36px, 10vw, 52px); line-height: .98; letter-spacing: -0.02em; }
.bf-final p { margin: 18px auto 0; max-width: 480px; }
.bf-final .bf-btn { margin-top: 30px; }

.bf-steps { display: grid; gap: 12px; margin: 40px 0 0; padding: 0; list-style: none; text-align: left; counter-reset: bf-step; }
.bf-steps li { position: relative; padding: 20px 20px 20px 64px; border-radius: 16px; background: var(--bf-graphite); border: 1px solid var(--bf-line); font-size: 15px; color: var(--bf-silver); }
.bf-steps li strong { display: block; margin-bottom: 2px; font-family: var(--bf-font-head); font-weight: 700; font-size: 14px; color: var(--bf-white); }
.bf-steps li::before { content: counter(bf-step, decimal-leading-zero); counter-increment: bf-step; position: absolute; left: 20px; top: 22px; font-family: var(--bf-font-head); font-weight: 800; font-size: 13px; letter-spacing: .08em; color: var(--bf-crimson-hover); }

/* Contacts */

.bf-contacts { padding: 48px 0; border-top: 1px solid var(--bf-line); }
.bf-contacts__grid { display: grid; gap: 24px; }
.bf-contact__label { display: block; font-family: var(--bf-font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bf-silver-dim); }
.bf-contact__value { display: inline-block; margin-top: 8px; font-family: var(--bf-font-head); font-weight: 700; font-size: 16px; color: var(--bf-white); transition: color .2s ease; }
.bf-contact__value:hover { color: var(--bf-crimson-hover); }

/* Footer */

.bf-footer { padding: 28px 0 0; border-top: 1px solid var(--bf-line); font-size: 13px; color: var(--bf-silver-dim); overflow: hidden; }
.bf-footer__inner { display: flex; flex-direction: column; gap: 12px; }
.bf-footer .bf-logo { width: 124px; }
.bf-footer a:hover { color: var(--bf-white); }
.bf-footer__mark {
  margin-top: 28px;
  font-family: var(--bf-font-head); font-weight: 900; font-size: clamp(44px, 13.5vw, 210px); line-height: .9; letter-spacing: -0.03em; white-space: nowrap; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(197, 197, 204, .14); user-select: none;
  transform: translateY(18%);
}

/* Cookie notice */

.bf-cookie {
  position: fixed; left: var(--bf-gutter); right: var(--bf-gutter); bottom: 16px; z-index: 70;
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px 20px; border-radius: 18px;
  background: rgba(26, 26, 29, .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 197, 204, .22); box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: bf-rise .7s .6s var(--bf-ease) both;
}
.bf-cookie[hidden] { display: none; }
.bf-cookie p { font-size: 14px; line-height: 1.5; color: var(--bf-silver); }
.bf-cookie .bf-btn { min-height: 42px; padding: 10px 18px; font-size: 14px; align-self: flex-start; }

/* Tablet */

@media (min-width: 768px) {
  :root { --bf-gutter: 32px; --bf-header-h: 72px; }

  h1 { font-size: clamp(52px, 7.2vw, 64px); }
  h2 { font-size: clamp(32px, 4.4vw, 40px); }
  h3 { font-size: 24px; }

  .bf-section { padding: 96px 0; }
  .bf-header .bf-btn__label { display: inline; }
  .bf-header__right { gap: 16px; }
  .bf-logo { width: 186px; }

  .bf-hero { padding: 72px 0 96px; }
  .bf-hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
  .bf-hero__media { margin: 0 0 0 auto; max-width: 360px; }

  .bf-ticker__list--big li { font-size: 56px; }

  .bf-manifesto { padding: 128px 0; }
  .bf-manifesto__text { font-size: clamp(44px, 6.4vw, 64px); }

  .bf-stack { gap: 24px; }
  .bf-card { grid-template-columns: 1.1fr 1fr; grid-template-rows: none; min-height: 480px; }
  .bf-card__media { aspect-ratio: auto; height: 100%; }
  .bf-card__media::after { background: linear-gradient(90deg, rgba(26, 26, 29, 0) 70%, rgba(26, 26, 29, 1) 100%); }
  .bf-card__body { padding: 32px; justify-content: flex-end; }
  .bf-card__ghost { top: 16px; right: 24px; font-size: 160px; }
  .bf-card__icon { width: 32px; height: 32px; }

  .bf-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 14px; }
  .bf-shot figcaption { font-size: 11px; }

  .bf-announce { padding: 56px; }
  .bf-partners { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .bf-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .bf-contact__value { font-size: 18px; }
  .bf-footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }

  .bf-cookie { left: auto; right: 24px; bottom: 24px; max-width: 440px; flex-direction: row; align-items: center; gap: 18px; }
  .bf-cookie .bf-btn { align-self: center; flex: none; }
}

/* Desktop */

@media (min-width: 1280px) {
  h1 { font-size: 84px; }

  .bf-section { padding: 120px 0; }

  .bf-hero { padding: 96px 0 120px; }
  .bf-hero__inner { gap: 72px; }
  .bf-hero__media { max-width: 400px; animation: none; transform: rotate(-4deg) translateY(8px); }
  .bf-hero__media:hover { transform: rotate(0deg) translateY(0); }
  .bf-hero__lead { font-size: 19px; }

  .bf-hero__side {
    position: absolute; top: 50%; z-index: 1;
    display: block; transform: translateY(-50%) rotate(-90deg);
    font-family: var(--bf-font-head); font-weight: 700; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--bf-silver-dim);
    white-space: nowrap; animation: bf-fade 1s .8s both;
  }
  .bf-hero__side--l { left: -8px; transform-origin: center; }
  .bf-hero__side--r { right: -8px; transform: translateY(-50%) rotate(90deg); }
  .bf-hero__side::before { content: ""; display: inline-block; width: 40px; height: 1px; margin-right: 14px; vertical-align: middle; background: var(--bf-crimson-hover); }

  .bf-ticker__list--big li { font-size: 72px; }

  .bf-manifesto__text { font-size: 80px; }

  .bf-card { grid-template-columns: 1.2fr 1fr; min-height: 560px; }
  .bf-card__body { padding: 48px; }
  .bf-card__text { font-size: 17px; }
  .bf-card__ghost { font-size: 200px; }

  .bf-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 16px; }

  .bf-announce { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; padding: 72px; }
  .bf-announce .bf-tg { margin-top: 0; padding: 28px; }
  .bf-tg__msg { font-size: 15px; }

  .bf-final { padding: 140px 0 120px; }
  .bf-final h2 { font-size: 76px; max-width: 14ch; }
}

@media (min-width: 1920px) {
  :root { --bf-container: 1360px; }
  h1 { font-size: 100px; }
  .bf-card { min-height: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .bf-hero__media { transform: none; }
}
