/* ============================================
   SIXFOUR / main stylesheet
   parent brand pages: index, about, events, contact
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: #fff;
  z-index: 200;
  width: 0;
  transition: width 0.08s linear;
}

/* ===== Top metadata bar ===== */
.meta-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  color: rgba(255,255,255,0.6);
}
.meta-bar .left, .meta-bar .right { display: flex; gap: 24px; align-items: center; }
.meta-bar .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.25s ease;
  letter-spacing: 2px;
}
.meta-bar .center.fade { opacity: 0; }
.meta-bar .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #fff;
  margin-right: 8px;
  transform: translateY(-1px);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 0.2; } }
.meta-bar .clock { font-variant-numeric: tabular-nums; }

/* ===== Page wrap ===== */
.page { padding: 48px 24px 0; max-width: 1280px; margin: 0 auto; }

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.monogram { position: relative; width: 48px; height: 40px; }
.monogram .six, .monogram .four {
  position: absolute;
  font-family: 'Rubik', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.82;
  color: #fff;
}
.monogram .six { top: 0; left: 0; }
.monogram .four {
  top: 1px; right: 0;
  transform: rotate(8deg);
  transform-origin: bottom center;
}
.lockup-rule { width: 1px; height: 32px; background: rgba(255,255,255,0.18); }
.lockup-wordmark {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 6px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.25s ease;
  display: inline-block;
}
.nav a:hover { color: #fff; transform: translateY(-1px); }
.nav a.active { color: #fff; }
.nav .num { opacity: 0.4; margin-right: 6px; transition: opacity 0.2s ease; }
.nav a:hover .num, .nav a.active .num { opacity: 0.9; }

/* ===== Section grid ===== */
.section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 80px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 70px;
  align-self: flex-start;
}
.section-label .num {
  font-size: 16px;
  opacity: 1;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
}

/* ===== Reveal (gentle fade only) ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.reveal.in-view { opacity: 1; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== Hero statement (home) ===== */
.statement {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  max-width: 1100px;
}
.statement .word { display: inline-block; margin-right: 0.15em; }
.statement .highlight {
  display: inline-block;
  background: #fff;
  color: #0a0a0a;
  padding: 0 14px 6px;
  transform: rotate(-1.5deg);
  margin-top: -2px;   /* tighten gap up to "party" above */
}
.statement-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ===== Body text (overview / prose) ===== */
.overview-body, .prose {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.overview-body { margin-top: 80px; }
.overview-body p, .prose p {
  font-family: 'Rubik', sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.72;
  max-width: 720px;
}
.overview-body p strong, .prose p strong { font-weight: 500; opacity: 1; color: #fff; }
.prose a {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}
.prose a:hover { text-decoration-color: rgba(255,255,255,1); }

/* ===== Empty state / next event card ===== */
.next-event {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 48px;
  max-width: 720px;
  position: relative;
  overflow: hidden;
}
.next-event::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.next-event::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.next-status {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.55;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.next-status .dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
.next-headline {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.next-copy {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.6;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ===== Archive empty state ===== */
.archive-empty {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.4;
  text-transform: uppercase;
}

/* ===== Event cards (events page) ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.event-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.event-card:hover {
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.02);
}
.event-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.event-card-series {
  font-weight: 500;
  opacity: 0.5;
}
.event-card-series.meta {
  color: #00ff41;
  opacity: 1;
  text-shadow: 0 0 10px rgba(0,255,65,0.35);
}
.event-card-series.vault {
  color: #c5001f;
  opacity: 1;
  text-shadow: 0 0 10px rgba(197,0,31,0.3);
}
.event-card-date { opacity: 0.5; }
.event-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.event-card-meta {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin: 0;
}
.event-card-meta dt { opacity: 0.4; text-transform: uppercase; margin: 0; }
.event-card-meta dd { color: #fff; margin: 0; }
.event-card-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.event-card:hover .event-card-arrow { transform: translateX(6px); opacity: 1; }

@media (max-width: 720px) {
  .event-card { padding: 24px 24px; }
  .event-card-meta { grid-template-columns: 1fr; gap: 4px; }
  .event-card-meta dt { margin-top: 6px; }
}

/* ===== Signup form ===== */
.signup {
  display: flex;
  max-width: 480px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s ease;
}
.signup:focus-within { border-color: rgba(255,255,255,0.5); }
.signup input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 16px 18px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.signup input::placeholder { color: rgba(255,255,255,0.3); }
.signup input:focus { outline: none; }
.signup button {
  background: #fff;
  color: #0a0a0a;
  border: none;
  padding: 16px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease, padding 0.25s ease;
}
.signup button:hover { background: rgba(255,255,255,0.85); padding-right: 34px; }
.signup button:disabled { cursor: wait; opacity: 0.7; padding-right: 28px; }

/* ===== Signup confirm / error states ===== */
.signup-confirm {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  padding: 16px 0;
  text-transform: uppercase;
}
.signup-confirm::before {
  content: '✓';
  margin-right: 10px;
  opacity: 0.7;
}
.signup-error {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 90, 90, 0.9);
  margin-top: 12px;
  text-transform: lowercase;
}

/* ===== Sub-brand card ===== */
.subbrand {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 720px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.subbrand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.subbrand:hover { border-color: rgba(255,255,255,0.45); transform: translateY(-3px); }
.subbrand:hover::before { opacity: 1; }
.subbrand-name {
  font-family: 'Rubik', sans-serif;
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.subbrand:hover .subbrand-name { transform: translateX(4px); }
.subbrand-info { display: flex; flex-direction: column; gap: 12px; }
.subbrand-info .label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.5;
}
.subbrand-info .desc {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.65;
}
.subbrand-info .arrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-top: 4px;
  transition: transform 0.3s ease;
}
.subbrand:hover .arrow { transform: translateX(8px); }

/* ===== META sub-brand card variant (terminal preview) ===== */
.subbrand-meta .subbrand-name {
  font-family: 'DM Mono', monospace;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}
.subbrand-meta:hover .subbrand-name {
  text-shadow: 0 0 38px rgba(255, 255, 255, 0.35);
}
.subbrand-meta .cursor {
  display: inline-block;
  color: #00ff41;
  margin-left: 6px;
  animation: meta-blink 1.1s steps(1) infinite;
  text-shadow: 0 0 18px rgba(0, 255, 65, 0.6);
}
@keyframes meta-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.subbrand-meta:hover .cursor { animation-duration: 0.55s; }
.subbrand-meta .label,
.subbrand-meta .desc,
.subbrand-meta .arrow { font-family: 'DM Mono', monospace; }
.subbrand-meta .arrow {
  color: #00ff41;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.35);
  opacity: 1;
}
.subbrand-meta:hover .arrow {
  text-shadow: 0 0 18px rgba(0, 255, 65, 0.6);
}

/* ===== VAULT sub-brand card variant (red preview) ===== */
.subbrand-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.subbrand-vault .subbrand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #c5001f;
  text-shadow: 0 0 28px rgba(197, 0, 31, 0.28);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}
.subbrand-vault:hover .subbrand-name {
  text-shadow: 0 0 44px rgba(197, 0, 31, 0.55);
}
.subbrand-vault .label,
.subbrand-vault .desc,
.subbrand-vault .arrow {
  font-family: 'Inter', sans-serif;
}
.subbrand-vault .arrow {
  color: rgba(197, 0, 31, 0.85);
  font-weight: 600;
  letter-spacing: 3px;
}

/* ===== Contact cards ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
}
.contact-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  gap: 24px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.02);
}
.contact-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.5;
}
.contact-card-body { display: flex; flex-direction: column; gap: 6px; }
.contact-card-email {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.contact-card-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.5;
}
.contact-card-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  text-align: right;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.contact-card:hover .contact-card-arrow { transform: translateX(6px); opacity: 1; }

/* META transition overlay moved into /meta page itself (see meta.css .meta-boot). */

/* ===== Footer ===== */
.footer {
  padding: 60px 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.35;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .socials { display: flex; gap: 20px; }
.footer a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
.footer a:hover { opacity: 0.7; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .section { grid-template-columns: 1fr; gap: 24px; padding: 60px 0; }
  .section-label { position: static; flex-direction: row; align-items: baseline; gap: 12px; }
  .subbrand { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 8px; padding: 24px 28px; }
  .contact-card-arrow { display: none; }
  .header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .nav { gap: 18px; flex-wrap: wrap; }
  .meta-bar .center { display: none; }
}
