:root {
  --forest: #0d0d0f;
  --forest-2: #17171a;
  --forest-3: #25252a;
  --cream: #f4f4f2;
  --paper: #ffffff;
  --ink: #171719;
  --muted: #707176;
  --line: #dcdcdf;
  --coral: #e31b2b;
  --coral-dark: #b51220;
  --lime: #f04451;
  --gold: #e31b2b;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1420px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 36px;
  place-items: center;
  color: var(--coral);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(245, 240, 230, 0.7);
  font-size: 13px;
}

.header-nav a {
  transition: color 160ms ease;
}

.header-nav a:hover {
  color: var(--cream);
}

.responsible-note {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 240, 230, 0.48);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 2px;
  padding: 0 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-button:focus-visible,
.choice-card:focus-visible,
.pill-choice:focus-visible,
.card-link:focus-visible {
  outline: 3px solid rgba(255, 107, 74, 0.35);
  outline-offset: 3px;
}

.button-primary {
  background: var(--coral);
  color: #1d1713;
}

.button-primary:hover {
  background: #ff4352;
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.button-icon {
  font-size: 18px;
}

.button-small {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button-ink {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  outline: 1px solid rgba(255, 255, 255, 0.22);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 0.78fr);
  gap: clamp(46px, 7vw, 120px);
  width: min(1320px, calc(100% - 64px));
  min-height: 760px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0 100px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -140px;
  left: 17%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: rgba(245, 240, 230, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.1vw, 92px);
}

.hero h1 em,
.section h2 em {
  color: var(--coral);
  font-weight: inherit;
}

.hero-lede {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(245, 240, 230, 0.69);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.time-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 230, 0.54);
  font-size: 11px;
  line-height: 1.55;
}

.time-note strong {
  color: var(--cream);
  font-weight: 600;
}

.clock {
  color: var(--coral);
  font-size: 22px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 22px 18px 0;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.hero-proof span {
  margin-top: 2px;
  color: rgba(245, 240, 230, 0.48);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-wrap {
  position: relative;
  z-index: 4;
  scroll-margin-top: 36px;
}

.directory-access-label {
  position: absolute;
  z-index: 4;
  top: -38px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.directory-access-label strong {
  color: var(--lime);
}

.directory-access-label span {
  color: rgba(245, 240, 230, 0.55);
  letter-spacing: 0;
}

.profile-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 43, 0.18) 0%, rgba(13, 13, 15, 0) 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.profile-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 610px;
  padding: 30px 34px 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.profile-card::after {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.step-label {
  color: var(--coral-dark);
}

.draft-badge {
  margin-left: 8px;
  color: #6a7a72;
  letter-spacing: 0;
  text-transform: none;
}

.step-count {
  color: #8a918d;
}

.progress-track {
  height: 2px;
  margin: 15px 0 35px;
  overflow: hidden;
  background: #e9e4da;
}

.progress-track span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--coral);
  transition: width 300ms ease;
}

#profile-form {
  display: flex;
  min-height: 505px;
  flex-direction: column;
}

#question-stage {
  animation: question-in 300ms ease both;
}

@keyframes question-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-kicker {
  margin: 0 0 8px;
  color: #89918c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.question-title {
  max-width: 460px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.question-help {
  max-width: 450px;
  margin: 12px 0 25px;
  color: #747c77;
  font-size: 13px;
  line-height: 1.55;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-grid.one-column {
  grid-template-columns: 1fr;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px 1fr 20px;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border 150ms ease, background 150ms ease, transform 150ms ease;
}

.choice-card:hover {
  border-color: #a5aaa6;
  transform: translateY(-1px);
}

.choice-card.selected {
  border-color: var(--coral);
  background: #fff7f3;
  box-shadow: inset 0 0 0 1px var(--coral);
}

.choice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-3);
  font-family: var(--serif);
  font-size: 19px;
}

.selected .choice-icon {
  background: var(--coral);
  color: white;
}

.choice-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.choice-copy strong {
  font-size: 14px;
  font-weight: 700;
}

.choice-copy small {
  color: #7a827e;
  font-size: 11px;
  line-height: 1.35;
}

.choice-select {
  color: #aeb3b0;
  font-size: 18px;
}

.selected .choice-select {
  color: var(--coral-dark);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill-choice {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: white;
  color: #4b544f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 150ms ease;
}

.pill-choice:hover {
  border-color: #a5aaa6;
}

.pill-choice.selected {
  border-color: var(--forest-3);
  background: var(--forest-3);
  color: white;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-grid.one-column {
  grid-template-columns: 1fr;
}

.field-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #53605a;
  font-size: 11px;
  font-weight: 700;
}

.field-label input,
.field-label select,
.field-label textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 13px;
  background: white;
  color: var(--ink);
  outline: none;
  font-size: 13px;
  font-weight: 500;
}

.field-label textarea {
  min-height: 90px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.45;
}

.field-label input:focus,
.field-label select:focus,
.field-label textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.12);
}

.field-hint {
  margin: 10px 0 0;
  color: #929894;
  font-size: 10px;
  line-height: 1.45;
}

.form-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: #b73826;
  font-size: 11px;
  font-weight: 600;
}

.form-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #e8e3d9;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: #707873;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.text-button[hidden] {
  visibility: hidden;
}

.next-button {
  min-width: 144px;
  min-height: 47px;
  gap: 15px;
  padding: 0 18px;
  font-size: 12px;
}

.review-panel {
  display: grid;
  gap: 8px;
  max-height: 282px;
  overflow: auto;
  padding-right: 5px;
}

.review-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  border-bottom: 1px solid #ece8df;
  padding: 8px 0;
  font-size: 11px;
  line-height: 1.45;
}

.review-row span {
  color: #8b928e;
}

.review-row strong {
  font-weight: 600;
}

.success-state {
  display: flex;
  min-height: 425px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-3);
  box-shadow: 0 0 0 9px #edf1e9;
  color: var(--lime);
  font-size: 27px;
}

.success-state h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.06;
}

.success-state > p {
  max-width: 400px;
  margin: 13px 0 24px;
  color: #747c77;
  font-size: 13px;
  line-height: 1.55;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.secondary-action {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.copy-feedback {
  min-height: 16px;
  margin: 10px 0 0;
  color: #447357;
  font-size: 11px;
  font-weight: 700;
}

.card-stack {
  position: absolute;
  z-index: 1;
  top: -57px;
  right: -28px;
  width: 140px;
  height: 150px;
  pointer-events: none;
}

.playing-card {
  position: absolute;
  display: flex;
  width: 76px;
  height: 108px;
  flex-direction: column;
  border-radius: 4px;
  padding: 10px;
  background: var(--cream);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
}

.playing-card i {
  margin-top: -4px;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: normal;
}

.card-one {
  top: 23px;
  left: 3px;
  transform: rotate(-15deg);
}

.card-two {
  top: 0;
  left: 54px;
  color: var(--coral-dark);
  transform: rotate(11deg);
}

.platform-rotator {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2b3140;
  border-bottom: 1px solid #2b3140;
  background: radial-gradient(circle at 88% 30%, rgba(227, 27, 43, 0.14), transparent 30%), #111114;
  transition: background 360ms ease;
}

.platform-rotator.is-shove {
  background: radial-gradient(circle at 88% 30%, rgba(73, 150, 136, 0.17), transparent 30%), #0d1320;
}

.platform-rotator-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.035);
}

.platform-rotator-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e31b2b, #f04451 62%, #b51220);
  transform: scaleX(0);
  transform-origin: left;
}

.platform-rotator.is-shove .platform-rotator-progress span {
  background: linear-gradient(90deg, #1ed472, #84e6b3 62%, #499688);
}

.platform-rotator-progress span.is-running {
  animation: platform-progress var(--platform-hold, 8000ms) linear forwards;
}

.platform-rotator-main {
  display: grid;
  width: min(1320px, calc(100% - 64px));
  min-height: 220px;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  grid-template-columns: 1fr auto;
}

.platform-rotator-copy {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 10px 32px;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
}

.platform-rotator-copy > p:first-child {
  grid-column: 1 / -1;
  margin: 0;
  color: #f04451;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.platform-rotator.is-shove .platform-rotator-copy > p:first-child {
  color: #84e6b3;
}

.platform-rotator h2 {
  min-width: 0;
  margin: 0;
  color: #feffff;
  font-size: clamp(38px, 4.4vw, 70px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.platform-rotator.has-long-title h2 {
  font-size: clamp(38px, 3.7vw, 58px);
  letter-spacing: -0.055em;
}

.platform-rotator-copy > p:last-child {
  min-width: 0;
  max-width: 660px;
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.6;
  text-wrap: pretty;
}

.platform-rotator-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(240, 68, 81, 0.36);
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(105deg, #b51220, #e31b2b);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.platform-rotator.is-shove .platform-rotator-link {
  border-color: rgba(132, 230, 179, 0.32);
  background: linear-gradient(105deg, #226e61, #499688);
}

.platform-rotator-tabs {
  display: grid;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #2b3140;
}

.platform-rotator-tabs button {
  min-height: 54px;
  border: 0;
  border-left: 1px solid #2b3140;
  background: transparent;
  color: #778294;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.platform-rotator-tabs button:first-child {
  border-left: 0;
}

.platform-rotator-tabs button.is-active {
  background: rgba(227, 27, 43, 0.12);
  color: #f04451;
}

.platform-rotator.is-shove .platform-rotator-tabs button.is-active {
  background: rgba(73, 150, 136, 0.14);
  color: #84e6b3;
}

@keyframes platform-progress {
  to { transform: scaleX(1); }
}

.directory-section {
  scroll-margin-top: 20px;
  padding: 120px max(32px, calc((100vw - 1320px) / 2));
  background: #ececea;
  color: var(--ink);
}

.directory-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.directory-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.directory-heading h2 em {
  color: var(--coral);
  font-weight: 400;
}

.directory-heading > p {
  max-width: 460px;
  margin: 0;
  color: #69716c;
  font-size: 14px;
  line-height: 1.7;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(150px, 0.7fr));
  border: 1px solid #cccccf;
  background: var(--paper);
}

.directory-toolbar > label {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid #dedee0;
  padding: 0 20px;
  color: #888f8a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-toolbar select,
.directory-toolbar input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

.directory-toolbar .directory-search {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  border-left: 0;
}

.directory-search > span {
  color: var(--coral-dark);
  font-size: 25px;
}

.directory-search input::placeholder {
  color: #89908c;
  font-weight: 500;
}

.directory-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  color: #7e8580;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-meta span:first-child {
  color: #4f5953;
  font-weight: 700;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid #d3d3d5;
  padding: 25px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:hover {
  box-shadow: 0 18px 38px rgba(28, 39, 33, 0.1);
  transform: translateY(-3px);
}

.game-card::after {
  position: absolute;
  top: -66px;
  right: -66px;
  width: 150px;
  height: 150px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 22px #f7f7f7, 0 0 0 23px #e9e9e9;
}

.game-card-top,
.game-location,
.game-facts,
.game-host {
  position: relative;
  z-index: 1;
}

.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.game-badge {
  border-radius: 999px;
  padding: 6px 9px;
  background: #eef1e9;
  color: #526258;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-badge.online {
  background: #f9dadd;
  color: #a51420;
}

.game-badge.platform-badge {
  background: var(--forest-3);
  color: white;
}

.game-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 38px 0 8px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.03;
}

.game-location {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #77807a;
  font-size: 11px;
}

.game-location span:first-child {
  color: var(--coral-dark);
}

.game-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0;
  background: #e2e2e4;
}

.game-fact {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 10px 12px;
  background: #f5f5f5;
}

.game-fact span {
  color: #969b97;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-fact strong {
  color: #37433d;
  font-size: 11px;
  font-weight: 600;
}

.game-host {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #e2e2e4;
  padding-top: 18px;
}

.host-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-3);
  color: var(--lime);
  font-family: var(--serif);
}

.host-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.host-copy strong {
  font-size: 10px;
}

.host-copy span {
  color: #929894;
  font-size: 8px;
}

.host-contact-button {
  border: 0;
  padding: 8px 0 8px 10px;
  background: transparent;
  color: var(--coral-dark);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.host-contact-button:hover {
  text-decoration: underline;
}

.directory-empty {
  margin: 30px 0 0;
  color: #707873;
  text-align: center;
}

.host-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 52px;
  padding: 34px 38px;
  background: var(--forest-2);
  color: var(--cream);
}

.host-cta-label {
  color: var(--lime);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.host-cta h3 {
  margin: 8px 0 4px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.host-cta p {
  margin: 0;
  color: rgba(245, 240, 230, 0.6);
  font-size: 12px;
}

.host-dialog {
  width: min(560px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  border: 0;
  padding: 36px;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.host-dialog::backdrop {
  background: rgba(4, 15, 11, 0.78);
  backdrop-filter: blur(5px);
}

.host-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #747c77;
  cursor: pointer;
  font-size: 28px;
}

.dialog-lede {
  margin: 12px 0 24px;
  color: #737b76;
  font-size: 13px;
  line-height: 1.6;
}

.dialog-message-field {
  margin-top: 14px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.dialog-actions .button {
  min-height: 48px;
}

.contact-ready {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  border: 1px solid #d4bfc2;
  padding: 18px;
  background: #f8ecee;
}

.contact-ready strong {
  color: #8f1620;
  font-size: 13px;
}

.contact-ready span {
  color: #6e6466;
  font-size: 11px;
  line-height: 1.5;
}

.contact-ready .button {
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
}

.section {
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.eyebrow-dark {
  align-self: flex-start;
  color: #737b76;
}

.section h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid #cdcdcf;
}

.process-card {
  position: relative;
  min-height: 400px;
  padding: 36px 34px 32px;
  border-right: 1px solid #cdcdcf;
}

.process-card:first-child {
  border-left: 1px solid #cdcdcf;
}

.process-card.feature-card {
  background: #e7e7e5;
}

.process-number {
  color: #8e948f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 73px 0 54px;
  place-items: center;
  border: 1px solid #bbb9b0;
  border-radius: 50%;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 34px;
}

.process-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  color: #727a75;
  font-size: 13px;
  line-height: 1.65;
}

.mini-profile {
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  gap: 12px;
  align-items: center;
  margin: 70px 0 50px;
  padding: 16px;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(30, 31, 26, 0.1);
  transform: rotate(-2deg);
}

.mini-avatar,
.mini-check {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-3);
  color: var(--lime);
  font-family: var(--serif);
}

.mini-profile div {
  display: flex;
  flex-direction: column;
}

.mini-profile strong {
  font-size: 12px;
}

.mini-profile small {
  margin-top: 3px;
  color: #8d938f;
  font-size: 9px;
}

.mini-check {
  width: 24px;
  height: 24px;
  background: #f7dadd;
  color: #a51420;
  font-family: var(--sans);
  font-size: 11px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  background: var(--forest-2);
}

.split-intro {
  align-self: center;
}

.split-intro > p:last-child {
  max-width: 430px;
  margin: 26px 0 0;
  color: rgba(245, 240, 230, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.audience-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
}

.player-card {
  background: var(--lime);
  transform: translateY(28px);
}

.agent-card {
  background: var(--paper);
}

.audience-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #59645e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-topline b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.audience-card h3 {
  margin: 72px 0 25px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.08;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #5d6761;
  font-size: 12px;
  list-style: none;
}

.audience-card li::before {
  margin-right: 8px;
  color: var(--coral-dark);
  content: "✦";
}

.about-directory {
  display: grid;
  gap: 60px 100px;
  padding: 130px max(32px, calc((100vw - 1320px) / 2));
  background: #111114;
  color: var(--cream);
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  scroll-margin-top: 30px;
}

.about-directory-intro h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.about-directory-intro h2 em {
  color: var(--coral);
  font-weight: inherit;
}

.about-directory-copy {
  display: grid;
  gap: 20px;
  align-content: end;
}

.about-directory-copy p {
  max-width: 680px;
  margin: 0;
  color: #98a2b3;
  font-size: 14px;
  line-height: 1.8;
}

.about-directory-copy .about-lede {
  color: #d7dfe4;
  font-size: 17px;
}

.about-principles {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #2b3140;
  border-bottom: 1px solid #2b3140;
}

.about-principles article {
  min-height: 220px;
  padding: 28px;
  border-left: 1px solid #2b3140;
}

.about-principles article:first-child {
  border-left: 0;
}

.about-principles span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-principles strong {
  display: block;
  margin-top: 56px;
  color: #feffff;
  font-size: 18px;
}

.about-principles p {
  margin: 12px 0 0;
  color: #7f8998;
  font-size: 12px;
  line-height: 1.6;
}

.about-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 34px;
}

.about-actions .card-link {
  width: 220px;
  margin: 0;
  border-color: #2b3140;
  color: #feffff;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border: 0;
  border-top: 1px solid rgba(23, 32, 28, 0.18);
  padding: 20px 0 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.card-link span {
  font-size: 20px;
  transition: transform 160ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px max(32px, calc((100vw - 1320px) / 2));
  background: var(--coral);
  color: var(--ink);
}

.final-cta .eyebrow {
  color: rgba(23, 32, 28, 0.66);
}

.final-cta .eyebrow span {
  background: var(--ink);
}

.final-cta h2 {
  font-size: clamp(48px, 5vw, 74px);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 40px max(32px, calc((100vw - 1320px) / 2));
  background: #08080a;
  color: rgba(245, 240, 230, 0.48);
  font-size: 10px;
}

.footer-brand {
  color: var(--cream);
}

.footer-legal {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .profile-wrap {
    width: min(100%, 620px);
    justify-self: center;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .platform-rotator-copy {
    grid-template-columns: 1fr;
  }

  .platform-rotator.has-long-title h2 {
    font-size: clamp(38px, 5.2vw, 54px);
  }

  .platform-rotator-copy > p:first-child {
    grid-column: auto;
  }

  .about-principles {
    grid-template-columns: 1fr 1fr;
  }

  .about-principles article:nth-child(3) {
    border-top: 1px solid #2b3140;
    border-left: 0;
  }

  .about-principles article:nth-child(4) {
    border-top: 1px solid #2b3140;
  }

  .split-intro {
    max-width: 700px;
  }

  .directory-toolbar {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .directory-toolbar > label:last-child {
    grid-column: span 3;
    border-top: 1px solid #dedee0;
    border-left: 0;
  }

  .directory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero {
    width: min(100% - 36px, 680px);
  }

  .platform-rotator-main,
  .platform-rotator-tabs {
    width: min(100% - 36px, 680px);
  }

  .platform-rotator-main {
    min-height: 310px;
    align-content: center;
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .platform-rotator.has-long-title h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .platform-rotator-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-rotator-tabs button:nth-child(4) {
    border-left: 0;
  }

  .platform-rotator-tabs button:nth-child(n + 4) {
    border-top: 1px solid #2b3140;
  }

  .site-header {
    height: 72px;
  }

  .site-header .button {
    display: none;
  }

  .brand {
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding: 62px 0 78px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    margin-top: 48px;
  }

  .hero-proof div {
    padding: 14px 8px 14px 0;
  }

  .hero-proof div + div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 21px;
  }

  .profile-card {
    min-height: 650px;
    padding: 24px 20px;
  }

  #profile-form {
    min-height: 548px;
  }

  .card-stack {
    display: none;
  }

  .question-title {
    font-size: 35px;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .directory-section {
    padding: 84px 20px;
  }

  .directory-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 38px;
  }

  .directory-heading h2 {
    font-size: 48px;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .directory-toolbar > label,
  .directory-toolbar > label:last-child {
    grid-column: auto;
    border-top: 1px solid #dedee0;
    border-left: 0;
  }

  .directory-toolbar .directory-search {
    border-top: 0;
  }

  .directory-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 380px;
  }

  .host-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .host-dialog {
    padding: 30px 20px 24px;
  }

  .choice-card {
    min-height: 78px;
  }

  .section {
    padding: 90px 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 25px;
  }

  .section h2 {
    font-size: 48px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:first-child {
    min-height: 330px;
    border-right: 1px solid #cdcdcf;
    border-bottom: 1px solid #cdcdcf;
    border-left: 1px solid #cdcdcf;
  }

  .process-icon,
  .mini-profile {
    margin-top: 50px;
    margin-bottom: 36px;
  }

  .split-section {
    gap: 56px;
  }

  .about-directory {
    gap: 42px;
    padding: 90px 20px;
    grid-template-columns: 1fr;
  }

  .about-directory-intro h2 {
    font-size: 48px;
  }

  .about-principles,
  .about-actions {
    grid-column: auto;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article,
  .about-principles article:nth-child(4) {
    min-height: 190px;
    border-top: 1px solid #2b3140;
    border-left: 0;
  }

  .about-principles article:first-child {
    border-top: 0;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .button,
  .about-actions .card-link {
    width: 100%;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .player-card {
    transform: none;
  }

  .audience-card {
    min-height: 420px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    padding: 70px 20px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 38px 20px;
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }

  .review-row {
    grid-template-columns: 90px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
