:root {
  --color-bg: #000000;
  --color-surface: #0d0d0d;
  --color-surface-2: #141413;
  --color-surface-3: #1a1a18;
  --color-border: rgba(255, 255, 255, 0.10);
  --color-border-warm: rgba(249, 115, 22, 0.25);
  --color-text: #FAFAFA;
  --color-text-muted: #A6A6A6;
  --color-text-dark: #555;
  --color-accent: #F97316;
  --color-accent-hover: #FB923C;
  --color-accent-dark: #EA580C;
  --color-success: #28C840;
  --color-info: #22D3EE;
  --color-warm: #FAF9F5;
  --font: 'Inter', -apple-system, sans-serif;

  --space-base: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none !important;
}

/* ─── STARRY BACKGROUND (CANVAS) ─── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
  pointer-events: none;
}

/* ─── SCANLINES ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(0deg,
      rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 1px,
      transparent 1px, transparent 2px);
}

/* ─── TOP NAV ─── */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  padding-top: env(safe-area-inset-top);
  height: auto;
  min-height: 64px;
  z-index: 1000;
}

.topnav-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  text-decoration: none;
}

.topnav-logo span {
  color: var(--color-accent);
}

.topnav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.topnav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
  text-transform: uppercase;
}

.topnav-link:hover {
  color: var(--color-text);
}

.btn-cta {
  background: #EA580C;
  color: #fff;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-cta:hover {
  opacity: 0.9;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  z-index: 5; /* Ensures content is above UFOs */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(to bottom, transparent 60%, var(--color-bg) 100%),
    url('ASSETS/imagens/gravyx-1775085720205.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-bg {
    background-size: cover;
    background-position: center;
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 45%, transparent 70%, var(--color-bg) 100%),
      url('ASSETS/imagens/gravyx-1775085720205.png');
  }
}

/* ─── FIXED GLOWING ORANGE GRADIENT ─── */
.fixed-bottom-glow {
  position: fixed;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1200px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
}

.hero h1 {
  font-size: clamp(48px, 12vw, 96px); /* Fluid scaling for any screen size */
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 span.dim {
  color: #222;
}

.hero h1 .accent,
.text-accent {
  color: #EA580C;
}

.hero-intro {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 32px;
  height: 40px;
  /* Fixed height for stability */
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#animated-text {
  color: #FFFFFF !important;
  font-weight: 900 !important;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #EA580C;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10001;
  pointer-events: none;
  box-shadow: 0 0 10px #EA580C;
}

.cursor-outline {
  width: 42px;
  height: 42px;
  border: 1.5px solid #EA580C;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transition: transform 0.2s ease-out, background 0.3s ease;
}

a,
button,
.btn-primary,
.btn-secondary,
.btn-cta {
  cursor: none !important;
}

.hero-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.btn-primary {
  background: #EA580C;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

#hero-pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .ufo-system {
    display: none !important;
  }
}


.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: #fff;
  color: #EA580C;
  border: none;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero-footer {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  position: relative;
}

.mouse-icon span {
  width: 2px;
  height: 6px;
  background: var(--color-text-muted);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

.aura-badge {
  position: absolute;
  bottom: 24px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  font-size: 10px;
  color: var(--color-text-muted);
  border-radius: 4px;
  text-decoration: none;
}


/* ─── UTILITIES ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── ABOUT SECTION ─── */
.about {
  padding: 120px 0;
  position: relative;
  background: transparent;
  z-index: 5; /* Ensures content is above the UFO background */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}

/* Image Card */
.about-image-wrapper {
  perspective: 1000px;
  display: flex;
}

.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.2s ease-out, border-color 0.4s;
  background: var(--color-surface);
  width: 100%;
  height: 100%;
  /* Fix for border-radius clipping bug during transforms */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  transform-style: preserve-3d;
  will-change: transform;
}

.about-image-card:hover {
  border-color: var(--color-accent-dark);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.4s;
  will-change: filter;
}

.about-image-card:hover img {
  filter: grayscale(0%) contrast(1);
}

.about-card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  z-index: 2;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.badge-text span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

/* Content */
.about-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--color-text);
}

.circled-text {
  position: relative;
  display: inline-block;
}

.circled-text::after {
  content: "";
  position: absolute;
  inset: -10px -15px;
  border: 2.5px solid var(--color-accent);
  border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
  transform: rotate(-1deg);
  opacity: 0.8;
  animation: blobSpin 15s linear infinite;
  pointer-events: none;
}

@keyframes blobSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-description {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 600px;
}

.about-description p {
  margin-bottom: 20px;
}

.about-description strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-item p {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Footer Icons */
.about-footer-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
}

.icon-group {
  display: flex;
  gap: 24px;
  font-size: 20px;
  filter: grayscale(1);
  opacity: 0.4;
}

.dot-accent {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--color-accent);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .about-description,
  .about-footer-icons {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
    gap: 32px;
  }

  .about-title {
    font-size: 48px;
  }

  .about-image-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ─── BRANDS SECTION ─── */
.brands {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.brands-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 80px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1.05;
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  gap: 80px;
  min-width: 100%;
  padding-left: 80px;
  animation: scroll-left 40s linear infinite;
  align-items: center;
}

.ticker-item {
  font-size: 72px;
  font-weight: 900;
  color: #171717;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -2px;
  transition: color 0.3s ease;
  cursor: default;
}

.ticker-item:hover {
  color: var(--color-accent);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .ticker-item {
    font-size: 40px;
  }

  .brands-title {
    font-size: 28px;
  }

  .ticker-track {
    animation-duration: 20s;
    gap: 64px;
  }
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials {
  padding: 120px 0;
  position: relative;
  background: transparent;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 60px 40px 40px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
}

.quote-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0.9;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.testimonial-card {
  padding: 60px 24px 32px;
}

/* ─── CONTACT SECTION ─── */
.contact {
  padding: 120px 0;
  position: relative;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-title {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-text);
  letter-spacing: -2px;
}

.contact-subtitle {
  color: var(--color-text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
  border-color: var(--color-accent);
}

/* Contact Card */
.contact-form-wrapper {
  perspective: 1000px;
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-5px) rotateX(2deg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

.form-group input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 16px 20px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.1);
}

.w-full {
  width: 100%;
}

/* ─── FOOTER ─── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
  background: #000;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer p {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .contact-title {
    font-size: 48px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .contact-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  /* ─── MOBILE TOPNAV ─── */
  .topnav {
    padding: 0 16px;
    padding-top: env(safe-area-inset-top);
    min-height: 60px;
    height: auto;
    gap: 8px;
  }
  
  .topnav-links {
    display: none; /* Hidden on mobile to prevent overflow */
  }
  
  .topnav-logo {
    font-size: 13px;
    white-space: nowrap;
  }
  
  .topnav-links {
    gap: 12px;
  }
  
  .topnav-link {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  
  .btn-cta {
    padding: 6px 14px;
    font-size: 10px;
    white-space: nowrap;
  }

  /* ─── MOBILE TESTIMONIALS SLIDER ─── */
  .testimonial-grid {
    display: flex;
    gap: 32px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    margin-top: 40px;
    padding-top: 50px; /* Aumentado para garantir que o ícone não seja cortado */
    padding-bottom: 20px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 40px 24px;
  }
  
  .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }

  .nav-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(234, 88, 12, 0.05);
  }

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

  /* ─── MOBILE HERO RESPONSIVENESS ─── */
  .hero-intro {
    font-size: 20px;
    height: 30px;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* ─── SECTION PADDING ─── */
  section {
    padding: 80px 0 !important;
  }

  .container {
    padding: 0 20px;
  }

  /* ─── MOBILE BRANDS COLOR ─── */
  .ticker-item {
    color: var(--color-accent);
  }
}

/* Hide Nav Arrows on Desktop */
@media (min-width: 769px) {
  .testimonial-nav {
    display: none;
  }
}

/* ─── MOBILE CURSOR RESET ─── */
@media (max-width: 768px) {
  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
  
  body, 
  a, 
  button, 
  .btn-primary, 
  .btn-secondary, 
  .btn-cta, 
  .social-icon {
    cursor: auto !important;
  }
}

/* ─── CUSTOM ANIMATIONS ─── */
.pulse-glow {
  display: inline-block;
  animation: pulseGlow 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 0 rgba(234, 88, 12, 0));
  transition: filter 0.3s;
}

@keyframes pulseGlow {
  from {
    filter: drop-shadow(0 0 2px rgba(234, 88, 12, 0.2));
    text-shadow: 0 0 0 rgba(234, 88, 12, 0);
  }
  to {
    filter: drop-shadow(0 0 15px rgba(234, 88, 12, 1));
    text-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
  }
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

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

.reveal.fade-in {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

/* Staggered Delays */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }