/* YouMeWe landing — tokens из docs/design-system.md */

:root {
  --primary: #00a76f;
  --primary-dark: #008c5a;
  --primary-light: #5be49b;
  --primary-soft: #c8fad6;
  --secondary: #8b5cf6;
  --secondary-soft: rgba(139, 92, 246, 0.12);
  --bg: #f0f4f8;
  --surface: #ffffff;
  --text: #1a2332;
  --text-secondary: #637381;
  --border-soft: rgba(145, 158, 171, 0.06);
  --border-line: rgba(145, 158, 171, 0.12);
  --shadow-card:
    0 1px 2px rgba(145, 158, 171, 0.08),
    0 4px 16px rgba(145, 158, 171, 0.06);
  --shadow-card-hover:
    0 1px 2px rgba(145, 158, 171, 0.12),
    0 12px 32px rgba(145, 158, 171, 0.12);
  --shadow-primary: 0 4px 14px rgba(0, 167, 111, 0.3);
  --radius-cloud: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(0, 167, 111, 0.09), transparent 52%),
    radial-gradient(90% 60% at 100% 30%, rgba(91, 228, 155, 0.06), transparent 48%),
    linear-gradient(180deg, #ecf8f3 0%, var(--bg) 38%, #eef6f2 100%);
  overflow-x: hidden;
}

/* Scene background */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(0, 167, 111, 0.07), transparent 58%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(0, 167, 111, 0.05), transparent 55%),
    linear-gradient(165deg, rgba(240, 252, 247, 0.95) 0%, var(--bg) 55%, rgba(236, 249, 242, 0.9) 100%);
}

.bg-scene__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.bg-scene__blob--g {
  width: min(72vw, 720px);
  height: min(72vw, 720px);
  top: -18%;
  left: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(0, 167, 111, 0.38), rgba(91, 228, 155, 0.12) 48%, transparent 58%);
}

.bg-scene__blob--v {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  bottom: -12%;
  right: -6%;
  background: radial-gradient(
    circle at 55% 45%,
    rgba(0, 200, 140, 0.22),
    rgba(0, 167, 111, 0.12) 45%,
    transparent 58%
  );
}

.bg-scene__blob--g2 {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 42%;
  left: 52%;
  transform: translate(-50%, -50%);
  opacity: 0.42;
  background: radial-gradient(circle at 50% 50%, rgba(0, 167, 111, 0.14), transparent 62%);
}

.bg-scene__grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(rgba(145, 158, 171, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 22%, transparent 72%);
}

.bg-scene__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.site-header__cloud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
  padding: 12px 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(248, 253, 250, 0.88) 48%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 167, 111, 0.09);
  border-radius: 18px;
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 -12px 36px rgba(0, 167, 111, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex-shrink: 1;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 12px rgba(0, 167, 111, 0.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
}

/* Длинная подпись на кнопке — на узком экране короткая */
.btn__sm {
  display: none;
}

@media (max-width: 560px) {
  .btn__lg {
    display: none;
  }
  .btn__sm {
    display: inline;
  }

  .site-header__cloud {
    padding: 10px 12px;
    gap: 8px;
  }

  .nav-actions .btn {
    padding-inline: 14px;
    font-size: 13px;
  }

  .brand__text {
    font-size: 1.15rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.2s;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00c48c);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 167, 111, 0.42);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  color: var(--primary);
  background: rgba(0, 167, 111, 0.06);
  border: 1.5px solid transparent;
}

.btn--ghost:hover {
  background: rgba(0, 167, 111, 0.1);
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border-line);
}

.btn--outline:hover {
  border-color: rgba(0, 167, 111, 0.35);
  background: rgba(0, 167, 111, 0.04);
}

/* Hero */
.hero {
  padding: 28px 0 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .nav-actions .btn--outline {
    display: none;
  }
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: linear-gradient(120deg, rgba(200, 250, 214, 0.95), rgba(232, 252, 241, 0.98));
  border: 1px solid rgba(0, 167, 111, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  margin-bottom: 18px;
  line-height: 1.2;
}

.pill__text {
  flex: 0 1 auto;
  text-align: center;
}

.pill__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(0, 167, 111, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  color: var(--text);
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 40ch;
  margin: 0 0 28px;
}

.hero__emphasis {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn--telegram .btn__tg-icon {
  flex-shrink: 0;
  opacity: 0.92;
}

.hero__note {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__note strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Stats strip */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 8px;
}

.stat {
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 252, 244, 0.55));
  border: 1px solid rgba(0, 167, 111, 0.08);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  min-width: 140px;
}

.stat__val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Phone showcase (на телефонах скрыт — см. media ниже) */
.showcase {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

@media (max-width: 767px) {
  .showcase {
    display: none;
  }

  .hero {
    padding-bottom: 52px;
  }
}

.showcase__glow {
  position: absolute;
  width: min(90%, 420px);
  height: min(90%, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 167, 111, 0.22) 0%, rgba(91, 228, 155, 0.12) 42%, transparent 68%);
  filter: blur(5px);
  pointer-events: none;
}

.phone {
  --phone-w: 240px;
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 9 / 19.2;
  border-radius: 38px;
  background: linear-gradient(145deg, #1a2332, #0f141c);
  padding: 10px;
  box-shadow:
    0 24px 50px rgba(26, 35, 50, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.06) inset;
  transform-style: preserve-3d;
  transition:
    transform 0.6s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.02));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg);
}

/* Dark cinematic overlay on “screenshots” */
.phone__shade {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  z-index: 5;
  /* Лёгкий градиент без multiply — не уводим мокап в чёрное */
  background: linear-gradient(
    168deg,
    rgba(240, 248, 244, 0) 0%,
    rgba(0, 96, 68, 0.06) 48%,
    rgba(14, 40, 32, 0.14) 100%
  );
}

.phone__vignette {
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  pointer-events: none;
  z-index: 6;
  box-shadow:
    inset 0 0 56px rgba(0, 40, 28, 0.14),
    inset 0 -24px 48px rgba(0, 0, 0, 0.06);
}

.phone__tint {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(0, 167, 111, 0.11) 0%,
    rgba(91, 228, 155, 0.06) 52%,
    rgba(0, 140, 90, 0.09) 100%
  );
  mix-blend-mode: soft-light;
}

.phone--a {
  transform: rotateY(-8deg) rotateX(4deg) translateZ(0);
  z-index: 3;
}

.phone--b {
  --phone-w: 260px;
  margin-inline: -48px;
  z-index: 4;
  transform: translateY(-12px) translateZ(28px);
}

.phone--c {
  transform: rotateY(10deg) rotateX(-3deg) translateZ(0);
  z-index: 3;
}

@media (max-width: 920px) {
  .showcase {
    min-height: auto;
    padding-block: 12px;
  }
  .phone--b {
    margin-inline: 0;
  }
  .phone-stack {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .phone--a,
  .phone--c {
    transform: none;
  }
  .phone--b {
    transform: none;
    order: -1;
  }
}

.phone-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

/* Fake UI inside phones */
.ui-cloud {
  padding: 12px 12px 14px;
}

.ui-topbar {
  height: 44px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  margin-bottom: 10px;
}

.ui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-line);
}

.ui-title {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ui-body {
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 12px;
  min-height: 180px;
}

.ui-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 14px;
  margin-bottom: 8px;
  background: var(--bg);
}

.ui-row:last-child {
  margin-bottom: 0;
}

.ui-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 167, 111, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(0, 167, 111, 0.08);
}

.ui-meta {
  flex: 1;
}

.ui-meta__t {
  height: 8px;
  width: 64%;
  border-radius: 4px;
  background: rgba(26, 35, 50, 0.14);
  margin-bottom: 6px;
}

.ui-meta__s {
  height: 6px;
  width: 42%;
  border-radius: 4px;
  background: rgba(99, 115, 129, 0.18);
}

.ui-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.ui-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ui-cal span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(145, 158, 171, 0.12);
  font-size: 9px;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  font-weight: 600;
}

.ui-cal span.is-today {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

.ui-bar {
  margin-top: 12px;
  height: 52px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}

.ui-bar i {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(0, 167, 111, 0.12);
}

.ui-bar i.active {
  background: rgba(0, 167, 111, 0.22);
  box-shadow: 0 0 0 4px rgba(0, 167, 111, 0.1);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section--tight {
  padding-top: 8px;
}

.cloud {
  background: linear-gradient(165deg, #ffffff 0%, rgba(248, 253, 250, 0.96) 42%, rgba(240, 249, 244, 0.88) 100%);
  border-radius: var(--radius-cloud);
  border: 1px solid rgba(0, 167, 111, 0.09);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 24px 48px rgba(0, 167, 111, 0.04);
  padding: clamp(22px, 4vw, 36px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.section-lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
  max-width: 52ch;
}

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

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

.feature {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.55), rgba(232, 249, 240, 0.65));
  border: 1px solid rgba(0, 167, 111, 0.08);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.85), rgba(220, 246, 232, 0.85));
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 167, 111, 0.2), rgba(91, 228, 155, 0.14));
  color: var(--primary-dark);
  font-size: 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Pricing block — лёгкий зелёный ореол секции */
#pricing {
  position: relative;
  isolation: isolate;
}

#pricing::before {
  content: "";
  position: absolute;
  inset: -2% -8% auto -8%;
  height: min(72vh, 620px);
  background: radial-gradient(ellipse 75% 65% at 50% 0%, rgba(0, 167, 111, 0.09), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#pricing .wrap {
  position: relative;
  z-index: 1;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 840px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

.price-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-cloud);
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, #0f5137 0%, var(--primary) 42%, #00c48c 100%);
  color: #fff;
  box-shadow:
    0 20px 50px rgba(0, 167, 111, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.35), transparent 42%);
  opacity: 0.35;
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card__badge {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 14px;
}

.price-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.price-card__clients {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.93;
  max-width: 38ch;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.price-tag__amount {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-tag__currency {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.92;
}

.price-tag__period {
  font-size: 15px;
  opacity: 0.88;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.95;
}

.price-list li::before {
  content: "✓";
  font-weight: 800;
  opacity: 0.95;
}

.btn--on-dark {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn--on-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.price-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* Скачивание: магазины — заглушки, ссылки добавятся позже */
.download-cloud {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.download-cloud .section-title {
  margin-bottom: 12px;
}

.download-lead {
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}

.download-lead strong {
  color: var(--text);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 168px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(0, 167, 111, 0.35);
  background: linear-gradient(160deg, rgba(248, 253, 250, 0.95), rgba(236, 249, 243, 0.65));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.store-badge--soon {
  cursor: default;
  user-select: none;
}

.store-badge__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.store-badge__hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.download-footnote {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-inline: auto;
  line-height: 1.5;
}

.quote {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(238, 249, 243, 0.72));
  border: 1px solid rgba(0, 167, 111, 0.1);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.quote p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.quote footer {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > *:nth-child(1) {
  transition-delay: 0ms;
}
.stagger > *:nth-child(2) {
  transition-delay: 60ms;
}
.stagger > *:nth-child(3) {
  transition-delay: 120ms;
}

/* Footer */
.footer {
  padding: 36px 0 48px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 167, 111, 0.12);
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer a:hover {
  color: var(--text);
  border-color: rgba(0, 167, 111, 0.35);
}

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