/* BraveCamp — generated file. Edit assets/css/src/*.css and run tools/build_css.py. */

/* module: 00-foundation.css */
:root {
  --color-ink: #070a20;
  --color-text: #30344c;
  --color-muted: #656a7d;
  --color-purple: #4b24e8;
  --color-purple-dark: #3210c9;
  --color-line: #dfe2ec;
  --color-soft: #f6f7fb;
  --color-surface: #fbfbfe;
  --color-night: #020936;
  --color-lime: #e5f400;
  --color-white: #fff;
  --font-display: "drummond-variable", "Drummond Variable Light", "Drummond Variable", "Drummond", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --layout-page: 1200px;
  --layout-reading: 1120px;
  --header-height: 92px;
  --radius-sm: 9px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 12px 34px rgb(7 10 32 / 6%);
  --shadow-card: 0 24px 64px rgb(7 10 32 / 12%);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

body:not(.home) {
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-variation-settings: "wght" 700;
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid #795cff;
  outline-offset: 3px;
}

.container {
  width: min(var(--layout-page), calc(100% - 64px));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--color-white);
  background: var(--color-ink);
}

.anchor-target {
  position: absolute;
  width: 0;
  height: 0;
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0;
  color: var(--color-purple);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bc-icon {
  display: block;
  width: 1em;
  height: 1em;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform .2s var(--ease);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.button--dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 22% 0%, rgb(255 255 255 / 18%), transparent 34%),
    linear-gradient(135deg, #5c36f4 0%, var(--color-purple) 44%, var(--color-purple-dark) 100%);
  box-shadow: 0 16px 38px rgb(75 36 232 / 28%);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--color-white);
  background:
    radial-gradient(circle at 22% 0%, rgb(255 255 255 / 22%), transparent 34%),
    linear-gradient(135deg, #6845ff 0%, #4b24e8 42%, #270ba7 100%);
  box-shadow: 0 20px 48px rgb(75 36 232 / 34%);
}

.button--outline {
  border: 1px solid #bfc3d0;
  color: var(--color-ink);
  background: var(--color-white);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: rgb(75 36 232 / 42%);
  color: var(--color-purple);
  background: #faf9ff;
}

.button--lime {
  color: var(--color-ink);
  background: var(--color-lime);
}

.button--lime:hover,
.button--lime:focus-visible {
  background: #f0ff00;
  box-shadow: 0 12px 28px rgb(229 244 0 / 18%);
}

.text-link,
.section-heading > a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  color: var(--color-purple);
  font-size: 13.5px;
  font-weight: 700;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.text-link svg,
.section-heading > a svg {
  width: 15px;
  height: 15px;
  transition: transform .2s var(--ease);
}

.text-link:hover,
.text-link:focus-visible,
.section-heading > a:hover,
.section-heading > a:focus-visible {
  color: var(--color-purple-dark);
  transform: translateX(1px);
}

.text-link:hover svg,
.text-link:focus-visible svg,
.section-heading > a:hover svg,
.section-heading > a:focus-visible svg {
  transform: translateX(3px);
}

.section-heading {
  display: flex;
  min-height: 38px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  color: #696e88;
  font-size: 12px;
}

.breadcrumbs a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs a:hover {
  color: var(--color-purple);
}

.site-main.section {
  min-height: 60vh;
  padding-block: 56px 80px;
}

.site-main.section > article > h1 {
  font-size: clamp(38px, 4vw, 52px);
}

@media (min-width: 1440px) {
  :root {
    --layout-page: 1400px;
    --layout-reading: 1320px;
  }

  .container {
    width: min(var(--layout-page), calc(100% - 96px));
  }
}

@media (min-width: 1800px) {
  :root {
    --layout-page: 1480px;
    --layout-reading: 1380px;
  }
}

@media (max-width: 1099px) {
  .container {
    width: min(100% - 40px, 920px);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .eyebrow,
  .section-label,
  .card-kicker {
    font-size: 12px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (hover: none) {
  .button:hover,
  .button:hover svg {
    transform: none;
  }
}

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

/* module: 10-header.css */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: transparent;
}

.site-header__inner {
  display: grid;
  height: 68px;
  grid-template-columns: 150px minmax(0, 1fr) 164px;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 80%), rgb(247 245 255 / 60%));
  box-shadow:
    0 18px 54px rgb(19 12 61 / 13%),
    inset 0 1px 0 rgb(255 255 255 / 88%);
  backdrop-filter: blur(24px) saturate(160%);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled .site-header__inner {
  border-color: rgb(255 255 255 / 82%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 88%), rgb(246 243 255 / 72%));
  box-shadow:
    0 18px 52px rgb(10 12 38 / 16%),
    inset 0 1px 0 rgb(255 255 255 / 95%);
  transform: translateY(-4px);
}

.site-logo {
  display: flex;
  width: 132px;
  align-items: center;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  justify-self: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--color-purple);
  transition: right .2s ease, left .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-parent > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav a[aria-current="page"] {
  color: var(--color-purple);
}

.header-cta {
  width: 164px;
  justify-self: end;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.primary-nav .primary-nav__mobile-cta {
  display: none;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (min-width: 1440px) {
  .site-header .container {
    width: min(1480px, calc(100% - 80px));
  }

  .primary-nav__list {
    gap: 36px;
  }
}

@media (min-width: 821px) and (max-width: 1099px) {
  .site-header__inner {
    grid-template-columns: 120px minmax(0, 1fr) 132px;
    gap: 14px;
    padding-inline: 12px;
  }

  .site-logo {
    width: 112px;
  }

  .primary-nav__list {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .header-cta {
    width: 132px;
    padding-inline: 12px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
    background: transparent;
  }

  .site-header .container {
    width: min(1200px, calc(100% - 20px));
  }

  .site-header__inner {
    height: 60px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 4px;
    padding: 0 8px 0 12px;
    border: 1px solid rgb(255 255 255 / 78%);
    border-radius: 15px;
    background:
      linear-gradient(135deg, rgb(255 255 255 / 84%), rgb(247 245 255 / 68%));
    box-shadow:
      0 12px 34px rgb(10 12 38 / 11%),
      inset 0 1px 0 rgb(255 255 255 / 92%);
    backdrop-filter: blur(20px) saturate(150%);
  }

  .site-header.is-scrolled .site-header__inner {
    transform: none;
  }

  .site-logo {
    width: 118px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 4px;
    border: 1px solid rgb(75 36 232 / 14%);
    border-radius: 11px;
    color: var(--color-ink);
    background: rgb(255 255 255 / 48%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 88%);
  }

  .nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgb(75 36 232 / 24%);
    color: var(--color-purple);
    background: rgb(255 255 255 / 78%);
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 10px;
    left: 10px;
    display: none;
    width: auto;
    max-height: calc(100dvh - 82px);
    flex-direction: column;
    justify-self: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px;
    border: 1px solid rgb(255 255 255 / 80%);
    border-radius: 22px;
    background:
      linear-gradient(155deg, rgb(255 255 255 / 94%), rgb(242 238 255 / 88%));
    box-shadow:
      0 24px 70px rgb(12 8 43 / 22%),
      inset 0 1px 0 rgb(255 255 255 / 96%);
    backdrop-filter: blur(30px) saturate(155%);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav__list {
    width: min(100%, 520px);
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    margin-inline: auto;
  }

  .primary-nav__list li {
    width: 100%;
  }

  .primary-nav a {
    min-height: 54px;
    justify-content: flex-start;
    padding-inline: 18px;
    border-radius: 13px;
    font-size: 16px;
    transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible,
  .primary-nav .current-menu-item > a,
  .primary-nav a[aria-current="page"] {
    color: var(--color-purple);
    background: rgb(255 255 255 / 72%);
    box-shadow: inset 0 0 0 1px rgb(75 36 232 / 12%);
    transform: translateX(3px);
  }

  .primary-nav .primary-nav__mobile-cta {
    display: flex;
    width: min(100%, 520px);
    min-height: 58px;
    justify-content: space-between;
    margin: auto auto 0;
    padding-inline: 20px;
    border-radius: 14px;
    color: var(--color-white);
    background:
      radial-gradient(circle at 18% 0%, rgb(255 255 255 / 18%), transparent 34%),
      linear-gradient(135deg, #5c36f4 0%, var(--color-purple) 44%, var(--color-purple-dark) 100%);
    box-shadow: 0 16px 34px rgb(75 36 232 / 26%);
  }

  .primary-nav .primary-nav__mobile-cta:hover,
  .primary-nav .primary-nav__mobile-cta:focus-visible {
    color: var(--color-white);
    background:
      radial-gradient(circle at 18% 0%, rgb(255 255 255 / 22%), transparent 34%),
      linear-gradient(135deg, #6845ff 0%, #4b24e8 42%, #270ba7 100%);
    transform: none;
  }

  .primary-nav .primary-nav__mobile-cta svg {
    width: 19px;
    height: 19px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .primary-nav {
    top: 118px;
    max-height: calc(100dvh - 128px);
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar .site-header {
    top: 46px;
    transition: top .2s ease;
  }

  body.admin-bar .primary-nav {
    top: 118px;
    max-height: calc(100dvh - 128px);
  }

  body.admin-bar .site-header.is-scrolled {
    top: 0;
  }

  body.admin-bar .site-header.is-scrolled .primary-nav {
    top: 72px;
    max-height: calc(100dvh - 82px);
  }
}

/* module: 20-home.css */
.hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 83% 10%, rgb(224 214 255 / 92%), transparent 31%),
    radial-gradient(circle at 62% 38%, rgb(98 230 255 / 24%), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fdfcff 100%),
    var(--color-white);
}

.hero::before {
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 720px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgb(75 36 232 / 18%), transparent 64%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  min-height: 630px;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 590px;
  padding-top: 145px;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(52px, 4.6vw, 62px);
  line-height: 1;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--color-purple);
}

.hero__lead {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.hero__actions .button {
  min-width: 154px;
}

.hero__art {
  position: absolute;
  z-index: 1;
  top: 54px;
  right: max(calc((100vw - var(--layout-page)) / 2 - 40px), -40px);
  bottom: 0;
  width: min(620px, 52vw);
  background: url("../images/hero-collage.webp") center bottom / contain no-repeat;
  filter: drop-shadow(0 26px 52px rgb(44 18 138 / 16%));
  pointer-events: none;
}

.countdown {
  margin-top: 34px;
}

.countdown__grid {
  display: flex;
  margin-top: 10px;
}

.countdown__grid > div {
  position: relative;
  display: grid;
  width: 86px;
  justify-items: center;
}

.countdown__grid > div + div::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 1px;
  height: 25px;
  content: "";
  background: #9ea2b4;
}

.countdown__grid strong {
  font-size: 32px;
  line-height: 1;
}

.countdown__grid span {
  margin-top: 7px;
  font-size: 12px;
  text-transform: uppercase;
}

.about-band {
  border-bottom: 1px solid var(--color-line);
}

.about-band__grid {
  display: grid;
  min-height: 220px;
  grid-template-columns: 360px repeat(3, 1fr);
  align-items: center;
}

.about-band__intro h2 {
  margin: 14px 0 0;
  font-size: 38px;
  line-height: 1.08;
}

.benefit {
  display: grid;
  min-height: 88px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-left: 1px solid var(--color-line);
}

.benefit__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background:
    radial-gradient(circle at 28% 18%, rgb(255 255 255 / 22%), transparent 36%),
    linear-gradient(135deg, #6240ff, var(--color-purple-dark));
  box-shadow: 0 12px 26px rgb(75 36 232 / 22%);
}

.benefit__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.benefit p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}

.content-section {
  border-bottom: 1px solid var(--color-line);
}

.news-section,
.editions-section {
  padding: 68px 0 72px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.cards > article {
  display: flex;
  min-width: 0;
}

.content-card {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 14px 42px rgb(8 13 50 / 7%);
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgb(75 36 232 / 35%);
  box-shadow: 0 26px 70px rgb(8 13 50 / 13%);
  transform: translateY(-6px);
}

.content-card__image {
  display: block;
  overflow: hidden;
  background: #18183a;
}

.cards--news .content-card__image {
  aspect-ratio: 2 / 1;
}

.cards--editions .content-card__image {
  aspect-ratio: 2.6 / 1;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.content-card:hover .content-card__image img {
  transform: scale(1.04);
}

.content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.content-card time,
.card-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--color-muted);
  font-size: 12px;
}

.content-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.content-card p {
  display: -webkit-box;
  min-height: 63px;
  overflow: hidden;
  margin: 10px 0 14px;
  color: #52566b;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.content-card__body .text-link {
  margin-top: auto;
}

.partners {
  padding: 42px 0 40px;
  border-bottom: 1px solid var(--color-line);
}

.partners__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 32px;
  margin-top: 30px;
}

.partner-logo {
  min-width: 0;
  color: #141726;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  opacity: .82;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-logo img {
  max-width: 145px;
  max-height: 38px;
  margin-inline: auto;
  object-fit: contain;
}

.projects-section {
  padding: 76px 0 72px;
  border-bottom: 1px solid var(--color-line);
}

.projects-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 62px;
}

.projects-intro h2 {
  margin: 14px 0;
  font-size: 42px;
  line-height: 1.08;
}

.projects-intro__text {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.65;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
}

.project-tile {
  display: grid;
  min-width: 0;
  min-height: 80px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 28px rgb(8 13 50 / 5%);
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease);
}

.project-tile:hover,
.project-tile:focus-visible {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 18px 44px rgb(8 13 50 / 11%);
  transform: translateY(-4px);
}

.project-tile__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--accent);
  box-shadow: 0 10px 24px rgb(8 13 50 / 12%);
}

.project-tile__mark .bc-icon {
  width: 18px;
  height: 18px;
}

.project-tile strong,
.project-tile small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-tile strong {
  font-size: 14px;
}

.project-tile small {
  margin-top: 3px;
  color: #565a6c;
  font-size: 12px;
}

.projects-note {
  margin: 14px 0 0;
  color: #777b8b;
  font-size: 12px;
}

.pro-section {
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 24%, rgb(107 42 242 / 58%), transparent 31%),
    radial-gradient(circle at 12% 18%, rgb(0 218 255 / 12%), transparent 30%),
    repeating-radial-gradient(ellipse at 108% 85%, transparent 0 15px, rgb(103 55 226 / 14%) 16px 17px),
    linear-gradient(100deg, #030a39 0%, #050a3a 62%, #22046f 100%);
}

.pro-layout {
  display: grid;
  min-height: 360px;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.pro-section .eyebrow {
  color: var(--color-lime);
}

.pro-intro h2 {
  margin: 12px 0;
  color: var(--color-white);
  font-size: 42px;
  line-height: 1.06;
}

.pro-intro__text {
  max-width: 340px;
  margin: 0 0 22px;
  color: #d6d9e8;
  font-size: 14px;
  line-height: 1.65;
}

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

.pro-feature {
  display: grid;
  min-height: 112px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 26px 16px 0;
}

.pro-feature:nth-child(2n) {
  padding-left: 28px;
  border-left: 1px solid rgb(255 255 255 / 28%);
}

.pro-feature:nth-child(n+3) {
  border-top: 1px solid rgb(255 255 255 / 28%);
}

.pro-feature__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--color-lime);
  border-radius: 50%;
  color: var(--color-lime);
}

.pro-feature__icon .bc-icon {
  width: 21px;
  height: 21px;
}

.pro-feature h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 17px;
}

.pro-feature p {
  margin: 5px 0 0;
  color: #d4d8e9;
  font-size: 13.5px;
  line-height: 1.55;
}

@media (min-width: 1440px) {
  .hero,
  .hero__inner {
    min-height: 630px;
  }

  .hero__content {
    width: 620px;
    padding-top: 150px;
  }

  .hero__art {
    right: max(calc((100vw - var(--layout-page)) / 2 - 40px), -20px);
    width: min(650px, 48vw);
  }

  .about-band__grid {
    grid-template-columns: 400px repeat(3, 1fr);
  }

  .projects-layout {
    grid-template-columns: 410px minmax(0, 1fr);
    gap: 64px;
  }

  .pro-layout {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 72px;
  }
}

@media (max-width: 1099px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero__content {
    width: 50%;
  }

  .about-band__grid {
    grid-template-columns: 300px repeat(3, 1fr);
  }

  .benefit {
    grid-template-columns: 44px 1fr;
    padding-inline: 14px;
  }

  .benefit__icon {
    width: 42px;
    height: 42px;
  }

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

@media (max-width: 1000px) and (min-width: 821px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-block: 44px;
  }

  .about-band__intro {
    grid-column: 1 / -1;
  }

  .benefit {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
  }

  .hero__inner {
    min-height: 0;
    padding-top: 96px;
    padding-bottom: 455px;
  }

  .hero__content {
    width: 100%;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(46px, 9vw, 62px);
  }

  .hero__lead {
    max-width: 480px;
    font-size: 16px;
  }

  .hero__art {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(560px, 100%);
    height: 440px;
    transform: translateX(-50%);
  }

  .about-band__grid,
  .projects-layout,
  .pro-layout {
    grid-template-columns: 1fr;
  }

  .about-band__grid {
    gap: 26px;
    padding-block: 54px;
  }

  .benefit {
    min-height: 82px;
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .cards {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .partners__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
  }

  .projects-layout {
    gap: 32px;
  }

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

  .pro-layout {
    gap: 28px;
    padding-block: 58px;
  }
}

@media (max-width: 520px) {
  .hero__inner {
    padding-bottom: 430px;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(40px, 11.5vw, 47px);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__art {
    width: 100%;
    height: 410px;
    transform: translateX(-50%);
  }

  .countdown__grid > div {
    width: 25%;
  }

  .countdown__grid strong {
    font-size: 27px;
  }

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

  .project-grid {
    grid-template-columns: 1fr;
  }

  .pro-features {
    grid-template-columns: 1fr;
  }

  .pro-feature,
  .pro-feature:nth-child(2n),
  .pro-feature:nth-child(n+3) {
    padding: 18px 0;
    border-top: 1px solid rgb(255 255 255 / 25%);
    border-left: 0;
  }
}

@media (hover: none) {
  .content-card:hover,
  .content-card:hover .content-card__image img,
  .project-tile:hover {
    transform: none;
  }
}

/* module: 30-archive.css */
.posts-index {
  min-height: 65vh;
  padding-block: 76px 108px;
}

.posts-index__header {
  max-width: 680px;
  margin-bottom: 50px;
}

.posts-index__header h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.04;
}

.posts-index__header > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.posts-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}

.posts-index__card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 10px 34px rgb(7 10 32 / 5%);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.posts-index__card:hover,
.posts-index__card:focus-within {
  border-color: rgb(75 36 232 / 32%);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.posts-index__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-soft);
}

.posts-index__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.posts-index__card:hover .posts-index__image img {
  transform: scale(1.025);
}

.posts-index__body {
  display: flex;
  min-height: 300px;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.posts-index__body time {
  color: var(--color-muted);
  font-size: 12px;
}

.posts-index__body h2 {
  margin: 12px 0;
  font-size: clamp(22px, 1.7vw, 27px);
  line-height: 1.18;
}

.posts-index__body h2 a {
  display: block;
}

.posts-index__body h2 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.posts-index__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #4f5366;
  font-size: 15px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.posts-index__more {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 700;
}

.posts-index__more svg {
  width: 16px;
  height: 16px;
}

.posts-index .navigation.pagination {
  margin-top: 52px;
}

.posts-index .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.posts-index .page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-white);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}

.posts-index .page-numbers:hover,
.posts-index .page-numbers:focus-visible {
  border-color: rgb(75 36 232 / 30%);
  color: var(--color-purple);
  background: #faf9ff;
}

.posts-index .page-numbers.current {
  color: var(--color-white);
  background: var(--color-purple);
}

@media (min-width: 1440px) {
  .posts-index {
    width: min(1480px, calc(100% - 96px));
    padding-top: 76px;
  }

  .posts-index__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .posts-index__body {
    min-height: 310px;
    padding: 20px 20px 22px;
  }

  .posts-index__body h2 {
    font-size: clamp(20px, 1.3vw, 24px);
  }

  .posts-index__excerpt {
    font-size: 14px;
  }
}

@media (max-width: 1099px) {
  .posts-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .posts-index {
    padding-block: 52px 76px;
  }

  .posts-index__header {
    margin-bottom: 30px;
  }

  .posts-index__header h1 {
    font-size: 40px;
  }

  .posts-index__grid {
    grid-template-columns: 1fr;
  }

  .posts-index__body {
    min-height: 0;
  }
}

@media (hover: none) {
  .posts-index__card:hover,
  .posts-index__card:hover .posts-index__image img {
    transform: none;
  }
}

/* module: 40-article.css */
.article-page .container,
body.single-post .action-band .container,
body.single-post .site-footer .container {
  width: min(var(--layout-reading), calc(100% - 64px));
}

.article-hero {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  padding-block: 42px 34px;
}

.article-hero--no-image {
  display: block;
}

.article-hero--no-image .article-hero__copy {
  max-width: 760px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 12px;
}

.article-meta span {
  color: var(--color-purple);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(38px, 3.2vw, 43px);
  line-height: 1.1;
}

.article-hero__copy > p {
  display: -webkit-box;
  max-width: 440px;
  overflow: hidden;
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.article-hero__image {
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgb(7 10 32 / 9%);
  background: var(--color-soft);
}

.article-hero__image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) 260px;
  gap: 72px;
  padding-top: 76px;
}

.article-content {
  min-width: 0;
  color: #282d45;
  font-size: 17px;
  line-height: 1.75;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content h2 {
  margin: 48px 0 16px;
  font-size: 30px;
  line-height: 1.2;
}

.article-content h3 {
  margin: 36px 0 13px;
  font-size: 23px;
  line-height: 1.25;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: 120px;
}

.article-content a:not(.button) {
  color: var(--color-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content img {
  height: auto;
  border-radius: var(--radius-md);
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-content blockquote {
  position: relative;
  margin: 34px 0;
  padding: 22px 28px 22px 58px;
  border-left: 3px solid var(--color-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #faf9ff;
}

.article-content blockquote p {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

.quote-icon {
  position: absolute;
  top: 23px;
  left: 18px;
  color: var(--color-purple);
  font-size: 25px;
}

.article-notice {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--color-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #f7f4ff;
}

.article-notice > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-purple);
  background: #ece5ff;
}

.article-notice h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.article-notice p {
  margin: 0;
  font-size: 14px;
}

.article-sidebar {
  width: 100%;
  color: var(--color-text);
  font-size: 13px;
}

.article-sidebar section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-line);
}

.article-sidebar section + section {
  padding-top: 26px;
}

.author-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  margin-top: 13px;
}

.author-card--no-avatar {
  grid-template-columns: 1fr;
}

.author-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card strong,
.author-card span,
.author-card a {
  display: block;
}

.author-card span {
  margin: 3px 0 7px;
  color: #727696;
  font-size: 12px;
}

.author-card a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 700;
}

.author-card a svg {
  width: 14px;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0 0;
}

.reading-time .bc-icon {
  width: 20px;
  height: 20px;
}

.share-links {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.share-links a,
.share-links button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid #d3d6e3;
  border-radius: 50%;
  color: var(--color-purple);
  background: var(--color-white);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}

.share-links a:hover,
.share-links a:focus-visible,
.share-links button:hover,
.share-links button:focus-visible {
  border-color: rgb(75 36 232 / 34%);
  color: var(--color-white);
  background: var(--color-purple);
  transform: translateY(-2px);
}

.share-links .bc-icon {
  width: 19px;
  height: 19px;
}

.article-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}

.article-toc a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 0 8px 12px;
  border-left: 2px solid var(--color-purple);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}

.article-toc a:hover,
.article-toc a:focus-visible {
  border-color: var(--color-purple-dark);
  color: var(--color-purple);
  background: #faf9ff;
}

.article-toc__subitem {
  padding-left: 24px;
  font-size: 12px;
}

.article-gallery {
  padding-top: 56px;
}

.article-gallery > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 16px;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.related-posts {
  padding: 56px 0 72px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  border-top: 1px solid var(--color-line);
}

.related-posts article {
  padding: 22px 24px 0 0;
}

.related-posts article + article {
  padding-left: 24px;
  border-left: 1px solid var(--color-line);
}

.related-posts time {
  color: var(--color-muted);
  font-size: 12px;
}

.related-posts h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.3;
}

.related-posts p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.related-posts a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 901px) {
  .article-sidebar {
    position: sticky;
    top: 112px;
    align-self: start;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    padding-right: 8px;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  body.admin-bar .article-sidebar {
    top: 144px;
    max-height: calc(100vh - 164px);
  }
}

@media (min-width: 1440px) {
  .article-page .container,
  body.single-post .action-band .container,
  body.single-post .site-footer .container {
    width: min(var(--layout-reading), calc(100% - 96px));
  }

  .article-hero {
    grid-template-columns: minmax(440px, 500px) minmax(0, 1fr);
    gap: 76px;
  }

  .article-hero h1 {
    max-width: 500px;
    font-size: 44px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 860px) 300px;
    gap: 88px;
  }

  .article-content {
    font-size: 17px;
  }
}

@media (min-width: 1800px) {
  .article-layout {
    grid-template-columns: minmax(0, 900px) 310px;
    gap: 96px;
  }
}

@media (max-width: 1099px) and (min-width: 901px) {
  .article-hero {
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
    gap: 36px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .article-page .container,
  body.single-post .action-band .container,
  body.single-post .site-footer .container {
    width: min(100% - 40px, 760px);
  }

  .article-hero,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero {
    gap: 28px;
    padding-block: 36px;
  }

  .article-hero__image {
    order: -1;
  }

  .article-hero h1,
  .article-hero__copy > p {
    max-width: 680px;
  }

  .article-layout {
    gap: 42px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding-right: 0;
  }

  .article-sidebar section,
  .article-sidebar section + section {
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
  }
}

@media (max-width: 680px) {
  .article-page .container,
  body.single-post .action-band .container,
  body.single-post .site-footer .container {
    width: calc(100% - 24px);
  }

  .article-hero h1 {
    font-size: 34px;
  }

  .article-sidebar,
  .article-gallery > div,
  .related-posts__grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar section,
  .article-sidebar section + section {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    background: transparent;
  }

  .related-posts article,
  .related-posts article + article {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
}

/* module: 50-project-error.css */
.project-page .container,
body.single-bc_project .action-band .container,
body.single-bc_project .site-footer .container {
  width: min(1180px, calc(100% - 64px));
}

.project-hero {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 30px;
}

.project-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(54px, 5.7vw, 70px);
  line-height: 1;
}

.project-subtitle {
  max-width: 520px;
  margin: 0;
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.55;
}

.project-stats {
  display: flex;
  gap: 0;
  margin: 46px 0 0;
}

.project-stats div {
  min-width: 145px;
  padding-right: 26px;
}

.project-stats div + div {
  padding-left: 26px;
  border-left: 1px solid var(--color-line);
}

.project-stats dt {
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-stats dd {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.project-stats dd span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--color-lime);
}

.project-hero__art {
  width: 100%;
  height: auto;
}

.project-description {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 90px;
  padding: 82px 0 38px;
}

.project-description h2,
.project-team h2,
.project-downloads h2 {
  margin: 14px 0 18px;
  font-size: 34px;
}

.project-description > div:first-child {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.72;
}

.project-features article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}

.project-features article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-purple);
}

.project-features article > span .bc-icon {
  width: 25px;
  height: 25px;
}

.project-features h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.project-features p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.project-team {
  padding-top: 68px;
}

.project-team__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}

.project-team article {
  text-align: center;
}

.project-team img {
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgb(7 10 32 / 10%);
}

.project-team h3 {
  margin: 0;
  font-size: 14px;
}

.project-team p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 12px;
}

.project-downloads {
  padding: 68px 0 76px;
}

.project-downloads > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.project-downloads a,
.project-downloads__placeholder {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-purple);
  font-size: 14px;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.project-downloads a:hover,
.project-downloads a:focus-visible {
  padding-left: 6px;
  color: var(--color-purple);
}

.project-downloads__placeholder {
  opacity: .55;
}

.project-downloads .bc-icon {
  width: 20px;
  height: 20px;
  color: var(--color-purple);
}

.project-pagination {
  border-top: 1px solid #d5d2e7;
  background: linear-gradient(90deg, #f7f5ff, #f2efff);
}

.project-pagination .container {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.project-pagination a {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 18px;
  color: var(--color-purple);
  font-size: 13px;
  transition: background-color .2s var(--ease);
}

.project-pagination a:hover,
.project-pagination a:focus-visible {
  background: rgb(255 255 255 / 48%);
}

.project-pagination a:last-child {
  justify-content: flex-end;
  border-left: 1px solid #ccc9e5;
  text-align: right;
}

.project-pagination img {
  width: 90px;
  height: 56px;
  object-fit: cover;
}

.project-pagination strong {
  display: block;
  margin-top: 5px;
  color: var(--color-ink);
  font-size: 16px;
}

.error-page__layout {
  display: grid;
  min-height: 880px;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.error-page__content {
  padding-left: 40px;
}

.error-page__number {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .75;
}

.error-page h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
}

.error-page__content > p:not(.error-page__number) {
  margin: 28px 0 42px;
  color: var(--color-text);
  font-size: 16px;
}

.error-page__art img {
  width: 100%;
  height: auto;
}

@media (min-width: 1440px) {
  .project-page .container,
  body.single-bc_project .action-band .container,
  body.single-bc_project .site-footer .container {
    width: min(1320px, calc(100% - 96px));
  }
}

@media (max-width: 900px) {
  .project-page .container,
  body.single-bc_project .action-band .container,
  body.single-bc_project .site-footer .container,
  .error-page .container {
    width: min(100% - 40px, 760px);
  }

  .project-hero,
  .project-description,
  .error-page__layout {
    grid-template-columns: 1fr;
  }

  .project-hero {
    padding: 44px 0 70px;
  }

  .project-hero__art {
    order: -1;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .project-description {
    gap: 36px;
  }

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

  .error-page__layout {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .error-page__content {
    padding-left: 0;
  }

  .error-page__art {
    order: -1;
  }
}

@media (max-width: 600px) {
  .project-page .container,
  body.single-bc_project .action-band .container,
  body.single-bc_project .site-footer .container,
  .error-page .container {
    width: calc(100% - 24px);
  }

  .project-hero h1 {
    font-size: 48px;
  }

  .project-stats {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .project-stats div,
  .project-stats div + div {
    width: 100%;
    padding: 0 0 14px;
    border-left: 0;
    border-bottom: 1px solid var(--color-line);
  }

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

  .project-downloads > div,
  .project-pagination .container {
    grid-template-columns: 1fr;
  }

  .project-pagination a:last-child {
    justify-content: flex-start;
    border-top: 1px solid #ccc9e5;
    border-left: 0;
    text-align: left;
  }

  .error-page__number {
    font-size: 120px;
  }

  .error-page h1 {
    font-size: 30px;
  }
}

/* module: 60-footer.css */
.action-band {
  color: var(--color-ink);
  background: var(--color-lime);
}

.action-band__inner {
  display: grid;
  min-height: 120px;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
}

.action-band img {
  width: 120px;
}

.action-band h2 {
  margin: 0;
  font-size: 32px;
}

.action-band h2 span {
  font-weight: 400;
}

.action-band p {
  margin: 3px 0 0;
  font-size: 13px;
}

.mobile-application-cta {
  display: none;
}

.site-footer {
  color: var(--color-white);
  background:
    radial-gradient(circle at 92% 0%, rgb(94 55 238 / 24%), transparent 34%),
    radial-gradient(circle at 4% 18%, rgb(0 218 255 / 8%), transparent 30%),
    linear-gradient(135deg, #02082e, #040b3a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 140px 160px minmax(180px, 1fr);
  gap: 32px;
  padding-top: 58px;
}

.footer-grid--front {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, 1fr));
  column-gap: clamp(48px, 5vw, 96px);
}

.footer-grid--front .footer-contact {
  width: min(100%, 230px);
  justify-self: end;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: 170px;
  height: auto;
}

.footer-brand > p {
  max-width: 245px;
  margin: 12px 0 16px;
  color: #c4c9dc;
  font-size: 13.5px;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(255 255 255 / 5%);
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}

a.social-icon:hover,
a.social-icon:focus-visible {
  border-color: rgb(255 255 255 / 38%);
  color: var(--color-white);
  background: rgb(255 255 255 / 12%);
  transform: translateY(-2px);
}

.social-icon .bc-icon {
  width: 18px;
  height: 18px;
}

.social-icon--inactive {
  opacity: .55;
}

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #bfc4d8;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  margin: 0 0 6px;
  color: #cbd0e1;
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.5;
}

.footer-column a {
  display: flex;
  min-height: 32px;
  align-items: center;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-white);
  transform: translateX(2px);
}


.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #9299b8;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.footer-bottom a {
  display: flex;
  min-height: 32px;
  align-items: center;
}

.footer-grid--404 {
  grid-template-columns: 270px repeat(4, minmax(0, 1fr));
}

.footer-grid--post {
  grid-template-columns: 230px repeat(4, minmax(0, 1fr));
}

.footer-grid--project {
  grid-template-columns: 250px repeat(4, minmax(0, 1fr));
}

@media (max-width: 1099px) {
  .footer-grid,
  .footer-grid--404,
  .footer-grid--front,
  .footer-grid--post,
  .footer-grid--project {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-grid--front .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid--front .footer-contact {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  body:not(.error404) {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .mobile-application-cta {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgb(7 10 32 / 10%);
    opacity: 0;
    transform: translateY(calc(100% + 12px));
    transition: visibility .25s ease, opacity .25s ease, transform .25s ease;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-application-cta.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .mobile-application-cta a {
    display: flex;
    width: min(100%, 520px);
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    padding: 0 20px;
    border-radius: 14px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgb(75 36 232 / 26%);
    pointer-events: auto;
  }

  .mobile-application-cta svg {
    width: 20px;
    height: 20px;
  }

  body.menu-open .mobile-application-cta {
    visibility: hidden;
    opacity: 0;
    transform: translateY(calc(100% + 12px));
  }

  .action-band__inner {
    grid-template-columns: 1fr auto;
  }

  .action-band img {
    display: none;
  }

  .footer-grid,
  .footer-grid--404,
  .footer-grid--front,
  .footer-grid--post,
  .footer-grid--project {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }
}

@media (max-width: 600px) {
  .action-band__inner {
    grid-template-columns: 1fr;
    padding-block: 26px;
  }

  .action-band .button {
    width: 100%;
  }

  .footer-grid,
  .footer-grid--404,
  .footer-grid--front,
  .footer-grid--post,
  .footer-grid--project {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

@media (min-width: 821px) {
  .mobile-application-cta {
    display: none;
  }
}

@media (hover: none) {
  .footer-column a:hover {
    transform: none;
  }
}
