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

:root {
  --bg: #080807;
  --bg2: #111109;
  --lime: #f5c518;
  --cyan: #ffd700;
  --pink: #b8860b;
  --orange: #e6a817;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --card-bg: rgba(245,197,24,0.04);
  --border: rgba(245,197,24,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  background-image: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(245,197,24,0.07) 0%, transparent 70%);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; }
body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring {
  width: 60px; height: 60px; border-color: rgba(245,197,24,0.7);
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(8,8,7,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--lime); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-pill {
  background: var(--lime) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245,197,24,0.5);
  color: var(--bg) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 499;
  padding: 1.5rem 5vw 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu a.pill-mobile {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--lime);
  color: var(--bg) !important;
  padding: 0.7rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  border: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 80px;
  position: relative;
  gap: 4rem;
  overflow: hidden;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 500px; height: 500px;
  background: #f5c518;
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: #ffd700;
  top: 40%; right: -80px;
  animation-delay: -3s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: #b8860b;
  bottom: -50px; left: 30%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(245,197,24,0); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero h1 .line-accent {
  display: block;
  -webkit-text-stroke: 2px var(--lime);
  color: transparent;
}

.hero h1 .line-cyan {
  display: block;
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: none;
}

.btn-lime {
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(245,197,24,0.3);
}

.btn-lime:hover {
  box-shadow: 0 0 50px rgba(245,197,24,0.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s;
}

.btn-lime:hover .btn-arrow { transform: translateX(4px); }

/* Hero right visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}

.hero-card:nth-child(1) { animation-delay: 0.4s; }
.hero-card:nth-child(2) { animation-delay: 0.55s; margin-left: 2rem; }
.hero-card:nth-child(3) { animation-delay: 0.7s; }

.card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.card-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.c-lime .card-label { color: var(--lime); }
.c-lime .card-value { color: var(--lime); }
.c-cyan .card-label { color: var(--cyan); }
.c-cyan .card-value { color: var(--cyan); }
.c-pink .card-label { color: #c9a227; }
.c-pink .card-value { color: #c9a227; }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 100px 5vw; }
.inner { max-width: 1140px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.tag-lime { background: rgba(245,197,24,0.12); color: var(--lime); border: 1px solid rgba(245,197,24,0.3); }
.tag-cyan { background: rgba(255,215,0,0.1); color: var(--cyan); border: 1px solid rgba(255,215,0,0.3); }
.tag-pink { background: rgba(184,134,11,0.12); color: #e8ab20; border: 1px solid rgba(184,134,11,0.3); }
.tag-orange { background: rgba(230,168,23,0.1); color: var(--orange); border: 1px solid rgba(230,168,23,0.3); }

h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}

.body-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 500px;
}

/* ── ABOUT ── */
.about { background: var(--bg); }

.about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px rgba(245,197,24,0.15);
  color: transparent;
  user-select: none;
}

.about-pill {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-pill-1 { top: 10%; right: -1rem; }
.about-pill-2 { bottom: 12%; left: -1rem; }

.pill-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.pill-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.pill-info span {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.about-content { padding-top: 1rem; }

.about-content .body-text { margin-bottom: 2rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.about-stat {
  background: var(--bg2);
  padding: 1.5rem;
  text-align: center;
}

.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── INITIATIVES ── */
.initiatives { background: var(--bg2); }

.initiatives-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.init-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.init-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.init-card:hover { transform: translateY(-6px); }

.init-card:nth-child(1):hover { border-color: var(--lime); }
.init-card:nth-child(2):hover { border-color: var(--cyan); }
.init-card:nth-child(3):hover { border-color: #c9a227; }

.init-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.init-card:nth-child(1)::after { background: var(--lime); }
.init-card:nth-child(2)::after { background: var(--cyan); }
.init-card:nth-child(3)::after { background: #c9a227; }
.init-card:hover::after { opacity: 1; }

.init-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.icon-lime { background: rgba(245,197,24,0.14); }
.icon-cyan { background: rgba(255,215,0,0.1); }
.icon-pink { background: rgba(184,134,11,0.14); }

.init-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.init-card .init-type {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.init-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
}

.init-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  opacity: 0.06;
  line-height: 1;
}

/* ── VALUES ── */
.values { background: var(--bg); }

.values .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.values-left { position: sticky; top: 100px; }

.big-quote {
  margin-top: 2.5rem;
  border-left: 3px solid var(--lime);
  padding-left: 1.5rem;
}

.big-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
}

.big-quote cite {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  font-style: normal;
}

.value-rows { display: flex; flex-direction: column; gap: 1px; }

.value-row {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.25s, border-color 0.25s;
  margin-bottom: 0.75rem;
}

.value-row:hover {
  background: rgba(245,197,24,0.05);
  border-color: rgba(245,197,24,0.2);
}

.value-emoji {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.value-row h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.value-row p {
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── CTA ── */
.cta-section {
  background: var(--bg2);
  padding: 80px 5vw;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 80px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(255,215,0,0.07), rgba(184,134,11,0.07));
  border: 1px solid rgba(245,197,24,0.15);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,197,24,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255,215,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box .section-title { margin-bottom: 1rem; }

.cta-box .body-text {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 5vw 32px;
}

.footer-inner { max-width: 1140px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--lime); }

.footer-desc {
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 270px;
}

.footer-col h5 {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.soc {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.soc:hover { background: rgba(245,197,24,0.12); border-color: rgba(245,197,24,0.35); color: var(--lime); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p, .footer-bottom a {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-bottom a:hover { color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-visual { display: none; }
  .about .inner, .values .inner { grid-template-columns: 1fr; gap: 3rem; }
  .values-left { position: static; }
  .init-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 600px) {
  .about-big-text { font-size: 5rem; }
  .about-pill { display: none; }
  .initiatives-header { flex-direction: column; align-items: flex-start; }
}