/* IndieVertical — direction tokens + shared styles
   Direction: Marquee — indie-native. Bricolage Grotesque titles + Public Sans. */

.pp {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.pp *, .pp *::before, .pp *::after { box-sizing: border-box; }
.pp p { margin: 0; }

/* ---------- Direction: Marquee ---------- */
.dir-marquee {
  --font-ui: "Public Sans", sans-serif;
  --font-title: "Bricolage Grotesque", sans-serif;
  --title-weight: 800;
  --title-spacing: -0.02em;
  --bg: #fffcf4;
  --surface: #ffffff;
  --ink: #15110c;
  --muted: #5f584c;
  --line: #15110c;
  --cool: #4f33e0;
  --cool-bg: #ece8fd;
  --warm: #c14a09;
  --warm-bg: #fdeee2;
  --radius: 8px;
  --radius-lg: 10px;
  --card-shadow: 4px 4px 0 var(--ink);
  --card-border: 2px solid var(--ink);
}

/* ===================== Header ===================== */
.pp-header {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 2px solid var(--line);
  background: var(--bg);
}
.pp-logo {
  white-space: nowrap;
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  font-size: 19px;
  letter-spacing: var(--title-spacing);
  display: flex;
  align-items: center;
  gap: 9px;
}
.pp-logo-mark {
  height: 24px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.pp-nav {
  display: flex;
  white-space: nowrap;
  gap: 22px;
  margin-left: auto;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  align-items: center;
}
.pp-nav .nav-auth { display: flex; gap: 10px; align-items: center; margin-left: 10px; }
.nav-login { color: var(--ink); font-weight: 600; }
.nav-signup {
  background: var(--ink);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 2px 2px 0 rgba(21,17,12,.25);
}

/* ===================== Key art banner ===================== */
.pp-banner {
  height: 340px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.pp-banner .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,8,0) 30%, rgba(8,10,8,.78) 100%);
}
.pp-banner-inner {
  position: relative;
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
  padding: 0 32px 28px;
  color: #fff;
}
.pp-banner h1 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 56px;
  line-height: 1.02;
  margin: 0 0 8px;
}
.pp-banner .hook {
  font-size: 19px;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  text-wrap: pretty;
}

/* Fictional key-art placeholder gradients */
.art-hollowroot { background:
  radial-gradient(120% 90% at 18% 8%, #3d5c3a 0%, rgba(61,92,58,0) 55%),
  radial-gradient(80% 70% at 85% 20%, #1f3a33 0%, rgba(31,58,51,0) 60%),
  linear-gradient(165deg, #20301f 0%, #101c14 45%, #0a120c 100%); }
.art-saltwhistle { background:
  radial-gradient(100% 80% at 80% 12%, #f2b65c 0%, rgba(242,182,92,0) 55%),
  linear-gradient(170deg, #2e7f8a 0%, #1c5662 55%, #143c46 100%); }
.art-patchwork { background:
  radial-gradient(90% 80% at 20% 15%, #c9a14b 0%, rgba(201,161,75,0) 50%),
  linear-gradient(160deg, #5b3157 0%, #3a1f3e 55%, #271330 100%); }
.art-loopcourier { background:
  radial-gradient(90% 90% at 78% 18%, #4fd0d9 0%, rgba(79,208,217,0) 52%),
  linear-gradient(165deg, #233a63 0%, #15233f 55%, #0d1628 100%); }

/* ===================== Above-the-fold grid ===================== */
.pp-fold {
  max-width: 1376px;
  margin: 0 auto;
  padding: 28px 32px 36px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.trailer {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 100% at 50% 0%, #2b3338 0%, #181d20 70%);
  border: var(--card-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.trailer .play {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center;
}
.trailer .play::after {
  content: "";
  border-left: 26px solid #15110c;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 7px;
}
.trailer .trailer-label {
  position: absolute;
  left: 18px; bottom: 14px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing: .02em;
}

/* ---- Right rail ---- */
.rail { display: flex; flex-direction: column; gap: 18px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 99px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: var(--surface);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 700;
}
.badge.demo { background: #e3f4e6; border-color: #1c6b2e; color: #1c6b2e; }
.badge.open { background: var(--cool-bg); border-color: var(--cool); color: var(--cool); }

.rail-card {
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 18px 20px;
}
.rail-card h4 {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  font-weight: 700;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.stat .v { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.stat .l { font-size: 12px; color: var(--muted); }
.team-rows { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; }
.team-rows .row { display: flex; justify-content: space-between; gap: 12px; }
.team-rows .k { color: var(--muted); }
.team-rows .val { font-weight: 600; text-align: right; }
.meta-line { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

.rail-actions { display: flex; flex-direction: column; gap: 10px; }
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--font-ui);
  border: 2px solid var(--ink);
  cursor: default;
}
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 3px 3px 0 rgba(21,17,12,.3); }
.btn-secondary { background: var(--surface); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.login-note { font-size: 12.5px; color: var(--muted); text-wrap: pretty; }
.login-note a { color: var(--ink); font-weight: 600; text-decoration: underline; }
.more-link { font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ===================== Below the fold ===================== */
.pp-body {
  max-width: 1376px;
  margin: 0 auto;
  padding: 8px 32px 48px;
  display: grid;
  grid-template-columns: 900px;
}
.pp-section { padding: 26px 0; border-top: 2px solid var(--line); }
.pp-section h2 {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 26px;
  margin: 0 0 14px;
}
.pp-section p.body { color: var(--ink); max-width: 760px; text-wrap: pretty; }
.pp-section p.body + p.body { margin-top: 10px; }

.shots { display: flex; gap: 14px; }
.shot {
  width: 208px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
}
.shot span {
  position: absolute; left: 10px; bottom: 8px;
  font-size: 10.5px; color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}
.shot-1 { background: linear-gradient(150deg, #2c4a2e, #15241a); }
.shot-2 { background: linear-gradient(150deg, #41372a, #1d1812); }
.shot-3 { background: linear-gradient(150deg, #233c40, #101e22); }
.shot-4 { background: linear-gradient(150deg, #3a2e3e, #181220); }

.comp-row { display: flex; gap: 12px; flex-wrap: wrap; }
.comp {
  border: var(--card-border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--card-shadow);
}
.comp .c-t { font-weight: 700; font-size: 14px; }
.comp .c-d { font-size: 12.5px; color: var(--muted); }

.past-rows { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.past-row {
  display: grid;
  grid-template-columns: 1fr 130px 70px 70px;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  align-items: baseline;
}
.past-row .t { font-weight: 700; }
.past-row .m { color: var(--muted); font-size: 13px; }
.past-row .lnk { color: var(--ink); font-weight: 600; text-decoration: underline; font-size: 13px; }

/* About the Team */
.member-row { display: flex; gap: 32px; margin-top: 18px; flex-wrap: wrap; }
.member { display: flex; align-items: center; gap: 12px; }
.member .m-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.member .m-n { display: block; font-weight: 700; font-size: 14.5px; }
.member .m-r { display: block; font-size: 12.5px; color: var(--muted); }

.deal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; }
.deal-item .k { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.deal-item .v { font-weight: 600; font-size: 15px; }
.want-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.want-chips .chip {
  font-size: 12.5px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--surface);
  border: 1.5px solid var(--ink);
}

/* Gated field */
.gate {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 2px dashed var(--ink);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  max-width: 560px;
}
.gate .lock {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.gate .g-t { font-weight: 700; font-size: 13.5px; margin-bottom: 2px; }
.gate .g-d { font-size: 13px; color: var(--muted); text-wrap: pretty; }
.gate .g-d a { color: var(--ink); font-weight: 600; text-decoration: underline; }

.links-row { display: flex; gap: 20px; font-size: 14px; font-weight: 600; flex-wrap: wrap; }
.links-row a, .links-row span { text-decoration: underline; text-underline-offset: 3px; }
.updated-line { font-size: 13px; color: var(--muted); padding-top: 22px; border-top: 2px solid var(--line); }

/* ===================== Card / shelf ===================== */
.shelf-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.shelf-title {
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-spacing);
  font-size: 22px;
}
.shelf-flag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 99px;
}
.shelf-flag.cool { background: var(--cool-bg); color: var(--cool); border: 1.5px solid var(--cool); }
.shelf-flag.warm { background: var(--warm-bg); color: var(--warm); border: 1.5px solid var(--warm); }
.shelf-sub { font-size: 12.5px; color: var(--muted); margin-top: -8px; text-wrap: pretty; }

.gcard {
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.gcard.is-pick { border: 2px solid var(--cool); box-shadow: 4px 4px 0 var(--cool); }
.gcard.is-promo { border: 2px solid var(--warm); box-shadow: 4px 4px 0 var(--warm); }

.gcard .gc-art { aspect-ratio: 16/9; position: relative; }
.gcard .gc-art .gc-name {
  position: absolute; left: 12px; bottom: 9px;
  color: #fff;
  font-family: var(--font-title);
  font-weight: var(--title-weight);
  font-size: 19px;
  letter-spacing: var(--title-spacing);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.gcard .gc-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 9px; }
.gcard .gc-hook { font-size: 13.5px; color: var(--ink); line-height: 1.4; text-wrap: pretty; }
.gcard .gc-tags { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.gcard .badge-row .badge { font-size: 10.5px; padding: 3px 9px; }
