@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #0b0a0a;
  --surface: #171717;
  --surface-2: #111111;
  --border: #262626;
  --text: #faffff;
  --muted: #a3a3a3;
  --brand: #cd1313;
  --brand-2: #cd1313;
  --font-body: "Inter", "Helvetica Neue", "Arial", sans-serif;
  --font-display: "Sora", "Inter", "Helvetica Neue", "Arial", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.45rem;
  line-height: 1;
}

.nav { display: flex; gap: 1.2rem; flex: 1; }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #d4d4d4;
  font-weight: 600;
  padding: 0.4rem 0;
}
.nav a:hover,
.nav a.active { color: var(--brand-2); }

.hero {
  position: relative;
  z-index: 2;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 1rem;
}

.hero-bg {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95), rgba(10,10,10,0.58));
  z-index: 1;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center calc(50% + var(--hero-parallax-y, 0px));
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--brand-2);
  border: 1px solid rgba(244, 63, 94, 0.35);
  background: rgba(244, 63, 94, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  animation: kickerPulse 3.5s ease-in-out infinite;
}

@keyframes kickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(205, 19, 19, 0.16); }
  50% { box-shadow: 0 0 0 8px rgba(205, 19, 19, 0); }
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 0.96; margin: 0.9rem 0 1rem; }
.hero p { color: #d4d4d4; max-width: 620px; }

.hero-copy {
  max-width: 520px;
  padding: 0 0 0 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.94;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  margin-top: 0.6rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #f2f7f7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-overlay {
  max-width: 640px;
  width: min(640px, 94%);
  margin: 0 1.25rem 0 auto;
  background: rgba(11, 10, 10, 0.45);
  border: 1px solid rgba(250, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.achievements-strip {
  padding: 1rem 0 0;
}

.achievements-strip .hero-overlay {
  margin: 0 auto;
}

.hero-overlay h2 {
  font-size: 1.35rem;
  margin-top: 0.5rem;
}

.hero-overlay p {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: #d0d6d6;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #faffff;
  background: rgba(205, 19, 19, 0.25);
  border: 1px solid rgba(205, 19, 19, 0.7);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #cd1313;
  box-shadow: 0 0 0 4px rgba(205, 19, 19, 0.2);
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.achievement-list li {
  list-style: none;
}

.achievement-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(11, 10, 10, 0.45);
  border: 1px solid rgba(250, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font-size: 0.9rem;
  color: #f1f6f6;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.achievement-list li a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.achievement-list li a:hover {
  border-color: rgba(205, 19, 19, 0.6);
  background: rgba(205, 19, 19, 0.18);
}

.achievement-list img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
}

.btn {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
}
.btn:hover { background: var(--brand-2); }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
}

.panel.accent {
  background: linear-gradient(165deg, rgba(225,29,72,0.2), #171717 55%);
}

.query-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.query-field {
  display: grid;
  gap: 0.35rem;
}

.query-field span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f3f7f7;
  font-weight: 700;
}

.query-field input,
.query-field textarea {
  width: 100%;
  border: 1px solid rgba(250, 255, 255, 0.16);
  background: rgba(12, 12, 12, 0.55);
  color: var(--text);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
}

.query-field input::placeholder,
.query-field textarea::placeholder {
  color: #9ca3af;
}

.query-field input:focus,
.query-field textarea:focus {
  outline: none;
  border-color: rgba(205, 19, 19, 0.85);
  box-shadow: 0 0 0 3px rgba(205, 19, 19, 0.2);
}

.query-field textarea {
  resize: vertical;
  min-height: 120px;
}

.query-submit {
  margin-top: 0.2rem;
  width: fit-content;
}

.query-submit.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.query-status {
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  font-size: 0.84rem;
}

.query-status.is-success {
  color: #7ef7a0;
}

.query-status.is-error {
  color: #ff9f9f;
}

.section { padding: 4.5rem 0; }
.section-title { font-size: clamp(2rem, 4.3vw, 3.2rem); margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 760px; }

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(23, 23, 23, 0.5);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.9rem 0;
}
.stat-value { font-family: var(--font-display); font-size: 2.5rem; line-height: 0.98; color: var(--brand-2); margin: 0; }
.stat-label { margin: 0; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; }

.partners {
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.sponsor-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.sponsor-row img {
  height: 46px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.92;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(205, 19, 19, 0.45); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.card-body { padding: 1rem; }
.card-meta { color: var(--brand-2); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.card p { color: var(--muted); }
.thumb { height: 170px; background: #0f0f0f; }
.thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.74; }

.founders-section {
  margin-top: 2.2rem;
}

.founders-grid {
  margin-top: 1rem;
}

.founder-card .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.founder-meta p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-card h3 {
  font-size: 1.05rem;
}

.founder-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #d8d8d8;
  background: linear-gradient(140deg, #1d1d1d, #0f0f0f);
}

.founder-linkedin {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d4d4d4;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.founder-linkedin:hover {
  border-color: rgba(205, 19, 19, 0.55);
  color: #fff;
  background: rgba(205, 19, 19, 0.18);
}

.founder-linkedin svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.team-section {
  margin-top: 2rem;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.team-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

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

.player-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.player-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 19, 19, 0.45);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.player-card img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 194 / 286;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 0.8rem;
  box-shadow: 0 0 0 1px rgba(250, 255, 255, 0.06), 0 0 34px rgba(205, 19, 19, 0.22), 0 8px 22px rgba(0, 0, 0, 0.5);
  filter: saturate(1.04) contrast(1.03);
}

.player-card h3 {
  font-size: 1.2rem;
}

.player-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.player-socials {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.player-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d4d4d4;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.player-socials a:hover {
  border-color: rgba(244, 63, 94, 0.5);
  color: #fff;
  background: rgba(244, 63, 94, 0.15);
}

.player-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

.links-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.links-list a:hover { border-color: rgba(244, 63, 94, 0.45); color: var(--brand-2); }

.linktree-wrap {
  max-width: 720px;
}

.linktree-card {
  margin: 0 auto;
  max-width: 520px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.2rem 1.4rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.linktree-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 19, 19, 0.45);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.linktree-avatar {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.linktree-title {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #CD1313;
}

.linktree-sub {
  margin: 0.35rem 0 1.1rem;
  color: var(--muted);
}

.linktree-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.linktree-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--border);
  background: #131313;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.linktree-links a:hover {
  border-color: rgba(244, 63, 94, 0.45);
  color: #fff;
  background: rgba(244, 63, 94, 0.2);
}

.linktree-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  color: #9ca3af;
}
.footer-wrap {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d4d4d4;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  border-color: rgba(244, 63, 94, 0.5);
  color: #fff;
  background: rgba(244, 63, 94, 0.15);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  .hero,
  .cards,
  .split,
  .stats-grid,
  .roster-grid { grid-template-columns: 1fr; }
  .stats-grid {
    gap: 1.2rem;
    padding: 1.9rem 0;
  }
  .stats-grid > div:last-child {
    margin-bottom: 0;
  }
  .hero-copy {
    max-width: none;
    padding: 0;
  }
  .hero-overlay {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0.8rem;
  }
  .live-badge {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 0.18rem 0.5rem;
  }
  .achievement-list li a {
    padding: 0.44rem 0.5rem;
    font-size: 0.74rem;
    gap: 0.4rem;
  }
  .achievement-list img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
  .linktree-wrap,
  .linktree-card {
    max-width: none;
    width: 100%;
  }
  .nav { gap: 0.45rem; flex-wrap: nowrap; justify-content: center; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .kicker { animation: none; }
  .card,
  .player-card,
  .linktree-card { transition: none; }
  .card:hover,
  .player-card:hover,
  .linktree-card:hover { transform: none; box-shadow: none; }
}


.logo { display: inline-flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; }
.brand-mark { width: 78px; height: auto; margin-bottom: 0.8rem; opacity: 0.92; }
@media (max-width: 900px) {
  .logo-img { height: 34px; }
  .nav-wrap {
    height: 64px;
    padding: 0;
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  .nav { flex: 1; width: auto; }
  .nav-left { justify-content: flex-end; }
  .nav-right { justify-content: flex-start; }
  .nav a {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.1rem;
    white-space: nowrap;
  }
}
