﻿/* ============================================================
   WayneFX — Premium Styles
   Gold × Black Landing Page
   ============================================================ */

/* ── Security: disable text selection & print/screenshot ── */
* {
  -webkit-user-select: none;
  -moz-user-select:    none;
  -ms-user-select:     none;
  user-select:         none;
}
input, textarea {
  -webkit-user-select: text;
  -moz-user-select:    text;
  -ms-user-select:     text;
  user-select:         text;
}
@media print {
  body { display: none !important; }
}

/* ── Custom Properties ── */
:root {
  /* palette */
  --gold-1:        #f5c842;
  --gold-2:        #e8a820;
  --gold-mute:     rgba(245,200,66,0.55);
  --gold-border:   rgba(245,200,66,0.18);
  --gold-border-h: rgba(245,200,66,0.55);
  --bg:            #080600;
  --bg-card:       rgba(16,12,3,0.60);
  --text:          #f0e8d0;
  --muted:         rgba(240,232,208,0.45);
  --text-soft:     rgba(240,232,208,0.65);
  /* gradients */
  --grad-gold: linear-gradient(135deg, #f5c842 0%, #e8a820 55%, #f5c842 100%);
  --grad-btn:  linear-gradient(135deg, #f5c842 0%, #fde888 45%, #e8a820 100%);
  /* typography */
  --font-display: 'Cinzel', serif;
  --font-body:    'Noto Sans SC', sans-serif;
  /* layout */
  --px:   clamp(18px, 5vw, 88px);
  --r-sm: 10px;
  --r-md: 18px;
  /* transitions */
  --tr: 0.28s cubic-bezier(0.34, 1, 0.64, 1);
}

/* ── Keyframes ── */
@keyframes topbarFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseCTA {
  0%, 100% { box-shadow: 0 8px 18px rgba(245,200,66,0.28); }
  50%       { box-shadow: 0 8px 32px rgba(245,200,66,0.52); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.04); }
}

@keyframes shimmer {
  0%   { transform: skewX(-22deg) translateX(-200%); }
  70%  { transform: skewX(-22deg) translateX(500%); }
  100% { transform: skewX(-22deg) translateX(500%); }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.80; }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.80; }
  50%       { transform: scale(1.35); opacity: 1; }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Base Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ──────────────────────────────────────────────────────────
   GOLD TOPBAR
   ────────────────────────────────────────────────────────── */
.gold-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1000;
  background: linear-gradient(90deg, #f5c842, #fde888, #e8a820, #f5c842);
  background-size: 200% 100%;
  animation: topbarFlow 4s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────
   NAVBAR
   ────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 900;
  transition: background var(--tr), backdrop-filter var(--tr), border-color var(--tr);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--px);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-accent {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-1);
  opacity: 0.75;
}

#navbar.scrolled {
  background: rgba(8,6,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
}

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--px);
}

.hero-bg {
  position: absolute;
  inset: -20%;
  background-image: url('/background%20feedback%20wayne.webp');
  background-image: -webkit-image-set(url('/background%20feedback%20wayne.webp') 1x);
  background-image: image-set(url('/background%20feedback%20wayne.webp') type('image/webp'), url('/background%20feedback%20wayne.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.8);
  z-index: 0;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg,
      transparent, transparent 74px,
      rgba(245,200,66,0.025) 74px, rgba(245,200,66,0.025) 75px),
    repeating-linear-gradient(90deg,
      transparent, transparent 74px,
      rgba(245,200,66,0.015) 74px, rgba(245,200,66,0.015) 75px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.065) 0%, transparent 70%);
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0.85;
  margin-bottom: 22px;
}

.hero-eyebrow span { font-size: 0.50rem; opacity: 0.65; }

.hero-title--main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  filter: drop-shadow(0 4px 18px rgba(245,200,66,0.30));
}

.hero-title--main .title-line {
  display: block;
}

.hero-title--main .char {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-title--sub {
  display: block;
  font-size: clamp(0.82rem, 2.4vw, 1.08rem);
  color: var(--text-soft);
  letter-spacing: 0.06em;
  font-weight: 300;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 40px;
  font-size: 0.72rem;
  color: var(--gold-1);
  letter-spacing: 0.06em;
  font-weight: 500;
  background: rgba(245,200,66,0.055);
}

/* ──────────────────────────────────────────────────────────
   CTA BUTTON
   ────────────────────────────────────────────────────────── */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 18px 32px;
  background: var(--grad-btn);
  color: #060400;
  font-weight: 900;
  font-size: 0.97rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  animation: pulseCTA 3s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  border: 1px solid rgba(253,230,138,0.35);
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.cta-shimmer {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 45%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.32),
    transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.cta-btn:hover,
.cta-btn:focus-visible {
  box-shadow: 0 14px 32px rgba(245,200,66,0.52);
  transform: translateY(-1px);
  animation: none;
  outline: none;
}

.cta-btn:hover .cta-shimmer { animation: none; }
.cta-btn svg { flex-shrink: 0; }

/* ──────────────────────────────────────────────────────────
   HERO PHONE MOCKUP
   ────────────────────────────────────────────────────────── */
.hero-phone-wrap {
  position: relative;
  width: min(320px, 90vw);
  margin: 28px auto 36px;
  align-self: center;
}

/* ── Phone animation wrapper ── */
.phone-anim-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

/* (pulse / scan / glow elements removed) */

.phone-mockup {
  width: clamp(180px, 52vw, 240px);
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.55));
  animation: phoneFloat 2.5s ease-in-out infinite;
}

/* ── Profit Floating Badges ── */
.profit-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(8,6,0,0.88);
  border: 1px solid rgba(245,200,66,0.30);
  border-radius: 30px;
  padding: 6px 13px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  color: #f0e8d0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  pointer-events: none;
}
.pb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
.pb-1 { top: 52px;    left: 0;   }
.pb-2 { top: 20px;    right: 0;  }
.pb-3 { bottom: 58px; right: 0;  }

/* ──────────────────────────────────────────────────────────
   PROOF STRIP
   ────────────────────────────────────────────────────────── */
/* ───────────────────────────────────────────────────────────
   HERO INLINE STATS
   ─────────────────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-top: 28px;
  padding: 10px 0;
  width: 100%;
  max-width: 360px;
  background: none;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hstat {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
}

.hstat svg { flex-shrink: 0; color: var(--gold-1); opacity: 0.80; }

.hstat-val {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hstat-label {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 300;
  white-space: nowrap;
}

.hstat-sep {
  color: var(--gold-1);
  opacity: 0.22;
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

/* ──────────────────────────────────────────────────────────
   SECTION SHARED
   ────────────────────────────────────────────────────────── */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 14px;
  opacity: 0.80;
}

.section-eyebrow span { font-size: 0.52rem; opacity: 0.65; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.85;
  font-weight: 300;
}

/* ──────────────────────────────────────────────────────────
   FEATURES / BENEFITS
   ────────────────────────────────────────────────────────── */
.features {
  padding: 88px var(--px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245,200,66,0.055) 0%, transparent 55%),
    var(--bg);
  border-top: 1px solid var(--gold-border);
}

/* Feature card grid — mobile: single column stack */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card */
.feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,200,66,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,200,66,0.07), transparent);
  transform: skewX(-22deg);
  transition: left 0.70s ease;
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,200,66,0.12), 0 0 0 1px var(--gold-border-h);
}

.feature-card:hover::after { left: 120%; }

.feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,200,66,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  color: var(--gold-1);
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}

.feature-card:hover .feature-icon {
  background: rgba(245,200,66,0.14);
  border-color: var(--gold-border-h);
  box-shadow: 0 0 18px rgba(245,200,66,0.20);
}

.feature-text { flex: 1; }

.feature-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
}

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────────────────────── */
.testimonials {
  padding: 96px var(--px);
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245,200,66,0.045) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--gold-border);
}

.carousel-wrapper {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.56s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.tcard-img-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.tcard-img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  display: block;
  object-fit: contain;
  object-position: center top;
  transition: none;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,200,66,0.03) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

/* ── Carousel footer nav ── */
.carousel-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 6px;
}

.carousel-counter {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-1);
  letter-spacing: 0.12em;
  min-width: 22px;
}

.carousel-total {
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--gold-1);
  opacity: 0.36;
  letter-spacing: 0.10em;
  min-width: 22px;
}

.carousel-progress-wrap {
  flex: 1;
  height: 2px;
  background: rgba(245,200,66,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e8a820, #f5c842, #fde888);
  border-radius: 2px;
  transition: width 0.56s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 8px;
}

.dot {
  width: 20px; height: 5px;
  border-radius: 3px;
  background: rgba(245,200,66,0.20);
  border: none;
  cursor: pointer;
  transition: background var(--tr), width var(--tr);
  padding: 0;
}

.dot.active {
  width: 30px;
  background: var(--gold-1);
}

/* ──────────────────────────────────────────────────────────
   FINAL CTA
   ────────────────────────────────────────────────────────── */
.final-cta {
  padding: 80px var(--px);
  text-align: center;
  border-top: 1px solid var(--gold-border);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,200,66,0.065) 0%, transparent 60%),
    var(--bg);
}

.final-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 14px;
  opacity: 0.80;
}

.final-eyebrow span { font-size: 0.52rem; opacity: 0.65; }

.final-cta .section-title { margin-bottom: 14px; }
.final-cta .section-desc  { margin-bottom: 0; }

.final-cta .cta-btn {
  margin: 36px auto 0;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--gold-border);
  padding: 48px var(--px) 24px;
  background: rgba(6,4,0,0.60);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo  { height: auto; width: 100%; max-width: 160px; display: block; opacity: 1; margin: 0 auto; }

.footer-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.disclaimer-text {
  font-size: 0.76rem;
  color: rgba(240,232,208,0.30);
  line-height: 1.85;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(245,200,66,0.08);
  text-align: center;
  font-size: 0.72rem;
  color: rgba(240,232,208,0.25);
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

/* ──────────────────────────────────────────────────────────
   MEDIA QUERIES
   ────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  /* 2-col feature grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Vertical card layout at tablet+ */
  .feature-card {
    flex-direction: column;
    gap: 0;
    padding: 30px 26px;
    align-items: flex-start;
  }

  .feature-icon { margin-bottom: 0; }

  .feature-text {
    padding-top: 18px;
    margin-top: 16px;
    border-top: 1px solid rgba(245,200,66,0.10);
    width: 100%;
  }

  .section-title { font-size: 2rem; }

  /* Footer 2-col grid already handled above */
}

@media (min-width: 1024px) {
  /* 4-col feature grid */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .feature-card { padding: 32px 26px; }

  .feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .section-title { font-size: 2.20rem; }
  .proof-num      { font-size: 3rem; }
}

@media (max-width: 639px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ──────────────────────────────────────────────────────────
   REDIRECT OVERLAY / PRELOADER
   ────────────────────────────────────────────────────────── */
@keyframes ovSpinRing {
  to { transform: rotate(360deg); }
}
@keyframes ovRipple {
  0%   { transform: scale(0.82); opacity: 0.80; }
  100% { transform: scale(2.90); opacity: 0;    }
}
@keyframes ovLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 6px  rgba(245,200,66,0.45)); }
  50%       { filter: drop-shadow(0 0 20px rgba(245,200,66,0.90)); }
}
@keyframes ovTextBlink {
  0%, 100% { opacity: 0.45; letter-spacing: 0.22em; }
  50%       { opacity: 0.85; letter-spacing: 0.30em; }
}

.redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: radial-gradient(ellipse at 50% 50%, #110d02 0%, #080600 68%);
  visibility: hidden;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
}

.redirect-overlay::before,
.redirect-overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,200,66,0.35), transparent);
}
.redirect-overlay::before { top: 0;    }
.redirect-overlay::after  { bottom: 0; }

.redirect-overlay__ring-wrap {
  position: relative;
  width: 92px;
  height: 92px;
}

.redirect-overlay__ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,200,66,0.55);
  animation: ovRipple 2.0s ease-out infinite;
  opacity: 0;
}
.redirect-overlay__ripple:nth-child(1) { animation-delay: 0.00s; }
.redirect-overlay__ripple:nth-child(2) { animation-delay: 0.65s; }
.redirect-overlay__ripple:nth-child(3) { animation-delay: 1.30s; }

.redirect-overlay__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(245,200,66,0.10);
  border-top-color: #f5c842;
  border-right-color: rgba(245,200,66,0.42);
  animation: ovSpinRing 0.90s linear infinite;
}

.redirect-overlay__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: auto;
  animation: ovLogoPulse 1.8s ease-in-out infinite;
}

.redirect-overlay__text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,200,66,0.65);
  animation: ovTextBlink 1.8s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────
   ACCESSIBILITY — Respect OS reduced-motion preference
   ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────────────────────
   REDIRECT OVERLAY — CSS transition replaces GSAP fromTo
   ────────────────────────────────────────────────────────── */
.redirect-overlay {
  transition: opacity 0.60s cubic-bezier(0.87, 0, 0.13, 1),
              clip-path 0.60s cubic-bezier(0.87, 0, 0.13, 1);
}
.redirect-overlay.active {
  visibility: visible;
  opacity: 1;
  clip-path: circle(150% at 50% 50%);
}