/**
 * Манифест женщин России — v3 «Bright Forward»
 * Aesthetic: Modern tech × Teal brand × Light & inspiring
 * Palette: Light base + Teal primary + Navy text
 */

/* ===================================================================
   0. CUSTOM PROPERTIES
   =================================================================== */

:root {
  /* --- Backgrounds --- */
  --bg-base:        #F8FAFB;
  --bg-white:       #FFFFFF;
  --bg-teal-light:  rgba(10, 209, 201, 0.04);
  --bg-teal-subtle: rgba(10, 209, 201, 0.08);

  /* --- Brand (Новые люди) --- */
  --brand-teal:      #0AD1C9;
  --brand-teal-dark: #089E98;
  --brand-teal-deep: #067A75;
  --brand-teal-glow: rgba(10, 209, 201, 0.15);

  /* --- Text --- */
  --text-primary:   #1A2B3C;
  --text-secondary: #4A5B6C;
  --text-muted:     #7A8B9C;
  --text-white:     #FFFFFF;

  /* --- Lines & borders --- */
  --border-light:   rgba(26, 43, 60, 0.08);
  --border-teal:    rgba(10, 209, 201, 0.3);
  --border-input:   rgba(26, 43, 60, 0.15);

  /* --- Shadows --- */
  --shadow-sm:      0 1px 3px rgba(26, 43, 60, 0.06);
  --shadow-md:      0 4px 12px rgba(26, 43, 60, 0.08);
  --shadow-lg:      0 8px 30px rgba(26, 43, 60, 0.1);
  --shadow-teal:    0 4px 20px rgba(10, 209, 201, 0.2);

  /* --- Typography --- */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* --- Spacing --- */
  --section-pad:    clamp(4rem, 8vw, 7rem);
  --inner-max:      1100px;

  /* --- Radius --- */
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* --- Transitions --- */
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
   1. RESET & BASE
   =================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  overflow-x: hidden;
}

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

a {
  color: var(--brand-teal-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand-teal);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand-teal);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 14px;
}

.skip-link:focus {
  top: 16px;
}

/* ===================================================================
   2. BUTTONS
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-teal);
  color: var(--text-white);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--brand-teal-dark);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(10, 209, 201, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--brand-teal-dark);
  border: 1.5px solid var(--border-teal);
}

.btn--outline:hover {
  background: var(--bg-teal-subtle);
  color: var(--brand-teal-dark);
}

.btn--sm {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn--md {
  font-size: 15px;
  padding: 12px 24px;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
}

.btn--block {
  width: 100%;
}

.btn--loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================================================
   3. NAVIGATION
   =================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(248, 250, 251, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--brand-teal-dark);
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  background: var(--brand-teal);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--brand-teal-dark);
  color: var(--text-white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 43, 60, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav__overlay.open {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1001;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 16px;
  }

  .nav__cta {
    font-size: 15px;
    padding: 12px 24px;
  }

  .nav__burger {
    display: flex;
    z-index: 1002;
  }

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

/* ===================================================================
   4. HERO
   =================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-base) 50%, rgba(10, 209, 201, 0.03) 100%);
}

.hero__gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(10, 209, 201, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(10, 209, 201, 0.3), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(10, 209, 201, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(10, 209, 201, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(10, 209, 201, 0.2), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(10, 209, 201, 0.15), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(10, 209, 201, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 60% 10%, rgba(10, 209, 201, 0.2), transparent);
  animation: drift 30s linear infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal-dark);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

/* Hero badge — "Против бабуинизации" */
.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--brand-teal-dark);
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--brand-teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================================================================
   5. STATS BAND
   =================================================================== */

.stats {
  padding: 60px 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stats__item {
  text-align: center;
  padding: 24px 16px;
}

.stats__number {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--brand-teal);
  margin-bottom: 8px;
  line-height: 1.2;
}

.stats__caption {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Stats band removed from DOM */

/* ===================================================================
   5b. COUNTER (Ring Progress)
   =================================================================== */

.counter {
  padding: clamp(4rem, 8vw, 6rem) 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,209,201,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.counter__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  position: relative;
}

.counter__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-teal-dark);
  margin-bottom: 48px;
  position: relative;
}

/* Ring */
.counter__ring-wrap {
  position: relative;
  width: 300px; height: 300px;
  margin: 0 auto 40px;
}

.counter__ring {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 20px rgba(10,209,201,0.08));
}

.counter__ring-outer {
  fill: none;
  stroke: rgba(10,209,201,0.04);
  stroke-width: 1;
}

.counter__ring-bg {
  fill: none;
  stroke: rgba(10,209,201,0.06);
  stroke-width: 4;
}

.counter__ring-tick {
  fill: none;
  stroke: rgba(10,209,201,0.08);
  stroke-width: 8;
  stroke-dasharray: 1.5 37.2;
  stroke-linecap: round;
}

.counter__ring-fill {
  fill: none;
  stroke: url(#tealGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 791.68;
  stroke-dashoffset: 791.68;
  transition: stroke-dashoffset 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.counter__ring-dot {
  fill: var(--brand-teal);
  filter: drop-shadow(0 0 6px rgba(10,209,201,0.6));
  animation: ringDotPulse 2.5s ease-in-out infinite;
}

@keyframes ringDotPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(10,209,201,0.4)); }
  50% { filter: drop-shadow(0 0 10px rgba(10,209,201,0.7)); }
}

/* Center content */
.counter__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.counter__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
}

.counter__divider {
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--brand-teal), transparent);
  margin: 14px auto;
  border-radius: 1px;
}

.counter__goal-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.counter__goal-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-teal-dark);
}

/* Percentage badge */
.counter__pct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-teal-dark);
  background: rgba(10,209,201,0.06);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.counter__pct-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-teal);
  animation: pctDotPulse 2s ease-in-out infinite;
}

@keyframes pctDotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.counter__label {
  font-size: 17px;
  color: var(--text-secondary);
  position: relative;
}

@media (max-width: 768px) {
  .counter {
    padding: clamp(3rem, 6vw, 4rem) 20px;
  }
  .counter__ring-wrap { width: 240px; height: 240px; }
  .counter__number { font-size: 48px; }
  .counter__goal-num { font-size: 18px; }
  .counter__kicker { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .counter__ring-wrap { width: 200px; height: 200px; }
  .counter__number { font-size: 40px; }
  .counter__goal-num { font-size: 16px; }
}

/* ===================================================================
   6. MANIFESTO
   =================================================================== */

.manifesto {
  padding: var(--section-pad) 24px;
}

.manifesto__inner {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.manifesto__stat {
  color: var(--brand-teal-dark);
  font-weight: 600;
}

.manifesto__text {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.manifesto__accent {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0;
  text-align: center;
}

.manifesto__accent--strong {
  color: var(--brand-teal-dark);
}

.manifesto__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), rgba(10, 209, 201, 0.3));
  margin: 3rem auto;
  border-radius: 2px;
}

/* ===================================================================
   7. ZAVETY
   =================================================================== */

.zavety {
  padding: var(--section-pad) 24px;
  background: var(--bg-teal-light);
}

.zavety__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.zavety__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}

.zavety__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.zavety__list {
  display: grid;
  gap: 20px;
}

/* --- Variant C: Editorial Watermark + Reveal --- */

.zavet {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  box-shadow: 0 1px 3px rgba(26, 43, 60, 0.04), 0 6px 20px rgba(26, 43, 60, 0.05);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.zavet:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26, 43, 60, 0.06), 0 12px 32px rgba(10, 209, 201, 0.08);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(10, 209, 201, 0.02) 100%);
}

.zavet__header {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 8px;
}

/* Watermark number — large, top-right */
.zavet__num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--brand-teal);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  background: none;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0;
  transition: opacity 0.4s ease;
}

.zavet:hover .zavet__num {
  opacity: 0.1;
}

/* Title — Playfair italic + teal underline */
.zavet__label {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.zavet__label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.zavet:hover .zavet__label::after {
  width: 60px;
}

.zavet__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 28px;
  max-width: 90%;
}

.zavet__link {
  font-size: 13px;
  margin-top: -16px;
  margin-bottom: 20px;
}
.zavet__link a {
  color: var(--brand-teal-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.zavet__link a:hover {
  border-bottom-color: var(--brand-teal-dark);
}

/* Suggest button — hidden, reveals on hover */
.zavet__suggest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-teal-dark);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}

.zavet:hover .zavet__suggest-btn {
  opacity: 1;
  transform: translateY(0);
}

.zavet__suggest-btn:hover {
  background: var(--bg-teal-subtle);
}

.zavet__suggest-btn[aria-expanded="true"] {
  opacity: 1;
  transform: translateY(0);
  background: var(--bg-teal-subtle);
}

.zavet__suggest-btn[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.zavet__suggest-btn svg {
  transition: transform var(--transition);
}

/* Suggest form inline */
.zavet__suggest-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
}

.zavet__suggest-form.expanded {
  max-height: 300px;
  opacity: 1;
}

.zavet__suggest-form[hidden] {
  display: none;
}

.zavet__suggest-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  resize: vertical;
  min-height: 80px;
  transition: border-color var(--transition);
  background: var(--bg-base);
  color: var(--text-primary);
}

.zavet__suggest-form textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.zavet__suggest-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.zavet__suggest-row input {
  flex: 1;
  min-width: 120px;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  background: var(--bg-base);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.zavet__suggest-row input:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.zavet__suggest-success {
  font-size: 14px;
  color: var(--brand-teal-dark);
  font-weight: 500;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--bg-teal-subtle);
  border-radius: var(--radius-sm);
}

/* Pause quote */
.zavety__pause {
  padding: 48px 24px;
  text-align: center;
}

.zavety__pause-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--brand-teal-dark);
  font-style: normal;
  line-height: 1.4;
}

/* ===================================================================
   8. ADDRESS
   =================================================================== */

.address {
  padding: var(--section-pad) 24px;
  background: var(--bg-white);
}

.address__inner {
  max-width: 720px;
  margin: 0 auto;
}

.address__text {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.address__accent {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-top: 2.5rem;
  text-align: center;
}

/* ===================================================================
   9. VOICES
   =================================================================== */

.voices {
  padding: var(--section-pad) 24px;
  background: var(--bg-base);
}

.voices__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.voices__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.voice-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-top: 3px solid var(--brand-teal);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.voice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.voice-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: normal;
}

.voice-card__meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Voices removed from DOM */

/* ===================================================================
   9b. GOAL BANNER
   =================================================================== */

.goal-banner {
  padding: clamp(4rem, 8vw, 6rem) 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #2A3B4C 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.goal-banner::before {
  content: '1M';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(150px, 25vw, 300px);
  font-weight: 900;
  color: rgba(10, 209, 201, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.goal-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.goal-banner__kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 16px;
}

.goal-banner__number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 16px;
}

.goal-banner__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ===================================================================
   10. SIGN
   =================================================================== */

.sign {
  padding: var(--section-pad) 24px;
  background: var(--bg-white);
}

.sign__inner {
  max-width: 600px;
  margin: 0 auto;
}

.sign__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sign__epigraph {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--text-primary);
  font-style: normal;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sign__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-teal-dark);
}

.sign__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sign__card {
  background: var(--bg-base);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.sign__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 24px;
}

/* ===================================================================
   11. FORMS
   =================================================================== */

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group--check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-teal);
}

.form-group--check label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-group--check label a {
  color: var(--brand-teal-dark);
  text-decoration: underline;
}

.sign-form__hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.sign-form__hint a {
  color: var(--brand-teal-dark);
}

.sign-form__success {
  text-align: center;
  padding: 32px 16px;
}

.sign-form__success-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-teal-dark);
  margin-bottom: 12px;
}

.sign-form__success-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sign-form__share {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .sign__card {
    padding: 28px 20px;
  }
}

/* --- Telegram button --- */
.btn--telegram {
  background: #2AABEE;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn--telegram:hover {
  background: #229ED9;
  transform: translateY(-1px);
  color: #fff;
}
.btn--telegram svg {
  flex-shrink: 0;
}

.sign__subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.sign__tg-btn {
  margin-bottom: 8px;
}

.sign__tg-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sign__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.sign__divider::before,
.sign__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.sign-form__success-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================================
   12. FAQ
   =================================================================== */

.faq {
  padding: var(--section-pad) 24px;
  background: var(--bg-base);
}

.faq__inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq__item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition);
  opacity: 1 !important;
  transform: none !important;
}

.faq__item:hover {
  border-color: var(--border-teal);
}

.faq__item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--brand-teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq__item p a {
  color: var(--brand-teal-dark);
  text-decoration: underline;
}

/* ===================================================================
   13. SHARE
   =================================================================== */

.share {
  padding: var(--section-pad) 24px;
  background: var(--bg-white);
  text-align: center;
}

.share__inner {
  max-width: 600px;
  margin: 0 auto;
}

.share__kicker {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-teal-dark);
  margin-bottom: 12px;
}

.share__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.share__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.share__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  background: var(--bg-base);
  color: var(--text-primary);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
}

.share__btn:hover {
  border-color: var(--brand-teal);
  background: var(--bg-teal-subtle);
  color: var(--brand-teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.share__btn svg {
  flex-shrink: 0;
}

.share__btn--tg:hover { color: #229ED9; border-color: #229ED9; }
.share__btn--vk:hover { color: #4C75A3; border-color: #4C75A3; }
.share__btn--wa:hover { color: #25D366; border-color: #25D366; }
.share__btn--ok:hover { color: #EE8208; border-color: #EE8208; }

.share__materials {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.share__materials-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.share__materials-btn {
  gap: 10px;
}

/* ===================================================================
   14. FOOTER
   =================================================================== */

.footer {
  padding: 48px 24px 32px;
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--brand-teal);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--brand-teal);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
  color: var(--brand-teal);
}

/* ===================================================================
   MOBILE POLISH
   =================================================================== */

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(3rem, 6vw, 5rem);
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero__scroll {
    bottom: 24px;
  }

  /* Manifesto */
  .manifesto {
    padding: var(--section-pad) 20px;
  }

  .manifesto__lead {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  /* Zavety — Variant C mobile */
  .zavety {
    padding: var(--section-pad) 20px;
  }

  .zavet {
    padding: 32px 24px 28px;
  }

  .zavet__num {
    font-size: 72px;
    top: 12px;
    right: 16px;
  }

  .zavet__label {
    font-size: 19px;
  }

  .zavet__text {
    font-size: 13.5px;
    max-width: 100%;
  }

  /* Button always visible on mobile (no hover) */
  .zavet__suggest-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .zavet__suggest-row {
    flex-direction: column;
  }

  .zavet__suggest-row input {
    width: 100%;
  }

  /* Address */
  .address {
    padding: var(--section-pad) 20px;
  }

  /* Sign */
  .sign {
    padding: var(--section-pad) 20px;
  }

  .sign__card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  /* FAQ */
  .faq {
    padding: var(--section-pad) 20px;
  }

  .faq__item summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq__item p {
    padding: 0 18px 16px;
    font-size: 13px;
  }

  /* Share */
  .share {
    padding: var(--section-pad) 20px;
  }

  .share__btns {
    gap: 10px;
  }

  .share__btn {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 28px;
  }

  .footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .footer__nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Sticky CTA — hidden on mobile */
  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero__tag {
    font-size: 12px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .zavet {
    padding: 28px 18px 24px;
  }

  .zavet__num {
    font-size: 56px;
    top: 10px;
    right: 12px;
  }

  .zavet__label {
    font-size: 17px;
  }

  .sign__card {
    padding: 24px 16px;
  }

  .share__btn {
    flex: 1 1 100%;
  }

  .faq__title {
    margin-bottom: 1.5rem;
  }
}

/* ===================================================================
   15. STICKY CTA
   =================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg), var(--shadow-teal);
}

/* ===================================================================
   16. UTILITIES & ANIMATIONS
   =================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 209, 201, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-teal);
}

/* Selection */
::selection {
  background: rgba(10, 209, 201, 0.2);
  color: var(--text-primary);
}

/* Print */
@media print {
  .nav, .sticky-cta, .share, .hero__particles, .hero__gradient {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}


/* Counter note — elegant footnote */
.counter__note {
  display: inline-block;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(26, 43, 60, 0.32);
  max-width: 380px;
  margin: 16px auto 0;
  text-align: center;
  padding: 8px 20px;
  background: rgba(26, 43, 60, 0.025);
  border-radius: 8px;
  border: 1px solid rgba(26, 43, 60, 0.05);
}
.counter__note b {
  color: rgba(26, 43, 60, 0.48);
  font-weight: 600;
}
.counter__note i {
  font-style: italic;
}
