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

:root {
  --bg: #050a07;
  --lime: #c8ff00;
  /* Cap at 1440px so large screens don't overscale */
  --design: 1440;
  --frame: min(100vw, 1440px);
  --s: calc(var(--frame) / var(--design));
  --nav-h: calc(88 * var(--s));
  --pad: calc(40 * var(--s));
  --max: var(--frame);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #fff;
  font-family: system-ui, sans-serif;
  overflow-x: hidden;
}

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

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

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border: 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.navbar.is-scrolled {
  background: rgba(5, 10, 7, 0.8);
  backdrop-filter: blur(10px);
}

.navbar__inner {
  width: min(100%, var(--frame));
  margin: 0 auto;
  height: 100%;
  padding: 0 calc(56 * var(--s));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: calc(32 * var(--s));
}

.navbar__logo {
  justify-self: start;
}

.navbar__logo img {
  height: calc(52 * var(--s));
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(48 * var(--s));
}

.nav-link {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.nav-link img {
  height: calc(18 * var(--s));
  width: auto;
}

.nav-link .nav-active {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover .nav-active,
.nav-link.is-active .nav-active {
  opacity: 1;
}

.nav-link:hover .nav-default,
.nav-link.is-active .nav-default {
  opacity: 0;
}

.navbar__contact {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: calc(16 * var(--s));
}

.navbar__contact img {
  width: calc(40 * var(--s));
  height: calc(40 * var(--s));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.navbar__contact a:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: calc(5 * var(--s));
  background: none;
  border: 0;
  cursor: pointer;
  padding: calc(6 * var(--s));
}

.navbar__toggle span {
  display: block;
  width: calc(24 * var(--s));
  height: 2px;
  background: #fff;
}

/* ---------- Shared section ---------- */
section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Bg fills the section; section height follows each image's aspect ratio */
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.hero__content,
.about__content,
.platforms__content,
.how__content,
.clients__content,
.services__content,
.pricing__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(100%, var(--frame));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ---------- Hero (home-bg 2880×2048) ---------- */
.hero {
  width: 100%;
  height: min(100dvh, calc(var(--frame) * 2048 / 2880));
  min-height: calc(var(--frame) * 0.65);
}

.hero__content {
  gap: calc(14 * var(--s));
  text-align: center;
  padding-top: calc(var(--nav-h) + 12 * var(--s));
  padding-bottom: calc(48 * var(--s));
}

.hero__sm {
  width: calc(480 * var(--s));
}

.hero__main {
  width: calc(860 * var(--s));
}

.hero__sub {
  width: calc(720 * var(--s));
}

.hero__label {
  width: calc(620 * var(--s));
  margin-top: calc(10 * var(--s));
}

.hero__cta {
  display: inline-block;
  margin-top: calc(22 * var(--s));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero__cta img {
  width: calc(260 * var(--s));
}

.hero__cta:hover {
  transform: scale(1.05);
  filter: brightness(1.12);
}

/* ---------- About (about-bg 2880×1376) ---------- */
.about {
  height: calc(var(--frame) * 1376 / 2880);
}

.about__content {
  gap: calc(28 * var(--s));
}

.about__title {
  width: calc(640 * var(--s));
}

.about__desc {
  width: calc(620 * var(--s));
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: calc(24 * var(--s));
  width: calc(1100 * var(--s));
  margin-top: calc(12 * var(--s));
}

.about__cards img {
  width: 100%;
  border-radius: calc(24 * var(--s));
}

/* ---------- Platforms (ad-platform-bg 2880×1294) ---------- */
.platforms {
  height: calc(var(--frame) * 1294 / 2880);
  background: #0d0f0e;
}

.platforms__content {
  gap: calc(40 * var(--s));
  perspective: 1000px;
}

.platforms__title {
  width: calc(360 * var(--s));
}

.platforms__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(16 * var(--s));
  width: 100%;
}

.platforms__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: calc(16 * var(--s)) calc(18 * var(--s));
}

.platforms__row img {
  height: calc(54 * var(--s));
  width: auto;
  max-width: none;
}

.platforms__others {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(14 * var(--s));
  margin-top: calc(10 * var(--s));
}

.platforms__others-label {
  height: calc(14 * var(--s));
  width: auto;
  opacity: 0.9;
}

.platforms__others-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(18 * var(--s));
}

.platforms__others-logos img {
  height: calc(46 * var(--s));
  width: auto;
  max-width: none;
}

/* ---------- How It Works (howitworks-bg 2880×2422) ---------- */
.how {
  height: calc(var(--frame) * 2422 / 2880);
}

.how__content {
  gap: calc(18 * var(--s));
  justify-content: flex-start;
  padding-top: calc(48 * var(--s));
  padding-bottom: calc(40 * var(--s));
}

.how__title {
  width: calc(820 * var(--s));
}

.how__desc {
  width: calc(620 * var(--s));
  margin-bottom: calc(4 * var(--s));
}

.how__steps {
  width: calc(880 * var(--s));
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.how__item {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  margin-top: calc(20 * var(--s));
}

.how__item:first-child {
  margin-top: 0;
}

.how__item--left {
  justify-content: flex-start;
  padding-left: calc(24 * var(--s));
}

.how__item--right {
  justify-content: flex-end;
  padding-right: calc(24 * var(--s));
}

.how__pair {
  position: relative;
  width: calc(500 * var(--s));
}

.how__card {
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: none;
}

.how__line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
  max-width: none;
}

/* line1.png ┐ — exits right-middle of left cards, curves down */
.how__line--1 {
  width: calc(160 * var(--s));
  left: calc(100% - 10 * var(--s));
  top: 55%;
}

/* line2.png ┌ — exits left-middle of right cards, curves down */
.how__line--2 {
  width: calc(160 * var(--s));
  right: calc(100% - 10 * var(--s));
  top: 55%;
}

.how__item--last {
  margin-top: calc(20 * var(--s));
}

/* ---------- Clients (clientbase-bg 2880×1528) ---------- */
.clients {
  /* Match image aspect so CLIENT BASE watermark isn't cropped */
  height: auto;
  aspect-ratio: 2880 / 1528;
  background: #050a07;
}

.clients .section-bg {
  object-fit: fill;
  object-position: center center;
}

.clients__content {
  width: 100%;
  max-width: none;
  justify-content: center;
  align-items: flex-end;
  padding: calc(72 * var(--s)) calc(72 * var(--s)) calc(56 * var(--s));
}

.clients__panel {
  width: calc(480 * var(--s));
  font-family: "Rajdhani", sans-serif;
  text-align: left;
}

.clients__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: calc(12 * var(--s));
  margin: 0;
  line-height: 1;
}

.clients__count {
  color: var(--lime);
  font-size: calc(64 * var(--s));
  font-weight: 700;
  letter-spacing: calc(1 * var(--s));
}

.clients__heading-label {
  color: #fff;
  font-size: calc(42 * var(--s));
  font-weight: 700;
  letter-spacing: calc(2 * var(--s));
}

.clients__sub {
  margin: calc(14 * var(--s)) 0 0;
  max-width: calc(420 * var(--s));
  color: #9aa3a0;
  font-size: calc(16 * var(--s));
  font-weight: 500;
  line-height: 1.45;
}

.clients__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(56 * var(--s));
  row-gap: calc(28 * var(--s));
  margin-top: calc(48 * var(--s));
}

.clients__stat {
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--s));
}

.clients__stat-label {
  color: #fff;
  font-size: calc(18 * var(--s));
  font-weight: 600;
  letter-spacing: calc(1.5 * var(--s));
}

.clients__stat-value {
  color: var(--lime);
  font-size: calc(40 * var(--s));
  font-weight: 700;
  line-height: 1;
  letter-spacing: calc(1 * var(--s));
}

/* ---------- Services (services-bg 1440×1045) ---------- */
.services {
  height: calc(var(--frame) * 1045 / 1440);
  background: #0a0c0b;
}

.services__content {
  gap: calc(28 * var(--s));
  justify-content: center;
  align-items: center;
  padding-top: calc(48 * var(--s));
  padding-bottom: calc(48 * var(--s));
}

.services__title {
  width: calc(620 * var(--s));
  align-self: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(22 * var(--s)) calc(24 * var(--s));
  width: calc(1100 * var(--s));
  max-width: 100%;
}

.services__grid img {
  width: 100%;
  max-width: none;
  border-radius: calc(18 * var(--s));
  transition: transform 0.25s ease;
}

.services__grid img:hover {
  transform: translateY(calc(-4 * var(--s)));
}

/* ---------- Pricing (pricing-bg 2880×3144) ---------- */
.pricing {
  height: calc(var(--frame) * 3144 / 2880);
  background: #050805;
}

.pricing__content {
  gap: 0;
  justify-content: flex-start;
  align-items: center;
  padding: calc(64 * var(--s)) var(--pad) calc(40 * var(--s));
  perspective: 900px;
}

.pricing__title {
  width: calc(380 * var(--s));
  margin: 0 0 calc(36 * var(--s));
}

.pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(24 * var(--s));
  width: calc(1040 * var(--s));
  align-items: stretch;
}

.pricing__row img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  transition: transform 0.25s ease;
}

.pricing__row img:hover {
  transform: translateY(calc(-4 * var(--s)));
}

.pricing__plan-label {
  width: calc(260 * var(--s));
  margin: calc(44 * var(--s)) 0 calc(28 * var(--s));
}

.pricing__cta {
  display: inline-block;
  margin-top: calc(36 * var(--s));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.pricing__cta img {
  width: calc(340 * var(--s));
  max-width: none;
  display: block;
}

.pricing__cta:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.pricing__copyright {
  width: calc(520 * var(--s));
  margin-top: calc(28 * var(--s));
  opacity: 0.9;
}

/* ---------- Tablet / Mobile (desktop above stays unchanged) ---------- */
@media (max-width: 900px) {
  :root {
    --frame: 100vw;
    --s: calc(100vw / 780);
    --nav-h: 64px;
    --pad: 20px;
    --max: 100vw;
  }

  .navbar {
    height: var(--nav-h);
    background: rgba(5, 10, 7, 0.92);
    backdrop-filter: blur(10px);
  }

  .navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 var(--pad);
    gap: 12px;
  }

  .navbar__logo img {
    height: 36px;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 10, 7, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 20px 32px;
    border-bottom: 1px solid rgba(200, 255, 0, 0.12);
  }

  .navbar__links.is-open {
    display: flex;
  }

  .nav-link img {
    height: 16px;
  }

  .navbar__toggle {
    display: flex;
    order: 3;
    gap: 5px;
    padding: 8px;
  }

  .navbar__toggle span {
    width: 22px;
    height: 2px;
  }

  .navbar__contact {
    order: 2;
    margin-left: auto;
    margin-right: 4px;
    gap: 10px;
  }

  .navbar__contact img {
    width: 30px;
    height: 30px;
  }

  /* Content drives height; bg covers behind */
  .section-bg {
    object-fit: cover;
    object-position: center top;
  }

  .hero__content,
  .about__content,
  .platforms__content,
  .how__content,
  .clients__content,
  .services__content,
  .pricing__content {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    padding: 48px var(--pad);
    justify-content: flex-start;
  }

  /* Hero: keep full-screen feel */
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__content {
    position: absolute;
    inset: 0;
    justify-content: center;
    padding: calc(var(--nav-h) + 24px) var(--pad) 40px;
    gap: 12px;
  }

  .hero__sm {
    width: min(340px, 82%);
  }

  .hero__main {
    width: min(520px, 94%);
  }

  .hero__sub {
    width: min(460px, 90%);
  }

  .hero__label {
    width: min(400px, 88%);
    margin-top: 8px;
  }

  .hero__cta {
    margin-top: 16px;
  }

  .hero__cta img {
    width: min(200px, 58vw);
  }

  /* About */
  .about {
    height: auto;
    min-height: 0;
  }

  .about__content {
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about__title,
  .about__desc {
    width: min(520px, 100%);
  }

  .about__cards {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
    gap: 16px;
    margin-top: 8px;
  }

  /* Platforms */
  .platforms {
    height: auto;
  }

  .platforms__content {
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .platforms__title {
    width: min(280px, 70%);
  }

  .platforms__row {
    flex-wrap: wrap;
    max-width: 420px;
    gap: 12px;
  }

  .platforms__row img {
    height: 44px;
    max-width: calc(50% - 8px);
  }

  .platforms__others-logos {
    flex-wrap: wrap;
    gap: 12px;
  }

  .platforms__others-logos img {
    height: 40px;
  }

  /* How It Works */
  .how {
    height: auto;
  }

  .how__content {
    gap: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .how__title,
  .how__desc {
    width: min(520px, 100%);
  }

  .how__steps {
    width: min(520px, 100%);
  }

  .how__item--left,
  .how__item--right,
  .how__item--last {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .how__item,
  .how__item--last {
    margin-top: 14px;
  }

  .how__item:first-child {
    margin-top: 0;
  }

  .how__pair {
    width: 100%;
  }

  .how__line {
    display: none;
  }

  /* Clients */
  .clients {
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
  }

  .clients .section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .clients__content {
    align-items: center;
    padding: 64px var(--pad) 56px;
    background: linear-gradient(
      to bottom,
      rgba(5, 10, 7, 0.55) 0%,
      rgba(5, 10, 7, 0.82) 40%,
      rgba(5, 10, 7, 0.92) 100%
    );
  }

  .clients__panel {
    width: min(100%, 420px);
  }

  .clients__count {
    font-size: 48px;
  }

  .clients__heading-label {
    font-size: 32px;
  }

  .clients__sub {
    font-size: 15px;
    max-width: 100%;
  }

  .clients__stats {
    column-gap: 28px;
    row-gap: 20px;
    margin-top: 32px;
  }

  .clients__stat-label {
    font-size: 14px;
  }

  .clients__stat-value {
    font-size: 32px;
  }

  /* Services */
  .services {
    height: auto;
  }

  .services__content {
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .services__title {
    width: min(420px, 90%);
    align-self: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(640px, 100%);
    gap: 14px;
  }

  /* Pricing */
  .pricing {
    height: auto;
  }

  .pricing__content {
    padding: 56px var(--pad) 40px;
  }

  .pricing__title {
    width: min(280px, 70%);
    margin-bottom: 24px;
  }

  .pricing__row {
    width: min(640px, 100%);
    gap: 14px;
  }

  .pricing__plan-label {
    width: min(220px, 55%);
    margin: 32px 0 22px;
  }

  .pricing__cta {
    margin-top: 28px;
  }

  .pricing__cta img {
    width: min(280px, 80vw);
  }

  .pricing__copyright {
    width: min(420px, 90%);
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --s: calc(100vw / 640);
    --nav-h: 60px;
    --pad: 16px;
  }

  .navbar__logo img {
    height: 32px;
  }

  .navbar__contact img {
    width: 26px;
    height: 26px;
  }

  .hero {
    min-height: 520px;
  }

  .hero__content {
    gap: 10px;
    padding: calc(var(--nav-h) + 20px) var(--pad) 32px;
  }

  .hero__sm {
    width: min(280px, 84%);
  }

  .hero__main {
    width: min(100%, 94%);
  }

  .hero__sub {
    width: min(100%, 92%);
  }

  .hero__label {
    width: min(100%, 90%);
  }

  .hero__cta img {
    width: min(180px, 62vw);
  }

  .platforms__row img {
    height: 40px;
  }

  .platforms__others-logos img {
    height: 36px;
  }

  .services__grid,
  .pricing__row {
    grid-template-columns: 1fr;
    width: min(100%, 400px);
  }

  .services__title {
    width: min(300px, 88%);
  }

  .clients__count {
    font-size: 40px;
  }

  .clients__heading-label {
    font-size: 28px;
  }

  .clients__stats {
    column-gap: 20px;
    row-gap: 16px;
  }

  .clients__stat-value {
    font-size: 28px;
  }

  .pricing__cta img {
    width: min(240px, 78vw);
  }
}

/* ---------- Hero load animation ---------- */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__sm.hero-anim { animation-delay: 0.15s; }
.hero__main.hero-anim { animation-delay: 0.32s; }
.hero__sub.hero-anim { animation-delay: 0.48s; }
.hero__label.hero-anim { animation-delay: 0.64s; }
.hero__cta.hero-anim { animation-delay: 0.82s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.navbar {
  animation: navIn 0.7s ease 0.05s both;
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Scroll reveal animations ---------- */
/* Hero: blur + rise (load). About: drop + side slides. Platforms: flip.
   How: wipe + zigzag. Clients: expand. Services: bounce. Pricing: tilt. */
.reveal {
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* About — drop from above + side cards */
.reveal--drop {
  transform: translateY(-48px);
}

.reveal--slide-left {
  transform: translateX(-72px);
}

.reveal--slide-right {
  transform: translateX(72px);
}

/* Platforms — 3D flip in */
.reveal--flip {
  transform: perspective(800px) rotateY(-28deg) translateY(20px) scale(0.92);
  transform-origin: center center;
  transition-duration: 0.75s;
}

/* How — soft wipe for headers, zigzag for steps */
.reveal--wipe {
  transform: translateX(-36px);
  clip-path: inset(0 40% 0 0);
  filter: blur(4px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--wipe.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal--zigzag {
  transition-duration: 1.1s;
}

.how__item--left.reveal--zigzag {
  transform: translateX(-56px) translateY(18px);
}

.how__item--right.reveal--zigzag {
  transform: translateX(56px) translateY(18px);
}

/* Clients — expand from center */
.reveal--expand {
  transform: scale(0.82);
  filter: blur(10px);
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Services — bounce up */
.reveal--bounce {
  transform: translateY(52px) scale(0.88);
  transition-timing-function: cubic-bezier(0.34, 1.45, 0.64, 1);
  transition-duration: 0.8s;
}

/* Pricing — tilt up */
.reveal--tilt {
  transform: translateY(44px) rotateX(14deg) skewY(-2deg);
  transform-origin: center bottom;
  transition-duration: 0.9s;
}

.reveal--pulse {
  transform: translateY(32px) scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal--pulse.is-visible {
  animation: ctaPulse 2.6s ease-in-out 0.9s infinite;
}

/* Stagger: How steps */
.how__title.reveal { transition-delay: 0.05s; }
.how__desc.reveal { transition-delay: 0.18s; }
.how__item.reveal--zigzag:nth-child(1) { transition-delay: 0.12s; }
.how__item.reveal--zigzag:nth-child(2) { transition-delay: 0.55s; }
.how__item.reveal--zigzag:nth-child(3) { transition-delay: 0.98s; }
.how__item.reveal--zigzag:nth-child(4) { transition-delay: 1.41s; }
.how__item.reveal--zigzag:nth-child(5) { transition-delay: 1.84s; }

/* Stagger: About */
.about__title.reveal { transition-delay: 0.06s; }
.about__desc.reveal { transition-delay: 0.2s; }
.about__cards .reveal:nth-child(1) { transition-delay: 0.34s; }
.about__cards .reveal:nth-child(2) { transition-delay: 0.5s; }

/* Stagger: Platforms pills */
.platforms__title.reveal { transition-delay: 0.05s; }
.platforms__row:nth-child(1) .reveal:nth-child(1) { transition-delay: 0.12s; }
.platforms__row:nth-child(1) .reveal:nth-child(2) { transition-delay: 0.2s; }
.platforms__row:nth-child(1) .reveal:nth-child(3) { transition-delay: 0.28s; }
.platforms__row:nth-child(1) .reveal:nth-child(4) { transition-delay: 0.36s; }
.platforms__row:nth-child(2) .reveal:nth-child(1) { transition-delay: 0.44s; }
.platforms__row:nth-child(2) .reveal:nth-child(2) { transition-delay: 0.52s; }
.platforms__row:nth-child(2) .reveal:nth-child(3) { transition-delay: 0.6s; }
.platforms__row:nth-child(2) .reveal:nth-child(4) { transition-delay: 0.68s; }
.platforms__others.reveal { transition-delay: 0.8s; }

/* Stagger: Services */
.services__title.reveal { transition-delay: 0.06s; }
.services__grid .reveal:nth-child(1) { transition-delay: 0.14s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.24s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.34s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.44s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.54s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.64s; }

/* Stagger: Pricing */
.pricing__title.reveal { transition-delay: 0.06s; }
.pricing__row:first-of-type .reveal:nth-child(1) { transition-delay: 0.16s; }
.pricing__row:first-of-type .reveal:nth-child(2) { transition-delay: 0.28s; }
.pricing__plan-label.reveal { transition-delay: 0.4s; }
.pricing__row:last-of-type .reveal:nth-child(1) { transition-delay: 0.5s; }
.pricing__row:last-of-type .reveal:nth-child(2) { transition-delay: 0.62s; }
.pricing__cta.reveal { transition-delay: 0.74s; }
.pricing__copyright.reveal { transition-delay: 0.88s; }

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.045);
    filter: drop-shadow(0 0 16px rgba(200, 255, 0, 0.45));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim,
  .navbar {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    transition: none;
  }

  .reveal--pulse.is-visible {
    animation: none;
  }
}
