@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@500;600;700;900&display=swap');

:root {
  --color-brand-orange: #ff4713;
  --color-brand-blue: #0019ec;
  --bg-color: #d5e2ef;
  --text-gray-900: #111827;
  --text-gray-800: #1f2937;
  --text-gray-700: #374151;
  --text-gray-600: #4b5563;
  --text-gray-500: #6b7280;
  --text-gray-400: #9ca3af;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-gray-800);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-brand-orange);
  color: white;
}

.font-heading {
  font-family: 'Oswald', sans-serif;
}

.font-black {
  font-weight: 900;
  -webkit-text-stroke: 1.2px currentColor;
}

.text-white { color: white; }
.text-brand-orange { color: var(--color-brand-orange); }
.text-brand-blue { color: var(--color-brand-blue); }

.bg-brand-orange { background-color: var(--color-brand-orange); }
.bg-brand-blue { background-color: var(--color-brand-blue); }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; background: transparent; font-family: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-lg {
  max-width: 1280px; /* 7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-md {
  max-width: 1152px; /* 6xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 1024px; /* 5xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Animations */
@keyframes border-gradient-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradient-shift { 
  0% { background-position: 0% 50%; } 
  50% { background-position: 100% 50%; } 
  100% { background-position: 0% 50%; } 
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes type-clip {
  0% { clip-path: polygon(0 -60%, 0 -60%, 0 160%, 0 160%); opacity: 1; }
  100% { clip-path: polygon(0 -60%, 120% -60%, 120% 160%, 0 160%); opacity: 1; }
}

@keyframes float-ball {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes confetti-fall {
  0% { transform: translateY(-10vh) rotate(0deg) scale(var(--confetti-scale, 1)); opacity: 1; }
  40% { transform: translateY(100vh) rotate(720deg) translateX(var(--drift)) scale(var(--confetti-scale, 1)); opacity: 0; }
  100% { transform: translateY(100vh) rotate(720deg) translateX(var(--drift)) scale(var(--confetti-scale, 1)); opacity: 0; }
}

/* Gradients */
.bg-gradient-mixed-flow {
  background-image: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
}
.bg-gradient-inner-dark-blue-flow {
  background: linear-gradient(270deg, #0012a6, #00085c, #0012a6, #000433);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
}
.bg-gradient-inner-orange-flow {
  background: linear-gradient(270deg, #ff4713, #cc390f, #ff4713, #b3320d);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
}
.bg-gradient-inner-blue-flow {
  background: linear-gradient(270deg, #0019ec, #000b75, #0019ec, #00085c);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-bottom: 1px solid #e5e7eb;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 25, 236, 0.8);
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-container { padding-left: 100px; padding-right: 3rem; }
}
.nav-links button { color: inherit; transition: color 0.3s; }
.nav-links button:hover { color: var(--color-brand-orange); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.btn-primary {
  background-color: var(--color-brand-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary:hover { transform: scale(1.05); }

/* Flare Button Effect */
.btn-flare { position: relative; overflow: hidden; }
.btn-flare::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}
.btn-flare:hover::before { left: 150%; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-brand-blue);
  color: var(--color-brand-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
  background-color: var(--color-brand-blue);
  color: white;
}

/* Mobile Menu */
.mobile-menu-btn { display: block; color: var(--color-brand-blue); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.6); backdrop-filter: blur(4px);
  z-index: 40; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: absolute; right: 1rem; top: 6rem; width: 16rem;
  opacity: 0; transform: translateY(-1rem); pointer-events: none; transition: all 0.5s;
}
.mobile-menu-overlay.open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu-inner { background: rgba(213, 226, 239, 0.9); backdrop-filter: blur(12px); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 20; }
.mobile-menu-bg { position: absolute; inset: 0; border-radius: 16px; padding: 2px; background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec); background-size: 300% 300%; animation: border-gradient-flow 5s linear infinite; z-index: 10; }
.mobile-menu-glow { position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec); filter: blur(16px); opacity: 0.6; z-index: 0; }
.mobile-menu-link { text-align: left; color: var(--color-brand-blue); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.25rem; text-transform: uppercase; border-bottom: 1px solid rgba(0,25,236,0.1); padding-bottom: 0.75rem; width: 100%; transition: color 0.3s; }
.mobile-menu-link:hover { color: var(--color-brand-orange); }

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.hero-ball-container {
  position: absolute;
  top: 25%;
  right: -8vw;
  width: 45vw;
  max-width: 1000px;
  display: flex;
  justify-content: flex-end;
  z-index: 20;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .hero-ball-container {
    top: 3.5rem;
    right: -8%;
    width: 170px;
    transform: none;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .hero-ball-container {
    top: 4rem;
    right: -5%;
    width: 210px;
    transform: none;
    z-index: 1;
  }
}
.animate-floating { animation: float-ball 3s ease-in-out infinite; width: 100%; }
.ball-wrapper { transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); width: 100%; cursor: pointer; }
.ball-anim {
  width: 100%; opacity: 0; transform: translateX(100vw) rotate(180deg);
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s ease-out, filter 0.4s ease;
  mix-blend-mode: multiply; object-fit: contain;
}
.scroll-active .ball-anim { opacity: 1; transform: translateX(0) rotate(0deg); }
.ball-wrapper:hover .ball-anim { transform: scale(1.05) rotate(-10deg); filter: drop-shadow(0 20px 30px rgba(255,71,19,0.5)); }

.hero-content {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-content { padding-left: 100px; padding-right: 3rem; } }
@media (max-width: 767px) { .hero-content { margin-top: 1.5rem; padding: 0 1.5rem; } }

.hero-text-container { width: 100%; z-index: 30; position: relative; }
@media (min-width: 1024px) { .hero-text-container { width: 65%; } }
@media (min-width: 1280px) { .hero-text-container { width: 55%; } }

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  font-size: 8rem;
}
@media (max-width: 767px) { .hero-title { font-size: 3.25rem; line-height: 1.1; margin-bottom: 1.5rem; } }
@media (min-width: 768px) and (max-width: 1023px) { .hero-title { font-size: 6rem; } }

.typewriter-text {
  display: inline-block;
  width: max-content;
  white-space: nowrap;
  clip-path: polygon(0 -60%, 0 -60%, 0 160%, 0 160%);
  opacity: 0;
  vertical-align: bottom;
  padding-right: 0.15em;
}
.scroll-active .typewriter-text { animation-name: type-clip; animation-fill-mode: forwards; }
.type-line-1 { animation-duration: 0.64s; animation-delay: 0.1s; animation-timing-function: steps(12, end); }
.type-line-2 { animation-duration: 0.56s; animation-delay: 0.8s; animation-timing-function: steps(10, end); }
.type-line-3 { animation-duration: 0.72s; animation-delay: 1.4s; animation-timing-function: steps(14, end); }

/* Mobile typewriter variants */
.type-line-1-mob { animation-duration: 0.64s; animation-delay: 0.1s; animation-timing-function: steps(12, end); }
.type-line-2-mob { animation-duration: 0.56s; animation-delay: 0.8s; animation-timing-function: steps(10, end); }
.type-line-3-mob { animation-duration: 0.2s; animation-delay: 1.4s; animation-timing-function: steps(3, end); }
.type-line-4-mob { animation-duration: 0.56s; animation-delay: 1.6s; animation-timing-function: steps(10, end); }

.text-gradient {
  background: linear-gradient(to right, #111827, #6b7280);
  -webkit-background-clip: text;
  color: transparent;
}

/* Typewriter Mobile Classes */
@media (max-width: 767px) {
  .type-line-1-mob { animation-duration: 0.64s; animation-delay: 0.1s; animation-timing-function: steps(12, end); }
  .type-line-2-mob { animation-duration: 0.56s; animation-delay: 0.8s; animation-timing-function: steps(10, end); }
  .type-line-3-mob { animation-duration: 0.2s; animation-delay: 1.4s; animation-timing-function: steps(3, end); }
  .type-line-4-mob { animation-duration: 0.56s; animation-delay: 1.6s; animation-timing-function: steps(10, end); }
}

.hero-subtitle {
  font-size: 2.25rem; color: var(--color-brand-orange); text-transform: uppercase; letter-spacing: 0.025em; font-family: 'Oswald', sans-serif; font-style: italic; font-weight: 700; margin-bottom: 1.5rem;
}
@media (max-width: 767px) { .hero-subtitle { font-size: 1.5rem; } }

.hero-desc { font-size: 1.25rem; color: var(--text-gray-700); max-width: 42rem; line-height: 1.625; margin-bottom: 2.5rem; font-weight: 500; }
@media (max-width: 767px) { .hero-desc { font-size: 1.125rem; } }

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; position: relative; z-index: 30; }
@media (max-width: 1023px) and (min-width: 768px) { .hero-buttons { flex-wrap: wrap; gap: 0.75rem; } .hero-buttons .btn-primary, .hero-buttons .btn-outline { padding: 0.875rem 1.5rem; font-size: 1rem; } }
.hero-buttons .btn-primary, .hero-buttons .btn-outline { padding: 1.25rem 2.5rem; font-size: 1.25rem; width: auto; }
@media (max-width: 767px) { .hero-buttons { flex-wrap: wrap; gap: 0.5rem; justify-content: center; } .hero-buttons .btn-primary, .hero-buttons .btn-outline { padding: 0.75rem 1.1rem; font-size: 13px; width: calc(50% - 0.25rem); white-space: nowrap; box-sizing: border-box; } }

.hero-info {
  display: flex; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(0,25,236,0.1); gap: 2.5rem; position: relative; z-index: 30; width: 100%;
}
@media (max-width: 767px) { .hero-info { flex-direction: column; gap: 1.5rem; } }
.hero-info-img { height: 100px; object-fit: contain; object-position: left; }
@media (max-width: 767px) { .hero-info-img { height: auto; width: 90%; } }

.hero-info-stats { display: flex; gap: 2.5rem; }
@media (max-width: 767px) { .hero-info-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; } }
.stat-item { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
@media (max-width: 767px) { .stat-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; } }
.stat-icon { width: 3.5rem; height: 3.5rem; background: transparent; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
@media (max-width: 767px) { .stat-icon { width: 2.5rem; height: 2.5rem; } }
.stat-item:hover .stat-icon { background: var(--color-brand-orange); }
.stat-icon i, .stat-icon svg { color: var(--color-brand-blue); transition: all 0.3s; width: 28px; height: 28px; }
.stat-item:hover .stat-icon i, .stat-item:hover .stat-icon svg { color: white; }
.stat-label { color: var(--text-gray-500); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 767px) { .stat-label { font-size: 10px; } }
.stat-value { color: var(--color-brand-blue); font-weight: 700; font-size: 15.5px; line-height: 1.25; text-transform: uppercase; }
@media (max-width: 767px) { .stat-value { font-size: 12px; } }

/* Marquee Section */
.marquee-section { padding: 2rem 0; background: var(--bg-color); position: relative; z-index: 20; border-top: 1px solid rgba(0,25,236,0.1); border-bottom: 1px solid rgba(0,25,236,0.1); margin-top: 3rem; overflow: hidden; display: flex; flex-direction: column; gap: 1rem; }
.marquee-container { display: flex; width: 200%; }
.marquee-desktop { animation: marquee-left 30s linear infinite; }
.marquee-desktop:hover { animation-play-state: paused; }
.marquee-mobile-1 { animation: marquee-left 25s linear infinite; width: 300%; }
.marquee-mobile-2 { animation: marquee-right 25s linear infinite; width: 300%; }
@media (min-width: 768px) { .marquee-mobile-1, .marquee-mobile-2 { display: none; } }
@media (max-width: 767px) { .marquee-desktop { display: none; } }

.marquesina-item {
  position: relative; padding: 0.75rem 2rem; border-radius: 9999px; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; transition: all 0.3s ease; margin: 0 0.75rem; flex-shrink: 0;
}
.marquesina-item::before {
  content: ''; position: absolute; inset: 0; border-radius: 9999px; padding: 2px;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec); background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s;
}
.marquesina-item:hover::before { opacity: 1; }
.marquesina-content { position: relative; z-index: 10; display: flex; align-items: center; gap: 0.75rem; height: 100%; width: 100%; }
.marquesina-icon { color: var(--color-brand-orange); transition: color 0.3s; width: 22px; height: 22px; }
.marquesina-text { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--color-brand-blue); font-size: 1.25rem; text-transform: uppercase; transition: color 0.3s; }
@media (max-width: 767px) { .marquesina-text { font-size: 0.875rem; } .marquesina-icon { width: 16px; height: 16px; } }

/* Impact Section */
.impact-section { position: relative; z-index: 40; pointer-events: none; margin-bottom: -10rem; padding-top: 4rem; }
@media (max-width: 767px) { .impact-section { margin-bottom: -8rem; } }
.impact-container { width: 80%; margin: 0 auto; pointer-events: auto; display: flex; flex-direction: column; align-items: center; position: relative; gap: 0; }
@media (max-width: 767px) { .impact-container { width: 90%; } }
.impact-img { width: 100%; height: auto; object-fit: cover; border-radius: 2rem 2rem 0 0; position: relative; z-index: 10; margin-bottom: -1.5rem; }

.impact-data-box {
  background: linear-gradient(270deg, #0012a6, #00085c, #0012a6, #000433);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
  border-radius: 2rem;
  padding: 3rem 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
  width: 100%;
  position: relative;
  z-index: 30;
  margin-top: -2rem;
  padding-top: 3.5rem;
}
.impact-data-box:hover { transform: scale(1.02) translateY(-0.5rem); box-shadow: 0 20px 50px rgba(0,25,236,0.6); }

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .counter-grid { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
}
@media (min-width: 1024px) {
  .counter-grid { gap: 1.5rem; }
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  text-align: center;
  min-width: 0;
}
.counter-icon { color: var(--color-brand-orange); margin-bottom: 0.75rem; width: 36px; height: 36px; }
.counter-value { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin-bottom: 0.5rem; letter-spacing: -0.025em; white-space: nowrap; line-height: 1; }
.counter-label { font-size: 0.75rem; color: #bfdbfe; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.25; max-width: 160px; }
@media (max-width: 767px) { .counter-item { min-width: 100px; } .counter-icon { width: 28px; height: 28px; margin-bottom: 0.5rem; } .counter-label { font-size: 9px; } }

/* Experience Section */
.experiencia-section { padding-top: 16rem; padding-bottom: 8rem; background-color: var(--color-brand-blue); position: relative; z-index: 10; }
@media (max-width: 767px) { .experiencia-section { padding-top: 12rem; padding-bottom: 6rem; } }
.experiencia-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .experiencia-grid { grid-template-columns: 1fr 1fr; } }
.experiencia-title { font-family: 'Oswald', sans-serif; font-weight: 900; font-size: 3.75rem; line-height: 1.1; color: white; margin-bottom: 2rem; text-transform: uppercase; }
@media (max-width: 767px) { .experiencia-title { font-size: 3.25rem; line-height: 0.9; letter-spacing: -0.05em; } }
@media (min-width: 768px) { .experiencia-title { font-size: 4rem; } }
.experiencia-desc { font-size: 1.125rem; color: #dbeafe; border-left: 4px solid var(--color-brand-orange); padding-left: 1.5rem; line-height: 1.625; font-weight: 500; }

.experiencia-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.exp-card-wrapper { position: relative; cursor: pointer; }
.exp-card-glow { position: absolute; inset: 0; border-radius: 1rem; background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec); background-size: 300% 300%; animation: border-gradient-flow 5s linear infinite; filter: blur(16px); opacity: 0.4; transition: opacity 0.5s; z-index: 0; }
.exp-card-container { position: relative; border-radius: 1rem; padding: 2px; background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec); background-size: 300% 300%; animation: border-gradient-flow 5s linear infinite; z-index: 10; transition: transform 0.5s; }
.scroll-active .exp-card-glow { opacity: 1; }
.scroll-active .exp-card-container { transform: translateY(-0.5rem); }
.exp-card-wrapper:hover .exp-card-container { transform: translateY(-0.5rem); }
.exp-card-inner { background-color: #151719; border-radius: 14px; padding: 2rem; position: relative; overflow: hidden; display: flex; align-items: flex-start; gap: 1.5rem; }
.exp-card-fill { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s; z-index: 0; }
.exp-card-fill-orange { background: linear-gradient(270deg, #ff4713, #cc390f, #ff4713, #b3320d); background-size: 400% 400%; animation: gradient-shift 6s ease infinite; }
.exp-card-fill-blue { background: linear-gradient(270deg, #0019ec, #000b75, #0019ec, #00085c); background-size: 400% 400%; animation: gradient-shift 6s ease infinite; }
.exp-card-wrapper:hover .exp-card-fill, .scroll-active .exp-card-fill { opacity: 1; }
.exp-card-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 10; overflow: hidden; }
.exp-card-icon svg { color: white; width: 28px; height: 28px; }
.exp-card-icon img { width: 80%; height: 80%; object-fit: contain; }
.exp-card-content { position: relative; z-index: 10; }
.exp-card-title { font-family: 'Oswald', sans-serif; font-weight: 900; font-size: 1.5rem; color: white; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.025em; }
.exp-card-text { color: white; font-size: 0.875rem; font-weight: 500; }

/* Reveal Classes */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.slide-in-left-far { opacity: 0; transform: translateX(-100px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-in-right-far { opacity: 0; transform: translateX(100px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@media (max-width: 767px) {
  .mob-slide-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .mob-slide-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
}

.scroll-active.reveal-on-scroll,
.scroll-active .reveal-on-scroll { opacity: 1; transform: translate(0); }
.scroll-active.slide-in-left, .scroll-active.slide-in-right,
.scroll-active.slide-in-left-far, .scroll-active.slide-in-right-far,
.scroll-active.mob-slide-left, .scroll-active.mob-slide-right { opacity: 1; transform: translate(0); }

/* Utility */
.hidden { display: none !important; }
.block { display: block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:block { display: block !important; }
  .md\:flex { display: flex !important; }
  .md\:inline-flex { display: inline-flex !important; }
  .md\:grid { display: grid !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:pl-\[100px\] { padding-left: 100px; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:py-64 { padding-top: 16rem; padding-bottom: 16rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:px-24 { padding-left: 6rem; padding-right: 6rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:flex { display: flex !important; }
  .lg\:grid { display: grid !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-end { justify-content: flex-end; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:pl-\[100px\] { padding-left: 100px; }
  .lg\:pr-12 { padding-right: 3rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:pt-\[350px\] { padding-top: 350px; }
  .lg\:pt-\[450px\] { padding-top: 450px; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .lg\:px-28 { padding-left: 7rem; padding-right: 7rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-\[4\.5rem\] { font-size: 4.5rem; line-height: 1; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .lg\:w-\[55\%\] { width: 55%; }
  .lg\:w-auto { width: auto; }
  .lg\:max-w-\[200px\] { max-width: 200px; }
  .lg\:max-w-\[4xl\] { max-width: 56rem; }
  .lg\:max-w-5xl { max-width: 64rem; }
}

/* Tailwind-like Utilities */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-\[1920px\] { max-width: 1920px; }
.max-w-\[80rem\] { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mt-48 { margin-top: 12rem; }
.mt-64 { margin-top: 16rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pt-48 { padding-top: 12rem; }
.pt-64 { padding-top: 16rem; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-12 { padding-left: 3rem; }
.pl-20 { padding-left: 5rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pr-12 { padding-right: 3rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.px-24 { padding-left: 6rem; padding-right: 6rem; }

/* Opacity & Transform Utilities */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-90 { opacity: 0.9; }

.translate-y-0 { transform: translateY(0); }
.translate-y-10 { transform: translateY(40px); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-4 { transform: translateY(-1rem); }
.-translate-y-8 { transform: translateY(-2rem); }
.-translate-y-10 { transform: translateY(-2.5rem); }
.-translate-y-12 { transform: translateY(-3rem); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.translate-x-0 { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }

.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.10); }
.scale-x-0 { transform: scaleX(0); }
.scale-x-100 { transform: scaleX(1); }
.scale-y-100 { transform: scaleY(1); }

/* Position */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-10 { column-gap: 2.5rem; }

/* Sizing */
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-\[2\.5rem\] { width: 2.5rem; }
.w-\[3rem\] { width: 3rem; }
.w-\[55\%\] { width: 55%; }
.w-\[85\%\] { width: 85%; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-auto { height: auto; }
.h-\[100px\] { height: 100px; }
.h-\[200px\] { height: 200px; }
.h-\[255px\] { height: 255px; }
.h-\[340px\] { height: 340px; }
.min-h-\[160px\] { min-height: 160px; }
.min-h-\[200px\] { min-height: 200px; }
.max-w-\[1000px\] { max-width: 1000px; }
.max-w-\[4xl\] { max-width: 56rem; }

/* Spacing */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }
.p-24 { padding: 6rem; }
.p-\[2px\] { padding: 2px; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15\.5px\] { font-size: 15.5px; }
.text-\[2rem\] { font-size: 2rem; line-height: 2.5rem; }
.text-\[3\.25rem\] { font-size: 3.25rem; line-height: 1; }
.text-\[3\.5rem\] { font-size: 3.5rem; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.whitespace-nowrap { white-space: nowrap; }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[14px\] { border-radius: 14px; }
.rounded-\[1\.35rem\] { border-radius: 1.35rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-b-\[14px\] { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }
.rounded-t-\[2rem\] { border-top-left-radius: 2rem; border-top-right-radius: 2rem; }

/* Shadows */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-\[0_20px_50px_rgba\(0\,25\,236\,0\.6\)\] { box-shadow: 0 20px 50px rgba(0,25,236,0.6); }
.shadow-\[0_30px_60px_rgba\(0\,25\,236\,0\.6\)\] { box-shadow: 0 30px 60px rgba(0,25,236,0.6); }
.shadow-\[0_0_15px_rgba\(0\,25\,236\,0\.4\)\] { box-shadow: 0 0 15px rgba(0,25,236,0.4); }
.shadow-\[0_0_20px_rgba\(255\,71\,19\,0\.3\)\] { box-shadow: 0 0 20px rgba(255,71,19,0.3); }
.shadow-\[0_0_25px_rgba\(255\,255\,255\,0\.9\)\] { box-shadow: 0 0 25px rgba(255,255,255,0.9); }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* Background */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-left { background-position: left; }
.bg-bottom { background-position: bottom; }
.bg-no-repeat { background-repeat: no-repeat; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-visible { overflow: visible; }

/* Mix Blend */
.mix-blend-multiply { mix-blend-mode: multiply; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Outline */
.outline-none { outline: none; }

/* Transition */
.transition { transition: all 0.15s ease; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-transform\:duration-500 { transition-duration: 500ms; }
.transition-transform\:duration-700 { transition-duration: 700ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* Hover */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-2 { transform: translateY(-0.5rem); }
.group:hover .group-hover\:bg-transparent { background-color: transparent; }
.group:hover .group-hover\:text-white { color: white; }
.group:hover .group-hover\:scale-\[1\.05\] { transform: scale(1.05); }

/* Object */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-left { object-position: left; }
.object-bottom { object-position: bottom; }
.object-center { object-position: center; }

/* Confetti */
.animate-confetti {
  animation: confetti-fall infinite forwards;
}
@media (max-width: 767px) {
  .animate-confetti { --confetti-scale: 0.3; }
}

/* Confetti Wrapper */
#confetti-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 20; }
