/* ============ FONTS ============ */
@font-face {
  font-family: "Evolventa"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/evolventa-regular.woff") format("woff");
}
@font-face {
  font-family: "Evolventa"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("fonts/evolventa-italic.woff") format("woff");
}
@font-face {
  font-family: "Evolventa"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/evolventa-bold.woff") format("woff");
}
@font-face {
  font-family: "Evolventa"; font-style: italic; font-weight: 700; font-display: swap;
  src: url("fonts/evolventa-bold-italic.woff") format("woff");
}

/* ============ TOKENS ============ */
:root {
  --bg: #ece5d9;
  --bg-2: #ddd5c4;
  --ink: #0d0d0d;
  --ink-2: rgba(0,0,0,0.74);
  --ink-3: rgba(0,0,0,0.5);
  --rule: rgba(0,0,0,0.14);
  --orange: #ff5a1f;
  --orange-deep: #e94a10;
  --black: #0c0a08;
  --max: 1400px;
  --pad: clamp(20px, 4vw, 56px);
  --font: "Evolventa", "Helvetica Neue", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
::selection { background: var(--orange); color: #fff; }
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.kicker.light { color: rgba(255,255,255,0.55); }

/* ============ HEADER ============ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, backdrop-filter .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  background: rgba(236, 229, 217, 0.85);
  backdrop-filter: blur(12px);
  border-color: var(--rule);
}
.hdr-wrap {
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.nav { display: flex; gap: 22px; justify-content: center; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  transition: color .2s;
}
.nav a:hover { color: var(--orange); }
.hdr-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.hdr-cta:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 960px) { .nav { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 128px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-cell {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--rule);
}
.hero-cell:last-child { border-right: 0; }
.hero-cell .lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.hero-cell .val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cell { border-bottom: 1px solid var(--rule); }
  .hero-cell:nth-child(2) { border-right: 0; }
}

.hero-h {
  margin: 40px 0 40px;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-h .line { display: block; }
.hero-h em {
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  padding-left: 0.06em;
}
.orange-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-style: italic;
  padding: 0 0.28em 0.04em;
  border-radius: 999px;
  transform: translateY(0);
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease;
  letter-spacing: -0.04em;
}
.hero-h .line-2 em { font-style: italic; }
.hero-h .line-3 { padding-left: 0.18em; }

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  padding-bottom: 80px;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
}
.hero-sub {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.big-cta {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 20px 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform .25s ease, background .25s ease;
  white-space: nowrap;
}
.big-cta:hover { transform: translateY(-2px); background: var(--orange-deep); }
.big-cta .cta-bg { display: none; }
.big-cta .cta-txt em { font-style: italic; opacity: 0.8; font-weight: 400; }
.big-cta .cta-arrow {
  font-size: 20px;
  display: inline-flex; align-items: center;
  transition: transform .25s ease;
}
.big-cta:hover .cta-arrow { transform: translateX(6px); }
@media (max-width: 760px) { .hero-foot { grid-template-columns: 1fr; } }

/* hero marquee */
.hero-mq {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 0;
  overflow: hidden;
  margin: 0;
  border-block: 1px solid var(--orange);
}
.mq-row {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: mq 38s linear infinite;
  padding-right: 32px;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.mq-row i { color: var(--orange); font-style: normal; font-size: 0.6em; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION COMMON ============ */
section.spirit, section.formats, section.mm, section.who, section.join {
  position: relative;
}

/* ============ 01 SPIRIT — orange ============ */
.spirit {
  background: var(--orange);
  color: #fff;
  padding: clamp(96px, 14vw, 200px) 0;
  overflow: hidden;
}
.spirit .big-num,
.join .big-num {
  position: absolute;
  right: -2vw;
  top: 0;
  font-size: clamp(280px, 45vw, 740px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.spirit .wrap, .join .wrap { position: relative; z-index: 1; }

.spirit-head { margin-bottom: 56px; }
.spirit-head .kicker { color: rgba(255,255,255,0.7); display: block; margin-bottom: 24px; }
.spirit-h {
  margin: 0;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.spirit-h em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  font-size: 0.92em;
}
.spirit-lead {
  margin: 0 0 80px;
  max-width: 640px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}
.spirit-lead strong { color: #fff; font-weight: 700; }

.spirit-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.sc {
  background: var(--orange);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s ease;
}
.sc:hover { background: var(--orange-deep); }
.sc .num {
  font-size: 14px;
  font-weight: 700;
  width: 36px; height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.sc h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.sc p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.85); max-width: 26ch; }
@media (max-width: 880px) { .spirit-cols { grid-template-columns: 1fr; } }

/* ============ 03 FORMATS — accordion ============ */
.formats {
  background: var(--bg);
  padding: clamp(96px, 12vw, 160px) 0;
}
.fm-head { margin-bottom: 56px; max-width: 900px; }
.fm-head .kicker { display: block; margin-bottom: 18px; }
.fm-h {
  margin: 0 0 18px;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.fm-h em { font-style: italic; color: var(--orange); font-weight: 400; }
.fm-sub { margin: 0; max-width: 580px; font-size: 16px; color: var(--ink-2); }

.acc {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.acc-item { border-bottom: 1px solid var(--rule); }
.acc-btn {
  display: grid;
  grid-template-columns: 80px 1fr auto 50px;
  gap: 32px;
  width: 100%;
  padding: 32px 0;
  text-align: left;
  align-items: center;
  transition: padding-left .25s ease, color .25s ease;
}
.acc-item:hover .acc-btn { padding-left: 12px; color: var(--orange); }
.acc-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.acc-ttl {
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.acc-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.acc-tog { display: none; }

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.acc-body > * { overflow: hidden; min-height: 0; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body p {
  margin: 0;
  padding: 0 0 24px 112px;
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
.acc-body p strong { color: var(--ink); font-weight: 700; }
.acc-tag {
  display: inline-block;
  margin: 0 0 32px 112px;
  padding: 6px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 760px) {
  .acc-btn { grid-template-columns: 50px 1fr 40px; }
  .acc-meta { display: none; }
  .acc-body p, .acc-tag { padding-left: 0; margin-left: 0; }
}

/* ============ 04 MASTERMINDS — black broken grid ============ */
.mm {
  background: var(--black);
  color: #fff;
  padding: clamp(96px, 12vw, 160px) 0;
}
.mm-head { margin-bottom: 64px; max-width: 1000px; }
.mm-head .kicker { display: block; margin-bottom: 18px; }
.mm-h {
  margin: 0 0 18px;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.mm-h em { font-style: italic; color: var(--orange); font-weight: 400; }
.mm-sub { margin: 0; max-width: 540px; color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; }

.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mm-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 260px;
  transition: background .3s, border-color .3s, transform .3s;
  overflow: hidden;
}
.mm-card:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px); color: #fff; }
.mm-card.big { grid-column: span 1; min-height: 320px; }
.mm-card.big:nth-of-type(1) { grid-column: span 2; }
.mm-card.big:nth-of-type(4) { grid-column: span 1; }
.mm-no {
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 700;
}
.mm-no span { font-size: 32px; letter-spacing: -0.02em; }
.mm-no i { font-style: normal; font-size: 13px; opacity: 0.5; }
.mm-card h4 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.mm-card.big h4 { font-size: clamp(28px, 3vw, 44px); }
.mm-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 32ch;
}
.mm-card:hover p { color: rgba(255,255,255,0.9); }
.mm-card .mm-tag {
  margin-top: auto;
  align-self: start;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.mm-card .mm-tag.live { color: var(--orange); border-color: var(--orange); background: rgba(255,90,31,0.08); }
.mm-card:hover .mm-tag, .mm-card:hover .mm-tag.live {
  border-color: rgba(255,255,255,0.6); color: #fff; background: transparent;
}
@media (max-width: 880px) {
  .mm-grid { grid-template-columns: 1fr; }
  .mm-card.big { grid-column: auto; }
}

/* ============ 05 WHO ============ */
.who {
  background: var(--bg);
  padding: clamp(96px, 12vw, 160px) 0;
}
.who-head { max-width: 900px; margin-bottom: 64px; }
.who-head .kicker { display: block; margin-bottom: 18px; }
.who-h {
  margin: 0;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.who-h em { font-style: italic; color: var(--orange); font-weight: 400; }

.who-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.who-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: padding-left .35s cubic-bezier(.2,.8,.2,1), background .25s;
  position: relative;
}
.who-list li::after {
  content: "→";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%) translateX(40px);
  font-size: 32px;
  color: var(--orange);
  opacity: 0;
  transition: transform .35s, opacity .25s;
}
.who-list li:hover { padding-left: 16px; background: rgba(0,0,0,0.02); }
.who-list li:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.who-list .big {
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--orange);
}
.who-list h4 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.who-list p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.5; max-width: 48ch; }
@media (max-width: 760px) {
  .who-list li { grid-template-columns: 1fr; gap: 12px; }
}

/* ============ 06 JOIN — orange ============ */
.join {
  background: var(--orange);
  color: #fff;
  padding: clamp(96px, 14vw, 200px) 0 clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.join .kicker { color: rgba(255,255,255,0.7); display: block; margin-bottom: 24px; }
.join-h {
  margin: 0 0 32px;
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.join-h em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.65); }
.join-sub { margin: 0 0 48px; max-width: 580px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.92); }

.join-cta {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 22px 32px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, color .25s;
}
.join-cta:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.join-cta .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.join-cta:hover .arrow { transform: translateX(6px); }

/* ============ FOOTER ============ */
.ftr {
  background: var(--black);
  color: #fff;
  padding: 80px 0 40px;
  overflow: hidden;
}
.ftr-friends {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 64px;
}
.ftr-friends .kicker { display: block; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
.friend {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
  transition: padding-left .35s cubic-bezier(.2,.8,.2,1), color .25s;
}
.friend:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.friend:hover { padding-left: 16px; color: var(--orange); }
.friend .num {
  font-size: 32px;
  font-weight: 400;
  color: var(--orange);
  transition: transform .35s ease;
}
.friend:hover .num { transform: translateX(8px); }
.friend .name {
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.friend .name em { font-style: italic; font-weight: 400; opacity: 0.5; }

.ftr-mega {
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.05);
  margin: 32px 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.ftr-mega em { font-style: italic; color: rgba(255,90,31,0.4); }

.ftr-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.ftr-bottom a:hover { color: var(--orange); }

/* ============ REVEAL ============ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
[data-reveal].in { opacity: 1; transform: none; }

/* ============ POPUP ============ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-box {
  background: #fff;
  color: #0d0d0d;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  font-family: var(--font);
}
.popup-overlay.open .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f0ece1;
  color: #0d0d0d;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.popup-close:hover { background: var(--orange); color: #fff; }
.popup-icon {
  font-size: 36px;
  margin-bottom: 18px;
  color: var(--orange);
}
.popup-box h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.popup-box p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
}
.popup-box p strong { color: #0d0d0d; }
.popup-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: inherit;
  transition: background .2s, transform .2s;
}
.popup-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
