:root {
  --bg: #05080a;
  --bg-elevated: #0a0b10;
  --bg-card: #0e1218;
  --cyan: #00ceff;
  --cyan-soft: rgba(0, 206, 255, 0.14);
  --cyan-glow: rgba(0, 206, 255, 0.28);
  --teal: #00a8b5;
  --ink: #ffffff;
  --muted: #94a3b8;
  --muted-soft: #64748b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --green: #22c55e;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  position: relative;
  min-height: 100dvh;
  overflow-x: clip;
  background:
    radial-gradient(
      ellipse 70% 50% at 70% 18%,
      rgba(0, 206, 255, 0.1),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 40% at 15% 8%,
      rgba(0, 168, 181, 0.08),
      transparent 50%
    ),
    linear-gradient(180deg, #0a0b10 0%, var(--bg) 42%, #040608 100%);
}

.page__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
}

.page__glow--hero {
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  top: 8%;
  left: 55%;
  translate: -50% 0;
  background: radial-gradient(circle, var(--cyan-glow), transparent 68%);
  opacity: 0.55;
  animation: glow-pulse 12s ease-in-out infinite alternate;
}

/* —— Topbar —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.85rem 0;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  animation: rise 0.7s ease-out both;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.topbar__brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 206, 255, 0.25);
}

.topbar__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.topbar__nav a {
  transition: color 0.2s ease;
}

.topbar__nav a:hover {
  color: var(--cyan);
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #041018;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 206, 255, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar__cta:hover {
  transform: translateY(-1px);
  background: #33d7ff;
  box-shadow: 0 12px 28px rgba(0, 206, 255, 0.35);
}

.topbar__cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.topbar__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 206, 255, 0.4);
  color: var(--cyan);
  box-shadow: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) 0 clamp(2.5rem, 6vh, 3.5rem);
}

.hero__copy {
  max-width: 34rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 206, 255, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: rise 0.75s ease-out both;
}

.hero__title {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  animation: rise 0.75s ease-out 0.08s both;
}

.hero__lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  max-width: 40ch;
  animation: rise 0.75s ease-out 0.14s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: rise 0.75s ease-out 0.2s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  color: var(--muted-soft);
  font-size: 0.82rem;
  animation: rise 0.75s ease-out 0.26s both;
}

.trust-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

/* Soft-launch CTAs (APK / WhatsApp / panel) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn--primary {
  background: var(--cyan);
  color: #041018;
  box-shadow: 0 10px 28px rgba(0, 206, 255, 0.3);
}

.cta-btn--primary:hover {
  background: #33d7ff;
  box-shadow: 0 14px 32px rgba(0, 206, 255, 0.38);
}

.cta-btn--whatsapp {
  background: #128c7e;
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.28);
}

.cta-btn--whatsapp:hover {
  background: #1aaa98;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.35);
}

.cta-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--line-strong);
}

.cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 206, 255, 0.35);
  color: var(--cyan);
}

.cta-btn--needs-number {
  opacity: 0.92;
}

/* Próximamente — badges no clickeables (sin fingir tienda viva) */
.store-soon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.store-soon__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.95rem;
  border-radius: 0.7rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: default;
  user-select: none;
}

/* Phone mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  animation: rise 0.85s ease-out 0.18s both;
}

.phone {
  position: relative;
  width: min(17.5rem, 78vw);
  /* Room for floating chip below the bezel (desktop + mobile) */
  padding-bottom: 2.1rem;
}

.phone__glow {
  position: absolute;
  inset: 8% -18% -8%;
  background: radial-gradient(circle, var(--cyan-glow), transparent 65%);
  filter: blur(18px);
  animation: glow-pulse 9s ease-in-out infinite alternate;
}

.phone__frame {
  position: relative;
  border-radius: 1.85rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #1a2330, #0b1016 55%, #121820);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: phone-float 5.5s ease-in-out infinite;
}

.phone__notch {
  width: 35%;
  height: 0.55rem;
  margin: 0.2rem auto 0.55rem;
  border-radius: 999px;
  background: #05080a;
}

.phone__screen {
  position: relative;
  border-radius: 1.35rem;
  padding: 0.85rem 0.9rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(0, 206, 255, 0.06), transparent 40%),
    #070b10;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 26rem;
  overflow: hidden;
}

.phone__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.phone__brand img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 206, 255, 0.3);
  flex-shrink: 0;
}

.phone__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.phone__brand span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: var(--muted-soft);
}

.phone__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.phone__pill {
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 206, 255, 0.28);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  font-weight: 700;
}

.phone__kpi-label {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--muted-soft);
}

.phone__kpi {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.15rem;
  line-height: 1.2;
}

.phone__modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 1rem;
}

.phone__modules span {
  padding: 0.55rem 0.5rem;
  border-radius: 0.65rem;
  background: rgba(0, 206, 255, 0.07);
  border: 1px solid rgba(0, 206, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
}

.phone__alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.22);
  font-size: 0.75rem;
}

.phone__alert strong {
  color: #fca5a5;
  font-weight: 600;
}

.phone__alert span {
  color: var(--muted);
}

.phone__list {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.phone__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.phone__list em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 600;
}

/* Floating chip: sibling of frame, sits on bottom bezel — never covers screen UI */
.phone__toast {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  z-index: 3;
  translate: -50% 0;
  width: max-content;
  max-width: calc(100% + 0.5rem);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(7, 11, 16, 0.92);
  border: 1px solid rgba(0, 206, 255, 0.4);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 206, 255, 0.08);
  animation: toast-pop 4.5s ease-in-out infinite;
  pointer-events: none;
}

/* —— Stats —— */
.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  animation: rise 0.75s ease-out 0.28s both;
}

.stats__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.stats__label {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* —— Sections —— */
.section-head {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.section-head__eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-head p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.features,
.pricing,
.download {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4rem) 0;
}

.features__grid {
  display: grid;
  gap: 0.9rem;
}

.feature {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.feature:hover {
  border-color: rgba(0, 206, 255, 0.28);
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.feature p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing {
  text-align: center;
}

.pricing .section-head {
  margin-inline: auto;
}

.pricing__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.pricing-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.pricing-card--featured {
  border-color: rgba(0, 206, 255, 0.42);
  background: linear-gradient(
    165deg,
    rgba(0, 206, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 55%
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 206, 255, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.pricing-card__per {
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-card__tagline {
  margin-top: 0.55rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-card__list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(0, 206, 255, 0.75);
}

.pricing__foot {
  margin: 1.75rem auto 0;
  max-width: 36rem;
}

.pricing__foot > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.pricing__actions .link-cyan {
  margin-top: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing__actions .link-cyan:hover {
  color: var(--cyan);
}

.link-cyan {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.link-cyan:hover {
  opacity: 0.85;
}

/* —— Download CTA —— */
.download {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 9vh, 5.5rem);
}

.download__glow {
  position: absolute;
  left: 50%;
  top: 35%;
  translate: -50% -50%;
  width: min(28rem, 80vw);
  height: min(18rem, 50vw);
  background: radial-gradient(circle, rgba(0, 206, 255, 0.16), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.download h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 16ch;
  margin-inline: auto;
}

.download__lead {
  position: relative;
  margin: 1rem auto 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.download__actions {
  position: relative;
  justify-content: center;
}

.download .hero__trust {
  justify-content: center;
}

.download__apk-note {
  position: relative;
  margin: 1rem auto 0;
  max-width: 46ch;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.download .link-cyan {
  position: relative;
  margin-top: 1.25rem;
}

/* —— FAQ page —— */
.faq-page {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding-block: clamp(2.5rem, 8vh, 4.5rem) 3rem;
}

.faq-page__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.faq-page__head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.35rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 42rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg-card) 88%, transparent);
  overflow: clip;
  animation: rise 0.6s ease-out both;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--cyan);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--cyan-soft);
}

.faq-item__body {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-item__body p + p {
  margin-top: 0.65rem;
}

.faq-item__body code {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(0, 206, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-size: 0.82rem;
  word-break: break-all;
}

.link-inline {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.link-inline:hover {
  opacity: 0.85;
}

.faq-email {
  color: var(--muted-soft);
  font-size: 0.88em;
}

.faq-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

/* —— Footer —— */
.footer {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.footer__logo img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 34ch;
  line-height: 1.55;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.footer__col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--cyan);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted-soft);
}

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

@keyframes glow-pulse {
  from {
    opacity: 0.45;
    transform: scale(1);
  }
  to {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

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

@keyframes toast-pop {
  0%,
  70%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0.7;
    transform: translateY(4px);
  }
}

@media (min-width: 720px) {
  .topbar__nav {
    display: flex;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
  }

  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
  }

  .pricing-card--featured {
    transform: translateY(-0.35rem);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    min-height: min(78vh, 42rem);
  }

  .hero__visual {
    justify-content: flex-end;
  }

  .features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero__actions,
  .download__actions {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }

  .topbar__actions {
    gap: 0.35rem;
  }

  .topbar__cta {
    padding-inline: 0.75rem;
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
