* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #FED766;
  --black: #000000;
  --white: #FFFFFF;
  --cyan: #00E5FF;
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --border: #E6E4DF;
  --text: #0A0A0A;
  --text-mid: #444444;
  --text-dim: #8A8A8A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ===== NAV — no box, links top right ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo { display: block; }
.nav-logo img { width: 38px; height: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.5; }
.nav-signin { color: var(--text-mid); }


.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--black);
  background: var(--surface);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--black); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--black); }
.btn-gold { background: var(--gold); }

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px 70px;
}
.hero-logo {
  width: min(680px, 82vw);
  height: auto;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.tagline-stack {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.tagline {
  font-family: 'Gasoek One', sans-serif;
  /* scales with viewport so it always holds a single line, capped on desktop */
  font-size: clamp(12px, 3.6vw, 28px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  white-space: nowrap;
  max-width: none;
}
.tagline-alt {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.4px;
  color: var(--text-mid);
  max-width: 620px;
}

/* split buttons */
.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
  margin-bottom: 40px;
}
.door {
  border: 2px solid var(--black);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--black);
  padding: 18px 34px;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 250px;
}
.door:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.door:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.door.creator { background: var(--gold); }
.door .q {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.door.creator .q { color: #4A3D00; }
.door .a {
  display: block;
  font-family: 'Gasoek One', sans-serif;
  font-size: 21px;
  letter-spacing: 0.4px;
}

/* platform badges — centred */
.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.platform-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--black);
  border-radius: 6px;
  padding: 6px 14px;
  background: var(--surface);
  box-shadow: 2px 2px 0 var(--black);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.platform-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  outline: 2px solid var(--black);
  animation: pulse 1.6s ease infinite;
}
.platform-badge.soon { color: var(--text-dim); border-color: var(--border); box-shadow: none; background: transparent; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ===== B PATTERN ===== */
.b-pattern-row {
  display: flex;
  gap: 34px;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  opacity: 1;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  flex-wrap: nowrap;
}
.b-pattern-row img { height: clamp(20px, 2.4vw, 30px); width: auto; flex-shrink: 0; transform: rotate(3deg); }

/* ===== MANIFESTO ===== */
.section-manifesto {
  padding: 110px 40px 120px;
  display: flex;
  justify-content: center;
}
.manifesto-inner {
  max-width: 1080px;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}
.manifesto-b { width: 100%; height: auto; }
.manifesto {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(38px, 6.2vw, 82px);
  line-height: 1.14;
  letter-spacing: 0.5px;
}
.manifesto .gold-line { color: var(--gold); text-shadow: 4px 4px 0 var(--black); }
.manifesto .small-line {
  display: block;
  font-size: clamp(17px, 2vw, 26px);
  color: var(--text-mid);
  margin-top: 22px;
  letter-spacing: 0.4px;
}

/* ===== SPLITTER CARDS ===== */
.section-split { padding: 20px 40px 110px; }
.split-heading {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  text-align: center;
  margin: 0 auto 52px;
  width: fit-content;
  letter-spacing: 0.5px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.card {
  background: var(--surface);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 38px 34px 34px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.card.creator { background: var(--gold); }
.card h3 {
  font-family: 'Gasoek One', sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.card ul { list-style: none; margin: 0 0 30px; flex-grow: 1; }
.card li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
}
.card li:last-child { border-bottom: none; }
.card.creator li { border-bottom-color: rgba(0,0,0,0.14); }
.card .btn { align-self: flex-start; }
.card.creator .btn { background: var(--black); color: var(--gold); }

/* ===== VIDEO ===== */
.section-video { padding: 20px 40px 110px; }
.video-slot {
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #101014;
  border: 2px solid var(--black);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-slot .stage-note {
  color: #55556A;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.9;
  padding: 0 30px;
}
.play-chip {
  width: 68px; height: 68px;
  background: var(--gold);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--black);
}
.video-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-mid);
}
/* the overlay proof, living inside the thumbnail */
.mini-overlay {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--gold);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.6);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.mini-overlay img { width: 20px; height: auto; }
.mini-overlay .s-name { font-size: 11.5px; font-weight: 800; letter-spacing: 0.02em; line-height: 1.2; }
.mini-overlay .s-line { font-size: 9px; font-weight: 600; color: #3A3000; line-height: 1.2; }
.video-live-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: #E91916;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 4px;
}

/* ===== FAQ ===== */
.section-faq { padding: 0 40px 110px; }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-heading {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(24px, 3.4vw, 40px);
  text-align: center;
  margin: 0 auto 46px;
  width: fit-content;
  letter-spacing: 0.5px;
}
details {
  background: var(--surface);
  border: 2px solid var(--black);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--black);
  margin-bottom: 14px;
  overflow: hidden;
}
summary {
  font-size: 15px;
  font-weight: 700;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: 'Gasoek One', sans-serif; font-size: 18px; }
details[open] summary::after { content: "\2013"; }
details p { padding: 0 22px 18px; font-size: 14.5px; line-height: 1.65; color: var(--text-mid); }

/* ===== TEAM ===== */
.section-team { padding: 0 40px 110px; text-align: center; }
.team-heading {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  margin: 0 auto 40px;
  width: fit-content;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.team-heading .sub {
  display: block;
  font-size: clamp(14px, 1.7vw, 19px);
  color: var(--text-mid);
  margin-top: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 840px;
  margin: 0 auto;
}
.rider {
  aspect-ratio: 1;
  border: 2px solid var(--black);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
}
.rider img { width: 100%; height: auto; opacity: 0.28; }
.rider.open { background: var(--gold); }
.rider.open img { opacity: 1; }

/* ===== WAITLIST ===== */
.section-waitlist {
  background: var(--gold);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 80px 40px;
  text-align: center;
}
.waitlist-heading {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(24px, 3.6vw, 40px);
  margin: 0 auto 12px;
  width: fit-content;
  letter-spacing: 0.5px;
}
.waitlist-sub { font-size: 14.5px; font-weight: 600; color: #3A3000; margin: 0 auto 32px; max-width: 470px; }
.waitlist-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.email-input {
  background: var(--surface);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  width: 300px;
  outline: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.email-input::placeholder { color: var(--text-dim); }
.email-input:focus { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--black); }
.waitlist-btn {
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--black);
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.35);
  transition: transform 0.15s;
}
.waitlist-btn:active { transform: translate(2px,2px); }

/* ===== SIGN IN ===== */
.section-signin { padding: 66px 40px; text-align: center; }
.section-signin h3 {
  font-family: 'Gasoek One', sans-serif;
  font-size: clamp(21px, 3vw, 30px);
  margin: 0 auto 12px;
  width: fit-content;
  letter-spacing: 0.5px;
}
.section-signin .signin-sub { font-size: 14.5px; color: var(--text-mid); margin: 0 auto 34px; width: fit-content; }
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.portal {
  border: 2px solid var(--black);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--black);
  padding: 20px 22px;
  text-decoration: none;
  color: var(--black);
  text-align: left;
  transition: transform 0.15s, box-shadow 0.15s;
}
.portal:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--black); }
.portal .p-label {
  display: block;
  font-family: 'Gasoek One', sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.portal .p-desc { display: block; font-size: 12.5px; font-weight: 500; color: var(--text-mid); line-height: 1.5; }
.portal.new { background: var(--gold); }
.portal.new .p-desc { color: #4A3D00; }

/* ===== FOOTER ===== */
footer {
  padding: 28px 44px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo img { width: 24px; height: auto; }
.footer-logo span { font-family: 'Gasoek One', sans-serif; font-size: 13px; color: var(--black); letter-spacing: 0.5px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--black); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-logo, .tagline-stack, .hero-ctas, .platform-row { animation: none; opacity: 1; transform: none; }
  .btn, .card, .door { transition: none; }
  .platform-badge .live-dot { animation: none; }
}

@media (max-width: 860px) {
  nav { padding: 16px 22px; }
  .nav-right { gap: 18px; }
  .nav-link { font-size: 13px; }
  .hero { padding: 40px 14px 56px; }
  .door { min-width: 0; width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .manifesto-b { width: 130px; margin: 0 auto; }
  .split-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .section-manifesto { padding: 70px 22px 80px; }
  .section-split, .section-video, .section-faq, .section-team { padding-left: 22px; padding-right: 22px; }
  .waitlist-form { flex-direction: column; align-items: center; }
  .email-input, .waitlist-btn { width: 100%; max-width: 340px; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .b-pattern-row { gap: 20px; }
}
