:root {
  --bg-main: #050505;
  --bg-secondary: #0f0f11;
  --text-main: #ffffff;
  --text-muted: #8892b0;
  --gold: #d4af37;
  --accent: #2563eb;
  --border: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot {
  position: fixed; width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s;
}
.cursor-outline {
  position: fixed; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s;
}
body.cursor-hover .cursor-outline { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1); }

/* Preloader */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-main);
  z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.hide { opacity: 0; pointer-events: none; }
.loader-text { font-size: 3rem; font-weight: 900; letter-spacing: 5px; margin-bottom: 20px; }
.loader-bar-wrap { width: 300px; height: 2px; background: var(--border); overflow: hidden; }
.loader-bar { height: 100%; background: var(--gold); width: 0; transition: width 0.2s; }

/* Ticker */
.ticker-wrap {
  width: 100%; background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 8px 0; font-size: 0.85rem; font-family: monospace; white-space: nowrap;
}
.ticker { display: inline-block; animation: ticker 30s linear infinite; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
.ticker-item { display: inline-block; padding: 0 30px; color: var(--text-muted); }
.ticker-up { color: #10b981; }
.ticker-down { color: #ef4444; }

/* Navbar */
.navbar {
  position: fixed; top: 35px; left: 0; width: 100%; padding: 25px 50px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100; transition: all 0.4s ease;
}
.navbar.scrolled { top: 0; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(10px); padding: 20px 50px; border-bottom: 1px solid var(--border); }
.nav-brand { font-size: 1.8rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: 2px; }
.nav-brand span { color: var(--gold); }
.nav-links a { color: var(--text-main); text-decoration: none; margin-left: 40px; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; padding: 0 10vw; overflow: hidden; }
.hero-content { position: relative; z-index: 10; max-width: 700px; }
.hero-content h1 { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 30px; letter-spacing: -1px; }
.hero-content h1 span { color: transparent; -webkit-text-stroke: 1px var(--gold); }
.hero-content p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; font-weight: 300; }
.btn { display: inline-block; padding: 16px 40px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; border-radius: 4px; transition: all 0.3s; }
.btn-gold { background: var(--gold); color: #000; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }
.btn-gold:hover { background: #fff; transform: translateY(-3px); }

/* Common Sections */
.section { padding: 120px 10vw; border-bottom: 1px solid var(--border); }
.section-header { margin-bottom: 80px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: 3rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* Grid 3 */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); padding: 50px 40px; border-radius: 8px; transition: transform 0.4s, background 0.4s; }
.card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.04); border-color: rgba(212, 175, 55, 0.3); }
.card-icon { font-size: 3rem; margin-bottom: 30px; }
.card h3 { font-size: 1.5rem; margin-bottom: 20px; font-weight: 700; }
.card p { color: var(--text-muted); line-height: 1.7; font-size: 1rem; }

/* Leadership */
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.leader-card { position: relative; border-radius: 8px; overflow: hidden; }
.leader-img { width: 100%; height: 400px; object-fit: cover; filter: grayscale(100%); transition: filter 0.5s, transform 0.5s; }
.leader-card:hover .leader-img { filter: grayscale(0%); transform: scale(1.05); }
.leader-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
.leader-info h4 { font-size: 1.3rem; margin-bottom: 5px; }
.leader-info span { color: var(--gold); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Stats Banner */
.stats-banner { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--gold); color: #000; padding: 80px 10vw; text-align: center; }
.stat-number { font-size: 5rem; font-weight: 900; line-height: 1; margin-bottom: 15px; letter-spacing: -2px; }
.stat-label { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* ESG */
.esg-container { display: flex; gap: 80px; align-items: center; }
.esg-text { flex: 1; }
.esg-stats { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.progress-wrap { width: 100%; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.progress-label span:last-child { color: var(--gold); }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); width: 0; transition: width 1.5s ease-out; }

/* News */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item { display: flex; align-items: center; padding: 30px; border: 1px solid var(--border); border-radius: 8px; transition: background 0.3s; cursor: none; }
.news-item:hover { background: rgba(255, 255, 255, 0.02); }
.news-date { width: 150px; color: var(--text-muted); font-family: monospace; font-size: 0.9rem; }
.news-title { flex: 1; font-size: 1.25rem; font-weight: 600; }
.news-tag { padding: 6px 15px; border: 1px solid var(--gold); color: var(--gold); border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
.footer { background: #000; padding: 80px 10vw 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { font-size: 2rem; font-weight: 900; color: #fff; text-decoration: none; display: block; margin-bottom: 20px; }
.footer-brand span { color: var(--gold); }
.footer-desc { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
.footer-col h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media(max-width: 1024px) {
  .hero-content h1 { font-size: 3.5rem; }
  .stats-banner { flex-direction: column; display: flex; gap: 40px; }
  .esg-container { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .navbar { padding: 20px; top: 0; background: var(--bg-main); }
  .nav-links { display: none; }
  .hero { padding: 0 20px; }
  .hero-content h1 { font-size: 2.5rem; }
  .section { padding: 80px 20px; }
  .news-item { flex-direction: column; align-items: flex-start; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
}
