@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Warren";
  src: url("../assets/fonts/Warren.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: #000000;
  color: #FFFFFF;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-header h2,
.card-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #F1F7F7;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.section-header h2 i,
.card-heading i {
  color: #00DF82;
  font-size: 0.75rem;
}

.section-content {
  margin-top: 0.5rem;
}
.section-content p {
  font-size: 0.875rem;
  color: #F1F7F7;
  line-height: 1.625;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 9999;
  background: #00DF82;
  color: #021A1A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  clip: auto;
  margin: 0;
  border-radius: 0 0 0.5rem 0.5rem;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role=tab]:focus-visible {
  outline: 2px solid #00DF82;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 300;
}

body::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2CC295 0%, transparent 70%) top left/100% 1px no-repeat, linear-gradient(to right, #2CC295 0%, transparent 70%) bottom left/100% 1px no-repeat;
}

body::after {
  top: 0;
  right: 0;
  width: 12%;
  height: 100%;
}

#cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 223, 130, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track {
    animation: none !important;
  }
  .blip-ring, .blip-dot {
    animation: none !important;
  }
  #cursor-glow {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
/* FULL PAGE WEBSITE LOADER                                       */
/* ═══════════════════════════════════════════════════════════════ */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1), visibility 0.8s cubic-bezier(0.4, 0, 0, 1);
}
#site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sl-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.sl-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,223,130,0.3) 0%, rgba(0,223,130,0.1) 40%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: sl-blobMove1 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
.sl-blob--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,223,130,0.55) 0%, rgba(0,223,130,0.2) 35%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: sl-blobMove2 12s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes sl-blobMove1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.05); }
  66% { transform: translate(-20px, 50px) scale(0.95); }
  100% { transform: translate(30px, -20px) scale(1.02); }
}
@keyframes sl-blobMove2 {
  0% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-45%, -55%) scale(1.08); }
  66% { transform: translate(-55%, -45%) scale(0.92); }
  100% { transform: translate(-50%, -50%) scale(1.04); }
}
.sl-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 200px;
}
.sl-logo {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sl-fadeUp 0.6s ease both;
}
.sl-ring-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 223, 130, 0.2);
}
.sl-ring-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #00DF82;
  border-right-color: #00DF82;
  animation: sl-spin 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.sl-signature {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(0, 223, 130, 0.6));
  animation: sl-pulse 3s ease-in-out infinite alternate;
}
.sl-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  overflow: visible;
  position: relative;
}
.sl-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00DF82, #00ff88);
  border-radius: 1px;
  box-shadow: 0 0 20px rgba(0, 223, 130, 0.6), 0 0 6px rgba(0, 223, 130, 0.8);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sl-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: #00DF82;
  letter-spacing: 0.1em;
  min-height: 1em;
  border-right: 2px solid #00DF82;
  padding-right: 4px;
  animation: sl-cursor 0.7s step-end infinite;
  white-space: nowrap;
}
.sl-percent {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #00DF82;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(0, 223, 130, 0.5);
  margin-top: -10px;
  text-align: right;
}
@keyframes sl-cursor {
  0%, 100% { border-color: #00DF82; }
  50% { border-color: transparent; }
}
@keyframes sl-spin {
  to { transform: rotate(360deg); }
}
@keyframes sl-pulse {
  from { filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 223, 130, 0.3)); }
  to { filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(0, 223, 130, 0.7)); }
}
@keyframes sl-fadeUp {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes sl-blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.15; }
}
@media (max-width: 768px) {
  .sl-logo { width: 90px; height: 90px; }
  .sl-signature { width: 48px; height: 48px; }
  .sl-blob--1 { width: 280px; height: 280px; }
  .sl-blob--3 { width: 260px; height: 260px; }
}