@font-face {
  font-family: "Onest";
  src: url("/assets/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Onest", Arial, sans-serif;
  color: #0b0e0e;
  background: #f4f5f3;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  --page: #f4f5f3;
  --surface: #ffffff;
  --ink: #0b0e0e;
  --muted: #586260;
  --soft: #d9ebea;
  --teal: #0aa7a0;
  --teal-bright: #0dc4bd;
  --teal-dark: #087f7a;
  --telegram: #147dab;
  --red: #ec4d64;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --page-gutter: clamp(20px, 5.55vw, 80px);
  --section-space: clamp(72px, 8vw, 124px);
}

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

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

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background: var(--page);
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button:not(:disabled),
a {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal) 76%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 99px;
  color: #fff;
  background: #101817;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: 1760px;
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  width: calc(100% - 56px);
  max-width: 1864px;
  height: 64px;
  padding: 0 9px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 44px rgba(17, 45, 43, 0.07);
  transform: translateX(-50%);
  animation: header-in 680ms 80ms var(--ease-out) both;
  backdrop-filter: blur(16px);
}

@keyframes header-in {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 40px;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: 154px;
  height: 40px;
}

.brand-logo__vector {
  position: absolute;
  object-fit: contain;
}

.brand-logo__vector--left {
  top: 1px;
  left: 1px;
  width: 143px;
  height: 29px;
}

.brand-logo__vector--right {
  right: 1px;
  bottom: 1px;
  width: 76px;
  height: 31px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 14px 0;
  color: #47504f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--teal-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  height: 50px;
  margin-left: 33px;
  border-radius: 26px;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(10, 167, 160, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #e7f4f2;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-dark);
  transition: transform 240ms var(--ease-out), opacity 160ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  gap: clamp(32px, 4.5vw, 82px);
  align-items: center;
  min-height: 826px;
  padding-top: 112px;
  padding-bottom: 56px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.hero-enter {
  animation: hero-copy-in 820ms 160ms var(--ease-out) both;
}

.hero-enter--visual {
  animation-name: hero-visual-in;
  animation-delay: 260ms;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateY(24px) scale(0.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #9a9f9e;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 11px 0 20px;
  font-size: clamp(48px, 4.25vw, 72px);
  font-weight: 790;
  line-height: 0.83;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero h1 em,
.result h2 em,
.statement h2 em,
.form-heading em {
  color: var(--teal);
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin: 0;
  color: #505958;
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.15;
  text-wrap: balance;
}

.hero-counter {
  position: relative;
  display: grid;
  width: 216px;
  height: 216px;
  margin: 24px 0 30px;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 18px 30px rgba(18, 55, 51, 0.08));
  transition: transform 240ms var(--ease-out), filter 240ms ease;
}

.hero-counter:hover {
  filter: drop-shadow(0 22px 36px rgba(18, 55, 51, 0.13));
  transform: translateY(-3px);
}

.hero-counter svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero-counter circle {
  fill: #fff;
  stroke-width: 2.6;
}

.hero-counter__track { stroke: #dce2e1; }
.hero-counter__progress {
  fill: none !important;
  stroke: var(--teal);
  stroke-dasharray: 433.54;
  stroke-dashoffset: 433.54;
  stroke-linecap: round;
}

.hero-counter__dot {
  fill: var(--teal) !important;
  stroke: #fff;
  stroke-width: 2.5 !important;
  transform-box: view-box;
  transform-origin: 80px 80px;
  will-change: transform;
}

.hero-counter div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-counter strong {
  font-size: 52px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero-counter span {
  margin-top: 7px;
  color: #7c8584;
  font-size: 13px;
  line-height: 1.18;
}

.hero__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 29px;
  border: 1px solid var(--teal);
  border-radius: 29px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--teal);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(10, 167, 160, 0.22);
}

.button--ghost {
  color: var(--teal-dark);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: #fff;
  background: var(--teal);
}

.hero__visual {
  position: relative;
  align-self: center;
  min-width: 0;
}

.hero-photo {
  position: relative;
  height: min(650px, 66vw);
  min-height: 560px;
  overflow: hidden;
  border-radius: clamp(34px, 3.3vw, 48px);
  background: #d8ece9;
  box-shadow: 0 24px 70px rgba(19, 43, 41, 0.08);
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 48%;
}

.hero-photo__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  gap: 22px;
  align-items: center;
  min-height: 100px;
  padding: 18px clamp(24px, 4vw, 48px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 38px rgba(9, 41, 39, 0.1);
  backdrop-filter: blur(8px);
}

.hero-photo__label strong {
  color: var(--teal-dark);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-photo__label span {
  color: #454e4d;
  font-size: 13px;
  line-height: 1.25;
}

.hero-photo__bubble {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 13px rgba(255, 255, 255, 0.16);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: -62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: var(--page);
  transform: rotate(-9deg);
}

.hero-stamp span {
  font-size: 30px;
  font-weight: 900;
  line-height: 0.88;
}

.hero-stamp small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stamp--support {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: rgba(244, 245, 243, 0.97);
  transform: rotate(-7deg);
}

.hero-stamp--support small {
  max-width: 92px;
  line-height: 1.05;
  text-align: center;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.petition {
  padding-top: 40px;
}

.manifest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 330px;
  margin-top: 48px;
  padding: 44px 62px 22px min(41vw, 510px);
  overflow: hidden;
  border-radius: 50px;
  color: #fff;
  background: var(--teal);
  isolation: isolate;
}

.manifest-card::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background: url("/assets/figma/dot-texture.png") center / cover;
  mix-blend-mode: soft-light;
}

.manifest-card__car {
  position: absolute;
  z-index: 2;
  bottom: -102px;
  left: 10px;
  width: min(42vw, 520px);
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(4, 78, 74, 0.16));
}

.manifest-card__metric {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 4px;
}

.manifest-card__metric strong {
  font-size: clamp(52px, 5.25vw, 74px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.manifest-card__metric span {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.manifest-card__bubble {
  position: relative;
  width: 100%;
  margin-top: 25px;
  padding: 20px 43px;
  border-radius: 40px;
  color: #111;
  background: #fff;
}

.manifest-card__bubble::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -36px;
  border-width: 18px 40px 18px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.manifest-card__bubble p {
  margin: 0;
  font-size: 16px;
  line-height: 1.23;
}

.manifest-more {
  display: grid;
  width: 100%;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 440ms var(--ease-out), opacity 260ms ease, transform 440ms var(--ease-out);
}

.manifest-more__inner {
  min-height: 0;
  overflow: hidden;
}

.manifest-more.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.manifest-more__inner p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.45;
}

.text-toggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font-weight: 750;
}

.text-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 300ms var(--ease-out);
}

.text-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.text-toggle--light {
  color: #fff;
}

.section-heading--with-controls {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.carousel-controls {
  position: absolute;
  right: 0;
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: color-mix(in srgb, var(--teal) 28%, white);
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.carousel-controls button:hover:not(:disabled),
.carousel-controls button:focus-visible:not(:disabled) {
  background: var(--teal);
  transform: scale(1.06);
}

.carousel-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.measures-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.measure-card {
  display: flex;
  flex-direction: column;
  min-height: 334px;
  padding: 25px 30px 26px;
  border-radius: 40px;
  background: #fff;
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.measure-card:hover {
  box-shadow: 0 22px 50px rgba(18, 46, 43, 0.08);
  transform: translateY(-6px);
}

.measure-card__tag {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  height: 43px;
  border-radius: 99px;
  background: var(--soft);
}

.measure-card__tag span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-left: -1px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 17px;
  font-weight: 700;
}

.measure-card__tag strong {
  padding: 0 22px 0 12px;
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.measure-card h3 {
  margin: 38px 0 0;
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 690;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.measure-card p {
  max-width: 420px;
  margin: 16px 0 24px;
  font-size: 16px;
  line-height: 1.18;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 161px;
  min-height: 44px;
  margin-top: auto;
  padding: 0 28px;
  border: 1px solid var(--teal);
  border-radius: 99px;
  color: var(--teal);
  background: transparent;
  font-size: 16px;
  font-weight: 650;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out);
}

.card-link:hover,
.card-link:focus-visible {
  color: #fff;
  background: var(--teal);
  transform: translateY(-2px);
}

.result {
  position: relative;
  min-height: 0;
  padding-block: clamp(58px, 5vw, 78px);
  background: var(--soft);
}

.result__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  text-align: center;
}

.result h2 em {
  color: var(--teal);
}

.result__summary {
  margin: 22px 0 0;
  color: #54605e;
  font-size: 20px;
  line-height: 1.2;
}

.result__summary strong {
  color: #111;
}

.result__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.result__benefits li {
  display: flex;
  align-items: center;
  min-height: 85px;
  padding: 18px 22px;
  border-radius: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.12;
}

.result__benefits span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin-right: 13px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.statement {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  min-height: 720px;
}

.statement__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.5;
  box-shadow: 0 20px 50px rgba(20, 46, 43, 0.08);
}

.statement__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement__copy {
  position: relative;
  padding-left: 78px;
}

.quote-mark {
  position: absolute;
  top: -4px;
  left: 0;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 128px;
  line-height: 0.8;
}

.statement__body > p {
  max-width: 760px;
  margin: 0;
  color: #596361;
  font-size: 17px;
  line-height: 1.3;
}

.statement-toggle {
  display: none;
}

.statement h2 {
  max-width: 820px;
  margin: 26px 0 0;
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.statement h2 em {
  display: block;
  color: var(--teal);
}

.author-card {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 34px;
}

.author-card__avatar {
  display: block;
  width: 54px;
  height: 54px;
  margin-right: 13px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 8px 22px rgba(11, 47, 43, 0.14);
}

.author-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.author-card small {
  color: #7c8584;
  font-size: 12px;
}

.author-card strong {
  margin-top: 3px;
  font-size: 15px;
}

.sign {
  width: min(100%, 1920px);
  min-height: 650px;
  margin-inline: auto;
  padding-block: 52px;
  border-radius: 60px;
  color: #fff;
  background: var(--teal);
}

.sign__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: center;
  min-height: 546px;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.84);
}

.sign__intro h2 {
  margin: 15px 0 20px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.sign__intro > p:not(.section-kicker) {
  max-width: 500px;
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.signature-counter {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.88);
}

.signature-counter strong {
  font-size: clamp(82px, 8vw, 112px);
  font-variant-numeric: tabular-nums;
  line-height: 0.85;
}

.signature-counter span {
  margin-top: 24px;
  font-size: 18px;
}

.sign-form {
  display: flex;
  flex-direction: column;
  width: min(100%, 580px);
  min-height: 530px;
  justify-self: end;
  padding: 26px 36px 30px;
  border-radius: 60px;
  color: #111;
  background: #fff;
}

.sign-form.is-telegram-complete {
  min-height: 330px;
  justify-content: center;
}

.form-heading {
  text-align: center;
}

.form-heading span {
  font-size: 30px;
  font-weight: 750;
  line-height: 1;
}

.telegram-sign,
.form-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 99px;
}

.telegram-action,
.manual-signature {
  display: flex;
  flex-direction: column;
}

.manual-signature {
  min-height: 0;
  flex: 1;
}

.telegram-sign {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  padding: 0 76px 0 54px;
  color: #fff;
  background: var(--telegram);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms var(--ease-out);
}

.telegram-sign > svg {
  position: absolute;
  left: 21px;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.telegram-sign:hover,
.telegram-sign:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.telegram-sign:disabled {
  opacity: 0.7;
  filter: saturate(0.72);
  transform: none;
}

.telegram-sign small {
  position: absolute;
  top: 50%;
  right: 19px;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  transform: translateY(-50%);
}

.telegram-sign__spinner {
  position: absolute;
  left: 22px;
  display: none;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.telegram-sign.is-loading > svg { display: none; }
.telegram-sign.is-loading .telegram-sign__spinner { display: block; }
.telegram-sign.is-loading small { display: none; }

.telegram-note {
  margin: 8px 0 0;
  color: #687270;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.telegram-status {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  margin-top: 12px;
  padding: 11px 14px;
  border: 1px solid #d5dfdd;
  border-radius: 20px;
  color: #33403e;
  background: #f3f6f5;
  font-size: 12px;
  line-height: 1.35;
  animation: telegram-status-in 280ms var(--ease-out) both;
}

.telegram-status[hidden] { display: none; }
.telegram-status:focus { outline: none; }

.telegram-status__icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #71817e;
  font-size: 16px;
  font-weight: 800;
}

.telegram-status__symbol {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.telegram-status__symbol--success,
.telegram-status__symbol--error {
  display: none;
}

.telegram-status p { margin: 0; }

.telegram-status.is-success {
  border-color: rgba(10, 139, 133, 0.25);
  color: #075f5b;
  background: #e9f7f5;
}

.telegram-status.is-success .telegram-status__icon { background: var(--teal-dark); }
.telegram-status.is-success .telegram-status__symbol--info { display: none; }
.telegram-status.is-success .telegram-status__symbol--success { display: block; }

.telegram-status.is-error {
  border-color: rgba(167, 32, 53, 0.22);
  color: #8f1d30;
  background: #fff2f4;
}

.telegram-status.is-error .telegram-status__icon { background: #a72035; }
.telegram-status.is-error .telegram-status__symbol--info { display: none; }
.telegram-status.is-error .telegram-status__symbol--error { display: block; }

.sign-form.is-telegram-complete .telegram-sign,
.sign-form.is-telegram-complete .telegram-note,
.sign-form.is-telegram-complete .manual-signature {
  display: none;
}

.sign-form.is-telegram-complete .telegram-status {
  min-height: 92px;
  margin-top: 30px;
  padding: 18px 20px;
  grid-template-columns: 38px minmax(0, 1fr);
  border-radius: 26px;
  font-size: 15px;
}

.sign-form.is-telegram-complete .telegram-status__icon {
  width: 38px;
  height: 38px;
  font-size: 22px;
}

@keyframes telegram-status-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  text-transform: uppercase;
}

.form-separator span {
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.field > span {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 28px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  pointer-events: none;
  transition: transform 180ms var(--ease-out), font-size 180ms ease, color 180ms ease;
}

.field:focus-within > span,
.field.has-value > span {
  color: var(--teal-dark);
  font-size: 10px;
  transform: translateY(-10px);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  color: #111;
  background: #e1e1e1;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input {
  height: 50px;
  padding: 18px 28px 6px;
}

.field textarea {
  min-height: 102px;
  padding: 27px 28px 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: #f1f5f4;
  box-shadow: 0 0 0 3px rgba(10, 167, 160, 0.12);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #b93045;
  background: #fff4f5;
}

.check-control {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 4px;
  color: #242727;
  font-size: 11px;
  line-height: 1.25;
}

.consent-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.consent-stack .check-control {
  min-height: 44px;
  margin-top: 0;
  padding-block: 5px;
  font-size: 12px;
  line-height: 1.35;
}

.check-control--required {
  padding-bottom: 12px;
  border-bottom: 1px solid #e5ebea;
}

.check-control input {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.check-control__box {
  display: grid;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid #111;
  border-radius: 2px;
  background: #fff;
  pointer-events: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.check-control__box svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0;
}

.check-control input:checked + .check-control__box {
  border-color: var(--teal);
  background: var(--teal);
}

.check-control input:checked + .check-control__box svg { opacity: 1; }
.check-control input:focus-visible + .check-control__box { outline: 3px solid rgba(10, 167, 160, 0.28); }
.check-control.is-invalid .check-control__box { border-color: #b93045; background: #fff4f5; }
.check-control a { color: var(--teal-dark); }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.form-error {
  min-height: 16px;
  margin: 6px 0 4px;
  color: #a72035;
  font-size: 12px;
  line-height: 1.25;
}

.form-submit {
  position: relative;
  margin-top: auto;
  background: var(--teal-bright);
}

.form-submit i {
  display: none;
  width: 19px;
  height: 19px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.form-submit.is-loading i { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.faq {
  min-height: 0;
  overflow-anchor: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
  margin-top: 58px;
  overflow-anchor: none;
}

.faq-item {
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  transition: box-shadow 260ms ease;
}

.faq-item.is-open {
  box-shadow: 0 16px 40px rgba(14, 45, 41, 0.04);
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 65px;
  padding: 18px 68px 18px 35px;
  border: 0;
  text-align: left;
  background: transparent;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.16;
}

.faq-item h3 button:focus-visible {
  outline: none;
  border-radius: 40px;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--teal) 72%, white);
}

.faq-item h3 button:focus-visible span {
  text-decoration: none;
}

.faq-item h3 button i,
.faq-item h3 button i::after {
  position: absolute;
  top: 50%;
  right: 35px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: translateY(-50%);
  transition: transform 300ms var(--ease-out), opacity 180ms ease;
}

.faq-item h3 button i::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-item.is-open h3 button i::after {
  opacity: 0;
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 380ms var(--ease-out), opacity 240ms ease;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  max-width: 1000px;
  margin: 0 68px 0 35px;
  padding: 4px 0 25px;
  color: #515b59;
  font-size: 16px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  width: min(100%, 1920px);
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 44px 44px 0 0;
  color: #fff;
  background: var(--teal);
  isolation: isolate;
}

.share-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(540px, 1.38fr);
  gap: 32px;
  align-items: center;
  padding: 36px 0 30px;
  text-align: left;
}

.share-block .section-kicker { display: none; }

.share-block h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.share-block h2 br { display: none; }

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.share-buttons a,
.share-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 0;
  border-radius: 99px;
  color: #15201f;
  background: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.share-buttons a:hover,
.share-buttons button:hover,
.share-buttons a:focus-visible,
.share-buttons button:focus-visible {
  color: var(--teal-dark);
  box-shadow: 0 10px 20px rgba(3, 71, 68, 0.16);
  transform: translateY(-2px);
}

.share-buttons button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.brand--footer {
  filter: brightness(0) invert(1);
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.footer-bottom a {
  text-underline-offset: 3px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(9, 18, 17, 0.58);
  transition: opacity 220ms ease;
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  padding: clamp(34px, 6vw, 64px);
  overflow-y: auto;
  border-radius: 44px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.2);
  transform: translateY(24px) scale(0.97);
  transition: opacity 220ms ease, transform 360ms var(--ease-out);
}

.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__dialog { opacity: 1; transform: translateY(0) scale(1); }

.modal__close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 48px;
  height: 48px;
  margin: -14px -14px 12px 20px;
  border: 0;
  border-radius: 50%;
  background: #e7f3f2;
  transition: transform 180ms var(--ease-out), background-color 180ms ease;
}

.modal__close:hover,
.modal__close:focus-visible { background: var(--soft); transform: rotate(4deg); }
.modal__close span {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 20px;
  height: 2px;
  background: var(--teal-dark);
  transform: rotate(45deg);
}
.modal__close span:last-child { transform: rotate(-45deg); }

.modal__eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.modal h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.modal__body p {
  margin: 26px 0 0;
  color: #4c5755;
  font-size: 17px;
  line-height: 1.55;
}

.toast {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  max-width: min(410px, calc(100% - 44px));
  padding: 14px 20px;
  border-radius: 18px;
  color: #fff;
  background: #14201e;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 720ms var(--ease-out);
}

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

@media (min-width: 1600px) {
  :root { --page-gutter: 80px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(600px, 0.82fr); }
  .hero-photo { height: 680px; }
  .hero h1 { font-size: 76px; }
  .manifest-card { padding-left: 560px; }
  .manifest-card__car { width: 560px; }
}

@media (max-width: 1380px) and (min-width: 941px) {
  .measures-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .measure-card {
    min-height: 315px;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 38px;
  }
  .hero h1 { font-size: 50px; }
  .hero-photo__label { grid-template-columns: 1fr; gap: 6px; }
  .hero-photo__label span br { display: none; }
  .manifest-card { padding-left: 45%; padding-right: 38px; }
  .manifest-card__car { width: 46%; }
  .statement { grid-template-columns: minmax(340px, 0.9fr) minmax(450px, 1.1fr); gap: 44px; }
  .statement__copy { padding-left: 60px; }
  .sign__inner { gap: 55px; }
}

@media (max-width: 1060px) {
  .sign__inner {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 30px;
  }
  .sign__intro { text-align: center; }
  .sign__intro > p:not(.section-kicker) { margin-inline: auto; }
  .signature-counter { align-items: center; margin-top: 42px; padding: 0; border: 0; }
  .sign-form { justify-self: center; }
}

@media (max-width: 940px) {
  :root {
    --page-gutter: clamp(20px, 4.2vw, 36px);
    --section-space: clamp(66px, 9vw, 96px);
  }

  .site-header {
    top: 16px;
    width: calc(100% - 32px);
    height: 60px;
    padding-left: 18px;
  }
  .site-header .brand { margin-right: auto; }
  .header-cta { min-width: 124px; height: 46px; margin-left: 10px; }
  .menu-toggle { position: relative; display: block; order: 2; }
  .header-cta { order: 3; }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch;
    width: min(280px, calc(100vw - 32px));
    padding: 13px;
    border-radius: 25px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(15, 44, 41, 0.12);
    pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top right;
    transition: opacity 200ms ease, transform 280ms var(--ease-out);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav a { padding: 13px 17px; border-radius: 16px; }
  .main-nav a:hover { background: #edf7f6; }
  .main-nav a::after { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 118px;
    padding-bottom: 40px;
  }
  .hero__copy { order: 1; }
  .hero__visual { order: 2; width: min(680px, 100%); justify-self: center; }
  .hero h1 { max-width: 680px; font-size: clamp(48px, 8vw, 66px); }
  .hero-photo { height: min(680px, 88vw); min-height: 520px; }
  .hero-stamp { top: -28px; left: -22px; }

  .manifest-card {
    padding: 340px 38px 28px;
  }
  .manifest-card__car {
    top: -74px;
    bottom: auto;
    left: 50%;
    width: 440px;
    transform: translateX(-50%);
  }
  .manifest-card__metric { align-self: center; }
  .manifest-card__bubble::before { display: none; }

  .section-heading--with-controls { justify-content: flex-start; text-align: left; }
  .section-heading--with-controls h2 { max-width: 570px; }
  .carousel-controls { right: var(--page-gutter); }
  .measures-carousel {
    display: flex;
    gap: 18px;
    margin-right: calc(var(--page-gutter) * -1);
    padding-right: var(--page-gutter);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .measures-carousel::-webkit-scrollbar { display: none; }
  .measure-card { flex: 0 0 min(430px, 78vw); scroll-snap-align: start; scroll-snap-stop: always; }

  .result__benefits { grid-template-columns: 1fr; gap: 12px; max-width: 720px; }
  .result { min-height: 0; padding-block: 64px; }
  .result__inner { min-height: 0; padding-block: 0; }

  .statement {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  .statement__photo { width: min(680px, 100%); justify-self: center; }
  .statement__copy { width: min(760px, 100%); justify-self: center; }

  .sign {
    border-radius: 46px;
  }
  .sign__inner {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 30px;
  }
  .sign__intro { text-align: center; }
  .sign__intro > p:not(.section-kicker) { margin-inline: auto; }
  .signature-counter { align-items: center; margin-top: 42px; padding: 0; border: 0; }
  .sign-form { justify-self: center; }

  .share-block { grid-template-columns: 1fr; gap: 20px; padding-block: 34px 30px; text-align: center; }
  .share-buttons { justify-content: center; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; padding-block: 26px; text-align: center; }
  .brand--footer { justify-self: center; }
  .footer-bottom nav { flex-wrap: wrap; gap: 14px 24px; }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 16px;
    --section-space: 70px;
  }

  html { scroll-padding-top: 78px; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 56px; padding: 0 6px 0 14px; }
  .brand, .brand-logo { width: 124px; height: 34px; }
  .brand-logo__vector--left { width: 116px; height: 24px; }
  .brand-logo__vector--right { width: 62px; height: 26px; }
  .header-cta { display: none; }
  .menu-toggle { width: 44px; height: 44px; }
  .main-nav { top: 62px; }

  .hero { gap: 36px; padding-top: 98px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { margin: 9px 0 17px; font-size: clamp(40px, 13.6vw, 56px); line-height: 0.86; }
  .hero__lead { max-width: 410px; font-size: 16px; line-height: 1.25; }
  .hero-counter { width: 184px; height: 184px; margin: 24px 0 28px; }
  .hero-counter strong { font-size: 46px; }
  .hero-counter span { font-size: 12px; }
  .hero__actions { width: 100%; flex-direction: column; }
  .button { width: 100%; min-height: 52px; }
  .hero-photo { min-height: 0; height: 520px; border-radius: 34px; }
  .hero-photo > img { object-position: 32% 48%; transform: none; }
  .hero-photo__label { right: 12px; bottom: 12px; left: 12px; min-height: 105px; padding: 18px 22px; border-radius: 24px; }
  .hero-photo__label strong { font-size: 26px; }
  .hero-photo__label span { font-size: 12px; }
  .hero-photo__bubble { top: 17px; right: 17px; width: 48px; height: 48px; }
  .hero-stamp { top: -18px; left: -6px; width: 100px; height: 100px; }
  .hero-stamp span { font-size: 23px; }

  .petition { padding-top: 54px; }
  .section-heading h2 { font-size: 36px; }
  .manifest-card { margin-top: 35px; padding: 250px 20px 24px; border-radius: 34px; }
  .manifest-card__car { top: -35px; width: 340px; }
  .manifest-card__metric { flex-direction: column; gap: 8px; align-items: flex-start; align-self: flex-start; }
  .manifest-card__metric strong { font-size: clamp(48px, 16vw, 62px); }
  .manifest-card__metric span { font-size: 12px; }
  .manifest-card__bubble { margin-top: 20px; padding: 20px 22px; border-radius: 26px; }
  .manifest-card__bubble p { font-size: 14px; line-height: 1.35; }
  .manifest-more__inner p { font-size: 14px; }

  .section-heading--with-controls { padding-right: 104px; }
  .carousel-controls button { width: 44px; height: 44px; }
  .measures-carousel { gap: 16px; margin-right: 0; padding-right: 0; }
  .measure-card { flex: 0 0 100%; max-width: 100%; min-height: 340px; padding: 24px; border-radius: 32px; scroll-snap-stop: always; }
  .measure-card__tag { max-width: 100%; }
  .measure-card__tag strong { font-size: 15px; }
  .measure-card h3 { font-size: 28px; }

  .result { padding-block: 50px; }
  .result__summary { margin-top: 18px; font-size: 17px; }
  .result__benefits { margin-top: 26px; }
  .result__benefits li { min-height: 78px; padding: 16px; font-size: 16px; }

  .statement { gap: 38px; }
  .statement__photo { border-radius: 20px; aspect-ratio: 1.35; }
  .statement__copy { padding-left: 0; padding-top: 60px; }
  .quote-mark { top: -12px; left: 0; font-size: 110px; }
  .statement__body {
    position: relative;
    display: flex;
    max-height: 286px;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 460ms var(--ease-out);
  }
  .statement__body::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 88px;
    opacity: 1;
    background: linear-gradient(to bottom, rgba(244, 245, 243, 0), var(--page) 82%);
    pointer-events: none;
    transition: opacity 220ms ease;
  }
  .statement__body > p { order: 2; margin-top: 24px; font-size: 16px; line-height: 1.42; }
  .statement h2 { order: 1; margin-top: 0; font-size: 33px; }
  .statement__copy.is-expanded .statement__body { max-height: 1120px; }
  .statement__copy.is-expanded .statement__body::after { opacity: 0; }
  .statement-toggle {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    min-height: 44px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    color: var(--teal-dark);
    background: transparent;
    font-size: 15px;
    font-weight: 750;
  }
  .statement-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 280ms var(--ease-out);
  }
  .statement-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .author-card { margin-top: 22px; }

  .sign { padding: 30px 0; border-radius: 36px; }
  .sign__inner { gap: 44px; }
  .sign__intro h2 { font-size: 46px; }
  .sign__intro > p:not(.section-kicker) { font-size: 18px; }
  .signature-counter strong { font-size: 84px; }
  .signature-counter span { margin-top: 16px; }
  .sign-form { min-height: 0; padding: 25px 18px 22px; border-radius: 34px; }
  .sign-form.is-telegram-complete { min-height: 280px; padding-block: 30px; }
  .form-heading span { font-size: 27px; }
  .telegram-sign { min-height: 52px; padding: 0 64px 0 48px; font-size: 15px; }
  .telegram-sign > svg { left: 17px; }
  .telegram-sign__spinner { left: 18px; }
  .telegram-sign small { right: 13px; }
  .telegram-note { font-size: 11px; }
  .telegram-status { grid-template-columns: 24px minmax(0, 1fr); padding: 10px 12px; border-radius: 18px; }
  .telegram-status__icon { width: 24px; height: 24px; font-size: 14px; }
  .sign-form.is-telegram-complete .telegram-status {
    min-height: 88px;
    margin-top: 24px;
    padding: 16px;
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 14px;
  }
  .sign-form.is-telegram-complete .telegram-status__icon { width: 34px; height: 34px; font-size: 19px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .check-control { font-size: 11px; }
  .consent-stack { gap: 12px; margin-top: 6px; }
  .consent-stack .check-control { font-size: 12px; line-height: 1.35; }
  .form-submit { margin-top: 16px; }

  .faq { min-height: 0; }
  .faq-list { gap: 12px; min-height: 0; margin-top: 40px; }
  .faq-item { border-radius: 28px; }
  .faq-item h3 button:focus-visible { border-radius: 28px; }
  .faq-item h3 button { min-height: 62px; padding: 19px 55px 19px 20px; font-size: 19px; line-height: 1.18; }
  .faq-item h3 button i { right: 21px; }
  .faq-answer p { margin-right: 22px; margin-left: 20px; padding: 5px 0 23px; font-size: 14px; line-height: 1.42; }

  .site-footer { min-height: 0; border-radius: 34px 34px 0 0; }
  .share-block { gap: 20px; padding: 34px 0 30px; }
  .share-block h2 { font-size: 28px; }
  .share-buttons { max-width: 390px; }
  .share-buttons a, .share-buttons button { min-height: 44px; padding: 0 17px; }
  .footer-bottom { gap: 16px; padding-block: 24px; }
  .footer-bottom nav { flex-direction: column; gap: 8px; }

  .modal { padding: 12px; }
  .modal__dialog { max-height: calc(100dvh - 24px); padding: 30px 22px; border-radius: 30px; }
  .modal__close { margin: -12px -6px 8px 16px; }
  .modal__body p { font-size: 16px; line-height: 1.48; }
}

@media (max-width: 420px) {
  .telegram-sign { padding-right: 18px; }
  .telegram-sign small { display: none; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 39px; }
  .hero-photo { height: 470px; }
  .manifest-card__metric { flex-direction: column; gap: 6px; align-items: flex-start; }
  .section-heading--with-controls { padding-right: 0; }
  .carousel-controls { position: static; margin-left: auto; }
  .section-heading--with-controls h2 { font-size: 32px; }
}

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