* { scroll-behavior: smooth; }
body { background: #0d0d12; }

body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-line { background: linear-gradient(90deg, transparent, rgba(255,190,25,0.25), transparent); height: 1px; }

/* Borne hero — fade dark square background into page bg */
img[src*="borne-hero"] {
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, #000 55%, rgba(0,0,0,0.6) 75%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 75% at 50% 50%, #000 55%, rgba(0,0,0,0.6) 75%, transparent 100%);
}

/* Marquee */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track { animation: marquee 20s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Buttons */
.btn-primary {
  background: #ffbe19; color: #0d0d12; font-weight: 700; display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 8px 40px rgba(255,190,25,0.25); }
.btn-primary:focus-visible { outline: 2px solid #ffbe19; outline-offset: 3px; }
.btn-primary:active { transform: scale(0.98); }

.btn-white {
  background: #fff; color: #0d0d12; font-weight: 600; display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease;
}
.btn-white:hover { transform: scale(1.03); background: #f0f0f0; }
.btn-white:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn-white:active { transform: scale(0.98); }

.btn-outline {
  border: 1px solid rgba(255,190,25,0.3); color: #ffbe19; display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, border-color 0.2s ease;
}
.btn-outline:hover { background: rgba(255,190,25,0.08); border-color: #ffbe19; transform: scale(1.03); }
.btn-outline:focus-visible { outline: 2px solid #ffbe19; outline-offset: 3px; }
.btn-outline:active { transform: scale(0.98); }

/* Cards */
.pricing-card { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255,190,25,0.06), 0 4px 16px rgba(0,0,0,0.4); }

/* FAQ */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.faq-answer.open { max-height: 200px; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-chevron.open { transform: rotate(180deg); }

/* Inputs */
input:focus, textarea:focus { outline: none; border-color: #ffbe19 !important; box-shadow: 0 0 0 3px rgba(255,190,25,0.1); }

/* Hero bornes float */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float-slow { animation: float 6s ease-in-out infinite; }
.float-medium { animation: float 5s ease-in-out infinite 0.5s; }
