/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e0e;
  --bg-alt: #161616;
  --cream: #faf4e8;
  --amber: #e8952a;
  --amber-dim: #c47a1a;
  --text: #f0ece0;
  --text-muted: #9a9080;
  --border: rgba(232, 149, 42, 0.18);
  --rope: rgba(232, 149, 42, 0.35);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1100px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--cream); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__ring-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

/* CSS Ring Art */
.ring-canvas {
  position: relative;
  width: min(520px, 90vw);
  height: min(400px, 70vh);
}

/* Corner posts */
.ring-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--amber);
  z-index: 2;
}
.ring-corner--tl { top: 0; left: 0; }
.ring-corner--tr { top: 0; right: 0; }
.ring-corner--bl { bottom: 0; left: 0; }
.ring-corner--br { bottom: 0; right: 0; }

/* Ropes */
.ring-rope {
  position: absolute;
  background: var(--rope);
  z-index: 1;
}
.ring-rope--top {
  top: 0; left: 4px; right: 4px; height: 2px;
  transform: translateY(-18px);
}
.ring-rope--mid {
  top: 0; left: 4px; right: 4px; height: 2px;
  transform: translateY(-9px);
}
.ring-rope--bottom {
  top: 0; left: 4px; right: 4px; height: 2px;
  transform: translateY(-1px);
}
.ring-rope--left {
  top: 4px; bottom: 4px; left: 0; width: 2px;
}
.ring-rope--right {
  top: 4px; bottom: 4px; right: 0; width: 2px;
}

/* Canvas floor gradient */
.ring-canvas::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(180deg, transparent 60%, rgba(232,149,42,0.04) 100%);
  z-index: 0;
}

/* Hero corner decorations */
.hero__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.hero__corner--tl { top: 2rem; left: 2rem; }
.hero__corner--tr { top: 2rem; right: 2rem; }
.hero__corner--bl { bottom: 2rem; left: 2rem; }
.hero__corner--br { bottom: 2rem; right: 2rem; }

.corner-dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.corner-line--h {
  position: absolute;
  top: 3px;
  width: 34px;
  height: 1px;
  background: var(--rope);
}
.corner-line--v {
  position: absolute;
  left: 3px;
  height: 34px;
  width: 1px;
  background: var(--rope);
}
.hero__corner--tl .corner-line--h { }
.hero__corner--tl .corner-line--v { }
.hero__corner--tr .corner-dot { left: auto; right: 0; }
.hero__corner--tr .corner-line--h { left: auto; right: 0; }
.hero__corner--tr .corner-line--v { left: auto; right: 0; }
.hero__corner--bl .corner-dot { top: auto; bottom: 0; }
.hero__corner--bl .corner-line--h { top: auto; bottom: 3px; }
.hero__corner--bl .corner-line--v { top: auto; bottom: 0; }
.hero__corner--br .corner-dot { top: auto; left: auto; bottom: 0; right: 0; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.hero__title-line { display: block; }
.hero__title-line--indented { padding-left: 2.5rem; color: var(--amber); }

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 2rem;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-arrow {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--bg-alt);
  padding: var(--section-pad) 0;
}
.manifesto__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.manifesto__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--amber);
}
.manifesto__body {
  max-width: 640px;
  margin-bottom: 4rem;
}
.manifesto__body p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.manifesto__stat-row {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.manifesto__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.manifesto__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ===== FIGHT NIGHTS ===== */
.fightnights {
  padding: var(--section-pad) 0;
}
.fightnights__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.fightnights__header { margin-bottom: 4rem; }
.fightnights__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.fightnights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 4rem;
}
.fightnights__card {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
}
.fightnights__card:last-child { border-right: none; }
.fightnights__card--main {
  padding-left: 0;
  padding-right: 2rem;
  padding-left: 2rem;
}
.card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.card__detail {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Pricing */
.pricing__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.pricing__tier {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
}
.pricing__tier:last-child { border-right: none; }
.pricing__tier--featured { background: rgba(232,149,42,0.04); }
.tier-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.tier__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.tier__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}
.tier__perks {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tier__perks li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.tier__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 1px;
  background: var(--amber);
}

/* ===== SPONSORS ===== */
.sponsors {
  background: var(--bg-alt);
  padding: var(--section-pad) 0;
}
.sponsors__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.sponsors__header { margin-bottom: 3.5rem; }
.sponsors__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.sponsors__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.sponsors__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 3rem;
}
.sponsors__tier {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.sponsors__tier--bronze { border-top: 3px solid #cd7f32; }
.sponsors__tier--silver { border-top: 3px solid #a8a9ad; }
.sponsors__tier--gold { border-top: 3px solid var(--amber); }

.sponsors__audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.audience__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.audience__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.audience__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.audience__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--amber);
}

/* ===== THE FADE ===== */
.thefade {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.thefade__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.thefade__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.thefade__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.principle {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.principle:first-child { border-top: 1px solid var(--border); }
.principle__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  min-width: 40px;
}
.principle__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  padding-top: 0.3rem;
}

/* ===== COMMUNITY ===== */
.community {
  background: var(--bg-alt);
  padding: var(--section-pad) 0;
}
.community__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.community__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
}
.community__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.block__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.block__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Roadmap */
.expand__header {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.expand__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.expand__step {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-right: 1px solid var(--border);
}
.expand__step:last-child { border-right: none; }
.step__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}
.step__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
}
.closing__inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.closing__rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 3rem;
}
.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.closing__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
}
.closing__tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.footer__divider { color: var(--border); }
.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}
.site-footer__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__sep { color: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .fightnights__grid,
  .pricing__tiers,
  .sponsors__tiers,
  .community__blocks {
    grid-template-columns: 1fr;
  }
  .fightnights__card { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .pricing__tier { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .sponsors__tier { border-right: none; border-bottom: 1px solid var(--border); }
  .community__blocks > * { border-bottom: 1px solid var(--border); }
  .thefade__inner { grid-template-columns: 1fr; }
  .expand__steps { grid-template-columns: 1fr 1fr; }
  .expand__step { border-right: 1px solid var(--border); }
  .expand__step:nth-child(2n) { border-right: none; }
  .sponsors__audience { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto__stat-row { gap: 2rem; }
}

@media (max-width: 600px) {
  .expand__steps { grid-template-columns: 1fr; }
  .expand__step { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__scroll-cue { display: none; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .hero__corner { display: none; }
}