/* ==========================================================================
   OREOL VPN — Landing page styles
   Собрано 1:1 из Figma (file c7dATdZSFDIQGluNXiwhqK, node 432:772)
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------
   Cinzel Decorative, El Messiri, Inter — берём с Google Fonts.
   Gilroy — платный шрифт, на Google Fonts его нет. Ниже заготовка @font-face:
   положи файлы Gilroy-*.woff2 в assets/fonts/ и раскомментируй блок.
   Пока Gilroy не подключён, вместо него отрисуется system-ui (fallback).
---------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=El+Messiri:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

/*
@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
*/

/* ---- Design tokens --------------------------------------------------- */
:root {
  /* colors */
  --color-bg: #000000;
  --color-card-bg: #0f1117;
  --color-text-cream: #fffce4;
  --color-text-white: #ffffff;
  --color-text-white-96: rgba(255, 255, 255, 0.96);
  --color-text-white-65: rgba(255, 255, 255, 0.65);
  --color-accent-blue: #256dff;
  --color-accent-blue-glow: rgba(82, 142, 255, 0.35);
  --color-discount-bg: rgba(108, 155, 255, 0.2);
  --color-card-blue-05: rgba(92, 144, 255, 0.05);
  --color-card-blue-50: rgba(92, 144, 255, 0.5);
  --color-border-08: rgba(255, 255, 255, 0.08);
  --color-border-20: rgba(255, 255, 255, 0.2);
  --color-border-30: rgba(255, 255, 255, 0.3);
  --color-glass-02: rgba(255, 255, 255, 0.02);
  --color-glass-03: rgba(255, 255, 255, 0.03);

  /* fonts */
  --font-logo: 'Cinzel Decorative', serif;
  --font-heading: 'El Messiri', serif;
  --font-body: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-alt: 'Inter', sans-serif;

  /* radii */
  --radius-pill: 100px;
  --radius-l: 24px;
  --radius-m: 16px;

  /* layout */
  --container-w: 1440px;
  --side-pad: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ---- Full-screen sections ------------------------------------------------
   Каждый крупный блок = отдельный экран (100vw × 100vh). Контент внутри
   каждого блока центрируется по высоте относительно ЭТОГО блока, а не
   тянется произвольными фиксированными отступами — так секции остаются
   гармоничными на любой высоте окна и ничего не "наезжает" друг на друга.
   min-height (а не height) — чтобы контент, которому реально нужно больше
   места, не обрезался на маленьких/коротких окнах.
---------------------------------------------------------------------------- */
.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Общая атмосфера первых двух блоков (hero + тарифы) -----------------
   В Figma декоративный фоновый слой физически один и тот же для hero и
   тарифов (не обрезается на границе блока) — здесь то же самое: один
   градиент-подложка на обёртке, которая охватывает оба экрана, чтобы
   между ними не было видимого шва. Приближение через CSS-радиальные
   градиенты (снято по скриншоту реального слоя из Figma). Если нужна
   пиксель-точная версия — экспортируй сам слой "Im" (node 434:2418) из
   Figma в PNG и положи как assets/images/hero-bg.png, я подключу его
   вместо градиента одной строкой (см. закомментированный вариант ниже).
---------------------------------------------------------------------------- */
.atmosphere {
  position: relative;
  overflow: hidden;
  background: #000;
}

.atmosphere__glow {
  position: absolute;
  top: -4%;
  left: 50%;
  width: 1900px;
  height: 1500px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 640px 430px at 50% 27%, rgba(150, 190, 255, 0.55) 0%, rgba(110, 160, 255, 0.34) 30%, rgba(80, 130, 230, 0.18) 48%, rgba(50, 90, 180, 0.08) 66%, transparent 82%),
    radial-gradient(ellipse 1100px 700px at 50% 30%, rgba(60, 100, 200, 0.16) 0%, rgba(40, 70, 150, 0.08) 45%, transparent 75%);
}

/* Раскомментируй, если положишь реальный экспорт фона из Figma:
.atmosphere__glow {
  background-image: url('../assets/images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1900px auto;
}
*/

.atmosphere__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../assets/images/bg-grain.png');
  background-size: 300px 300px;
  opacity: 0.035;
  mix-blend-mode: soft-light;
}

/* ==========================================================================
   HEADER — сделан компактнее (было слишком крупно и просторно)
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 10;
  padding: 20px 44px 0;
  flex-shrink: 0;
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 8px 6px 22px;
  background: var(--color-glass-03);
  border: 1px solid var(--color-border-20);
  border-radius: var(--radius-pill);
}

.logo {
  flex: 1;
  font-family: var(--font-logo);
  font-size: 29px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: var(--color-text-cream);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: -0.25px;
  color: var(--color-text-white);
  padding: 4px 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 15px;
  border-radius: var(--radius-m);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  backdrop-filter: blur(35px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid #ffffff;
  color: #ffffff;
  backdrop-filter: blur(35px);
}

.btn-pill {
  border-radius: var(--radius-pill);
  width: 300px;
}

.header-cta {
  width: auto;
  flex-shrink: 0;
  padding: 11px 20px;
  font-size: 14px;
}

/* ==========================================================================
   HERO — экран 1 (вместе с header, см. .screen--hero в разметке)
   ========================================================================== */
.screen--hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 340px;
}

/* picture-обёртка не должна быть отдельным flex-элементом (иначе gap
   применяется дважды — до и после неё). display:contents для <picture>
   ведёт себя непредсказуемо в связке с flex-gap в некоторых браузерах,
   поэтому просто выключаем её из потока через position:absolute. */
.hero__content > picture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__lock {
  position: absolute;
  top: 132px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--color-text-cream);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.308px;
  color: var(--color-text-cream);
}

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

/* ==========================================================================
   TARIFFS
   ========================================================================== */
.section {
  position: relative;
  padding: 80px 0;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--color-text-cream);
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.308px;
  color: var(--color-text-cream);
}

.tariffs {
  position: relative;
}

.tariffs .section__head {
  margin-bottom: 44px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 var(--side-pad);
  align-items: end;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 432px;
  border-radius: var(--radius-l);
  overflow: hidden;
}

.tariff-card__body {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-30);
  border-radius: var(--radius-l);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 25px 16px;
}

.tariff-card--best {
  background: var(--color-accent-blue);
  padding-top: 32px;
}

.tariff-card--best .tariff-card__body { height: 400px; }

.tariff-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 20px;
  text-transform: lowercase;
  color: #fff;
  opacity: 0.9;
}

.tariff-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.tariff-card__name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tariff-card__name {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #fff;
}

/* Единая строка с информацией о тарифе — одинаковый шрифт и место
   во ВСЕХ карточках (раньше тут было то текстовое описание, то бейдж
   скидки — вразнобой). Скидка теперь отдельным маленьким пилом рядом
   с названием, а эта строка всегда описывает условия тарифа. */
.tariff-card__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.3;
}

.tariff-card__discount {
  background: var(--color-discount-bg);
  border-radius: 8px;
  padding: 3px 9px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
}

.tariff-card__price {
  text-align: center;
}

.tariff-card__price .amount {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 60px;
  color: #fff;
  display: block;
}

.tariff-card__price .period {
  font-family: var(--font-heading);
  font-size: 30px;
  color: #fff;
  display: block;
}

.tariff-card__year {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: #fff;
}

/* ==========================================================================
   DOWNLOAD
   ========================================================================== */
.download-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 32px;
}

.platform-card {
  background: var(--color-card-blue-05);
  border: 1px solid var(--color-border-30);
  border-radius: var(--radius-l);
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding: 25px 0;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

/* Приятный ховер: лёгкий подъём карточки + свечение + мягкое масштабирование
   иконки — вместо резкой синей заливки на весь блок.
   Специфичность .download-cards .platform-card:hover (а не просто
   .platform-card:hover) нужна, чтобы перебить transform от .reveal.is-visible
   — иначе анимация появления при скролле "запирает" transform в 0 и hover
   визуально не работает. */
.download-cards .platform-card:hover,
.download-cards .platform-card:focus-within {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px -16px rgba(37, 109, 255, 0.4), 0 0 0 1px rgba(92, 144, 255, 0.15) inset;
}

.platform-card:hover .platform-card__icon,
.platform-card:focus-within .platform-card__icon {
  transform: scale(1.06);
}

.platform-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.platform-card__icon {
  max-height: 130px;
  width: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-card__icon--android { max-height: 110px; }

/* Подпись ("iPhone"/"MacBook") — реальная картинка из макета, полностью
   видимая, отдельной строкой под иконкой, без наложения */
.platform-card__caption {
  max-height: 34px;
  width: auto;
}

.platform-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.platform-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  color: #fff;
}

.platform-card .btn { width: 100%; gap: 4px; }
.platform-card .btn img.icon-apple { width: 15px; height: 18px; }
.platform-card .btn img.icon-play { width: 20px; height: 20px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 var(--side-pad);
}

.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-l);
  padding: 16px 16px 16px 24px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover { background: rgba(255, 255, 255, 0.07); }

.faq-item__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.36px;
  color: var(--color-text-white-96);
  padding: 12px 0;
}

.faq-item__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 12px;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

/* Высота анимируется из JS (script.js меряет реальную scrollHeight и
   выставляет px) — это единственный способ получить одинаково плавную
   анимацию во всех браузерах, включая Firefox. grid-template-rows и
   max-height здесь не годятся: оба пересчитывают layout на каждый кадр
   и в Firefox это выглядит рывками. */
.faq-item__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer-inner {
  padding-top: 4px;
  padding-bottom: 16px;
}

.faq-item__answer-inner p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.36px;
  color: var(--color-text-white-96);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about__title {
  flex: 1;
}

.about__text {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.308px;
  color: var(--color-text-cream);
}

.about__image {
  position: absolute;
  right: 84px;
  top: 197px;
  width: 613px;
  height: 379px;
  overflow: hidden;
}

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

/* ==========================================================================
   FOOTER — окантованный блок (border-top + border-bottom, скруглённые
   верхние углы) с логотипом/навигацией, затем строка copyright/соцсети.
   Раньше был единственный верхний бордер и всё уезжало вправо — теперь
   структура 1:1 повторяет Figma: полноширинная "полка" с рамкой сверху/
   снизу, внутри неё контент с обычным отступом контейнера.
   ========================================================================== */
.site-footer {
  position: relative;
  padding-bottom: 40px;
}

.footer-band {
  border-top: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
  border-radius: 32px 32px 0 0;
  margin-top: 43px;
  padding: 32px 0 40px;
}

.footer-band__inner {
  display: flex;
  gap: 96px;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 37.78px;
  line-height: 1.5;
  letter-spacing: -0.4156px;
  color: var(--color-text-cream);
}

.footer-nav-label {
  font-family: var(--font-alt);
  font-size: 13px;
  color: var(--color-text-white-65);
  margin-bottom: 18px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav a {
  font-family: var(--font-alt);
  font-size: 19px;
  letter-spacing: -0.2px;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-white-65);
}

.footer-links {
  display: flex;
  gap: 44px;
}

.footer-links a {
  font-family: var(--font-alt);
  font-size: 16px;
  color: var(--color-text-white-65);
}

.footer-social {
  display: flex;
  gap: 17px;
}

.footer-social img { width: 40px; height: 40px; }

/* ==========================================================================
   TABLET  (769px–1023px) — в Figma не было отдельного макета для этого
   диапазона, поэтому это самостоятельное решение: переводим карточки в
   2 колонки, чтобы избежать переполнения текста между десктоп- и мобильными
   размерами шрифтов.
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1279px) {
  :root { --side-pad: 32px; }

  .cards-grid, .download-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tariff-card { height: auto; }
  .tariff-card__body { height: auto; min-height: 340px; }
  .tariff-card__price .amount { font-size: 44px; }
  .tariff-card__badge { position: static; margin-bottom: -8px; }
  .tariff-card--best { padding-top: 0; }

  .platform-card { height: auto; }

  .tariffs .section__head { margin-bottom: 24px; }

  .about__image { width: 380px; height: 235px; right: 32px; }

  .hero__lock { width: 280px; height: 280px; top: 114px; }
}

/* ==========================================================================
   MOBILE  (<768px, source: Figma "Mob" frame, 393px design width)
   ========================================================================== */
@media (max-width: 768px) {
  :root { --side-pad: 22px; }

  .container { padding: 0 22px; }

  .site-header { padding: 24px 22px 0; }
  .site-header__inner { padding: 8px 12px 8px 24px; gap: 12px; }
  .logo { font-size: 20.785px; }
  .main-nav, .header-cta { display: none; }

  .hero { padding: 32px 0; }
  .hero__lock {
    width: 150px;
    height: 150px;
    top: 122px;
  }
  .hero__content { gap: 170px; padding: 0 44px; }
  .hero__text { gap: 12px; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 18px; letter-spacing: -0.198px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn-pill { width: 100%; }

  .screen { min-height: auto; } /* на мобилке блоки не тянутся под высоту экрана — контент решает сам, см. пояснение в README */
  .screen--hero { min-height: 100svh; } /* кроме первого экрана — здесь высота экрана всё ещё уместна */

  .section { padding: 56px 0; }
  .section__head { gap: 12px; margin-bottom: 44px; text-align: center; padding: 0 22px; }
  .section__title { font-size: 32px; }
  .section__subtitle { font-size: 18px; letter-spacing: -0.198px; }


  .cards-grid, .download-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 44px;
  }

  .tariff-card { height: auto; }
  .tariff-card__body { height: auto; }
  .tariff-card__price .amount { font-size: 50px; }

  .platform-card { height: auto; }

  .faq-list { padding: 0 44px; gap: 20px; }

  .about__inner { flex-direction: column; align-items: flex-start; gap: 24px; padding: 0 44px; }
  .about__title .section__title { font-size: 44px; text-align: left; }
  .about__text { font-size: 22px; letter-spacing: -0.242px; }
  .about__image { position: static; width: 100%; max-width: 328px; height: 203px; margin: 24px auto 0; }

  .footer-band { margin-top: 32px; padding: 24px 0 32px; }
  .footer-band__inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 32px; }
  .footer-links { gap: 24px; }
}

/* ==========================================================================
   Decorative floating pills (Telegram / Instagram switches from hero bg)
   Перенесены в блок FAQ (по месту в макете) и держатся внутри видимой
   области — не обрезаются краем экрана, как было в hero.
   ========================================================================== */
.deco-pill {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 10px;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.deco-pill img.deco-icon { width: 40px; height: 40px; }
.deco-pill span { font-family: var(--font-alt); font-size: 16px; color: #fff; }
.deco-pill .switch { width: 48px; height: 26px; }

.deco-pill--telegram { left: 3%; top: 12%; transform: rotate(8deg); }
.deco-pill--instagram { right: 3%; top: 24%; transform: rotate(-8deg); }

@media (max-width: 1400px) {
  .deco-pill--telegram { left: 1%; }
  .deco-pill--instagram { right: 1%; }
}

@media (max-width: 1100px) {
  .deco-pill { display: none; }
}

/* ==========================================================================
   Scroll-reveal — лёгкое появление блоков при прокрутке
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.cards-grid .reveal:nth-child(2) { --reveal-delay: 0.08s; }
.cards-grid .reveal:nth-child(3) { --reveal-delay: 0.16s; }
.cards-grid .reveal:nth-child(4) { --reveal-delay: 0.24s; }
.download-cards .reveal:nth-child(2) { --reveal-delay: 0.08s; }
.download-cards .reveal:nth-child(3) { --reveal-delay: 0.16s; }
.download-cards .reveal:nth-child(4) { --reveal-delay: 0.24s; }
.faq-list .reveal:nth-child(2) { --reveal-delay: 0.06s; }
.faq-list .reveal:nth-child(3) { --reveal-delay: 0.12s; }
.faq-list .reveal:nth-child(4) { --reveal-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
