:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --accent-purple: #818cf8;
  --accent-teal: #22d3ee;
  --text: #0f172a;
  --text-secondary: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --font-heading: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); letter-spacing: -0.02em; }

a { color: var(--primary); text-decoration: none; }

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

/* ---------- Reveal on scroll ---------- */

[data-reveal] {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), translate 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  padding: 12px 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-block;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(160deg, #12194a 0%, #1e2a6e 35%, #0b1024 100%);
  color: white;
  padding: 72px 32px 40px;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.55;
}

.hero-glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #3b5bdb, transparent 70%);
  top: -160px; left: -120px;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: -180px; right: -100px;
  opacity: 0.3;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  z-index: -1;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #bfdbfe;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 16px;
  border-radius: 999px;
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

.hero-text h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(100deg, #93c5fd, #c4b5fd 55%, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 17px;
  color: #cbd5e1;
  margin: 0 auto 28px;
  max-width: 520px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background 0.2s, border-color 0.2s;
}

.badge-soon:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 240px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
  border: 7px solid #111827;
}

.phone-frame.float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.6deg); }
}

.orbit-badge {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.orbit-1 { background: linear-gradient(135deg, #f87171, #dc2626); top: 6%; left: 4%; animation-delay: 0.3s; }
.orbit-2 { background: linear-gradient(135deg, #4ade80, #16a34a); bottom: 30%; right: 2%; animation-delay: 1s; }
.orbit-3 { background: linear-gradient(135deg, #fb923c, #ea580c); bottom: 8%; left: 10%; animation-delay: 1.6s; }

.hero-scroll {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.hero-scroll span {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  position: relative;
  display: block;
}

.hero-scroll span::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  100% { top: 20px; opacity: 0; }
}

/* ---------- Sections ---------- */

main { position: relative; }

section { padding: 96px 32px; max-width: 1080px; margin: 0 auto; scroll-margin-top: 84px; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.eyebrow-light {
  background: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: none;
}

.eyebrow-onDark {
  background: rgba(255,255,255,0.08);
  color: #93c5fd;
  border: 1px solid rgba(255,255,255,0.14);
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  margin: 0 0 14px;
  font-weight: 800;
}

.section-head h2.onDark { color: white; }

.section-head p { color: var(--text-secondary); margin: 0; font-size: 16px; }
.section-head p.onDark-muted { color: #94a3b8; }

/* ---------- Feature grid ---------- */

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}

.features .feature-card[data-reveal]:nth-child(2) { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, translate 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s; }
.features .feature-card[data-reveal]:nth-child(3) { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.24s, translate 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.24s; }
.features .feature-card[data-reveal].is-visible:nth-child(2),
.features .feature-card[data-reveal].is-visible:nth-child(3) {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg { width: 22px; height: 22px; }

.icon-blue { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.icon-purple { background: rgba(129, 140, 248, 0.12); color: #6366f1; }
.icon-teal { background: rgba(34, 211, 238, 0.12); color: #0891b2; }

.feature-card .phone-frame-sm {
  width: 150px;
  margin: 0 auto 22px;
  border-width: 5px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
}

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

/* ---------- Dark showcase section ---------- */

.section-dark {
  background: #0b1024;
  max-width: none;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.section-dark-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59, 91, 219, 0.35), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.section-dark .section-head { position: relative; }

.showcase-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.showcase-item .phone-frame {
  width: 220px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item.tilt-left .phone-frame { transform: rotate(-6deg); }
.showcase-item.tilt-right .phone-frame { transform: rotate(6deg); }
.showcase-item:hover .phone-frame { transform: rotate(0deg) scale(1.04); }

.showcase-caption {
  text-align: center;
  margin-top: 24px;
  max-width: 240px;
}

.showcase-caption h3 {
  color: white;
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
}

.showcase-caption p {
  color: #94a3b8;
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Sobre / mission ---------- */

.mission {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.mission p:not(.mission-quote) {
  font-size: 15.5px;
  color: var(--text-secondary);
}

.mission p + p { margin-top: 18px; }

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

.mission-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.mission-badge {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

/* ---------- Developer section ---------- */

.dev-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}

.code-card {
  background: #0d1117;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.25);
}

.code-card-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-card-bar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.code-card-title {
  margin-left: 8px;
  font-size: 12px;
  color: #64748b;
  font-family: var(--font-heading);
}

.code-card-body {
  margin: 0;
  padding: 22px 20px;
  font-family: "SF Mono", "Fira Code", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.85;
  color: #e2e8f0;
  flex: 1;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: var(--accent-teal);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.tok-kw { color: #c586c0; }
.tok-fn { color: #dcdcaa; }
.tok-type { color: #4ec9b0; }
.tok-param { color: #9cdcfe; }
.tok-str { color: #ce9178; }
.tok-comment { color: #6a9955; }

/* ---------- Developer bio ---------- */

.bio-card {
  position: relative;
  background: #0b1024;
  color: #e2e8f0;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.bio-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.35), transparent 70%);
  top: -120px; right: -80px;
  filter: blur(50px);
}

.bio-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 26px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.bio-content { position: relative; }

.bio-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  color: white;
  font-weight: 700;
}

.bio-card .role {
  font-size: 13.5px;
  color: #93c5fd;
  margin: 0 0 14px;
  font-weight: 600;
}

.bio-card p {
  font-size: 14.5px;
  color: #cbd5e1;
  margin: 0 0 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.bio-link {
  color: #93c5fd;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.bio-link:hover { gap: 8px; }

/* ---------- Donation ---------- */

.donation-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.donation-illu {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.18);
  animation: ringPulse 2.4s ease-in-out infinite;
}

.donation-ring-1 { width: 130px; height: 130px; }
.donation-ring-2 { width: 170px; height: 170px; animation-delay: 0.4s; }
.donation-ring-3 { width: 210px; height: 210px; animation-delay: 0.8s; }

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.donation-heart {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff6b8a, #e0184b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 14px 30px rgba(224, 24, 75, 0.35);
  animation: heartFloat 2.2s ease-in-out infinite;
}

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

.donation-badge {
  position: absolute;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
  animation: heartFloat 2.6s ease-in-out infinite;
}

.donation-badge-1 { top: 4%; left: 0; background: rgba(0, 191, 165, 0.12); color: #00816f; border: 1px solid rgba(0, 191, 165, 0.3); animation-delay: 0.2s; }
.donation-badge-2 { top: 42%; right: -6%; background: rgba(37, 99, 235, 0.1); color: var(--primary); border: 1px solid rgba(37, 99, 235, 0.25); animation-delay: 0.6s; }
.donation-badge-3 { bottom: 8%; left: 6%; background: rgba(245, 158, 11, 0.12); color: #92660a; border: 1px solid rgba(245, 158, 11, 0.3); animation-delay: 1s; }

.donation-pix { flex: 1; }

.pix-label {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}

.pix-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-family: monospace;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pix-key:hover { border-color: var(--primary); background: rgba(37, 99, 235, 0.04); }
.pix-key svg { flex-shrink: 0; color: var(--text-secondary); }

.pix-key.copied {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.06);
  color: #16a34a;
}

.pix-thanks {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, #1e2a6e, #12194a);
  border-radius: 28px;
  padding: 72px 32px;
  color: white;
  margin: 0 auto 96px;
  max-width: 1080px;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 0 0 12px;
  font-weight: 800;
}

.cta-banner p {
  color: #cbd5e1;
  margin: 0 0 28px;
  font-size: 15.5px;
}

.hero-actions.center { justify-content: center; }

/* ---------- Legal pages (termos/privacidade) ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

header.legal-header {
  background: linear-gradient(135deg, #1e2a6e, #2563eb);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header.legal-header h1 { margin: 0 0 4px; font-size: 24px; font-weight: 800; }
header.legal-header p { margin: 0; opacity: 0.85; font-size: 14px; }

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.legal-main h2 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: 700;
}

.legal-main h2:first-child { margin-top: 0; }

.legal-main p, .legal-main li {
  font-size: 14px;
  color: var(--text-secondary);
}

.updated {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #92400e;
  margin-bottom: 24px;
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

footer a { color: var(--text-secondary); }

/* ---------- Responsive ---------- */

@media (min-width: 860px) {
  .hero-inner { flex-direction: row; text-align: left; justify-content: space-between; }
  .hero-text { flex: 1; max-width: 480px; }
  .hero-text p { margin: 0 0 28px; }
  .hero-actions { justify-content: flex-start; }
  .hero-visual { flex: 1; }
}

@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; }
  .dev-grid { grid-template-columns: 1fr; }
  .bio-card { flex-direction: column; text-align: center; }
  .bio-content { text-align: center; }
  .tags { justify-content: center; }
  .donation-card { flex-direction: column; text-align: center; }
  section { padding: 72px 24px; }
  .mission, .bio-card, .cta-banner, .donation-card { padding: 32px 24px; }
  .nav-links { gap: 16px; font-size: 13px; }
  .code-card-body { font-size: 12px; }
}

@media (max-width: 560px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame.float, .orbit-badge, .hero-glow-1, .hero-glow-2, .hero-scroll span::before {
    animation: none;
  }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}
