:root {
  --landing-bg: #020d1f;
  --landing-bg-card: rgba(8, 28, 56, 0.82);
  --landing-border: rgba(120, 167, 206, 0.22);
  --landing-text: #edf6ff;
  --landing-muted: #9ebfd9;
  --landing-accent: #b7ff35;
  --landing-accent-soft: rgba(183, 255, 53, 0.14);
  --landing-cta-from: #39c7ff;
  --landing-cta-to: #1f7deb;
  --landing-glow: rgba(57, 199, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--landing-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(57, 199, 255, 0.16), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(31, 125, 235, 0.18), transparent 28%),
    linear-gradient(160deg, #020d1f 0%, #062447 52%, #0a3568 100%);
  overflow-x: hidden;
}

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

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--landing-border);
  background: rgba(2, 13, 31, 0.88);
  backdrop-filter: blur(12px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.landing-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.landing-header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.landing-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.landing-icon-btn svg {
  width: 20px;
  height: 20px;
}

.landing-language-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 48px;
  min-width: 130px;
  border-radius: 12px;
  border: 1px solid var(--landing-border);
  background: rgba(4, 20, 42, 0.98);
  padding: 0.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.landing-language-menu.hidden {
  display: none;
}

.landing-language-menu .language-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--landing-text);
  padding: 0.55rem 0.65rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.landing-language-menu .language-option.is-active,
.landing-language-menu .language-option:hover {
  background: rgba(183, 255, 53, 0.12);
  color: var(--landing-accent);
}

.landing-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--landing-border);
  background: rgba(4, 20, 42, 0.98);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.landing-nav.hidden {
  display: none;
}

.landing-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: var(--landing-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.landing-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-text);
}

.landing-nav-cta {
  background: linear-gradient(135deg, var(--landing-cta-from), var(--landing-cta-to)) !important;
  color: #fff !important;
  text-align: center;
}

main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}

.landing-hero {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 2.5rem;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(183, 255, 53, 0.35);
  background: var(--landing-accent-soft);
  color: var(--landing-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-accent);
  box-shadow: 0 0 10px var(--landing-accent);
}

.landing-hero h1 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.85rem, 6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.landing-accent {
  display: block;
  background: linear-gradient(135deg, var(--landing-accent), #39c7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-lead {
  margin: 1rem 0 0;
  color: var(--landing-muted);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: 38rem;
}

.landing-hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-btn svg {
  width: 18px;
  height: 18px;
}

.landing-btn:hover {
  transform: translateY(-1px);
}

.landing-btn-primary {
  background: linear-gradient(135deg, var(--landing-cta-from), var(--landing-cta-to));
  color: #fff;
  box-shadow: 0 10px 28px rgba(31, 125, 235, 0.35);
}

.landing-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--landing-border);
  color: var(--landing-text);
}

.landing-stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--landing-border);
  background: var(--landing-bg-card);
}

.landing-stats-card strong {
  display: block;
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  color: var(--landing-accent);
}

.landing-stats-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--landing-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.landing-hero-visual {
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.landing-phone {
  width: min(100%, 280px);
  aspect-ratio: 9 / 18;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #07182f, #041224);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 80px var(--landing-glow);
  padding: 0.85rem;
  position: relative;
}

.landing-phone-notch {
  width: 38%;
  height: 16px;
  margin: 0 auto 0.75rem;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-phone-screen {
  height: calc(100% - 28px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
  position: relative;
  overflow: hidden;
}

.landing-phone-header {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
}

.landing-phone-header span {
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.landing-phone-header strong {
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}

.landing-phone-header small {
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.landing-phone-chart {
  border-radius: 14px;
  border: 1px solid rgba(183, 255, 53, 0.25);
  background: rgba(183, 255, 53, 0.06);
  padding: 0.75rem;
  margin-bottom: 0.55rem;
}

.landing-phone-chart-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--landing-accent);
}

.landing-phone-chart-wrap {
  height: 54px;
  margin: 0.45rem 0 0.35rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.landing-phone-chart-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.landing-phone-chart-grid line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.landing-phone-chart-area {
  fill: url(#landingPhoneChartFill);
  transform: scaleX(0);
  transform-origin: left center;
  transform-box: fill-box;
}

.landing-phone-chart-path {
  fill: none;
  stroke: url(#landingPhoneChartStroke);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--chart-length, 320);
  stroke-dashoffset: var(--chart-length, 320);
}

.landing-phone-chart-dot {
  fill: #b7ff35;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
}

.landing-phone.is-animating .landing-phone-chart-area {
  animation: landing-phone-area-grow 2.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.landing-phone.is-animating .landing-phone-chart-path {
  animation: landing-phone-line-draw 2.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.landing-phone.is-animating .landing-phone-chart-dot {
  animation: landing-phone-dot-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 2.35s forwards;
}

.landing-phone-chart-badge {
  display: inline-flex;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(124, 227, 77, 0.18);
  color: #7ce34d;
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.landing-phone-kpis {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.35rem;
}

.landing-phone-kpi {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.4rem;
  align-items: center;
  padding: 0.38rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(8px);
}

.landing-phone.is-animating .landing-phone-kpi {
  animation: landing-phone-kpi-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(1) {
  animation-delay: 1.05s;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(2) {
  animation-delay: 1.22s;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(3) {
  animation-delay: 1.39s;
}

.landing-phone-kpi-label {
  font-size: 0.62rem;
  color: var(--landing-muted);
}

.landing-phone-kpi-value {
  font-size: 0.72rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.landing-phone-kpi-bar {
  grid-column: 1 / -1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.landing-phone-kpi-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(57, 199, 255, 0.85), rgba(183, 255, 53, 0.95));
}

.landing-phone-kpi-bar-accent span {
  background: linear-gradient(90deg, rgba(183, 255, 53, 0.75), rgba(124, 227, 77, 1));
}

.landing-phone.is-animating .landing-phone-kpi-bar span {
  animation: landing-phone-kpi-bar-grow 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(1) .landing-phone-kpi-bar span {
  animation-delay: 1.25s;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(2) .landing-phone-kpi-bar span {
  animation-delay: 1.42s;
}

.landing-phone.is-animating .landing-phone-kpi:nth-child(3) .landing-phone-kpi-bar span {
  animation-delay: 1.59s;
}

.landing-phone-notification {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.landing-phone-notification-ig {
  bottom: 4.15rem;
  background: rgba(221, 42, 123, 0.18);
  border: 1px solid rgba(221, 42, 123, 0.35);
}

.landing-phone-notification-tt {
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-section {
  padding: 2rem 0;
}

.landing-kicker,
.landing-pill {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-muted);
}

.landing-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 199, 255, 0.35);
  color: #7fd6ff;
  text-transform: none;
  letter-spacing: 0.02em;
}

.landing-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.landing-platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.landing-platform-chip.is-revealed:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(183, 255, 53, 0.42);
  box-shadow: 0 10px 26px rgba(57, 199, 255, 0.16);
}

.landing-platform-chip.is-revealed .category-tab-icon {
  animation: landing-chip-icon-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 90ms);
}

.landing-platform-chip .category-tab-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.landing-platform-chip svg {
  width: 14px;
  height: 14px;
}

.landing-trust-grid,
.landing-audience-grid {
  display: grid;
  gap: 0.75rem;
}

.landing-trust-card,
.landing-audience-grid article {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--landing-border);
  background: var(--landing-bg-card);
}

.landing-trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.65rem;
  align-items: center;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.landing-trust-card.is-revealed:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 199, 255, 0.35);
  box-shadow: 0 14px 32px rgba(2, 13, 31, 0.45);
}

.landing-trust-card.is-revealed .landing-trust-avatar {
  animation: landing-avatar-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 100ms);
}

.landing-trust-card.is-revealed strong,
.landing-trust-card.is-revealed span:last-child {
  animation: landing-trust-text-in 0.55s ease both;
}

.landing-trust-card.is-revealed strong {
  animation-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}

.landing-trust-card.is-revealed span:last-child {
  animation-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.landing-trust-avatar {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--landing-cta-from), var(--landing-cta-to));
  font-size: 0.72rem;
  font-weight: 800;
}

.landing-trust-card strong,
.landing-audience-grid h3 {
  font-size: 0.92rem;
}

.landing-trust-card span:last-child,
.landing-audience-grid p {
  color: var(--landing-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.landing-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.landing-badges-row span {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 600;
}

.landing-live-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(124, 227, 77, 0.25);
  background: rgba(124, 227, 77, 0.05);
  position: relative;
}

.landing-live-dot {
  position: absolute;
  top: -10px;
  left: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(124, 227, 77, 0.18);
  color: #7ce34d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.landing-live-card strong {
  display: block;
  color: var(--landing-accent);
  font-size: 1.2rem;
}

.landing-live-card span {
  display: block;
  margin-top: 0.15rem;
  color: var(--landing-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.landing-about h2,
.landing-audience h2,
.landing-final-cta h2 {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  line-height: 1.12;
}

.landing-about h2 em,
.landing-audience h2 em {
  font-style: normal;
  color: var(--landing-accent);
}

.landing-about p,
.landing-audience .landing-lead {
  color: var(--landing-muted);
  line-height: 1.65;
}

.landing-checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.landing-checklist li {
  position: relative;
  padding-left: 1.65rem;
}

.landing-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--landing-accent-soft);
  color: var(--landing-accent);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.landing-checklist span {
  display: block;
  font-weight: 700;
}

.landing-checklist small {
  display: block;
  margin-top: 0.25rem;
  color: var(--landing-muted);
  line-height: 1.5;
}

.landing-audience-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(57, 199, 255, 0.1);
  border: 1px solid rgba(57, 199, 255, 0.25);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.landing-final-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 24px;
  border: 1px solid var(--landing-border);
  background:
    radial-gradient(circle at 50% 0%, rgba(57, 199, 255, 0.12), transparent 42%),
    var(--landing-bg-card);
}

.landing-final-cta p {
  color: var(--landing-muted);
  margin: 0.75rem 0 1.25rem;
}

.landing-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem 5rem;
  border-top: 1px solid var(--landing-border);
  color: var(--landing-muted);
  font-size: 0.82rem;
}

.landing-footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-footer-links a:hover {
  color: var(--landing-accent);
}

.landing-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 40;
}

.landing-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-pop,
  .reveal-trust-left,
  .reveal-trust-up,
  .reveal-trust-right,
  .landing-phone.is-revealed,
  .landing-platform-chip.is-revealed,
  .landing-trust-card.is-revealed,
  .landing-phone.is-animating .landing-phone-chart-area,
  .landing-phone.is-animating .landing-phone-chart-path,
  .landing-phone.is-animating .landing-phone-chart-dot,
  .landing-phone.is-animating .landing-phone-kpi,
  .landing-phone.is-animating .landing-phone-kpi-bar span {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-down {
  transform: translateY(-24px);
}

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

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

.reveal-scale {
  transform: scale(0.9);
}

.reveal-pop {
  transform: translateY(28px) scale(0.68);
}

.reveal-trust-left {
  transform: translateX(-48px) translateY(18px);
}

.reveal-trust-up {
  transform: translateY(42px) scale(0.94);
}

.reveal-trust-right {
  transform: translateX(48px) translateY(18px);
}

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

.landing-platform-chip.reveal {
  transition: none;
}

.landing-platform-chip.reveal.is-revealed {
  animation: landing-chip-bounce 0.72s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.landing-trust-card.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.landing-header.reveal.is-revealed {
  animation: landing-header-drop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-phone.reveal.is-revealed {
  animation: landing-phone-float 5.5s ease-in-out 0.8s infinite;
}

.landing-live-card.reveal.is-revealed {
  box-shadow: 0 0 0 1px rgba(124, 227, 77, 0.18), 0 0 32px rgba(124, 227, 77, 0.08);
}

.landing-btn.reveal.is-revealed:hover {
  transform: translateY(-2px);
}

.landing-stats-card.reveal.is-revealed strong {
  animation: landing-stat-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

.landing-phone-notification {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-phone.is-revealed .landing-phone-notification-ig {
  opacity: 1;
  transform: none;
  transition-delay: 2.15s;
}

.landing-phone.is-revealed .landing-phone-notification-tt {
  opacity: 1;
  transform: none;
  transition-delay: 2.45s;
}

.landing-whatsapp.reveal.is-revealed {
  animation: landing-whatsapp-pulse 2.8s ease-in-out 1.2s infinite;
}

@keyframes landing-header-drop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes landing-phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes landing-phone-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes landing-phone-area-grow {
  to {
    transform: scaleX(1);
  }
}

@keyframes landing-phone-dot-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes landing-phone-kpi-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes landing-phone-kpi-bar-grow {
  to {
    width: var(--kpi-target, 100%);
  }
}

@keyframes landing-stat-pop {
  0% {
    transform: scale(0.82);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes landing-whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

@keyframes landing-chip-bounce {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.68);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes landing-chip-icon-pop {
  0% {
    transform: scale(0.4) rotate(-12deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes landing-avatar-pop {
  0% {
    transform: scale(0.35);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes landing-trust-text-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 760px) {
  .landing-header {
    padding-inline: 1.5rem;
  }

  .landing-menu-btn {
    display: none;
  }

  .landing-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .landing-nav a {
    padding: 0.45rem 0.65rem;
  }

  .landing-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
  }

  .landing-hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 34rem;
  }

  .landing-trust-grid,
  .landing-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-footer {
    flex-direction: row;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding-inline: 1.5rem;
  }
}

@media (min-width: 980px) {
  main {
    padding-inline: 1.5rem;
  }
}
