/* ==========================================================================
   THE FEATURE FUND — design tokens
   Concept: a press credential / corkboard of clippings. Duotone riso-print
   ink (navy canvas + marigold/red/teal accents) instead of a single neon
   accent on black, with paper-cutout cards instead of flat minimalism.
   ========================================================================== */

:root {
  --ink-navy: #14172B;
  --ink-navy-deep: #0D0F1C;
  --paper: #EFE9DC;
  --paper-light: #F7F3EA;
  --ink-text: #1C1B1E;
  --ink-text-muted: #6B655A;
  --cream-text: #EFE9DC;
  --cream-text-muted: #A6A3B8;

  --accent-orange: #E8A33D;
  --accent-red: #D6395A;
  --accent-teal: #2E8F84;

  --font-display: 'Anton', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Karla', sans-serif;

  --max-width: 1120px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink-navy);
  color: var(--cream-text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent-orange);
  margin: 0 0 16px;
}
.eyebrow--light { color: var(--accent-teal); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  margin: 0 0 40px;
  max-width: 720px;
}

.section--dark .display-lg,
.section--dark .display-xl { color: var(--cream-text); }
.section--paper .display-lg { color: var(--ink-text); }
.how .display-lg,
.faq .display-lg { color: var(--cream-text); }

.link-underline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent-orange);
}

.micro {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-text-muted);
  margin-top: 12px;
}
.micro--light { color: var(--cream-text-muted); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent-red);
  color: var(--paper-light);
}
.btn--primary:hover { background: #c22e4d; }
.btn--small { padding: 10px 18px; font-size: 0.75rem; }
.btn--large { padding: 18px 34px; font-size: 0.95rem; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 15, 28, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(239, 233, 220, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--cream-text);
  white-space: nowrap;
}
.wordmark--small { font-size: 0.95rem; }
.wordmark__accent { color: var(--accent-orange); }
.site-nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--cream-text-muted);
}
.site-nav a:hover { color: var(--cream-text); }
@media (max-width: 720px) { .site-nav { display: none; } }

/* ---------------- Hero ---------------- */
.hero { padding: 72px 0 96px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge-wrap { order: -1; display: flex; justify-content: center; margin-bottom: 12px; }
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream-text-muted);
  max-width: 520px;
  margin: 0 0 32px;
}

/* Press credential badge — signature element */
.credential {
  position: relative;
  width: 260px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink-text);
  border-radius: 10px;
  padding: 40px 24px 28px;
  transform: rotate(-3deg);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  border: 2px dashed rgba(28,27,30,0.25);
}
.credential__hole {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink-navy);
}
.credential__eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--accent-red);
  text-align: center;
  margin: 0 0 8px;
}
.credential__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.02;
  margin: 0 0 16px;
}
.credential__divider {
  border-top: 1px dashed rgba(28,27,30,0.3);
  margin: 16px 0;
}
.credential__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-text-muted);
  margin: 10px 0 2px;
}
.credential__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.credential__barcode {
  margin-top: 18px;
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--ink-text) 0 2px, transparent 2px 5px, var(--ink-text) 5px 6px, transparent 6px 10px);
  opacity: 0.85;
}
.credential__stamp {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2.5px solid var(--accent-teal);
  color: var(--accent-teal);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  transform: rotate(12deg);
  background: var(--paper);
}

/* ---------------- Sections ---------------- */
.section { padding: 88px 0; }
.section--dark { background: var(--ink-navy); }
.section--paper {
  background: var(--paper);
  color: var(--ink-text);
}
.section--paper .eyebrow { color: var(--accent-red); }

/* Problem */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
@media (max-width: 780px) { .problem__grid { grid-template-columns: 1fr; } }
.problem__item p:last-child {
  color: var(--cream-text-muted);
  line-height: 1.6;
  font-size: 1.02rem;
}
.problem__num {
  font-family: var(--font-mono);
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 10px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step-card {
  background: var(--paper);
  color: var(--ink-text);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(28,27,30,0.08);
}
.step-card__num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-red);
  margin: 0 0 12px;
}
.step-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 0 0 10px;
  font-weight: 400;
}
.step-card p { line-height: 1.55; color: var(--ink-text-muted); margin: 0; }

/* What you get */
.get-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 940px) { .get-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .get-grid { grid-template-columns: 1fr; } }
.get-card {
  background: var(--paper-light);
  border: 1px solid rgba(28,27,30,0.1);
  border-radius: 8px;
  padding: 22px 20px;
}
.get-card__tag {
  font-family: var(--font-mono);
  color: var(--accent-teal);
  font-weight: 700;
  margin: 0 0 10px;
}
.get-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.get-card p { color: var(--ink-text-muted); line-height: 1.5; margin: 0; font-size: 0.94rem; }

/* Prize */
.prize__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .prize__inner { grid-template-columns: 1fr; } }
.prize__copy { color: var(--cream-text-muted); line-height: 1.65; margin: 0 0 18px; }
.prize__card {
  background: var(--paper);
  color: var(--ink-text);
  border-radius: 8px;
  padding: 32px 28px;
  border-left: 6px solid var(--accent-orange);
}
.prize__card__label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-text-muted);
  margin: 0 0 6px;
}
.prize__card__value {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  margin: 0 0 6px;
  line-height: 1.08;
}
.prize__card__value--small { font-family: var(--font-body); font-size: 1rem; font-weight: 600; text-transform: none; }
.prize__card__arv { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-text-muted); margin: 0; }
.prize__card__divider { border-top: 1px dashed rgba(28,27,30,0.25); margin: 22px 0; }

/* Trust */
.trust__copy { max-width: 760px; line-height: 1.65; color: var(--ink-text-muted); margin-bottom: 36px; font-size: 1.02rem; }
.trust__copy a { color: var(--accent-red); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 780px) { .trust__grid { grid-template-columns: 1fr; } }
.trust__item {
  border-top: 3px solid var(--accent-teal);
  padding-top: 14px;
}
.trust__item__label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  margin: 0 0 8px;
}
.trust__item p:last-child { color: var(--ink-text-muted); line-height: 1.5; margin: 0; }

/* FAQ */
.faq-list { border-top: 1px solid rgba(239,233,220,0.15); }
.faq-item {
  border-bottom: 1px solid rgba(239,233,220,0.15);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '+ ';
  color: var(--accent-orange);
  font-family: var(--font-mono);
}
.faq-item[open] summary::before { content: '\2212 '; }
.faq-item p {
  color: var(--cream-text-muted);
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 640px;
}
.faq-item a { color: var(--accent-orange); }

/* Final CTA */
.final-cta { text-align: center; padding: 110px 0; }
.final-cta .btn { margin-top: 8px; }

/* Footer */
.site-footer { background: var(--ink-navy-deep); padding: 40px 0 28px; }
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
}
.site-footer__links { display: flex; gap: 22px; }
.site-footer__links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--cream-text-muted);
}
.fine-print {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.6;
  color: rgba(166,163,184,0.7);
  border-top: 1px solid rgba(239,233,220,0.1);
  padding-top: 20px;
}
.fine-print a { color: var(--accent-orange); }

/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,15,28,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.loading-overlay[hidden] {
  display: none !important;
}
.loading-overlay p {
  font-family: var(--font-mono);
  color: var(--cream-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* Countdown */
.countdown {
  margin-top: 28px;
  padding: 16px 20px;
  border: 1px solid rgba(239,233,220,0.15);
  border-radius: 6px;
  display: inline-block;
}
.countdown__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-text-muted);
  margin: 0 0 10px;
}
.countdown__digits {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
}
.countdown__unit b {
  font-size: 1.5rem;
  color: var(--accent-orange);
  line-height: 1;
}
.countdown__unit small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream-text-muted);
  margin-top: 4px;
}
.countdown__sep {
  color: rgba(239,233,220,0.25);
  font-size: 1.2rem;
  padding-bottom: 14px;
}

/* Entrants wall */
.entrants-wall { text-align: center; }
.entrants-wall__sub {
  color: var(--cream-text-muted);
  max-width: 42ch;
  margin: 0 auto 32px;
}
.entrants-wall__orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  min-height: 72px;
}
.entrant-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  animation: avatar-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes avatar-pop {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}
.entrants-wall__empty {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cream-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Entry wizard — full-screen, one field at a time, photo backgrounds */
.entry-wizard[hidden] { display: none !important; }
.entry-wizard {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.entry-wizard__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.entry-wizard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.85s ease;
  transform: scale(1.06);
  animation: wizard-bg-drift 22s ease-in-out infinite alternate;
}
.entry-wizard__bg.is-active { opacity: 1; }
@keyframes wizard-bg-drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}
.entry-wizard__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,15,28,0.35) 0%,
    rgba(13,15,28,0.2) 40%,
    rgba(13,15,28,0.55) 100%
  );
  cursor: pointer;
}
.entry-wizard__shell {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}
.entry-wizard__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.entry-wizard__close:hover { background: rgba(255,255,255,0.18); }
.entry-wizard__progress-wrap { margin-bottom: 20px; }
.entry-wizard__progress-track {
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.entry-wizard__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  border-radius: 99px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.entry-wizard__step-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin: 10px 0 0;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.entry-wizard__card {
  background: rgba(13, 15, 28, 0.42);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cream-text);
  border-radius: 16px;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: wizard-card-in 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
@keyframes wizard-card-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.entry-wizard__encourage {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin: 0 0 12px;
}
.entry-wizard__question {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.entry-wizard__hint {
  font-size: 0.92rem;
  color: rgba(239,233,220,0.82);
  margin: 0 0 24px;
  line-height: 1.5;
}
.entry-wizard__input-wrap--animate {
  animation: wizard-field-in 0.4s ease both;
}
@keyframes wizard-field-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}
.entry-wizard__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.entry-wizard__input::placeholder { color: rgba(255,255,255,0.4); }
.entry-wizard__input:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(232,163,61,0.2);
}
.wizard-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wizard-photo__ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px dashed rgba(232,163,61,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.wizard-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wizard-photo__placeholder {
  font-size: 2.5rem;
  color: var(--accent-orange);
  opacity: 0.8;
}
.wizard-photo__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(232,163,61,0.9);
  color: var(--ink-navy);
  padding: 10px 20px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-weight: 700;
}
.wizard-photo__label:hover {
  background: var(--accent-orange);
  transform: scale(1.03);
}
.entry-wizard__nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.entry-wizard__next { flex: 1; min-width: 140px; }
.entry-wizard__back { flex-shrink: 0; }
.entry-review {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 8px 0 8px;
  padding: 16px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.entry-review--wizard { margin-bottom: 0; }
.entry-review__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-orange);
  flex-shrink: 0;
}
.entry-review__list {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--cream-text);
}
.entry-review__list dt {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(239,233,220,0.55);
  margin-top: 8px;
}
.entry-review__list dt:first-child { margin-top: 0; }
.entry-review__list dd {
  margin: 2px 0 0;
  word-break: break-all;
  color: #fff;
}
.entry-wizard .btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.entry-wizard .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
}
.entry-wizard .btn--skip {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(239,233,220,0.75) !important;
}
