body {
  font-family: "Inter", sans-serif;
}

.font-display {
  font-family: "Outfit", sans-serif;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* Hero entrance */
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-in {
  animation: hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.hero-in-1 { animation-delay: 0.05s; }
.hero-in-2 { animation-delay: 0.15s; }
.hero-in-3 { animation-delay: 0.25s; }
.hero-in-4 { animation-delay: 0.35s; }
.hero-in-5 { animation-delay: 0.45s; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.grid-overlay {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-pattern {
  background-image: radial-gradient(
      circle at 23px 18px,
      rgba(234, 88, 12, 0.12) 1.5px,
      transparent 0
    ),
    radial-gradient(
      circle at 87px 42px,
      rgba(20, 184, 166, 0.1) 1px,
      transparent 0
    ),
    radial-gradient(
      circle at 156px 8px,
      rgba(245, 158, 11, 0.1) 1px,
      transparent 0
    );
  background-size: 400px 200px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 24px 48px -12px rgba(0, 0, 0, 0.5);
}
.glass-card-glow {
  position: relative;
}
.glass-card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.4),
    rgba(255, 255, 255, 0.05) 40%,
    rgba(20, 184, 166, 0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.feature-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s, box-shadow 0.35s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 20px 40px -16px rgba(249, 115, 22, 0.15);
}

.venue-pill {
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.venue-pill:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-1px);
}

.step-line {
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.5),
    rgba(20, 184, 166, 0.3)
  );
}

select.vc-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
select.vc-select option {
  background-color: #fff;
  color: #111827;
}

.input-glow:focus {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.35),
    0 0 20px -4px rgba(249, 115, 22, 0.25);
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.form-step {
  animation: step-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.opt-box {
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.opt-input:focus-visible + .opt-box {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.5);
}
.opt-input:checked + .opt-box {
  border-color: rgba(249, 115, 22, 0.6);
  background: rgba(249, 115, 22, 0.12);
}
.opt-input:checked + .opt-box .opt-check {
  opacity: 1;
  transform: scale(1);
}
.opt-check {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-scrolled {
  background: rgba(20, 23, 30, 0.85) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    #fb923c 0%,
    #fcd34d 25%,
    #fb923c 50%,
    #f97316 75%,
    #fb923c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.18); }
}
.marquee-viewport {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 7%,
    black 93%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 7%,
    black 93%,
    transparent
  );
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 70s linear infinite;
  will-change: transform;
}
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}
.ind-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s, box-shadow 0.45s;
}
.ind-card img {
  animation: kenburns 16s ease-in-out infinite alternate;
  will-change: transform;
}
.ind-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 26px 50px -18px rgba(249, 115, 22, 0.35);
}
.ind-card:hover img {
  animation-play-state: paused;
}

/* Industry detail pages */
.industry-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.industry-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #14171e 0%,
    rgba(20, 23, 30, 0.75) 45%,
    rgba(20, 23, 30, 0.35) 100%
  );
}
.industry-content-img {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.industry-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-ind-link {
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.related-ind-link:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
  background: rgba(249, 115, 22, 0.06);
}

/* Zone map illustrations */
.zone-map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1f29;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.45);
}
.zone-map {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
  aspect-ratio: 8 / 5;
}

@media (prefers-reduced-motion: reduce) {
  .form-step { animation: none !important; }
  .reveal,
  .hero-in,
  .orb,
  .text-shimmer,
  .feature-card,
  .venue-pill,
  .ind-card {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .ind-card img { animation: none !important; }
  .marquee-track {
    animation: none !important;
    width: 100% !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .marquee-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
