:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.42);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius: 2rem;
  --container: 1200px;
}
::selection {
  background: white;
  color: black;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03), transparent 50%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #0a0a0a;
  background-size: 100% 100%, 100% 100%, 40px 40px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04), transparent 22%);
  opacity: 0.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.bg-art {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.78) 22%,
      rgba(5, 5, 5, 0.55) 50%,
      rgba(5, 5, 5, 0.72) 72%,
      rgba(5, 5, 5, 0.9) 100%
    ),
    url("assets/bg-abstract.png") center center / cover no-repeat;
  opacity: 0.8;
  mix-blend-mode: normal;
  filter: contrast(1.02) brightness(0.9);
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.52);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-full-logo-image {
  width: auto;
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.03);
  display: block;
  transform: scale(3);
  transform-origin: left center;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

/* Hero */

.hero-section {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-copy h1,
.partners-copy h2,
.contact-copy h2,
.about-main h2,
.section-head h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 10ch;
}

.hero-copy p,
.about-main p,
.info-card p,
.partners-copy p,
.contact-copy p,
.staff-card p,
.social-card p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-copy p {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 46rem;
}

.stat-card,
.panel,
.roster-card,
.staff-card,
.social-card,
.logo-slot,
.info-pill {
  border: 1px solid var(--line);
  background: var(--panel);
}

.stat-card {
  border-radius: 1.5rem;
  padding: 1.2rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-label {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual-wrap {
  position: relative;
  min-height: 560px;
  overflow: visible;
}

.hero-visual-glow,
.hero-logo-meta,
.hero-logo-title,
.hero-logo-sub,
.hero-visual-box,
.hero-logo-image {
  display: none;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: visible;
}

.hero-logo-main {
  position: absolute;
  right: 0;
  top: 50%;
  width: 800px;
  max-width: none;
  opacity: 1;
  z-index: 2;

  filter:
    drop-shadow(40px 80px 120px rgba(0,0,0,0.6))
    drop-shadow(0 0 60px rgba(255,255,255,0.04));

  animation: heroFloat 6s ease-in-out infinite;
}

.hero-bg-logo {
  position: absolute;
  right: -40px;
  top: 42%;
  transform: translateY(-50%) scale(1.05) rotate(-3deg);
  width: 640px;
  max-width: none;
  opacity: 0.08;
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
}

@keyframes heroFloat {
  0% {
    transform: translate(80px, calc(-50% + 0px)) rotate(-3deg);
  }
  50% {
    transform: translate(80px, calc(-50% - 12px)) rotate(-3deg);
  }
  100% {
    transform: translate(80px, calc(-50% + 0px)) rotate(-3deg);
  }
}

/* Sections */

.hero-logo-sub,
.section-kicker,
.card-kicker,
.section-note,
.info-pill-label,
.stack-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted-2);
}

.section {
  padding: 2.5rem 0;
}

.two-col-about {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.95fr 1.05fr;
}

.about-side-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.panel {
  border-radius: var(--radius);
  padding: 2rem;
}

.about-main h2,
.partners-copy h2,
.contact-copy h2,
.section-head h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.info-card h3,
.stack-head h3 {
  margin: 1rem 0 0;
  font-size: 1.6rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  flex-wrap: wrap;
}

.section-note {
  font-size: 0.8rem;
}

.stack-block {
  margin-top: 2rem;
}

.stack-block-second {
  margin-top: 3rem;
}

.stack-head {
  margin-bottom: 1.25rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.narrow {
  max-width: 820px;
  margin: 1.25rem auto 0;
}

.roster-card,
.staff-card,
.social-card {
  border-radius: var(--radius);
  padding: 1.6rem;
}

.roster-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}



.roster-status {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted-2);
}

.roster-name {
  margin-top: 1.4rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.roster-role-pill {
  display: inline-flex;
  margin-top: 0.7rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--muted);
}

.partners-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.partners-panel {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.partners-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 35%);
  pointer-events: none;
}

.partners-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.logo-slot {
  height: 96px;
  border-radius: 1.25rem;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted-2);
  background: rgba(0, 0, 0, 0.28);
}

.staff-card.featured {
  background: var(--panel-strong);
}

.staff-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.staff-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.staff-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted-2);
  text-align: right;
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-grid {
  grid-template-columns: 1fr 0.9fr;
}

.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.info-pill {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.28);
}

.info-pill-value {
  margin-top: 0.5rem;
  font-weight: 700;
}

.social-grid {
  display: grid;
  gap: 1rem;
}

.social-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.social-card p {
  margin: 0.6rem 0 0;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-grid,
  .two-col-about,
  .partners-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-side-grid,
  .three-up,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-visual-wrap {
    min-height: 420px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-logo-main {
    width: 540px;
  }

  .hero-bg-logo {
    width: 560px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-full-logo-image {
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 60;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    width: min(220px, calc(100vw - 32px));
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }

  .nav-links.active {
    display: flex;
  }

  .section-head,
  .staff-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid,
  .about-side-grid,
  .three-up,
  .two-up,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
    max-width: 8ch;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-visual-wrap {
    min-height: 320px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-logo-main {
    width: 360px;
    right: 50%;
    top: 50%;
    animation: heroFloatMobile 6s ease-in-out infinite;
  }

  .hero-bg-logo {
    width: 420px;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%) scale(1.2);
  }

  @keyframes heroFloatMobile {
    0% {
      transform: translate(50%, calc(-50% + 0px)) rotate(-3deg);
    }
    50% {
      transform: translate(50%, calc(-50% - 8px)) rotate(-3deg);
    }
    100% {
      transform: translate(50%, calc(-50% + 0px)) rotate(-3deg);
    }
  }
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: 0.2s ease;
}

.sponsor-logo:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.sponsor-logo-image {
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1) opacity(0.8);
  transition: 0.2s ease;
}

.sponsor-logo:hover .sponsor-logo-image {
  filter: grayscale(0) brightness(1.1) opacity(1);
}
.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 25s linear infinite;
}

.ticker span {
  white-space: nowrap;
  padding-right: 4rem; /* spacing a loophoz */
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker {
  position: relative;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}
a, button {
  cursor: pointer;
}
.staff-email {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: white;
  text-decoration: none;
  transition: 0.2s ease;
}

.staff-email:hover {
  color:rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.4);
}