:root {
  --gold: #f6c51c;
  --gold-bright: #ffda3e;
  --ink: #0b0905;
  --ink-soft: #17130b;
  --paper: #f3efe5;
  --muted: #9d978a;
  --line: rgba(255,255,255,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-transform: uppercase; font: 700 19px/1 Barlow Condensed, sans-serif; letter-spacing: 1px; }
.brand img { width: 50px; height: 50px; object-fit: cover; object-position: center; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: #d4cebf; }
.brand strong { color: #fff; font-size: 20px; letter-spacing: 2px; }
.main-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 46px); font-size: 13px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; background: var(--gold); left: 0; right: 100%; bottom: -9px; transition: right .3s; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(246,197,28,.7); padding: 13px 18px; color: var(--gold-bright); transition: .25s; }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.menu-button { display: none; background: none; border: 0; color: white; width: 42px; height: 42px; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 6px 0; }

.hero {
  min-height: 790px;
  height: 100vh;
  max-height: 1000px;
  position: relative;
  isolation: isolate;
  padding: 155px clamp(24px, 7vw, 110px) 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0b0905 0%, #0b0905 39%, rgba(11,9,5,.8) 58%, rgba(11,9,5,.2) 100%),
    radial-gradient(circle at 77% 43%, #443109, #100d06 45%, #050403 72%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 45vw;
  height: 45vw;
  min-width: 500px;
  min-height: 500px;
  right: -4vw;
  top: 52%;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(246,197,28,.22);
}
.hero-glow { position: absolute; z-index: -2; width: 590px; height: 590px; border-radius: 50%; right: 7vw; top: 51%; transform: translateY(-50%); background: rgba(246,197,28,.2); filter: blur(100px); }
.hero-copy { max-width: 680px; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 12px; text-transform: uppercase; color: var(--gold); letter-spacing: 3px; font: 700 11px/1 Inter, sans-serif; margin-bottom: 28px; }
.eyebrow span { display: block; width: 35px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; text-transform: uppercase; font-family: Barlow Condensed, sans-serif; line-height: .83; letter-spacing: -.02em; }
h1 { font-size: clamp(84px, 10vw, 154px); font-weight: 900; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
.hero-copy > p { color: #b8b1a3; line-height: 1.75; max-width: 535px; font-size: 16px; margin: 34px 0 39px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 24px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-ghost { border: 1px solid rgba(255,255,255,.3); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-mark { position: relative; z-index: 1; justify-self: end; width: min(48vw, 650px); }
.hero-mark img { width: 100%; position: relative; z-index: 2; filter: drop-shadow(0 28px 50px rgba(0,0,0,.55)); animation: float 5s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(246,197,28,.2); border-radius: 50%; inset: 9%; }
.orbit-one::after { content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: absolute; top: 13%; right: 13%; box-shadow: 0 0 20px var(--gold); }
.orbit-two { inset: -3%; border-style: dashed; animation: spin 40s linear infinite; }
.hero-footer { position: absolute; bottom: 30px; left: clamp(24px, 7vw, 110px); right: clamp(24px, 7vw, 110px); display: flex; justify-content: space-between; align-items: center; color: #5f594d; font: 700 10px/1 Inter; text-transform: uppercase; letter-spacing: 3px; }
.scroll-hint { display: flex; align-items: center; gap: 12px; }
.scroll-hint i { display: block; width: 28px; height: 1px; background: #5f594d; }

.ticker { height: 95px; background: var(--gold); color: var(--ink); overflow: hidden; display: flex; align-items: center; transform: rotate(-1.2deg) scale(1.02); position: relative; z-index: 3; margin-top: -5px; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 37px; white-space: nowrap; animation: ticker 24s linear infinite; font: italic 900 45px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.ticker-track b { font-size: 17px; }

.section { position: relative; padding: 150px clamp(24px, 7vw, 110px); }
.section-number { position: absolute; top: 60px; right: clamp(24px, 7vw, 110px); color: #29251d; font: 900 115px/1 Barlow Condensed; }
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; background: #0b0905; }
h2 { font-size: clamp(68px, 8vw, 118px); font-weight: 900; }
.about-content { padding-top: 48px; max-width: 680px; }
.about-content p { color: #888175; line-height: 1.8; font-size: 14px; max-width: 600px; }
.about-content .lead { font: 600 24px/1.5 Barlow Condensed, sans-serif; color: #eae4d8; text-transform: uppercase; letter-spacing: .5px; }
.values { border-top: 1px solid #29251e; margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); }
.values article { padding: 22px 0; border-right: 1px solid #29251e; display: flex; flex-direction: column; gap: 22px; }
.values article + article { padding-left: 24px; }
.values strong { color: var(--gold); font: 700 11px Inter; }
.values span { text-transform: uppercase; font: 800 18px Barlow Condensed; letter-spacing: 1px; }

.teams { background: var(--paper); color: var(--ink); }
.section-top { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.section-top p { color: #7d776d; line-height: 1.7; max-width: 290px; font-size: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.team-card { min-height: 510px; position: relative; overflow: hidden; background: #16120b; color: white; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s; }
.team-card:hover { transform: translateY(-8px); z-index: 2; }
.team-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 60%); }
.team-first { background: var(--gold); color: var(--ink); }
.team-index { position: relative; z-index: 2; font: 700 11px Inter; opacity: .7; }
.team-card > div:last-child { position: relative; z-index: 2; }
.team-card span { font: 600 10px Inter; text-transform: uppercase; letter-spacing: 2px; opacity: .65; }
.team-card h3 { font-size: clamp(45px, 4.8vw, 70px); margin: 13px 0 30px; }
.team-card a { font: 700 11px Inter; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid currentColor; padding-bottom: 8px; }
.team-card a b { float: right; margin-left: 35px; }
.team-symbol { position: absolute; right: -8%; top: 8%; z-index: 0; color: rgba(11,9,5,.09); font: 900 250px/1 Barlow Condensed; transform: rotate(-8deg); }
.ball-lines { position: absolute; width: 330px; height: 330px; right: -100px; top: 40px; border: 2px solid rgba(246,197,28,.13); border-radius: 50%; box-shadow: inset 0 0 0 70px rgba(246,197,28,.025); }
.ball-lines::before, .ball-lines::after { content: ""; position: absolute; inset: 50% -20%; border-top: 2px solid rgba(246,197,28,.13); transform: rotate(45deg); }
.ball-lines::after { transform: rotate(-45deg); }
.crystal-shape { position: absolute; width: 230px; height: 300px; top: 50px; right: -10px; opacity: .13; background: var(--gold); clip-path: polygon(50% 0, 93% 38%, 78% 86%, 50% 100%, 9% 78%, 0 36%); }

.match { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; background: #100d07; }
.match-aside p { color: #8f887b; max-width: 390px; line-height: 1.8; margin-top: 32px; font-size: 14px; }
.match-card { border: 1px solid #2e281d; background: #151109; padding: 38px 45px 25px; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.match-label { color: var(--gold); text-transform: uppercase; font: 700 10px Inter; letter-spacing: 2px; padding-bottom: 22px; border-bottom: 1px solid #2e281d; }
.match-date { display: flex; flex-direction: column; align-items: center; margin: 30px 0 25px; }
.match-date strong { font: 900 34px Barlow Condensed; color: var(--paper); letter-spacing: 2px; }
.match-date span { color: #777064; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.versus > span { font: italic 900 28px Barlow Condensed; color: var(--gold); }
.club { text-align: center; display: flex; align-items: center; flex-direction: column; }
.club img, .rival-mark { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin-bottom: 18px; }
.club strong { font: 800 20px/1 Barlow Condensed; text-transform: uppercase; }
.rival-mark { display: grid; place-items: center; border: 1px dashed #393226; color: #51493d; font: 900 50px Barlow Condensed; }
.match-meta { border-top: 1px solid #2e281d; margin-top: 28px; padding-top: 22px; display: flex; justify-content: space-between; color: #716a5e; font-size: 10px; text-transform: uppercase; letter-spacing: .8px; }

.join { min-height: 630px; background: var(--gold); color: var(--ink); overflow: hidden; display: flex; align-items: center; }
.join::after { content: "KŚ"; position: absolute; right: -2vw; bottom: -13vw; color: rgba(11,9,5,.07); font: 900 48vw/1 Barlow Condensed; }
.join-content { position: relative; z-index: 3; width: 50%; }
.eyebrow.light { color: var(--ink); opacity: .7; }
.join h2 em { color: var(--ink); }
.join p { max-width: 500px; line-height: 1.7; font-size: 14px; margin: 30px 0 35px; }
.button-dark { background: var(--ink); color: white; }
.join-logo { position: absolute; z-index: 2; width: min(47vw, 630px); right: 5vw; top: 50%; transform: translateY(-50%) rotate(5deg); filter: drop-shadow(0 28px 35px rgba(67,45,0,.25)); }

.footer { background: #080704; padding: 80px clamp(24px, 7vw, 110px) 30px; }
.footer-main { display: flex; justify-content: space-between; gap: 70px; padding-bottom: 75px; }
.footer-brand { display: flex; align-items: center; gap: 18px; text-transform: uppercase; font: 900 28px/.8 Barlow Condensed; }
.footer-brand img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }
.footer-brand b { color: var(--gold); }
.footer-main > div:first-child > p { color: #5f594f; font-size: 12px; line-height: 1.7; margin: 25px 0 0 98px; }
.footer-links { display: flex; gap: clamp(60px, 8vw, 130px); }
.footer-links > div { display: flex; flex-direction: column; gap: 13px; }
.footer-links span { color: var(--gold); text-transform: uppercase; font: 700 9px Inter; letter-spacing: 2px; margin-bottom: 10px; }
.footer-links a { color: #898278; font-size: 12px; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #211e18; padding-top: 25px; display: flex; justify-content: space-between; color: #48443d; font-size: 9px; text-transform: uppercase; letter-spacing: 1.3px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .site-header { height: 78px; }
  .main-nav { position: fixed; inset: 78px 0 auto; background: #0b0905; padding: 28px; display: none; flex-direction: column; align-items: stretch; border-bottom: 1px solid #30291c; }
  .main-nav.open { display: flex; }
  .menu-button { display: block; }
  .hero { height: auto; min-height: 870px; grid-template-columns: 1fr; padding-top: 135px; }
  .hero-copy { z-index: 3; }
  .hero-mark { position: absolute; opacity: .45; width: 570px; right: -180px; top: 230px; }
  .hero-copy > p { max-width: 430px; }
  .about, .match { grid-template-columns: 1fr; }
  .about { gap: 25px; }
  .about-content { padding-top: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 400px; }
  .team-symbol { font-size: 210px; }
  .join-content { width: 70%; }
  .join-logo { right: -170px; width: 570px; opacity: .42; }
}

@media (max-width: 620px) {
  .section { padding: 105px 24px; }
  .hero { min-height: 790px; padding: 120px 24px 80px; align-items: start; }
  h1 { font-size: 79px; }
  h2 { font-size: 66px; }
  .hero-mark { width: 430px; right: -185px; top: 260px; opacity: .34; }
  .hero-copy > p { max-width: 92%; font-size: 14px; margin-top: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 330px; }
  .ticker { height: 72px; }
  .ticker-track { font-size: 34px; gap: 25px; }
  .section-number { display: none; }
  .about-content .lead { font-size: 21px; }
  .values article + article { padding-left: 12px; }
  .values span { font-size: 14px; }
  .section-top { align-items: start; flex-direction: column; margin-bottom: 45px; }
  .team-card { padding: 27px; min-height: 390px; }
  .match-card { padding: 27px 18px 20px; margin: 0 -10px; }
  .versus { gap: 10px; }
  .club img, .rival-mark { width: 88px; height: 88px; }
  .club strong { font-size: 16px; }
  .match-meta { align-items: center; text-align: center; flex-direction: column; gap: 9px; }
  .join { min-height: 620px; }
  .join-content { width: 100%; }
  .join-logo { right: -230px; opacity: .25; }
  .footer-main { flex-direction: column; }
  .footer-main > div:first-child > p { margin-left: 0; }
  .footer-links { flex-direction: column; gap: 45px; }
  .footer-bottom { gap: 20px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
