/* app/ui/exclusive-home.module.css */
.exclusive_home_home {
  --club-red: #e60012;
  --club-deep: #9d0012;
  --club-ink: #1b1820;
  --club-cream: #fff8ec;
  --club-paper: #fffdf7;
  --club-gold: #ffd84b;
  --club-line: #cbbeb3;
  overflow: hidden;
  background: var(--club-cream);
  color: var(--club-ink);
}
.exclusive_home_home h1,
.exclusive_home_home h2,
.exclusive_home_home h3 {
  color: inherit;
}
.exclusive_home_hero {
  position: relative;
  padding: 32px max(24px, calc((100vw - 1380px) / 2)) 54px;
}
.exclusive_home_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#9d001211 1px, transparent 1px),
    linear-gradient(
      90deg,
      #9d001211 1px,
      transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.exclusive_home_heroGrid {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(46px, 6vw, 82px);
  border: 3px solid var(--club-ink);
  border-radius: 14px;
  background:
    linear-gradient(
      138deg,
      #f1162d 0%,
      var(--club-red) 54%,
      #b90019 100%);
  box-shadow: 10px 10px 0 var(--club-ink);
  color: white;
  overflow: hidden;
}
.exclusive_home_heroGrid::before,
.exclusive_home_heroGrid::after {
  content: "";
  position: absolute;
  border: 2px solid #ffffff2e;
  border-radius: 50%;
  pointer-events: none;
}
.exclusive_home_heroGrid::before {
  width: 420px;
  height: 420px;
  right: -180px;
  top: -220px;
}
.exclusive_home_heroGrid::after {
  width: 230px;
  height: 230px;
  left: 37%;
  bottom: -180px;
}
.exclusive_home_heroCopy {
  position: relative;
  z-index: 2;
}
.exclusive_home_heroBadges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
}
.exclusive_home_inviteBadge,
.exclusive_home_trustBadge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 2px solid var(--club-ink);
  font: 900 .64rem/1.2 "Courier New", monospace;
  letter-spacing: .1em;
}
.exclusive_home_inviteBadge {
  gap: 8px;
  background: var(--club-gold);
  color: var(--club-ink);
  box-shadow: 3px 3px 0 var(--club-ink);
}
.exclusive_home_inviteBadge .pixel-glyph {
  width: 13px;
  height: 13px;
  color: var(--club-red);
}
.exclusive_home_trustBadge {
  background: #fff8ec;
  color: var(--club-deep);
}
.exclusive_home_kicker,
.exclusive_home_eyebrow {
  display: inline-block;
  margin: 0;
  font: 900 .69rem/1.4 "Courier New", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.exclusive_home_kicker {
  color: #ffecc8;
}
.exclusive_home_eyebrow {
  color: var(--club-deep);
}
.exclusive_home_hero h1 {
  max-width: 670px;
  margin: 17px 0 22px;
  font:
    800 clamp(4rem, 6.3vw, 6.7rem)/.91 "Space Grotesk",
    "DM Sans",
    sans-serif;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.exclusive_home_hero h1 em {
  color: var(--club-gold);
  font-style: normal;
}
.exclusive_home_heroLead {
  max-width: 590px;
  margin: 0 0 29px;
  color: #fff1e9;
  font-size: 1.06rem;
  line-height: 1.74;
}
.exclusive_home_heroActions,
.exclusive_home_finalActions,
.exclusive_home_inviteActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.exclusive_home_primaryAction,
.exclusive_home_secondaryAction,
.exclusive_home_goldAction,
.exclusive_home_lightAction {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 2px solid var(--club-ink);
  border-radius: 7px;
  font-size: .83rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--club-ink);
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background-color .16s ease;
}
.exclusive_home_primaryAction,
.exclusive_home_goldAction {
  background: var(--club-gold);
  color: var(--club-ink);
}
.exclusive_home_secondaryAction {
  background: var(--club-paper);
  color: var(--club-ink);
}
.exclusive_home_lightAction {
  border-color: white;
  background: white;
  color: var(--club-ink);
  box-shadow: 4px 4px 0 #850012;
}
.exclusive_home_primaryAction:hover,
.exclusive_home_secondaryAction:hover,
.exclusive_home_goldAction:hover,
.exclusive_home_lightAction:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--club-ink);
}
.exclusive_home_memberSignIn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
  color: white;
  font-size: .8rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: #ffffff88;
  text-underline-offset: 4px;
}
.exclusive_home_memberSignIn:hover {
  text-decoration-color: white;
}
.exclusive_home_admissionNote {
  max-width: 500px;
  margin: 18px 0 0;
  color: #ffdacf;
  font-size: .72rem;
  line-height: 1.55;
}
.exclusive_home_heroVisual {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 18px 12px 35px 0;
}
.exclusive_home_partyFrame {
  transform: rotate(1.6deg);
}
.exclusive_home_partyFrame .pixel-party {
  max-width: 525px;
}
.exclusive_home_memberPass {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 0;
  width: min(310px, 62%);
  padding: 13px;
  border: 3px solid var(--club-ink);
  background: var(--club-cream);
  color: var(--club-ink);
  box-shadow: 7px 7px 0 var(--club-gold);
  transform: rotate(-4deg);
}
.exclusive_home_passTop,
.exclusive_home_passMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: 900 .54rem/1.3 "Courier New", monospace;
  letter-spacing: .09em;
}
.exclusive_home_passTop {
  padding-bottom: 9px;
  border-bottom: 2px solid var(--club-ink);
}
.exclusive_home_passTop span:first-child {
  color: var(--club-red);
  font-size: .95rem;
}
.exclusive_home_passBody {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 2px;
}
.exclusive_home_passBody .piko-mark {
  transform: rotate(-6deg);
}
.exclusive_home_passBody div {
  display: flex;
  flex-direction: column;
}
.exclusive_home_passBody small {
  font: 900 .5rem/1.3 "Courier New", monospace;
  letter-spacing: .14em;
  color: #7b6b65;
}
.exclusive_home_passBody strong {
  font: 900 1.15rem/1.05 "Space Grotesk", sans-serif;
  color: var(--club-deep);
}
.exclusive_home_passMeta {
  padding-top: 8px;
  border-top: 1px dashed #8f7f76;
  color: #695b57;
}
.exclusive_home_heroSticker {
  position: absolute;
  z-index: 4;
  left: -16px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 2px solid var(--club-ink);
  background: var(--club-gold);
  color: var(--club-ink);
  box-shadow: 4px 4px 0 var(--club-ink);
  font: 900 .56rem/1.2 "Courier New", monospace;
  letter-spacing: .06em;
  transform: rotate(3deg);
}
.exclusive_home_heroSticker .pixel-glyph {
  width: 13px;
  height: 13px;
  color: var(--club-red);
}
.exclusive_home_trustRibbon {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 38px);
  padding: 20px 24px;
  border-block: 3px solid var(--club-ink);
  background: var(--club-ink);
  color: #f2dcd4;
  font: 900 .63rem/1.4 "Courier New", monospace;
  letter-spacing: .11em;
}
.exclusive_home_trustRibbon strong {
  color: white;
  font: 800 clamp(.88rem, 1.4vw, 1.08rem)/1.3 "Space Grotesk", sans-serif;
  letter-spacing: -.01em;
}
.exclusive_home_trustRibbon .pixel-glyph {
  width: 15px;
  height: 15px;
  color: var(--club-gold);
}
.exclusive_home_prioritySection,
.exclusive_home_toolsSection,
.exclusive_home_storiesSection,
.exclusive_home_roadmapSection,
.exclusive_home_inviteSection,
.exclusive_home_faqSection {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 34px;
}
.exclusive_home_sectionIntro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.exclusive_home_sectionIntro .exclusive_home_eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}
.exclusive_home_sectionIntro h2,
.exclusive_home_toolsHeading h2,
.exclusive_home_storyHeading h2,
.exclusive_home_roadmapIntro h2,
.exclusive_home_inviteHeading h2,
.exclusive_home_faqSection > div:first-child h2 {
  margin: 0;
  font: 800 clamp(2.8rem, 5vw, 5rem)/.98 "Space Grotesk", sans-serif;
  letter-spacing: -.065em;
}
.exclusive_home_sectionIntro > p {
  max-width: 480px;
  margin: 0 0 4px;
  line-height: 1.72;
}
.exclusive_home_priorityGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.exclusive_home_priorityCard {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 3px solid var(--club-ink);
  border-radius: 10px;
  box-shadow: 6px 6px 0 var(--club-ink);
}
.exclusive_home_priorityRed {
  background: var(--club-red);
  color: white;
}
.exclusive_home_priorityGold {
  background: var(--club-gold);
  color: var(--club-ink);
}
.exclusive_home_priorityCream {
  background: var(--club-paper);
  color: var(--club-ink);
}
.exclusive_home_cardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 57px;
  font: 900 .77rem/1 "Courier New", monospace;
}
.exclusive_home_cardHead .pixel-glyph {
  width: 30px;
  height: 30px;
  filter: drop-shadow(3px 3px 0 #1b1820);
}
.exclusive_home_priorityRed .exclusive_home_cardHead .pixel-glyph {
  color: var(--club-gold);
}
.exclusive_home_priorityGold .exclusive_home_cardHead .pixel-glyph {
  color: var(--club-red);
}
.exclusive_home_priorityCream .exclusive_home_cardHead .pixel-glyph {
  color: var(--club-red);
}
.exclusive_home_cardLabel {
  margin: 0 0 10px;
  color: inherit;
  opacity: .78;
  font: 900 .61rem/1.4 "Courier New", monospace;
  letter-spacing: .11em;
}
.exclusive_home_priorityCard h3 {
  margin: 0 0 15px;
  font-size: 2rem;
  line-height: 1.04;
}
.exclusive_home_priorityCard > p:not(.exclusive_home_cardLabel) {
  color: inherit;
  opacity: .84;
  font-size: .91rem;
  line-height: 1.72;
}
.exclusive_home_priorityCard a,
.exclusive_home_priorityCard small {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: .76rem;
  font-weight: 850;
}
.exclusive_home_priorityCard a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.exclusive_home_priorityCard a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.exclusive_home_commerceNote {
  max-width: 960px;
  margin: 30px auto 0;
  padding: 16px 20px;
  border-left: 4px solid var(--club-red);
  background: #f7eadc;
  color: #60524e;
  font-size: .82rem;
  line-height: 1.65;
}
.exclusive_home_commerceNote strong {
  color: var(--club-ink);
}
.exclusive_home_toolsSection {
  max-width: none;
  padding-inline: max(34px, calc((100vw - 1280px) / 2));
  background: var(--club-ink);
  color: white;
}
.exclusive_home_toolsHeading {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 50px;
  align-items: end;
  margin-bottom: 45px;
}
.exclusive_home_toolsHeading .exclusive_home_eyebrow,
.exclusive_home_pikoStrip .exclusive_home_eyebrow {
  color: var(--club-gold);
}
.exclusive_home_toolsHeading h2 {
  max-width: 740px;
  margin-top: 12px;
}
.exclusive_home_toolsHeading > p {
  color: #cdbdc0;
  line-height: 1.72;
  margin: 0;
}
.exclusive_home_toolsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid #f6e9df42;
}
.exclusive_home_toolCard {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid #f6e9df42;
  border-bottom: 1px solid #f6e9df42;
  background: #251f26;
}
.exclusive_home_toolCard:nth-child(3n) {
  border-right: 0;
}
.exclusive_home_toolCard:nth-last-child(-n+3) {
  border-bottom: 0;
}
.exclusive_home_toolCard:hover {
  background: #30272f;
}
.exclusive_home_toolNumber {
  color: #a89092;
  font: 900 .6rem/1 "Courier New", monospace;
}
.exclusive_home_toolGlyph {
  position: absolute;
  top: 27px;
  right: 26px;
}
.exclusive_home_toolGlyph .pixel-glyph {
  width: 23px;
  height: 23px;
  color: var(--club-gold);
}
.exclusive_home_toolCard h3 {
  max-width: 250px;
  margin: 52px 0 12px;
  font-size: 1.36rem;
}
.exclusive_home_toolCard p {
  max-width: 330px;
  color: #cfc0c1;
  font-size: .85rem;
  line-height: 1.68;
}
.exclusive_home_memberOnly {
  position: absolute;
  bottom: 24px;
  color: #8c787c;
  font: 900 .53rem/1 "Courier New", monospace;
  letter-spacing: .11em;
}
.exclusive_home_pikoStrip {
  display: grid;
  grid-template-columns: 90px minmax(220px, .75fr) minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 30px;
  border: 2px solid var(--club-gold);
  background: var(--club-red);
  box-shadow: 7px 7px 0 var(--club-gold);
}
.exclusive_home_pikoMark {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 2px solid var(--club-ink);
  background: var(--club-gold);
}
.exclusive_home_pikoMark .piko-mark {
  transform: rotate(-6deg) scale(1.3);
}
.exclusive_home_pikoStrip h3 {
  margin: 7px 0 0;
  font-size: 1.55rem;
}
.exclusive_home_pikoStrip p {
  margin: 0;
  color: #ffe9e2;
  font-size: .85rem;
  line-height: 1.65;
}
.exclusive_home_pikoStrip a {
  color: white;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}
.exclusive_home_pikoStrip a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.exclusive_home_storiesSection {
  display: grid;
  grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr);
  gap: 65px;
  align-items: center;
}
.exclusive_home_storyHeading h2 {
  margin: 13px 0 18px;
}
.exclusive_home_storyHeading p {
  max-width: 390px;
  line-height: 1.7;
}
.exclusive_home_storyGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.exclusive_home_storyCard {
  margin: 0;
  padding: 28px;
  border: 2px solid var(--club-ink);
  background: white;
  box-shadow: 5px 5px 0 var(--club-red);
}
.exclusive_home_storyCard blockquote {
  margin: 0 0 28px;
  font: 750 1.18rem/1.55 "Space Grotesk", sans-serif;
}
.exclusive_home_storyCard figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .78rem;
}
.exclusive_home_storyCard figcaption span {
  color: #6f6260;
}
.exclusive_home_storyEmpty {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 2px dashed #9f8d81;
  background: #f7e9dc;
}
.exclusive_home_emptyIcon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 2px solid var(--club-ink);
  background: var(--club-gold);
  box-shadow: 4px 4px 0 var(--club-ink);
}
.exclusive_home_emptyIcon .pixel-glyph {
  width: 27px;
  height: 27px;
  color: var(--club-red);
}
.exclusive_home_storyEmpty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.exclusive_home_storyEmpty p {
  max-width: 520px;
  margin: 0;
  font-size: .84rem;
  line-height: 1.62;
}
.exclusive_home_storyLink,
.exclusive_home_storyNote {
  font-size: .77rem;
  font-weight: 900;
}
.exclusive_home_storyLink {
  color: var(--club-deep);
  white-space: nowrap;
}
.exclusive_home_storyNote {
  max-width: 190px;
  color: #655957;
  line-height: 1.5;
}
.exclusive_home_storyLink:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.exclusive_home_roadmapSection {
  max-width: none;
  padding-inline: max(34px, calc((100vw - 1280px) / 2));
  background: #f1dfcf;
  border-block: 3px solid var(--club-ink);
}
.exclusive_home_roadmapIntro {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}
.exclusive_home_roadmapIntro .exclusive_home_eyebrow {
  grid-column: 1 / -1;
}
.exclusive_home_roadmapIntro h2 {
  margin-top: 11px;
}
.exclusive_home_roadmapIntro p {
  margin: 0;
  line-height: 1.72;
}
.exclusive_home_roadmapGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.exclusive_home_roadmapCard {
  grid-column: span 4;
  min-height: 255px;
  padding: 24px;
  border: 2px solid var(--club-ink);
  background: var(--club-paper);
  box-shadow: 4px 4px 0 #907b6b;
}
.exclusive_home_roadmapCard:nth-child(4),
.exclusive_home_roadmapCard:nth-child(5) {
  grid-column: span 6;
}
.exclusive_home_roadmapCard > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.exclusive_home_planned {
  display: inline-flex;
  padding: 5px 7px;
  background: #e8ded4;
  color: #695b57;
  font: 900 .5rem/1.3 "Courier New", monospace;
  letter-spacing: .07em;
}
.exclusive_home_roadmapNumber {
  color: var(--club-red);
  font: 900 .68rem/1 "Courier New", monospace;
}
.exclusive_home_roadmapCard h3 {
  margin: 56px 0 11px;
  font-size: 1.35rem;
}
.exclusive_home_roadmapCard p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.65;
}
.exclusive_home_inviteSection {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 70px;
}
.exclusive_home_inviteHeading h2 {
  margin: 13px 0 20px;
}
.exclusive_home_inviteHeading p {
  max-width: 430px;
  line-height: 1.72;
}
.exclusive_home_inviteSteps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  border-top: 3px solid var(--club-ink);
}
.exclusive_home_inviteSteps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 25px 4px;
  border-bottom: 2px solid var(--club-line);
}
.exclusive_home_inviteSteps li > span {
  color: var(--club-red);
  font: 900 1.25rem/1 "Space Grotesk", sans-serif;
}
.exclusive_home_inviteSteps h3 {
  margin: -3px 0 7px;
  font-size: 1.25rem;
}
.exclusive_home_inviteSteps p {
  max-width: 650px;
  margin: 0;
  font-size: .88rem;
  line-height: 1.68;
}
.exclusive_home_inviteActions {
  grid-column: 2;
}
.exclusive_home_inviteActions .exclusive_home_primaryAction {
  background: var(--club-red);
  color: white;
}
.exclusive_home_inviteFinePrint {
  grid-column: 2;
  margin: 1px 0 0;
  color: #776a66;
  font-size: .73rem;
}
.exclusive_home_faqSection {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: 80px;
  padding-top: 70px;
}
.exclusive_home_faqSection > div:first-child h2 {
  margin: 13px 0 16px;
}
.exclusive_home_faqSection > div:first-child p {
  line-height: 1.7;
}
.exclusive_home_faqList {
  border-top: 3px solid var(--club-ink);
}
.exclusive_home_faqList details {
  border-bottom: 2px solid var(--club-line);
}
.exclusive_home_faqList summary {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 26px;
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 850;
}
.exclusive_home_faqList summary::-webkit-details-marker {
  display: none;
}
.exclusive_home_faqList summary span {
  color: var(--club-red);
  font: 900 .67rem/1 "Courier New", monospace;
}
.exclusive_home_faqList summary i {
  color: var(--club-red);
  font: normal 800 1.45rem/1 "Space Grotesk", sans-serif;
  transition: transform .18s ease;
}
.exclusive_home_faqList details[open] summary i {
  transform: rotate(45deg);
}
.exclusive_home_faqList details p {
  margin: -7px 42px 25px 68px;
  max-width: 660px;
  color: #655957;
  font-size: .88rem;
  line-height: 1.72;
}
.exclusive_home_finalCta {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 28px;
  border-top: 4px solid var(--club-ink);
  background:
    linear-gradient(
      140deg,
      #ee142b,
      #bf0019);
  color: white;
  text-align: center;
  overflow: hidden;
}
.exclusive_home_finalCta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(
      90deg,
      #fff 1px,
      transparent 1px);
  background-size: 24px 24px;
}
.exclusive_home_finalBadge,
.exclusive_home_finalCta h2,
.exclusive_home_finalCta > p,
.exclusive_home_finalActions {
  position: relative;
  z-index: 2;
}
.exclusive_home_finalBadge {
  display: inline-flex;
  padding: 7px 10px;
  border: 2px solid var(--club-ink);
  background: var(--club-gold);
  color: var(--club-ink);
  box-shadow: 3px 3px 0 var(--club-ink);
  font: 900 .6rem/1.3 "Courier New", monospace;
  letter-spacing: .1em;
}
.exclusive_home_finalCta h2 {
  margin: 24px 0 17px;
  font: 800 clamp(3.5rem, 6.5vw, 6rem)/.92 "Space Grotesk", sans-serif;
  letter-spacing: -.07em;
}
.exclusive_home_finalCta h2 em {
  color: var(--club-gold);
  font-style: normal;
}
.exclusive_home_finalCta > p {
  max-width: 590px;
  margin: 0 0 27px;
  color: #ffe7df;
  line-height: 1.7;
}
.exclusive_home_finalArt {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.exclusive_home_finalArt .pixel-glyph {
  position: absolute;
  color: var(--club-gold);
  filter: drop-shadow(5px 5px 0 #8d0012);
}
.exclusive_home_finalArt .pixel-glyph:nth-child(1) {
  width: 58px;
  height: 58px;
  left: 9%;
  top: 22%;
  transform: rotate(12deg);
}
.exclusive_home_finalArt .pixel-glyph:nth-child(2) {
  width: 42px;
  height: 42px;
  right: 12%;
  top: 26%;
  transform: rotate(-8deg);
}
.exclusive_home_finalArt .pixel-glyph:nth-child(3) {
  width: 35px;
  height: 35px;
  right: 22%;
  bottom: 16%;
  transform: rotate(9deg);
}
@media (max-width: 1100px) {
  .exclusive_home_heroGrid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    padding: 55px 42px;
  }
  .exclusive_home_hero h1 {
    font-size: clamp(3.8rem, 6vw, 5.2rem);
  }
  .exclusive_home_priorityCard {
    padding: 24px;
  }
  .exclusive_home_priorityCard h3 {
    font-size: 1.65rem;
  }
  .exclusive_home_pikoStrip {
    grid-template-columns: 80px 1fr 1.25fr;
  }
  .exclusive_home_pikoStrip a {
    grid-column: 2;
  }
  .exclusive_home_storiesSection {
    gap: 40px;
  }
  .exclusive_home_storyEmpty {
    grid-template-columns: 68px 1fr;
  }
  .exclusive_home_storyLink,
  .exclusive_home_storyNote {
    grid-column: 2;
  }
}
@media (max-width: 850px) {
  .exclusive_home_hero {
    padding-inline: 22px;
  }
  .exclusive_home_heroGrid {
    grid-template-columns: 1fr;
    padding: 58px 40px 68px;
  }
  .exclusive_home_heroCopy {
    text-align: center;
  }
  .exclusive_home_heroBadges,
  .exclusive_home_heroActions {
    justify-content: center;
  }
  .exclusive_home_heroLead,
  .exclusive_home_admissionNote {
    margin-inline: auto;
  }
  .exclusive_home_heroVisual {
    width: min(100%, 570px);
    margin: 0 auto;
  }
  .exclusive_home_sectionIntro,
  .exclusive_home_toolsHeading,
  .exclusive_home_roadmapIntro,
  .exclusive_home_inviteSection,
  .exclusive_home_faqSection {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .exclusive_home_sectionIntro > p {
    margin-top: 8px;
  }
  .exclusive_home_priorityGrid {
    grid-template-columns: 1fr;
  }
  .exclusive_home_priorityCard {
    min-height: 360px;
  }
  .exclusive_home_cardHead {
    margin-bottom: 38px;
  }
  .exclusive_home_toolsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exclusive_home_toolCard:nth-child(3n) {
    border-right: 1px solid #f6e9df42;
  }
  .exclusive_home_toolCard:nth-child(2n) {
    border-right: 0;
  }
  .exclusive_home_toolCard:nth-last-child(-n+3) {
    border-bottom: 1px solid #f6e9df42;
  }
  .exclusive_home_toolCard:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
  .exclusive_home_pikoStrip {
    grid-template-columns: 74px 1fr;
  }
  .exclusive_home_pikoStrip p,
  .exclusive_home_pikoStrip a {
    grid-column: 2;
  }
  .exclusive_home_storiesSection {
    grid-template-columns: 1fr;
  }
  .exclusive_home_roadmapIntro .exclusive_home_eyebrow {
    grid-column: auto;
  }
  .exclusive_home_roadmapCard {
    grid-column: span 6;
  }
  .exclusive_home_roadmapCard:last-child {
    grid-column: 4 / span 6;
  }
  .exclusive_home_inviteActions,
  .exclusive_home_inviteFinePrint {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .exclusive_home_hero {
    padding: 20px 12px 40px;
  }
  .exclusive_home_heroGrid {
    min-height: auto;
    padding: 43px 21px 55px;
    box-shadow: 6px 6px 0 var(--club-ink);
  }
  .exclusive_home_hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }
  .exclusive_home_heroLead {
    font-size: .93rem;
  }
  .exclusive_home_heroActions,
  .exclusive_home_inviteActions,
  .exclusive_home_finalActions {
    align-items: stretch;
    flex-direction: column;
  }
  .exclusive_home_primaryAction,
  .exclusive_home_secondaryAction,
  .exclusive_home_goldAction,
  .exclusive_home_lightAction {
    width: 100%;
  }
  .exclusive_home_heroVisual {
    padding: 8px 3px 64px 0;
  }
  .exclusive_home_memberPass {
    right: -5px;
    width: 72%;
  }
  .exclusive_home_heroSticker {
    display: none;
  }
  .exclusive_home_trustRibbon span {
    display: none;
  }
  .exclusive_home_prioritySection,
  .exclusive_home_toolsSection,
  .exclusive_home_storiesSection,
  .exclusive_home_roadmapSection,
  .exclusive_home_inviteSection,
  .exclusive_home_faqSection {
    padding: 76px 22px;
  }
  .exclusive_home_sectionIntro h2,
  .exclusive_home_toolsHeading h2,
  .exclusive_home_storyHeading h2,
  .exclusive_home_roadmapIntro h2,
  .exclusive_home_inviteHeading h2,
  .exclusive_home_faqSection > div:first-child h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }
  .exclusive_home_priorityCard {
    min-height: 390px;
  }
  .exclusive_home_toolsGrid {
    grid-template-columns: 1fr;
  }
  .exclusive_home_toolCard,
  .exclusive_home_toolCard:nth-child(2n),
  .exclusive_home_toolCard:nth-child(3n),
  .exclusive_home_toolCard:nth-last-child(-n+3) {
    border-right: 0;
    border-bottom: 1px solid #f6e9df42;
  }
  .exclusive_home_toolCard:last-child {
    grid-column: auto;
    border-bottom: 0;
  }
  .exclusive_home_pikoStrip {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .exclusive_home_pikoMark {
    width: 74px;
  }
  .exclusive_home_pikoStrip p,
  .exclusive_home_pikoStrip a {
    grid-column: auto;
  }
  .exclusive_home_storyEmpty {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .exclusive_home_storyLink,
  .exclusive_home_storyNote {
    grid-column: auto;
    white-space: normal;
  }
  .exclusive_home_storyGrid {
    grid-template-columns: 1fr;
  }
  .exclusive_home_roadmapGrid {
    grid-template-columns: 1fr;
  }
  .exclusive_home_roadmapCard,
  .exclusive_home_roadmapCard:nth-child(4),
  .exclusive_home_roadmapCard:nth-child(5),
  .exclusive_home_roadmapCard:last-child {
    grid-column: auto;
  }
  .exclusive_home_inviteSteps li {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }
  .exclusive_home_faqList summary {
    grid-template-columns: 35px 1fr 22px;
    gap: 9px;
  }
  .exclusive_home_faqList details p {
    margin-left: 44px;
    margin-right: 20px;
  }
  .exclusive_home_finalCta {
    min-height: 560px;
    padding-inline: 22px;
  }
  .exclusive_home_finalArt .pixel-glyph:nth-child(1) {
    left: 4%;
    top: 10%;
  }
  .exclusive_home_finalArt .pixel-glyph:nth-child(2) {
    right: 6%;
    top: 13%;
  }
  .exclusive_home_finalArt .pixel-glyph:nth-child(3) {
    right: 7%;
    bottom: 9%;
  }
}
@media (max-width: 390px) {
  .exclusive_home_heroGrid {
    padding-inline: 16px;
  }
  .exclusive_home_hero h1 {
    font-size: 3rem;
  }
  .exclusive_home_heroBadges {
    align-items: stretch;
    flex-direction: column;
  }
  .exclusive_home_inviteBadge,
  .exclusive_home_trustBadge {
    justify-content: center;
  }
  .exclusive_home_memberPass {
    width: 82%;
  }
  .exclusive_home_passBody strong {
    font-size: 1rem;
  }
  .exclusive_home_prioritySection,
  .exclusive_home_toolsSection,
  .exclusive_home_storiesSection,
  .exclusive_home_roadmapSection,
  .exclusive_home_inviteSection,
  .exclusive_home_faqSection {
    padding-inline: 17px;
  }
  .exclusive_home_priorityCard {
    padding: 22px;
  }
  .exclusive_home_toolCard {
    padding: 24px 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .exclusive_home_primaryAction,
  .exclusive_home_secondaryAction,
  .exclusive_home_goldAction,
  .exclusive_home_lightAction,
  .exclusive_home_faqList summary i {
    transition: none;
  }
  .exclusive_home_primaryAction:hover,
  .exclusive_home_secondaryAction:hover,
  .exclusive_home_goldAction:hover,
  .exclusive_home_lightAction:hover {
    transform: none;
  }
}

/* deploy/public-site/public-site.css */
:root {
  --red: #e60012;
  --red-deep: #9d0012;
  --ink: #1b1820;
  --navy: #1b1820;
  --yellow: #ffd84b;
  --wash: #fff8ec;
  --surface: #fffdf7;
  --line: #cbbeb3;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font:
    16px/1.55 ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
h1,
h2,
h3,
strong,
b {
  letter-spacing: -.025em;
}
h1,
h2,
h3 {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.12;
}
p {
  color: #665f62;
}
:focus-visible {
  outline: 3px solid var(--red) !important;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 14px;
  top: 10px;
  padding: 10px 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-shell {
  min-height: 100vh;
  background-color: var(--wash);
  background-image:
    linear-gradient(#9d001210 1px, transparent 1px),
    linear-gradient(
      90deg,
      #9d001210 1px,
      transparent 1px);
  background-size: 24px 24px;
}
.site-header {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 14px 28px;
  background: var(--surface);
  border-inline: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}
.site-brand-badge {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  background: var(--yellow);
  color: var(--red-deep);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--red);
  font: 1000 14px/1 "Courier New", monospace;
}
.site-brand-copy strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -.07em;
}
.site-brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--red-deep);
  font: 800 .58rem/1.2 "Courier New", monospace;
  letter-spacing: .1em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .78rem;
  font-weight: 850;
}
.site-nav a:hover,
.site-nav a[aria-current=page] {
  color: var(--red-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-nav .nav-signin {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  box-shadow: 3px 3px 0 var(--red);
  text-decoration: none;
}
.site-nav .nav-signin:hover {
  background: var(--red);
  color: white;
  text-decoration: none;
}
.prelaunch-banner {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
}
.prelaunch-banner strong {
  padding: 4px 7px;
  background: var(--ink);
  color: white;
  font: 900 .58rem/1.2 "Courier New", monospace;
  letter-spacing: .08em;
}
.static-main {
  max-width: 1080px;
  min-height: 64vh;
  margin: 0 auto;
  padding: 80px 30px 110px;
}
.static-eyebrow {
  display: inline-block;
  color: var(--red-deep);
  font: 900 .68rem/1.4 "Courier New", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.static-main > h1 {
  max-width: 800px;
  margin: 17px 0 20px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .96;
  letter-spacing: -.07em;
}
.static-lead {
  max-width: 700px;
  margin-bottom: 45px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.static-card {
  padding: 27px;
  scroll-margin-top: 28px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: 5px 5px 0 #d8c8b9;
}
.static-card-accent {
  background: var(--red);
  color: white;
  box-shadow: 5px 5px 0 var(--yellow);
}
.static-card h2 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
}
.static-card p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.static-card-accent p {
  color: #ffe8df;
}
.static-card ul,
.static-card ol {
  margin: 18px 0 0;
  padding-left: 22px;
}
.static-card li {
  margin-bottom: 10px;
}
.static-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: #f3e3d5;
  color: #5e514d;
  font-size: .86rem;
  line-height: 1.7;
}
.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.static-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: .82rem;
  font-weight: 900;
}
.static-button.secondary {
  background: white;
}
.static-button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}
.coming-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px);
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--red);
  color: white;
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}
.coming-card .static-eyebrow {
  color: var(--yellow);
}
.coming-card h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.coming-card p {
  max-width: 560px;
  margin: 0 auto 16px;
  color: #ffe8df;
  line-height: 1.75;
}
.coming-card .static-actions {
  justify-content: center;
}
.site-footer {
  padding: 50px max(28px, calc((100vw - 1240px) / 2));
  border-top: 5px solid var(--red);
  background: var(--ink);
  color: white;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}
.site-footer p {
  max-width: 440px;
  margin: 15px 0 6px;
  color: #d7c6c6;
  font-size: .8rem;
}
.site-footer small {
  color: #ad999d;
  font-size: .68rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  font-size: .75rem;
  font-weight: 800;
}
.site-footer nav a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.site-footer-copy {
  display: block;
  margin-top: 32px;
}
.piko-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  box-shadow: none;
  transform: none;
}
.piko-mark::after {
  display: none;
}
.piko-mark > svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  image-rendering: pixelated;
  filter: drop-shadow(2px 3px 0 #17203b33);
}
.piko-mark-small {
  width: 31px;
  height: 31px;
}
.pixel-glyph {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: none;
  vertical-align: middle;
  image-rendering: pixelated;
}
.pixel-glyph-heart {
  color: var(--red);
}
.pixel-glyph-star {
  color: var(--yellow);
}
.pixel-glyph-spark {
  color: currentColor;
}
.pixel-party {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: #fff5de;
  border: 3px solid #17203b;
  color: #17203b;
  box-shadow: 9px 9px 0 #17203b;
}
.pixel-party::before {
  content: "";
  position: absolute;
  inset: -10px 11px auto;
  height: 8px;
  background: var(--yellow);
  border: 3px solid #17203b;
  border-bottom: 0;
}
.pixel-party-top,
.pixel-party-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 17px;
  font: 800 10px/1.4 "Courier New", monospace;
  letter-spacing: .07em;
}
.pixel-party-top {
  border-bottom: 2px solid #17203b;
  background: var(--yellow);
}
.pixel-party-bottom {
  border-top: 2px solid #17203b;
  background: #17203b;
  color: #fff5de;
  font-size: 9px;
}
.pixel-lives {
  display: flex;
  gap: 5px;
}
.pixel-party-bottom .pixel-glyph,
.pixel-lives .pixel-glyph {
  width: 13px;
  height: 13px;
}
.pixel-party-scene {
  position: relative;
  isolation: isolate;
  padding: 12px 16px 2px;
  background-image:
    linear-gradient(#e7d9bd50 1px, transparent 1px),
    linear-gradient(
      90deg,
      #e7d9bd50 1px,
      transparent 1px);
  background-size: 24px 24px;
}
.pixel-party-orbit {
  position: absolute;
  z-index: -1;
  inset: 12% 10%;
  border-radius: 50%;
  background: #ffd84b;
  border: 2px dashed #17203b2e;
}
.pixel-party-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}
@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    margin: 0 14px;
    padding-inline: 15px;
    border-top: 0;
  }
  .site-nav {
    gap: 10px;
  }
  .site-nav a:not(.nav-signin) {
    display: none;
  }
  .prelaunch-banner {
    margin: 18px 14px 0;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }
  .static-main {
    padding: 60px 22px 85px;
  }
  .static-grid {
    grid-template-columns: 1fr;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 440px) {
  .site-brand-badge {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }
  .site-brand-copy strong {
    font-size: 1.25rem;
  }
  .site-brand-copy small {
    font-size: .48rem;
  }
  .site-nav .nav-signin {
    min-height: 37px;
    padding: 7px 10px;
    font-size: .7rem;
  }
  .static-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .static-button {
    width: 100%;
  }
  .pixel-party {
    box-shadow: 6px 6px 0 #17203b;
  }
  .pixel-party-top {
    padding: 11px 12px;
    font-size: 8px;
  }
  .pixel-party-bottom {
    padding: 11px 10px;
    gap: 6px;
    font-size: 7px;
  }
  .pixel-party-scene {
    padding: 8px 6px 0;
  }
  .pixel-lives {
    gap: 4px;
  }
  .pixel-lives .pixel-glyph {
    width: 11px;
    height: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .static-button:hover {
    transform: none;
  }
}
