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

:root {
  --wine: #8b0000;
  --wine-glow: rgba(139, 0, 0, 0.5);
  --wine-light: #a50000;
  --bg: #000000;
  --bg2: #0d0d0d;
  --bg3: #121212;
  --border: #1f1f1f;
  --white: #ffffff;
  --silver: #c0c0c0;
  --silver2: #a9a9a9;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  touch-action: manipulation;
}

/* STICKY STATUS BAR */
.status-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 8px 16px; display: flex; align-items: center;
  justify-content: center; gap: 10px; font-size: 11px;
  color: var(--silver); letter-spacing: 1px;
}
.status-dot { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); } 50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); } }

/* HEADER */
header {
  position: fixed; top: 0; left: 0; right: 0; padding: 12px 24px;
  text-align: center; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.logo-container { max-width: 100px; display: flex; align-items: center; }
.btn-nav {
  background: var(--wine); color: #fff; padding: 12px 24px;
  border-radius: 8px; font-weight: 900; font-size: 14px;
  text-decoration: none; letter-spacing: 1px; box-shadow: 0 0 20px var(--wine-glow);
  transition: all 0.3s ease;
}
.btn-nav:hover { transform: scale(1.05); background: var(--wine-light); box-shadow: 0 0 30px var(--wine-glow); }
.logo-img { width: 100%; height: auto; filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--wine-glow)); }
.logo-sub { font-size: 11px; letter-spacing: 4px; color: var(--silver); margin-top: 8px; }

/* CONTAINER */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px 24px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%), 
              url('https://assets.cdn.filesafe.space/22PNiCubvljCC75Xubff/media/69f2795cfab44d4020bc24eb.jpeg') center/cover no-repeat;
  z-index: 0; will-change: transform;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='%230d0d0d'/%3E%3Cpath d='M0 0h60v60H0z' fill='none' stroke='%23111' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 {
  font-size: clamp(32px, 5.5vw, 72px); font-weight: 900; line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #a9a9a9 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-shadow: none; margin-bottom: 24px; animation: fadeInUp 1s ease;
}
.hero h3 {
  font-size: clamp(15px, 1.6vw, 20px); font-weight: 400; color: var(--silver);
  font-style: italic; line-height: 1.7; margin-bottom: 40px;
  animation: fadeInUp 1.2s ease; max-width: 600px; margin-left: auto; margin-right: auto;
}
.btn-primary {
  display: inline-block; background: var(--wine); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px;
  letter-spacing: 2px; padding: 22px 44px; border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none; animation: breathe 3s ease-in-out infinite;
  position: relative; width: 100%; max-width: 340px; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none; animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.btn-primary::after {
  content: ''; position: absolute; inset: -3px; border-radius: 15px;
  background: var(--wine); opacity: 0.3; z-index: -1; animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 20px var(--wine-glow), 0 0 40px var(--wine-glow); transform: scale(1); }
  50% { box-shadow: 0 0 40px var(--wine-glow), 0 0 80px var(--wine-glow), 0 0 120px rgba(139,0,0,0.2); transform: scale(1.03); }
}
.btn-note { font-size: 12px; color: var(--silver2); margin-top: 16px; letter-spacing: 1px; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* AUTHORITY */
.section { padding: 64px 0; }
.authority { background: var(--bg2); }
.pentagon { width: 100px; height: 100px; margin: 0 auto 24px; position: relative; animation: fadeInScale 1s ease both; }
.pentagon svg { width: 100%; height: 100%; }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.section-label { font-size: 11px; letter-spacing: 4px; color: var(--wine); margin-bottom: 12px; text-transform: uppercase; }
.section-title {
  font-size: clamp(22px, 3vw, 42px); font-weight: 900;
  background: linear-gradient(135deg, #fff, #a9a9a9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px; text-align: center;
  text-shadow: 0 0 10px var(--wine-glow); line-height: 1.1;
}
.section-text { color: var(--silver); line-height: 1.8; text-align: center; max-width: 680px; margin: 0 auto; font-size: 15px; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--wine), transparent); margin: 16px auto 20px; }

/* COUNTERS */
.counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px auto 0; text-align: center; }
.counter-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px 16px; }
.counter-num {
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 900; color: var(--white);
  background: linear-gradient(135deg, #fff, #a9a9a9); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-label { font-size: 11px; letter-spacing: 1px; color: var(--silver2); margin-top: 8px; }

/* ARENAS */
.arenas { background: var(--bg); }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px auto 0; }
@media(max-width: 480px) { .cards-grid { grid-template-columns: 1fr; } }
.card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px; padding: 32px 24px; text-align: center;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transform-style: preserve-3d; perspective: 1000px;
}
.card:hover {
  border-color: var(--wine); box-shadow: 0 12px 48px 0 var(--wine-glow);
  background: rgba(139, 0, 0, 0.05); animation: glitch .3s ease;
}
@keyframes glitch {
  0% { transform: translate(0); } 20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); } 60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); } 100% { transform: translate(0); }
}
.card-icon {
  height: 80px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
  transform: translateZ(30px);
}
.card:hover .card-icon { transform: translateZ(50px) scale(1.1) rotate(5deg); }
.card-icon img { max-height: 100%; max-width: 100%; filter: drop-shadow(0 0 10px rgba(139,0,0,0.3)); }
.card-title { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 2px; margin-bottom: 12px; }
.card-text { font-size: 13px; color: var(--silver); line-height: 1.7; }

/* VAULT */
.vault { background: linear-gradient(180deg, var(--bg) 0%, rgba(100,0,0,0.3) 50%, var(--bg) 100%); }
.vault-icon { font-size: 48px; text-align: center; margin-bottom: 24px; }
.sla-badge {
  display: inline-block; background: rgba(139, 0, 0, 0.2); border: 1px solid var(--wine);
  border-radius: 8px; padding: 12px 24px; margin-top: 24px; font-size: 13px; color: var(--silver); text-align: center;
}
.sla-badge strong { color: var(--white); font-weight: 900; }

/* STEPS */
.steps { background: var(--bg2); }
.steps-list { margin: 32px auto 0; display: flex; flex-direction: column; gap: 0; max-width: 500px; }
.step { display: flex; gap: 20px; position: relative; padding-bottom: 36px; }
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 19px; top: 44px; width: 2px;
  height: calc(100% - 44px); background: linear-gradient(180deg, var(--wine), transparent);
}
.step-circle {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--wine); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; box-shadow: 0 0 20px var(--wine-glow);
}
.step-content h4 { font-size: 16px; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--silver); line-height: 1.6; }

/* FILTER */
.filter { background: var(--bg3); text-align: center; }
.filter-items { max-width: 560px; margin: 24px auto; display: flex; flex-direction: column; gap: 14px; }
.filter-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 12px;
  opacity: 0; transform: translateY(20px);
}
.reveal.visible .filter-item { animation: staggerIn .6s cubic-bezier(.4, 0, .2, 1) forwards; }
.reveal.visible .filter-item:nth-child(1) { animation-delay: .2s; }
.reveal.visible .filter-item:nth-child(2) { animation-delay: .4s; }
.reveal.visible .filter-item:nth-child(3) { animation-delay: .6s; }
@keyframes staggerIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.filter-item.yes { border-left: 3px solid #00ff88; }
.filter-item.no { border-left: 3px solid #ff4444; }
.filter-icon { font-size: 20px; animation: bounceIcon 2s infinite; }
@keyframes bounceIcon { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.filter-text { font-size: 14px; color: var(--silver); text-align: left; }

/* TESTIMONIALS */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px auto 0; max-width: 760px; }
@media(min-width: 700px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 24px; position: relative; }
.testi-card::before { content: '\201C'; position: absolute; top: -10px; left: 20px; font-size: 60px; color: var(--wine); font-family: serif; line-height: 1; }
.testi-stars { color: #f5a623; font-size: 13px; margin-bottom: 12px; }
.testi-text { color: var(--silver); font-size: 13px; line-height: 1.8; font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--wine), #3a0000); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; color: #fff; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--white); }
.testi-meta { font-size: 11px; color: var(--silver2); }

/* ACTIVITY FEED MARQUEE */
.activity-feed-container { width: 100%; overflow: hidden; background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; margin: 40px 0; }
.activity-feed { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.activity-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 40px; font-size: 12px; color: var(--silver); letter-spacing: 1px; }
.activity-dot { width: 6px; height: 6px; min-width: 6px; background: #00ff88; border-radius: 50%; box-shadow: 0 0 8px #00ff88; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FAQ */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; background: rgba(255, 255, 255, 0.03); border: none; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  padding: 18px 20px; text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 12px; transition: background 0.3s;
}
.faq-q:hover { background: rgba(139, 0, 0, 0.1); }
.faq-icon { font-size: 18px; color: var(--wine); transition: transform .3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a p { padding: 0 20px 16px; color: var(--silver); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* FOOTER */
footer { background: var(--bg); padding: 48px 0 120px; text-align: center; border-top: 1px solid var(--border); }
.footer-quote { font-size: clamp(16px, 2.5vw, 24px); font-weight: 900; color: var(--white); margin-bottom: 8px; text-shadow: 0 0 10px var(--wine-glow); }
.footer-sub { font-size: 13px; color: var(--silver2); margin-bottom: 32px; }
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 24px 0; }
.partner { font-size: 11px; letter-spacing: 2px; color: rgba(192, 192, 192, 0.3); text-transform: uppercase; padding: 8px 16px; border: 1px solid rgba(192, 192, 192, 0.1); border-radius: 6px; }
.legal { font-size: 11px; color: rgba(192, 192, 192, 0.4); margin-top: 20px; line-height: 1.8; }

/* FLOATING WA & STICKY CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.95); padding: 12px; text-align: center; border-top: 1px solid var(--border); z-index: 997; display: none; }
.floating-wa { position: fixed; bottom: 30px; right: 24px; z-index: 998; animation: bounce 2s infinite; }
.wa-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; text-decoration: none; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

/* TIMELINE ARROWS */
.steps-list { position: relative; }
@media(min-width: 768px) { .step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 20px; font-size: 30px; color: var(--wine); opacity: 0.5; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }

/* MICRO-LOADER */
.poker-loader { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--wine); color: #fff; font-size: 20px; animation: pokerPulse 1.5s cubic-bezier(.4, 0, .2, 1) infinite; }
@keyframes pokerPulse { 0% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 var(--wine-glow); } 50% { transform: scale(1.1) rotate(180deg); box-shadow: 0 0 20px 10px var(--wine-glow); } 100% { transform: scale(1) rotate(360deg); box-shadow: 0 0 0 0 var(--wine-glow); } }

/* DESKTOP LAYOUTS */
.authority-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media(min-width: 900px) {
  .hero { min-height: 80vh; }
  .section { padding: 80px 0; }
  .authority-inner { flex-direction: row; gap: 64px; align-items: flex-start; text-align: left; }
  .authority-left { flex: 0 0 auto; width: 300px; text-align: center; }
  .authority-right { flex: 1; text-align: left; }
  .authority-right .section-title { text-align: left; }
  .authority-right .section-text { text-align: left; margin: 0; }
  .authority-right .divider { margin: 16px 0 20px; }
  .counters { margin-top: 32px; }
  .steps-list { flex-direction: row; gap: 0; max-width: 100%; }
  .step { flex-direction: column; align-items: center; text-align: center; flex: 1; padding-bottom: 0; padding-right: 0; }
  .step:not(:last-child)::after { left: auto; top: 19px; width: calc(100% - 40px); height: 2px; background: linear-gradient(90deg, var(--wine), transparent); left: calc(50% + 20px); }
  .step-content { text-align: center; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card { padding: 40px 32px; }
}
