/* ══════════════════════════════════════════════════════════════════
   The Crossroads Passport — landing.
   One column. One direction. Each section is a full beat you scroll
   through; nothing competes with the next thing down.
   ══════════════════════════════════════════════════════════════════ */

.lp { background: var(--night); overflow-x: hidden; }

/* ---------- the beat: a full-height band ---------- */
.beat {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12vh 6vw;
  text-align: center;
  isolation: isolate;
}
.beat__bg { position: absolute; inset: 0; z-index: -2; display: block; }
.beat__bg img { width: 100%; height: 100%; object-fit: cover; }
.veil { position: absolute; inset: 0; z-index: -1; }
.veil--hero {
  background:
    linear-gradient(to bottom, rgba(14,26,32,.62) 0%, rgba(14,26,32,.28) 42%, rgba(14,26,32,.86) 100%);
}
.veil--deep {
  background:
    linear-gradient(to bottom, rgba(14,26,32,.88) 0%, rgba(14,26,32,.72) 45%, rgba(14,26,32,.92) 100%);
}

.in { width: 100%; max-width: 1080px; margin: 0 auto; }
.in--narrow { max-width: 760px; }

/* ---------- the type scale: statements dominate ---------- */
.st {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 .38em;
  text-wrap: balance;
}
.st--xl { font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 700; }
.st--lg { font-size: clamp(2.4rem, 6vw, 5rem);  font-weight: 700; }
.st--md { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.16; font-weight: 700; }

.under {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.45;
  color: rgba(250,246,238,.95);
  margin: 0 auto;
  max-width: 34ch;
  font-style: italic;
}
.under--wide  { max-width: 52ch; font-style: normal; }
.under--big   { max-width: 28ch; font-size: clamp(1.5rem, 3.2vw, 2.5rem); font-style: normal; }
.under--small { max-width: 60ch; font-size: 1.15rem; font-style: normal; margin-top: 2.6rem;
                color: rgba(244,239,230,.8); }

.prose {
  font-family: var(--body);
  font-size: clamp(1.14rem, 1.6vw, 1.42rem);
  line-height: 1.78;
  color: rgba(247,243,236,.9);
  max-width: 58ch;
  margin: 0 auto 1.5em;
}
.kick {
  font-family: var(--body);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: #8FBFC6;
  margin: 0 0 2rem;
}
.kick--gold { color: var(--gold); }

/* light beats */
.beat--type   { background: var(--night); }
.beat--paper  { background: #12212A; }
.beat--paper .prose { color: rgba(247,243,236,.9); }

/* ---------- the record ---------- */
.tally {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  max-width: 900px;
  margin: 0 auto 4.5rem;
}
.tally__n {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: .22em;
}
.tally__l {
  display: block;
  font-size: clamp(.92rem, 1.28vw, 1.12rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247,243,236,.88);
  line-height: 1.5;
}
.now {
  font-family: var(--display);
  font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  color: var(--gold);
  margin: .1em 0 0;
}

/* ---------- the passport ---------- */
.beat--passport { background: var(--brazos-dk); }

/* ---------- the eight routes ---------- */
.beat--routes {
  min-height: 0;
  padding: 14vh 0 0;
  background: var(--night);
}
.beat--routes .in { padding: 0 6vw; margin-bottom: 6vh; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 100%;
}
.rt {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0A1216;
}
.rt picture, .rt img { position: absolute; inset: 0; width: 100%; height: 100%; }
.rt img { object-fit: cover; opacity: .6; transition: opacity .5s ease, transform .8s ease; }
.rt:hover img { opacity: .68; transform: scale(1.04); }
.rt__in {
  position: relative; z-index: 1;
  padding: 3.4rem 3rem 3.2rem;
  width: 100%;
  text-align: left;
  background: linear-gradient(to top, rgba(10,18,22,.94) 8%, rgba(10,18,22,.55) 55%, rgba(10,18,22,0) 100%);
}
.rt__n {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: .2em;
  color: var(--gold); margin-bottom: .7rem;
}
.rt__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.12; color: #fff; margin: 0 0 .5rem;
  letter-spacing: -0.015em;
}
.rt__d {
  font-size: 1.1rem; line-height: 1.6;
  color: rgba(247,243,236,.88); max-width: 46ch; margin: 0;
}

/* ---------- enter ---------- */
.beat--enter { min-height: 100vh; }
.enter {
  display: inline-block;
  margin: 3.4rem 0 0;
  padding: 1.75rem 6rem;
  background: var(--gold);
  color: #0E1A20;
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 18px 60px rgba(200,145,47,.3);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.enter:hover {
  background: #E4A93C; color: #0E1A20;
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(200,145,47,.42);
}
.enter__n {
  margin: 2.2rem 0 0;
  font-size: 1rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247,243,236,.8);
}
.credit {
  position: absolute; bottom: 2.2rem; left: 0; right: 0;
  margin: 0; font-size: .92rem; letter-spacing: .1em;
}
.credit a { color: rgba(244,239,230,.6); text-decoration: none; }
.credit a:hover { color: var(--gold); }

/* ---------- scroll cue ---------- */
.cue {
  position: absolute; left: 50%; bottom: 3.2rem;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: rgba(244,239,230,.22);
  overflow: hidden;
}
.cue span {
  display: block; width: 100%; height: 22px; background: var(--gold);
  animation: cue 2.8s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-24px); }
  55%  { transform: translateY(64px); }
  100% { transform: translateY(64px); }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .beat { padding: 14vh 7vw; }
  .grid { grid-template-columns: 1fr; }
  .rt { min-height: 54vh; }
  .rt__in { padding: 2.6rem 2rem 2.4rem; }
  .tally { grid-template-columns: 1fr; gap: 2.6rem; margin-bottom: 3.4rem; }
  .ranks { grid-template-columns: 1fr; }
  .rank { border-right: 0; border-bottom: 1px solid rgba(244,239,230,.16); padding-bottom: 2.4rem; }
  .rank:last-child { border-bottom: 0; }
  .enter { padding: 1.4rem 3.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cue { display: none; }
  .rt img, .enter { transition: none; }
}


/* ---------- how it works ---------- */
.beat--how { background: #12212A; text-align: left; }
.beat--how .in { max-width: 940px; }
.beat--how .kick { text-align: center; }
.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: grid; grid-template-columns: 96px minmax(0,1fr); gap: 30px;
  padding: 3rem 0; border-top: 1px solid rgba(244,239,230,.14);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step__n {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3rem, 5.4vw, 4.6rem); line-height: .9;
  color: var(--gold);
}
.step__h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem); line-height: 1.14;
  color: #fff; margin: 0 0 .5em;
}
.step__p {
  font-size: clamp(1.14rem, 1.55vw, 1.38rem); line-height: 1.7;
  color: rgba(247,243,236,.88); margin: 0 0 1em; max-width: 56ch;
}
.step__p:last-child { margin-bottom: 0; }
.ranks {
  width: 100%; border-collapse: collapse; margin: 1.4rem 0 1.6rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  table-layout: fixed;          /* header and body must share one column grid */
}
.ranks col.c1 { width: 108px; }
.ranks col.c2 { width: 180px; }
.ranks th {
  text-align: left; padding: 0 16px 12px 0;
  font-family: var(--body); font-size: .82rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(244,239,230,.24);
}
.ranks td {
  padding: 18px 16px 18px 0; vertical-align: top;
  border-bottom: 1px solid rgba(244,239,230,.12);
  color: rgba(247,243,236,.88); line-height: 1.6;
}
.ranks__n { font-family: var(--display); font-weight: 700;
            font-size: 2rem; color: var(--gold); }
.ranks__r { font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
            color: #fff; font-size: .98rem; }
@media (max-width: 720px) {
  .step { grid-template-columns: 60px minmax(0,1fr); gap: 18px; }
  .ranks { font-size: .98rem; }
  .ranks col.c1 { width: 60px; }
  .ranks col.c2 { width: 106px; }
  .ranks__n { font-size: 1.5rem; }
  .ranks__r { font-size: .82rem; letter-spacing: .08em; }
  .ranks td, .ranks th { padding-right: 10px; }
}
