/* =================== TOKENS =================== */
:root {
  --c-blue: #0E00CB;
  --c-blue-dk: #08007a;
  --c-pink: #EF2678;
  --c-pink-dk: #c91560;
  --c-pink-lt: #ffe3ef;
  --c-blue-lt: #ebe9ff;
  --c-gray: #EDEDED;
  --c-gray-2: #f7f7f7;
  --c-gray-3: #f1f1f4;
  --c-text: #0A0A0A;
  --c-text-mute: #5a5a66;
  --c-white: #FFFFFF;

  --font-display: 'Golos Text', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1200px;
  --pad-x: clamp(16px, 4vw, 40px);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;

  --shadow-sm: 0 4px 16px rgba(14, 0, 203, 0.06);
  --shadow-md: 0 12px 40px rgba(14, 0, 203, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 0, 203, 0.12);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  margin: 0 auto;
}

/* =================== LUCIDE ICONS =================== */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* =================== TYPOGRAPHY =================== */
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h3 {
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.h3--centered { text-align: center; margin: 64px 0 36px; }
.h3--light { color: var(--c-white); }
.h2--light { color: var(--c-white); }

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--c-text-mute);
  max-width: 760px;
}

.lead--light { color: rgba(255, 255, 255, 0.8); }
.lead--mb { margin-top: 18px; margin-bottom: 56px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-pink);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--c-pink);
  border-radius: 2px;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.eyebrow--light::before { background: rgba(255, 255, 255, 0.6); }

.ink-pink { color: var(--c-pink); }
.ink-blue { color: var(--c-blue); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}

.btn [data-lucide] { font-size: 18px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--lg [data-lucide] { font-size: 20px; }
.btn--block { width: 100%; }

.btn__heart {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  margin-top: -3px;
  transform-origin: center;
  animation: btnHeartbeat 1.6s ease-in-out infinite;
}
.btn--lg .btn__heart { width: 22px; height: 22px; margin-top: -3px; }

@keyframes btnHeartbeat {
  0%, 100% { transform: rotate(-15deg) scale(1.4); }
  15%      { transform: rotate(-15deg) scale(1.6); }
  30%      { transform: rotate(-15deg) scale(1.4); }
  45%      { transform: rotate(-15deg) scale(1.54); }
  60%      { transform: rotate(-15deg) scale(1.4); }
}

.btn--pink { background: var(--c-pink); color: #fff; }
.btn--pink:hover { background: var(--c-pink-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(239, 38, 120, 0.35); }

.btn--blue { background: var(--c-blue); color: #fff; }
.btn--blue:hover { background: var(--c-blue-dk); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--c-text); border: 2px solid var(--c-text); padding: 14px 30px; }
.btn--ghost:hover { background: var(--c-text); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-blue);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow [data-lucide] { font-size: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover { border-color: var(--c-blue); }
.link-arrow:hover [data-lucide] { transform: translateX(4px); }

/* =================== HEADER =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 88px;
}

.header__logo img { height: 72px; width: auto; display: block; }

.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.header__nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.header__nav a:hover { color: var(--c-blue); border-color: var(--c-blue); }

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

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}

.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
  transform-origin: center;
}

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero партнёр-плашка — внизу первого экрана */
.hero__partner {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  right: clamp(16px, 4vw, 40px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 0, 203, 0.08);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-mute);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__partner:hover {
  background: #fff;
  border-color: rgba(14, 0, 203, 0.16);
  transform: translateY(-2px);
}

.hero__partner-label { white-space: nowrap; }

.hero__partner-divider {
  width: 1px;
  height: 16px;
  background: rgba(14, 0, 203, 0.18);
}

.hero__partner-logo {
  display: inline-flex;
  align-items: center;
  height: 18px;
}
.hero__partner-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c-white);
  z-index: 49;
  padding: 100px var(--pad-x) 40px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__nav a {
  font-size: 24px;
  font-weight: 600;
  color: var(--c-text);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-menu__nav a:hover { color: var(--c-blue); }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h, 56px));
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  opacity: 0.85;
  filter: drop-shadow(0 8px 30px rgba(14, 0, 203, 0.12));
}

.hero__deco--flower-2 {
  width: clamp(80px, 9vw, 130px);
  top: 6%;
  left: max(12px, calc(50vw - 620px - 130px));
  transform: rotate(8deg);
  animation: floaty 11s ease-in-out infinite reverse;
}

.hero__deco--person {
  width: clamp(220px, 30vw, 460px);
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  opacity: 0.96;
  animation: heroPersonFloat 14s ease-in-out infinite;
}

@keyframes heroPersonFloat {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 14px)); }
}

.hero__deco--spot {
  width: clamp(220px, 26vw, 380px);
  bottom: -10%;
  right: 8%;
  opacity: 0.22;
  transform: rotate(15deg);
  z-index: 0;
}

@media (max-width: 1100px) {
  .hero__deco--flower-2 { left: 8px; }
}
@media (max-width: 960px) {
  .hero__deco--person { width: 200px; right: -2%; opacity: 0.5; }
  .hero__deco--flower-2 { width: 80px; left: auto; right: 8px; top: 4%; }
}
@media (max-width: 640px) {
  .hero__deco--person { width: 140px; opacity: 0.35; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__kicker {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-blue);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 14ch;
}

.hero__heart {
  display: inline-flex;
  align-items: center;
  width: 0.95em;
  height: 0.95em;
  vertical-align: -0.15em;
  margin-left: 4px;
  animation: heartbeat 1.6s ease-in-out infinite;
}
.hero__heart img { width: 100%; height: 100%; object-fit: contain; }

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.15); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.1); }
  60%      { transform: scale(1); }
}

.hero__lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--c-text-mute);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =================== SECTIONS =================== */
.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.section--about      { background: var(--c-white); }
.section--projects   { background: var(--c-gray-2); }
.section--help       { background: var(--c-blue); color: #fff; position: relative; overflow: hidden; }
.section--partners   { background: var(--c-white); }
.section--team       { background: var(--c-gray-2); }
.section--goals      { background: var(--c-gray-2); }
.section--principles { background: var(--c-blue); color: #fff; position: relative; overflow: hidden; }
.section--bms        { background: var(--c-text); color: #fff; }
.section--news       { background: var(--c-white); }
.section--contacts   { background: var(--c-gray-2); }

.section--help::before,
.section--principles::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--c-pink);
  opacity: 0.18;
  border-radius: 50% 40% 60% 50%;
  top: -200px;
  right: -200px;
  filter: blur(60px);
  pointer-events: none;
}

.section--principles::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--c-pink);
  opacity: 0.12;
  border-radius: 60% 40% 50% 50%;
  bottom: -180px;
  left: -180px;
  filter: blur(60px);
  pointer-events: none;
}

/* =================== SECTION DECO =================== */
.section { overflow: hidden; }

.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  filter: drop-shadow(0 6px 20px rgba(14, 0, 203, 0.08));
}

.section-deco--bird-tr {
  width: clamp(60px, 6vw, 90px);
  top: 6%;
  right: 6%;
  transform: rotate(8deg);
  animation: floaty 12s ease-in-out infinite;
}

.section-deco--flower-bl {
  width: clamp(90px, 10vw, 150px);
  bottom: 4%;
  left: 2%;
  transform: rotate(-8deg);
  opacity: 0.55;
  animation: floaty 14s ease-in-out infinite reverse;
}

.section-deco--flower-tr {
  width: clamp(80px, 9vw, 130px);
  top: 5%;
  right: 4%;
  transform: rotate(12deg);
  opacity: 0.55;
  animation: floaty 13s ease-in-out infinite;
}

.section-deco--bird-bl {
  width: clamp(50px, 5vw, 80px);
  bottom: 8%;
  left: 5%;
  transform: rotate(-6deg) scaleX(-1);
  animation: floaty 11s ease-in-out infinite reverse;
}

.section .container { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .section-deco--bird-tr,
  .section-deco--bird-bl,
  .section-deco--flower-bl,
  .section-deco--flower-tr { opacity: 0.4; }
}

/* =================== ABOUT =================== */
.about__top { margin-bottom: 64px; }
.about__top .h2 { margin: 14px 0 22px; }
.about__top .lead { max-width: 760px; }

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.founder__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-gray);
}

.founder__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    repeating-linear-gradient(45deg, #f5f5f5 0 14px, #ededed 14px 28px);
  color: rgba(14, 0, 203, 0.3);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.founder__photo-placeholder [data-lucide] { font-size: 64px; }

.founder__deco {
  position: absolute;
  width: 60%;
  bottom: -20%;
  right: -20%;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.founder__text p { margin-bottom: 16px; font-size: 17px; line-height: 1.65; color: var(--c-text); }
.founder__hello { font-size: 22px !important; font-weight: 700; margin-bottom: 22px !important; color: var(--c-blue); }

.founder__sign {
  position: relative;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.founder__sign-line { color: var(--c-text-mute); font-style: italic; }
.founder__sign-name { font-family: var(--font-script); font-size: 42px !important; line-height: 1; color: var(--c-blue); margin: 6px 0 6px !important; font-weight: 700; }
.founder__sign-role { color: var(--c-text-mute); font-size: 14px; }

.founder__sign-flower {
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: clamp(12px, 2vw, 28px);
  transform: translateY(-50%) rotate(-8deg);
  width: clamp(80px, 10vw, 120px);
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  animation: floaty 12s ease-in-out infinite;
  z-index: 2;
}

@media (max-width: 960px) {
  .founder__sign-flower { width: 80px; }
}

@media (max-width: 640px) {
  .founder__sign-flower {
    position: static;
    transform: rotate(-8deg);
    margin: 18px 0 0;
    width: 90px;
    display: block;
  }
}

/* =================== PROJECTS =================== */
.section--projects .h2 { margin: 10px 0 64px; }

.project {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin-bottom: 80px;
}

.project--reverse { grid-template-columns: 1fr 1.05fr; }
.project--reverse .project__media { order: 2; }

.project__media { position: relative; }

.project__deco {
  position: absolute;
  width: 30%;
  bottom: -10%;
  right: -8%;
  opacity: 0.7;
  pointer-events: none;
}

.project__photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}

.ph-slot, .ph-block {
  background: linear-gradient(135deg, #f1efff 0%, #ffe9f3 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.35);
  font-size: 13px;
  text-align: center;
  border-radius: var(--radius-sm);
}

.ph-slot [data-lucide] { font-size: 28px; opacity: 0.6; }
.ph-block [data-lucide] { font-size: 40px; opacity: 0.6; }

.ph-block--lg { aspect-ratio: 16 / 12; border-radius: var(--radius); }

.project__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--c-blue-lt);
  color: var(--c-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.project__tag [data-lucide] { font-size: 16px; }

.project__title {
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--c-blue);
}

.project__lead {
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--c-text);
}

.project__content p { margin-bottom: 14px; color: var(--c-text); }
.project__content p:last-of-type { margin-bottom: 0; }

.project__tasks {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.project__tasks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--c-text);
}
.project__tasks li [data-lucide] {
  width: 22px;
  height: 22px;
  font-size: 14px;
  background: var(--c-pink);
  color: #fff;
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}

/* subprojects — 3 + 2 layout */
.subprojects {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.subproject {
  grid-column: span 2;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.subproject:nth-child(n+4) { grid-column: span 3; }

.subproject:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.subproject__photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8e4ff 0%, #ffe1ed 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.35);
}
.subproject__photo [data-lucide] { font-size: 32px; opacity: 0.6; }
.subproject__ph { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }

.subproject__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
}

.subproject__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.subproject__icon {
  width: 40px !important;
  height: 40px !important;
  background: var(--c-pink-lt);
  color: var(--c-pink);
  border-radius: 10px;
  padding: 9px;
  font-size: 22px;
  flex-shrink: 0;
}

.subproject h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--c-blue);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

.subproject p { font-size: 15px; line-height: 1.55; color: var(--c-text-mute); }

.ph-mini { color: rgba(14, 0, 203, 0.35); font-size: 13px; }
.ph-mini--light { color: rgba(255, 255, 255, 0.5); }

/* =================== HELP =================== */
.section--help .h2 { margin: 14px 0 48px; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.help-card {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.help-card__photo {
  background: linear-gradient(135deg, #e9e6ff 0%, #ffd9ea 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.4);
}
.help-card__photo [data-lucide] { font-size: 42px; opacity: 0.6; }

.help-card__body { padding: 28px; }

.help-card__partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--c-text-mute);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.help-card__partner [data-lucide] { font-size: 14px; color: var(--c-pink); }

.help-card h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-blue);
  margin-bottom: 14px;
  line-height: 1.1;
}

.help-card__body p { margin-bottom: 24px; color: var(--c-text); }

/* =================== PARTNERS — editorial list =================== */
.section--partners .h2 { margin: 10px 0 0; }

.partners__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 56px;
}

.partners__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text-mute);
  padding-bottom: 8px;
}

.partners-list {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-row__link {
  display: grid;
  grid-template-columns: 80px 64px 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 28px 16px 28px 8px;
  color: var(--c-text);
  transition: background .3s var(--ease), padding-left .3s var(--ease);
}

.partner-row__link:hover {
  background: var(--c-gray-2);
  padding-left: 20px;
}

.partner-row__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  color: rgba(14, 0, 203, 0.25);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease);
}

.partner-row__link:hover .partner-row__num { color: var(--c-pink); }

.partner-row__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-lt);
  color: var(--c-blue);
  border-radius: 16px;
  font-size: 26px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.partner-row__link:hover .partner-row__icon {
  background: var(--c-blue);
  color: #fff;
  transform: rotate(-6deg);
}

.partner-row__title {
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--c-text);
}

.partner-row__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-text-mute);
  max-width: 56ch;
}

.partner-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--c-text);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.partner-row__cta [data-lucide] { font-size: 16px; transition: transform .25s var(--ease); }

.partner-row__link:hover .partner-row__cta {
  background: var(--c-pink);
  border-color: var(--c-pink);
  color: #fff;
}
.partner-row__link:hover .partner-row__cta [data-lucide] {
  transform: translate(2px, -2px);
}

/* =================== DIVIDER (perebivka) =================== */
.divider {
  position: relative;
  min-height: clamp(420px, 60vw, 720px);
  overflow: hidden;
  background: var(--c-blue);
}

.divider__media {
  position: absolute;
  inset: -15% 0;
  background-image: url('/assets/divider.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, scale;
  transform: translate3d(0, 0, 0) scale(1.12);
  transition: transform .15s linear;
}

.divider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 0, 203, 0.45) 0%, rgba(14, 0, 203, 0.25) 50%, rgba(239, 38, 120, 0.35) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (max-width: 640px) {
  .divider { min-height: 320px; }
}

/* =================== TEAM =================== */
.section--team .h2 { margin: 10px 0 0; }

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 80px;
}

.team-featured {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.team-featured__photo {
  position: relative;
  aspect-ratio: 4 / 3.5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-blue-lt) 0%, var(--c-pink-lt) 100%);
}

.team-featured__photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.4);
}
.team-featured__photo-ph [data-lucide] { font-size: 80px; }

.team-featured__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--c-pink);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(239, 38, 120, 0.35);
}
.team-featured__badge [data-lucide] { font-size: 14px; }

.team-featured figcaption { position: relative; z-index: 1; }
.team-featured__role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-pink);
  font-weight: 600;
  margin-bottom: 6px;
}
.team-featured__name {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-blue);
  margin-bottom: 10px;
  line-height: 1.1;
}
.team-featured p { font-size: 15px; line-height: 1.55; color: var(--c-text-mute); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-card__photo {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgba(14,0,203,0.1) 0%, rgba(239,38,120,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.35);
}
.team-card__photo [data-lucide] { font-size: 42px; }

.team-card figcaption {
  padding: 14px 18px 18px;
  text-align: left;
}
.team-card figcaption strong { display: block; font-weight: 600; font-size: 15px; color: var(--c-text); }
.team-card figcaption span { display: block; font-size: 13px; color: var(--c-text-mute); margin-top: 4px; }

/* Friends */
.friends__hint { color: var(--c-text-mute); margin-bottom: 24px; font-size: 14px; font-style: italic; }
.friends .h3 { margin-bottom: 8px; }

.friends__carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-blue) transparent;
}
.friends__carousel::-webkit-scrollbar { height: 6px; }
.friends__carousel::-webkit-scrollbar-thumb { background: var(--c-blue); border-radius: 3px; }

.friend {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  text-align: center;
}

.friend__photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9e6ff 0%, #ffd9ea 100%);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.35);
}
.friend__photo [data-lucide] { font-size: 44px; }
.friend strong { display: block; font-size: 15px; font-weight: 600; color: var(--c-text); }
.friend span { font-size: 13px; color: var(--c-text-mute); }

/* =================== GOALS =================== */
.section--goals .h2 { margin: 10px 0 0; }

.goals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.goal {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}

.goal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-pink) 0%, var(--c-blue) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
}

.goal:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.goal:hover::before { transform: scaleY(1); }

.goal__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: rgba(14, 0, 203, 0.1);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease);
}

.goal:hover .goal__num { color: var(--c-pink); }

.goal__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-lt);
  color: var(--c-blue);
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.goal:hover .goal__icon { background: var(--c-blue); color: #fff; }

.goal h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.goal p { font-size: 15px; line-height: 1.55; color: var(--c-text-mute); }

/* =================== PRINCIPLES =================== */
.section--principles .h2 { margin: 10px 0 0; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.principle {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.principle:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.principle__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-pink);
  color: #fff;
  border-radius: 16px;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(239, 38, 120, 0.35);
  transition: transform .3s var(--ease);
}

.principle:hover .principle__icon { transform: rotate(-8deg) scale(1.04); }

.principle h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.principle p { font-size: 14.5px; line-height: 1.55; color: var(--c-text-mute); }

/* =================== BMS =================== */
.section--bms { padding: clamp(60px, 6vw, 90px) 0; }

.bms {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.bms__left .h2 { margin: 10px 0 18px; }
.bms__left p { color: rgba(255, 255, 255, 0.75); margin-bottom: 14px; max-width: 540px; }
.bms__left strong { color: #fff; }

.bms__logo {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 50px;
}
.bms__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* =================== NEWS =================== */
.section--news .h2 { margin: 10px 0 48px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.news-card {
  background: var(--c-gray-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-card__photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e9e6ff 0%, #ffd9ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14, 0, 203, 0.35);
}
.news-card__photo [data-lucide] { font-size: 42px; }

.news-card__body { padding: 22px 24px 26px; }

.news-card time {
  display: inline-block;
  font-size: 12px;
  color: var(--c-pink);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--c-text); letter-spacing: -0.01em; }
.news-card p { font-size: 15px; color: var(--c-text-mute); line-height: 1.55; }

.news-empty-hint { color: var(--c-text-mute); font-size: 14px; font-style: italic; }

/* =================== CONTACTS =================== */
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contacts__info .h2 { margin: 10px 0 30px; }

.contacts__list { display: grid; gap: 20px; }
.contacts__list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }

.contacts__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-lt);
  color: var(--c-blue);
  border-radius: 12px;
  font-size: 20px;
}

.contacts__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  font-weight: 600;
  margin-bottom: 4px;
}

.contacts__list a { color: var(--c-blue); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.contacts__list a:hover { border-color: var(--c-blue); }

.contacts__socials { display: flex; gap: 10px; margin-top: 4px; }
.contacts__socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--c-blue);
  color: #fff !important;
  border-radius: 50%;
  font-size: 18px;
  border: none !important;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.contacts__socials a:hover { background: var(--c-pink); transform: translateY(-2px); }

/* Form */
.contacts__form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}

.form__intro { color: var(--c-text-mute); margin-bottom: 6px; font-size: 15px; }

.contacts__form label { display: grid; gap: 6px; }
.contacts__form label > span {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text-mute);
  font-weight: 600;
}

.contacts__form input,
.contacts__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  background: var(--c-gray-2);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  resize: vertical;
}

.contacts__form input:focus,
.contacts__form textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  background: #fff;
}

.form__consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px !important;
  font-size: 12.5px;
  color: var(--c-text-mute);
  line-height: 1.5;
  cursor: pointer;
  padding: 8px 4px 4px;
  margin-top: 4px;
}

/* hide native checkbox */
.form__consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* custom box */
.form__consent-box {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: 1.5px solid rgba(14, 0, 203, 0.25);
  border-radius: 6px;
  color: transparent;
  margin-top: 1px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
  flex-shrink: 0;
}
.form__consent-box [data-lucide] {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.form__consent:hover .form__consent-box {
  border-color: var(--c-pink);
}

.form__consent input:checked + .form__consent-box {
  background: var(--c-pink);
  border-color: var(--c-pink);
  color: #fff;
  transform: scale(1.02);
}

.form__consent input:focus-visible + .form__consent-box {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}

.form__consent-text { color: var(--c-text-mute); }

.form__consent-text a {
  color: var(--c-blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(14, 0, 203, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color .2s var(--ease);
}
.form__consent-text a:hover {
  text-decoration-color: var(--c-blue);
}

.form__status { font-size: 14px; color: var(--c-blue); min-height: 20px; }
.form__status.is-success { color: #1a9b3b; }
.form__status.is-error { color: #d22; }

/* =================== FOOTER =================== */
.footer {
  background: var(--c-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(32px, 5vw, 80px);
}

.footer__logo { height: 40px; margin-bottom: 16px; filter: invert(1) brightness(100); }
.footer__brand p { font-size: 14px; max-width: 280px; margin-bottom: 22px; }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff !important;
  font-size: 16px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__socials a:hover { background: var(--c-pink); transform: translateY(-2px); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--c-pink); }

.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== Po Plan credit ===== */
.po-plan-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: .01em;
  color: #b9c5cf;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease;
}
.po-plan-credit:hover { opacity: 1; }

.po-plan-credit__logo {
  height: 12px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.po-plan-credit__text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.po-plan-credit__prefix { color: inherit; }

.po-plan-credit__brand {
  color: var(--c-pink);
  text-decoration: underline dashed;
  text-decoration-color: var(--c-pink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

.po-plan-credit:hover .po-plan-credit__brand {
  filter: brightness(1.15);
}

@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =================== REVEAL ON SCROLL =================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .goals { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .team-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .partners__head { grid-template-columns: 1fr; align-items: start; gap: 20px; }

  .partner-row__link {
    grid-template-columns: 60px 56px 1fr auto;
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }

  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 360px; }

  .project,
  .project--reverse { grid-template-columns: 1fr; }
  .project--reverse .project__media { order: 0; }

  .subprojects { grid-template-columns: repeat(2, 1fr); }
  .subproject,
  .subproject:nth-child(n+4) { grid-column: span 1; }

  .bms { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .goals,
  .principles { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .partner-row__link {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num cta"
      "icon icon"
      "body body";
    gap: 14px;
    padding: 24px 8px;
  }
  .partner-row__num { grid-area: num; font-size: 32px; }
  .partner-row__icon { grid-area: icon; width: 48px; height: 48px; font-size: 22px; }
  .partner-row__body { grid-area: body; }
  .partner-row__cta { grid-area: cta; align-self: start; padding: 8px 14px; font-size: 12px; }
  .partner-row__title { font-size: 22px; }
}

@media (max-width: 640px) {
  .header__logo img { height: 52px; }
  .header__inner { min-height: 68px; }
  .hero__partner {
    padding: 8px 14px;
    font-size: 10px;
    gap: 10px;
  }
  .hero__partner-divider { height: 12px; }
  .hero__partner-logo { height: 14px; }

  .hero { min-height: auto; padding: 80px 0 120px; }
  .hero__title { font-size: 42px; }

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

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

  .contacts__list li { grid-template-columns: 36px 1fr; }
  .contacts__icon { width: 36px; height: 36px; font-size: 18px; }

  .help-card { grid-template-rows: 180px 1fr; }

  .partner-card { padding: 28px 24px; }
  .partner-card__num { font-size: 44px; }
}

@media (max-width: 420px) {
  .footer__cols { grid-template-columns: 1fr; }
}
