:root {
  --font: "Golos Text", Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(16px, 3.48vw, 50px);
  --green: #0d8d5d;
  --green-deep: #006941;
  --green-soft: #6be3a5;
  --black: #090a09;
  --white: #fefefe;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-green: 0 28px 80px rgba(13, 141, 93, 0.32);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-theme="dark"] {
  --bg: #090a09;
  --section: #0d1110;
  --surface: rgba(14, 28, 22, 0.86);
  --surface-strong: #101f19;
  --text: #fefefe;
  --muted: rgba(254, 254, 254, 0.74);
  --line: rgba(254, 254, 254, 0.12);
  --input: #f7f7f3;
  --input-text: #121212;
  --hero-image: url("assets/hero-dark.png");
  --hero-position: center center;
  --hero-size: cover;
  --hero-mobile-position: 46% center;
  --hero-scrim: linear-gradient(90deg, rgba(7, 12, 11, 0.72) 0%, rgba(9, 18, 17, 0.34) 48%, rgba(8, 12, 11, 0.28) 100%);
  --hero-glow: radial-gradient(circle at 86% 54%, rgba(21, 184, 117, 0.12), transparent 32%);
  --hero-mobile-scrim: linear-gradient(180deg, rgba(5, 6, 5, 0.78), rgba(5, 6, 5, 0.46) 54%, rgba(5, 6, 5, 0.94) 100%);
  --support-bg: linear-gradient(90deg, #090a09 0%, #090a09 70%, #00170f 100%);
  --support-text: rgba(254, 254, 254, 0.82);
  --glass: rgba(8, 13, 11, 0.74);
  --team-card-bg: #0d8254;
  --team-card-text: #fefefe;
  --team-photo-bg: #d3d3d3;
  --team-icon: url("assets/team-account-dark.svg");
  --team-shadow: none;
}

body[data-theme="light"] {
  --bg: #effcf4;
  --section: #f8fffb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #111614;
  --muted: rgba(17, 22, 20, 0.72);
  --line: rgba(10, 80, 55, 0.16);
  --input: #ffffff;
  --input-text: #121212;
  --hero-image: url("assets/hero-light-figma.png");
  --hero-position: -16px -26px;
  --hero-size: auto 122.1%;
  --hero-mobile-position: 55% center;
  --hero-scrim: linear-gradient(rgba(11, 11, 11, 0.26), rgba(11, 11, 11, 0.26));
  --hero-glow: linear-gradient(transparent, transparent);
  --hero-mobile-scrim: linear-gradient(180deg, rgba(5, 6, 5, 0.6), rgba(5, 6, 5, 0.24) 48%, rgba(5, 6, 5, 0.74) 100%);
  --support-bg: linear-gradient(90deg, #effcf4 0%, #effcf4 55%, #76daa8 100%);
  --support-text: rgba(17, 22, 20, 0.82);
  --glass: rgba(255, 255, 255, 0.74);
  --team-card-bg: #ffffff;
  --team-card-text: #0b0b0b;
  --team-photo-bg: #d3d3d3;
  --team-icon: url("assets/team-account-light.svg");
  --team-shadow: 0 5px 30px rgba(0, 99, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  text-rendering: geometricPrecision;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(13, 141, 93, 0.36);
  color: var(--text);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(100%, var(--max));
  height: 106px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 30px var(--gutter);
  color: #fefefe;
  transform: translateX(-50%);
  transition: height 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), padding 180ms var(--ease);
}

.site-header.is-scrolled,
.mobile-menu {
  background: color-mix(in srgb, var(--glass) 92%, transparent);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  height: 78px;
  padding-block: 18px;
}

body[data-theme="light"] .site-header.is-scrolled {
  color: #111614;
}

.brand {
  grid-column: 1;
  width: 149px;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-block;
  background: currentColor;
  mask: url("assets/logo-mark.svg") center / contain no-repeat;
}

.brand-name {
  transform: translateY(1px);
}

.desktop-nav {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  opacity: 0.92;
  transition: color 160ms var(--ease), opacity 160ms var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-soft);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
  outline: 0;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  grid-column: 3;
  position: relative;
  width: 172px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-actions > .theme-toggle {
  position: absolute;
  top: 50%;
  right: 184px;
  transform: translateY(-50%);
}

.button,
.contact-pill,
.mobile-menu a,
.mobile-menu button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fefefe;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 20px 52px rgba(13, 141, 93, 0.25);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.button-small {
  width: 172px;
  min-height: 39px;
  padding-inline: 20px;
  font-size: 16px;
  box-shadow: none;
}

body[data-theme="light"] .desktop-cta {
  background: #fafefa;
  color: #0b0b0b;
}

.button::after,
.contact-pill::after,
.mobile-menu a::after,
.mobile-menu button::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 64%);
  opacity: 0;
  pointer-events: none;
  transform: translate(calc(var(--press-x, 50px) - 60px), calc(var(--press-y, 20px) - 60px)) scale(0.2);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.button:hover,
.button:focus-visible,
.contact-pill:hover,
.contact-pill:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.button:active,
.contact-pill:active {
  transform: translateY(0) scale(0.98);
}

.button.is-pressed::after,
.contact-pill.is-pressed::after,
.mobile-menu a.is-pressed::after,
.mobile-menu button.is-pressed::after {
  opacity: 1;
  transform: translate(calc(var(--press-x, 50px) - 60px), calc(var(--press-y, 20px) - 60px)) scale(1.2);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(13, 141, 93, 0.4);
  backdrop-filter: blur(12px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #fefefe;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: color 160ms var(--ease), transform 160ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-soft);
  outline: 0;
  transform: translateY(-1px);
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fefefe;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
}

.icon-button:hover,
.icon-button:focus-visible {
  outline: 0;
  transform: translateY(-1px);
  background: rgba(13, 141, 93, 0.78);
  box-shadow: 0 16px 44px rgba(13, 141, 93, 0.24);
}

.header-actions > .theme-toggle:hover,
.header-actions > .theme-toggle:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.theme-glyph {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

body[data-theme="light"] .theme-glyph {
  background: transparent;
  border: 3px solid currentColor;
  box-shadow: inset -5px -2px 0 currentColor;
}

.tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  max-width: 160px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #111614;
  color: #fefefe;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms var(--ease), transform 140ms var(--ease);
}

.icon-button:hover .tooltip,
.icon-button:focus-visible .tooltip {
  opacity: 1;
  transform: translateY(0);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: 78px;
  left: var(--gutter);
  right: var(--gutter);
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu a,
.mobile-menu button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms var(--ease), transform 160ms var(--ease);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu button:hover,
.mobile-menu button:focus-visible {
  outline: 0;
  background: rgba(13, 141, 93, 0.18);
  transform: translateX(2px);
}

.hero {
  position: relative;
  min-height: 810px;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: #07100d;
}

.hero-media,
.vk-media,
.impact-media,
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  background:
    var(--hero-scrim),
    var(--hero-glow),
    var(--hero-image) var(--hero-position) / var(--hero-size) no-repeat;
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 141px var(--gutter) 80px;
}

.hero h1,
.hero p,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  max-width: 920px;
  color: #fefefe;
  font-size: clamp(34px, 2.64vw, 38px);
  line-height: 46px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.hero p {
  max-width: 583px;
  margin-top: 26px;
  color: rgba(254, 254, 254, 0.88);
  font-size: clamp(21px, 1.82vw, 26px);
  line-height: normal;
  font-weight: 500;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}

.mobile-break {
  display: none;
}

.hero-actions {
  display: none;
  align-items: center;
  gap: 26px;
  margin-top: 58px;
}

.support-band {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 126px;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 20px 0;
  background: var(--support-bg);
  color: var(--text);
}

.support-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(280px, 716px) minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.support-copy p {
  width: 100%;
  max-width: 716px;
  min-width: 0;
  color: var(--support-text);
  font-size: 17px;
  line-height: 1.12;
  font-weight: 600;
}

.support-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  min-width: 0;
}

.support-logos img {
  flex: 0 0 auto;
  object-fit: contain;
}

.project-support-logo {
  width: 103px;
  height: auto;
}

body[data-theme="light"] .project-support-logo {
  filter: none;
}

.support-band .reveal {
  opacity: 1;
  transform: none;
}

.fund-support-logo {
  width: 154px;
  height: 88px;
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.bg-benefits {
  opacity: 0.48;
  background:
    radial-gradient(circle at 88% 14%, rgba(13, 141, 93, 0.34), transparent 28%),
    radial-gradient(circle at 10% 56%, rgba(13, 141, 93, 0.18), transparent 32%),
    radial-gradient(circle at 70% 72%, rgba(13, 141, 93, 0.24), transparent 36%);
}

.product-section {
  min-height: 1858px;
  padding-top: 205px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 365px;
  gap: 70px;
  align-items: start;
}

.product-copy h2,
.trust-block h2,
.materials-layout h2,
.team-layout h2,
.contacts-layout h2 {
  color: var(--text);
  font-size: clamp(34px, 4.45vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.product-copy h2 {
  max-width: 876px;
}

.product-copy p {
  max-width: 786px;
  margin-top: 58px;
  color: var(--text);
  font-size: clamp(32px, 4.1vw, 59px);
  line-height: 1.04;
  font-weight: 800;
}

.request-card {
  min-height: 214px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 30px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(13, 141, 93, 0.12);
}

body[data-theme="light"] .request-card {
  background: #ffffff;
}

.request-card p {
  max-width: 300px;
  text-align: center;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.request-card .button {
  min-width: 265px;
}

.trust-block {
  margin-top: 246px;
}

.trust-block h2 {
  max-width: 786px;
  margin-bottom: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 464fr 336fr 464fr;
  gap: 38px;
  align-items: stretch;
}

.feature-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.12);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-green);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-icons {
  display: flex;
  gap: 10px;
}

.feature-icons span {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.feature-icons span,
.card-top span,
.team-name span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fefefe;
  color: var(--green);
  font-weight: 800;
}

.feature-icons span {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.feature-card h3 {
  max-width: 345px;
  color: var(--text);
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.05;
  font-weight: 800;
}

.feature-card-compact h3 {
  max-width: 230px;
}

.process-section {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: center;
  gap: 46px;
  overflow: hidden;
  padding: 108px 0;
  background: #07100d;
}

.process-copy {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  transform: none;
}

.process-copy p {
  max-width: 1080px;
  color: #fefefe;
  font-size: clamp(34px, 4.1vw, 59px);
  line-height: 1.04;
  font-weight: 800;
}

.process-media {
  z-index: 1;
  width: min(1180px, calc(100% - 100px));
  min-width: 0;
  height: 500px;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(3, 5, 4, 0.08), rgba(3, 5, 4, 0.2)),
    url("assets/print-process.png") center / cover no-repeat;
  color: #111614;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.process-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 295px;
  height: 74px;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.process-media:hover,
.process-media:focus-visible {
  outline: 0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-green);
}

.play-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fefefe;
  font-size: 17px;
  text-indent: 3px;
}

.materials-team-section {
  min-height: 1818px;
  padding-top: 240px;
}

.bg-materials {
  background:
    radial-gradient(circle at 84% 18%, rgba(13, 141, 93, 0.3), transparent 23%),
    radial-gradient(circle at 8% 72%, rgba(13, 141, 93, 0.18), transparent 28%),
    radial-gradient(circle at 74% 84%, rgba(13, 141, 93, 0.22), transparent 34%);
  opacity: 0.48;
}

.materials-layout {
  display: grid;
  grid-template-columns: minmax(320px, 611px) 1fr;
  gap: 90px;
  align-items: start;
}

.materials-layout h2 {
  max-width: 611px;
  margin-top: 64px;
}

.materials-layout h2,
.team-layout h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 500;
}

.material-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: end;
}

.material-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 36px;
  border-radius: 28px;
  background: var(--green);
  color: #fefefe;
  box-shadow: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.material-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 96px rgba(13, 141, 93, 0.34);
}

.material-card-small {
  grid-row: 2;
  justify-self: end;
  width: min(100%, 400px);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.card-top h3 {
  font-size: 26px;
  line-height: normal;
  font-weight: 700;
}

.material-card .card-top span {
  font-size: 0;
  color: transparent;
  border-radius: 0;
}

.material-card:nth-child(1) .card-top span {
  background:
    url("assets/material-design-services-part.svg") center / 24.5px 24.5px no-repeat,
    url("assets/material-icon-circle.svg") center / 44px 44px no-repeat;
}

.material-card:nth-child(2) .card-top span {
  background: url("assets/material-grain.svg") center / 44px 44px no-repeat;
}

.material-card:nth-child(3) .card-top span {
  background:
    url("assets/material-handyman-part1.svg") calc(50% + 5px) calc(50% + 5px) / 12px 12px no-repeat,
    url("assets/material-handyman-part2.svg") center / 25.2px 26.8px no-repeat,
    url("assets/material-icon-circle.svg") center / 44px 44px no-repeat;
}

.material-card p {
  max-width: 440px;
  font-size: 26px;
  line-height: normal;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .materials-layout {
    display: block;
    height: 528px;
  }

  .materials-layout h2 {
    position: absolute;
    left: 50px;
    top: 64px;
    width: 611px;
    max-width: none;
    margin: 0;
  }

  .material-cards {
    position: absolute;
    inset: 0;
    display: block;
  }

  .material-card {
    position: absolute;
    min-height: 0;
    height: 220px;
  }

  .material-card:nth-child(1) {
    left: 432px;
    top: 258px;
    width: 400px;
  }

  .material-card:nth-child(2) {
    left: 870px;
    top: 0;
    width: 520px;
  }

  .material-card:nth-child(3) {
    left: 870px;
    top: 258px;
    width: 520px;
  }
}

.team-layout {
  margin-top: 190px;
}

.team-layout h2 {
  max-width: 1016px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 37px;
  margin-top: 140px;
}

@media (min-width: 1200px) {
  .team-grid {
    width: 1340px;
    max-width: none;
    grid-template-columns: repeat(3, 422px);
  }
}

.team-card {
  min-height: 480px;
  display: grid;
  align-content: space-between;
  padding: 36px;
  border: 0;
  border-radius: 32px;
  overflow: hidden;
  background: var(--team-card-bg);
  box-shadow: var(--team-shadow);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), filter 200ms var(--ease);
}

.team-card:hover {
  transform: translateY(-5px);
  filter: brightness(1.03);
  box-shadow: var(--team-shadow), 0 20px 60px rgba(13, 141, 93, 0.24);
}

.team-name {
  display: flex;
  align-items: center;
  gap: 22px;
}

.team-name h3 {
  color: var(--team-card-text);
  font-size: 26px;
  line-height: normal;
  font-weight: 500;
}

.team-name .team-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 0;
  background: var(--team-icon) center / 100% 100% no-repeat;
  color: transparent;
  font-size: 0;
}

.team-photo {
  width: 230px;
  height: 230px;
  display: block;
  justify-self: center;
  border-radius: 10.849px;
  background: var(--team-photo-bg);
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.team-photo-arina {
  object-position: 52% 44%;
}

.team-photo-nastya {
  object-position: 43% 45%;
}

.team-photo-diana {
  object-position: 52% 39%;
}

.team-card p {
  max-width: 352px;
  color: var(--team-card-text);
  font-size: 26px;
  line-height: normal;
  font-weight: 700;
}

.team-card:nth-child(1) p { max-width: 328px; }
.team-card:nth-child(2) p { max-width: 352px; }
.team-card:nth-child(3) p { max-width: 323px; }

.achievements-section {
  padding-block: 118px 86px;
}

.timeline-desktop {
  position: relative;
  width: 1346px;
  min-height: 149px;
  margin-left: -3px;
  overflow: visible;
}

.timeline-desktop svg {
  position: absolute;
  inset: 0;
  width: 1346px;
  height: 149px;
  overflow: visible;
}

.timeline-desktop path {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
}

.node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
}

.node-start { left: -11px; top: 59.5px; }
.node-end { left: 1329px; top: 59.5px; }
.node-2024 { left: 116px; top: 17px; }
.node-2025 { display: none; }
.node-sber { left: 481px; top: 102px; }
.node-startup { left: 631px; top: 17px; }
.node-skolkovo { left: 813px; top: 106px; }
.node-msp { left: 1070px; top: 12px; }

.year,
.event {
  position: absolute;
  z-index: 1;
}

.year {
  top: 57px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--bg);
}

.year-2024 { left: 26px; }
.year-2025 { left: 360px; }

.event {
  color: var(--text);
  font-size: 18px;
  line-height: 1.12;
  font-weight: 500;
}

.event-idea { left: 144px; top: 0; width: 378px; }
.event-startup { left: 662px; top: 0; width: 170px; }
.event-msp { left: 1103px; top: 0; width: 225px; }
.event-sber { left: 509px; top: 91px; width: 230px; }
.event-skolkovo { left: 840px; top: 105px; width: 506px; }

.timeline-mobile {
  display: none;
}

.contacts-section {
  padding: 160px 0 110px;
}

.contacts-layout h2 {
  max-width: 820px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.contact-pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid color-mix(in srgb, var(--green) 40%, transparent);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.vk-section {
  position: relative;
  min-height: 806px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #08100d;
}

.vk-media {
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.72), rgba(8, 10, 8, 0.44)),
    url("assets/vk-bg.png") center / cover no-repeat;
}

.vk-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1160px);
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fefefe;
}

.vk-content h2 {
  max-width: 1157px;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.04;
  font-weight: 800;
}

.vk-content p {
  max-width: 340px;
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
}

.vk-content .button {
  margin-top: 64px;
}

.impact-section {
  min-height: 810px;
  display: grid;
  align-items: center;
  background: #07100d;
}

.impact-media {
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.95), rgba(9, 10, 9, 0.46)),
    url("assets/hero-main.png") center / cover no-repeat;
  transform: scaleX(-1);
}

.impact-copy {
  display: grid;
  gap: 34px;
}

.impact-copy p {
  max-width: 780px;
  color: #fefefe;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.34;
  font-weight: 700;
}

.site-footer {
  width: min(100%, var(--max));
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px var(--gutter);
  background: var(--bg);
  color: var(--text);
}

.site-footer p {
  color: var(--muted);
  font-weight: 700;
}

.process-dialog {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0d0b;
  color: #fefefe;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.process-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.process-dialog img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.process-dialog p {
  padding: 18px 24px 24px;
  font-size: 24px;
  font-weight: 800;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111614;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}

.dialog-close:hover,
.dialog-close:focus-visible {
  outline: 0;
  transform: rotate(90deg);
  background: #ffffff;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
    font-size: 14px;
  }

  .desktop-cta {
    display: none;
  }

  .product-grid,
  .materials-layout {
    grid-template-columns: 1fr;
  }

  .request-card {
    width: min(365px, 100%);
  }

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

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

  .feature-card-wide {
    grid-column: span 1;
  }

  .timeline-desktop {
    display: none;
  }

  .timeline-mobile {
    position: relative;
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0 0 0 36px;
    list-style: none;
  }

  .timeline-mobile::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: var(--green);
  }

  .timeline-mobile li {
    position: relative;
    color: var(--text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
  }

  .timeline-mobile li::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
  }

  .timeline-mobile li:has(strong)::before {
    left: -40px;
    top: -1px;
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 16px;
  }

  body[data-theme="dark"] {
    --team-card-bg: #0f1011;
    --team-card-text: #fefefe;
    --team-icon: url("assets/team-account-mobile.svg");
    --team-shadow: inset 35px 30px 60px rgba(202, 245, 228, 0.08);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    left: 0;
    height: 76px;
    width: 100%;
    grid-template-columns: minmax(0, auto) 40px;
    justify-content: space-between;
    padding: 18px 16px;
    gap: 14px;
    transform: none;
  }

  .site-header.is-scrolled {
    height: 70px;
    padding-block: 15px;
  }

  .brand {
    width: auto;
    gap: 8px;
    min-width: 0;
    font-size: 24px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    flex: 0 0 40px;
    width: 40px;
    gap: 10px;
  }

  .header-actions > .theme-toggle {
    display: none;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .tooltip {
    display: none;
  }

  .menu-button {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fefefe;
    cursor: pointer;
  }

  .menu-button span {
    width: 32px;
    height: 4px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms var(--ease), opacity 180ms var(--ease);
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    gap: 4px;
  }

  .hero {
    min-height: 456px;
  }

  .hero-media {
    background:
      var(--hero-mobile-scrim),
      radial-gradient(circle at 88% 34%, rgba(12, 160, 97, 0.42), transparent 34%),
      var(--hero-image) var(--hero-mobile-position) / auto 100% no-repeat;
  }

  .hero-content {
    padding: 125px 16px 34px;
  }

  .hero-content.reveal {
    opacity: 1;
    transform: none;
  }

  .hero h1 {
    max-width: 328px;
    font-size: 20px;
    line-height: 1.2;
  }

  .hero p {
    max-width: 328px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 500;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .button {
    min-width: 160px;
    min-height: 36px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .text-link {
    width: 109px;
    min-height: 14px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }

  .mobile-break {
    display: block;
  }

  .support-band {
    min-height: 124px;
    align-items: start;
    padding-block: 0;
  }

  .support-copy {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    width: calc(100% - 32px);
    height: 124px;
    margin-inline: auto;
    padding-inline: 0;
    min-width: 0;
  }

  .support-copy p {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 10px;
    line-height: normal;
    font-weight: 400;
    overflow-wrap: anywhere;
    word-break: break-word;
    overflow: hidden;
  }

  .support-logos {
    width: 205.253px;
    height: 66px;
    justify-content: flex-start;
    gap: 14.08px;
  }

  body[data-theme="light"] .support-logos {
    width: max-content;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 14px;
    background: rgba(6, 18, 14, 0.78);
    box-shadow: 0 12px 38px rgba(0, 60, 36, 0.18);
    backdrop-filter: blur(8px);
  }

  .project-support-logo {
    width: 85.047px;
    height: 66px;
  }

  .fund-support-logo {
    width: 116.021px;
    height: 66px;
  }

  .section-inner {
    padding-inline: 16px;
  }

  .product-section {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 74px;
  }

  .bg-benefits {
    background:
      radial-gradient(circle at 92% 10%, rgba(13, 141, 93, 0.32), transparent 26%),
      radial-gradient(circle at -20% 34%, rgba(13, 141, 93, 0.26), transparent 28%);
  }

  .product-grid {
    gap: 20px;
  }

  .product-copy h2,
  .trust-block h2,
  .materials-layout h2,
  .team-layout h2,
  .contacts-layout h2 {
    font-size: 31px;
    line-height: 1.18;
  }

  .product-copy h2,
  .product-copy p {
    width: 100%;
    max-width: 328px;
  }

  .product-copy p {
    margin-top: 20px;
    font-size: 30px;
    line-height: 1.18;
  }

  .request-card {
    width: 234px;
    min-height: 144px;
    justify-self: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 28px;
  }

  .request-card p {
    font-size: 18px;
    line-height: 1.12;
  }

  .request-card .button {
    min-width: 160px;
    min-height: 36px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .trust-block {
    margin-top: 70px;
  }

  .trust-block h2 {
    margin-bottom: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: 160px;
    padding: 24px;
    border-radius: 20px;
  }

  .feature-card-compact {
    min-height: 130px;
  }

  .feature-icons span,
  .card-top span,
  .team-name span {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  .feature-icons span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .feature-card h3 {
    max-width: 240px;
    font-size: 22px;
    line-height: 1.14;
  }

  .process-section {
    min-height: auto;
    display: block;
    padding: 74px 0 0;
    background: #07100d;
  }

  .process-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding-top: 0;
    transform: none;
    align-self: start;
  }

  .process-copy p {
    max-width: 328px;
    font-size: 22px;
    line-height: 1.18;
  }

  .process-media {
    width: min(450px, calc(100% + 90px));
    min-width: 0;
    height: 236px;
    display: grid;
    place-items: end center;
    margin: 24px auto 0;
    padding: 0 0 28px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(3, 5, 4, 0.1), rgba(3, 5, 4, 0.22)),
      url("assets/print-process.png") center / cover no-repeat;
    box-shadow: none;
    font-size: 12px;
  }

  .process-control {
    min-width: 146px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111614;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  }

  .play-mark {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .materials-team-section {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .bg-materials {
    background:
      radial-gradient(circle at 88% 13%, rgba(13, 141, 93, 0.28), transparent 25%),
      radial-gradient(circle at 7% 55%, rgba(13, 141, 93, 0.2), transparent 30%);
  }

  .materials-layout {
    gap: 20px;
  }

  .materials-layout h2 {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
  }

  .team-layout h2 {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
  }

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

  .material-card-small {
    grid-row: auto;
    justify-self: stretch;
    width: auto;
  }

  .material-card {
    min-height: 160px;
    padding: 20px 24px 24px;
    border-radius: 20px;
  }

  .card-top h3 {
    font-size: 22px;
  }

  .material-card p {
    max-width: 280px;
    font-size: 22px;
    line-height: 1.16;
  }

  .team-layout {
    margin-top: 74px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .team-card {
    min-height: 384px;
    padding: 26px;
    border-radius: 20px;
  }

  body[data-theme="dark"] .team-card {
    border: 0.4px solid #ffffff;
  }

  .team-name {
    gap: 8px;
  }

  .team-name h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
  }

  .team-name .team-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .team-photo {
    width: 212px;
    height: 212px;
    border-radius: 10px;
  }

  .team-card p {
    max-width: 268px;
    font-size: 18px;
    line-height: 1.22;
  }

  .team-card:nth-child(1) p { max-width: 217px; }
  .team-card:nth-child(2) p { max-width: 268px; }
  .team-card:nth-child(3) p { max-width: 224px; }

  .achievements-section {
    padding-block: 74px;
  }

  .timeline-mobile {
    display: block;
    width: 328px;
    min-height: 350px;
    margin: 0 auto;
    padding: 0;
  }

  .timeline-mobile::before {
    left: 9px;
    top: 12px;
    bottom: auto;
    width: 4px;
    height: 324px;
  }

  .timeline-mobile::after {
    content: "";
    position: absolute;
    left: 0;
    top: 328px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
  }

  .timeline-mobile li {
    position: absolute;
    left: 32px;
    width: 296px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
  }

  .timeline-mobile li::before {
    left: -28px;
    top: 2px;
    width: 14px;
    height: 14px;
  }

  .timeline-mobile li:has(strong)::before {
    left: -32px;
    top: 1px;
    width: 22px;
    height: 22px;
  }

  .timeline-mobile li strong {
    color: var(--green);
    font-size: 20px;
    line-height: 1.2;
  }

  .timeline-mobile li:nth-child(1) { top: 0; }
  .timeline-mobile li:nth-child(2) { top: 46px; }
  .timeline-mobile li:nth-child(3) { top: 104px; }
  .timeline-mobile li:nth-child(4) { top: 150px; }
  .timeline-mobile li:nth-child(5) { top: 184px; }
  .timeline-mobile li:nth-child(6) { top: 218px; }
  .timeline-mobile li:nth-child(7) { top: 288px; }

  .contacts-section {
    padding: 74px 0 56px;
  }

  .contacts-layout h2 {
    max-width: 328px;
    font-size: 28px;
    line-height: 1.12;
  }

  .contact-actions {
    display: grid;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .contact-pill {
    min-width: 200px;
    min-height: 47px;
    padding-inline: 22px;
    font-size: 16px;
  }

  .vk-section {
    min-height: 430px;
  }

  .vk-content {
    align-items: start;
    justify-items: start;
    text-align: left;
    width: min(100% - 32px, 328px);
  }

  .vk-content h2 {
    width: 100%;
    max-width: 328px;
    text-align: left;
    font-size: 28px;
    line-height: 1.14;
  }

  .vk-content p {
    width: 100%;
    max-width: 300px;
    margin-top: 14px;
    font-size: 18px;
    text-align: left;
  }

  .vk-content .button {
    min-height: 47px;
    margin-top: 28px;
    padding-inline: 24px;
    font-size: 16px;
  }

  .impact-section {
    min-height: auto;
    padding-block: 72px;
  }

  .impact-copy {
    gap: 18px;
  }

  .impact-copy p {
    max-width: 328px;
    font-size: 22px;
    line-height: 1.28;
  }

  .site-footer {
    min-height: 98px;
    padding: 24px 16px;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .hero p,
  .product-copy h2,
  .product-copy p,
  .trust-block h2,
  .materials-layout h2,
  .team-layout h2,
  .contacts-layout h2,
  .impact-copy p {
    overflow-wrap: anywhere;
  }

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