@font-face {
  font-family: Votare Sans;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --paper: #f4f1e9;
  --paper-dark: #e9e6dc;
  --forest: #102e23;
  --deep: #09241b;
  --green: #2eb367;
  --orange: #e86a38;
  --muted: #5e6b60;
  --line: #d6d9cd;
  --white: #fffcf5;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--forest);
  font-family: "Votare Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.055em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
p {
  overflow-wrap: break-word;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
  border-radius: 3px;
}
::selection {
  background: #f7b491;
  color: var(--forest);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(calc(100% - 112px), 1240px);
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--white);
  padding: 12px 18px;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.13em;
  font-weight: 800;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 25px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e86a3815;
  flex-shrink: 0;
}
.tiny-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  display: block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--forest);
  color: var(--white);
  padding: 17px 24px;
  min-height: 56px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #20523c;
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 11px;
  gap: 17px;
}
.button-small .icon {
  width: 18px;
  height: 18px;
}
.underlined-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-block: 7px;
}
.underlined-link:hover {
  color: #a34220;
}
.mobile-only {
  display: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #f4f1e9f2;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 25px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.brand img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(1045%)
    hue-rotate(101deg) brightness(90%);
  width: 138px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}
.main-nav > a {
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}
.main-nav > a:hover {
  color: #ad4722;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.login-link {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}
.login-link .icon {
  width: 16px;
  height: 16px;
}
.main-nav .mobile-login,
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 7%;
  padding-top: 67px;
  padding-bottom: 57px;
  min-height: 700px;
}
.hero-copy {
  padding-bottom: 15px;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(57px, 5.6vw, 82px);
  line-height: 1.035;
  letter-spacing: -0.068em;
  max-width: 590px;
}
.hero h1 em {
  display: block;
  color: #bd4b26;
  letter-spacing: -0.065em;
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
  max-width: 430px;
  margin-top: 27px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.microcopy {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 365px;
  margin-top: 20px;
}
.hero-art {
  position: relative;
  min-width: 0;
  padding-bottom: 48px;
  isolation: isolate;
}
.art-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1px 13px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.art-caption .icon {
  width: 18px;
  height: 18px;
}
.portrait-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  transform: rotate(-3deg);
  border-radius: 15px;
}
.portrait {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  border-radius: 8px;
  background: #d8a981;
  isolation: isolate;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 65%, #09241b90);
  pointer-events: none;
}
.portrait figcaption {
  position: absolute;
  left: 15px;
  bottom: 12px;
  font-size: 10px;
  font-weight: 650;
  color: var(--white);
  z-index: 1;
}
.portrait-renan figcaption,
.portrait-tarcisio figcaption {
  right: 14px;
  left: auto;
  text-align: right;
}
.portrait-lula {
  background: #a6081c;
}
.portrait-renan {
  background: #a87d0b;
}
.portrait-eduardo {
  background: #005e43;
}
.portrait-tarcisio {
  background: #082b65;
}
.identity-stamp {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%) rotate(9deg);
  border-radius: 50%;
  width: 106px;
  height: 106px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 5px 20px #0c261c1a;
}
.identity-stamp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.identity-stamp span {
  font-size: 8px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}
.floating-profile {
  position: absolute;
  bottom: 36px;
  left: 17%;
  right: -13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transform: rotate(3deg);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: 0 12px 34px #102e231a;
  border: 1px solid #102e2314;
  border-radius: 9px;
}
.floating-profile .tiny-label {
  font-size: 7px;
}
.floating-profile strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin-top: 9px;
}
.floating-profile > .icon {
  height: 36px;
  width: 36px;
  padding: 7px;
  background: var(--forest);
  color: var(--paper);
  border-radius: 50%;
}
.profile-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.profile-tags > span {
  font-size: 8px;
  background: #edf0e5;
  padding: 4px 8px;
  border-radius: 3px;
}
.art-credit {
  font-size: 8px;
  line-height: 1.5;
  color: var(--muted);
  text-align: right;
  margin-top: 19px;
}
.art-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px 30px;
  border-top: 1px solid var(--line);
}
.intro-strip > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.intro-strip p {
  font-size: 12px;
  color: var(--muted);
}
.intro-strip > a {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
}
h2 {
  font-size: clamp(37px, 4.1vw, 58px);
  line-height: 1.08;
}
.section-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.discovery {
  background: var(--forest);
  color: var(--paper);
  padding-block: 97px 88px;
}
.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 11%;
  align-items: center;
}
.light-eyebrow {
  color: #bdc9aa;
}
.discovery h2 {
  font-size: clamp(46px, 4.6vw, 64px);
}
.discovery h2 em {
  color: #cdd3ad;
}
.discovery .section-description {
  color: #bac6b9;
  max-width: 355px;
  margin-top: 24px;
}
.result-tabs {
  margin-top: 31px;
}
.result-tab {
  display: flex;
  align-items: center;
  gap: 17px;
  border: 0;
  border-top: 1px solid #ffffff21;
  border-radius: 0;
  background: none;
  color: #bac6b9;
  width: 100%;
  text-align: left;
  padding: 21px 6px;
  transition: color 0.2s;
}
.result-tab:last-child {
  border-bottom: 1px solid #ffffff21;
}
.tab-number {
  font-size: 10px;
  font-weight: 600;
  color: #a9b99b;
  align-self: flex-start;
  padding-top: 2px;
}
.result-tab strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.result-tab small {
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
.result-tab > .icon {
  margin-left: auto;
  width: 18px;
  opacity: 0;
}
.result-tab[aria-selected="true"] {
  color: var(--paper);
}
.result-tab[aria-selected="true"] > .icon {
  opacity: 1;
}
.result-tab[aria-selected="true"] .tab-number {
  color: #e89b70;
}
.result-tab:hover {
  color: white;
}
.result-window {
  background: var(--paper);
  color: var(--forest);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 60px #00100933;
  transform: rotate(2deg);
}
.window-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
}
.window-topbar img {
  filter: brightness(0);
  width: 73px;
  height: auto;
  opacity: 0.8;
}
.demo-badge {
  font-size: 7px;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 8px;
  letter-spacing: 0.08em;
}
.window-dots {
  font-size: 12px;
  letter-spacing: 2px;
}
.result-panel {
  padding: 29px 29px 24px;
  min-height: 425px;
}
.result-panel h3 {
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 13px 0;
}
.result-panel > p {
  font-size: 11px;
  color: var(--muted);
}
.priority-list {
  list-style: none;
  margin: 24px 0 25px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.priority-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #e8eade;
  border: 1px solid #dce0d1;
  border-radius: 5px;
  padding: 12px;
}
.priority-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #d8dfc4;
  font-size: 25px;
  flex-shrink: 0;
}
.priority-list strong {
  display: block;
  font-size: 12px;
}
.priority-list div > span {
  font-size: 9px;
  display: block;
  color: var(--muted);
}
.priority-list b {
  margin-left: auto;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
}
.result-note {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 9px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.result-note .icon {
  width: 16px;
  height: 16px;
}
.preview-caption {
  font-size: 9px;
  color: #b8c7b8;
  margin: 22px 20px 0;
  text-align: center;
}
.demo-archetype {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 25px 0;
}
.demo-archetype > img {
  width: 40%;
  border-radius: 7px;
  aspect-ratio: 1;
  object-fit: cover;
}
.demo-archetype h4 {
  font-size: 25px;
  margin: 10px 0;
}
.demo-archetype p {
  font-size: 11px;
  color: var(--muted);
}
.affinity-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 28px 0 23px;
}
.affinity-circle {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 150px;
  border: 1px solid #597f5b;
  border-radius: 50%;
  background: #bacbb477;
  font-size: 11px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.affinity-circle + .affinity-circle {
  margin-left: -30px;
  background: #df9a6f66;
  border-color: #bd754d;
}
.affinity-illustration .icon {
  position: absolute;
  left: calc(50% - 11px);
  top: calc(50% - 11px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 48px;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 350px;
  padding-bottom: 5px;
}
.section-heading h2 em {
  color: #a44628;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps article {
  border-top: 1px solid #aeb9a6;
  padding-top: 22px;
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}
.step-top > span {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.step-top > .icon {
  width: 21px;
  height: 21px;
  color: #64715d;
}
.steps h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin-bottom: 15px;
}
.steps p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 330px;
}
.archetype-section {
  background: #e6e9dc;
}
.archetype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.archetype-image {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1;
}
.archetype-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.archetype-card:hover img {
  transform: scale(1.035);
}
.archetype-image > span {
  position: absolute;
  top: 15px;
  left: 16px;
  color: var(--paper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #071913b0;
  padding: 5px 8px;
  border-radius: 3px;
}
.archetype-caption {
  padding: 22px 2px 5px;
}
.archetype-caption h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.archetype-caption p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 290px;
}
.archetype-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #c6cdbb;
  margin-top: 39px;
  padding-top: 23px;
}
.archetype-bottom p {
  font-size: 11px;
  color: var(--muted);
}
.politics-section {
  overflow: clip;
}
.politics-copy {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  column-gap: 9%;
  align-items: start;
  margin-bottom: 48px;
}
.politics-copy .eyebrow {
  grid-column: 1;
}
.politics-copy h2 {
  grid-column: 1;
  grid-row: 2 / 4;
  font-size: clamp(34px, 4vw, 54px);
}
.politics-copy h2 em {
  color: #a44628;
}
.politics-copy .section-description {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0 0 24px;
  max-width: 440px;
  font-size: 16px;
}
.politics-copy .button {
  grid-column: 2;
  justify-self: start;
}
.politics-mural {
  --mural-gap: clamp(10px, 1.15vw, 18px);
  --mural-card-width: clamp(136px, 16vw, 208px);
  display: grid;
  gap: var(--mural-gap);
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
}
.mural-row {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.mural-row:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.mural-track,
.mural-set {
  display: flex;
  width: max-content;
}
.mural-set {
  flex: none;
  gap: var(--mural-gap);
}
.mural-card {
  position: relative;
  flex: 0 0 var(--mural-card-width);
  width: var(--mural-card-width);
  aspect-ratio: 0.9;
  overflow: hidden;
  background: var(--forest);
  border-radius: 6px;
}
.mural-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mural-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 36px 14px 13px;
  background: linear-gradient(transparent, rgb(4 19 15 / 92%));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.politics-note {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}
.politics-note p {
  max-width: 760px;
}
.politics-note a {
  flex-shrink: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (prefers-reduced-motion: no-preference) {
  .is-parallax .mural-row:not(:focus-within) {
    overflow-x: hidden;
  }
  .is-parallax .mural-row:not(:focus-within) .mural-track {
    transform: translate3d(var(--mural-x, 0px), 0, 0);
  }
  .is-parallax.is-visible .mural-row:not(:focus-within) .mural-track {
    will-change: transform;
  }
}
.universe-section {
  background: #e8e5dc;
}
.universe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.universe-card {
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
}
.game-art,
.newsletter-art {
  height: 310px;
  position: relative;
  overflow: hidden;
}
.game-art {
  background: #edd48e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  isolation: isolate;
}
.game-kicker {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 25px;
}
.word-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  transform: rotate(-6deg);
  width: 290px;
  max-width: 80%;
}
.word-grid span {
  height: 49px;
  border: 1px solid #374c34;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  background: #f2e1b0;
  box-shadow: 0 4px 0 #bea45d;
}
.word-grid span:nth-child(1),
.word-grid span:nth-child(3),
.word-grid span:nth-child(7),
.word-grid span:nth-child(9) {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 4px 0 #081e15;
}
.game-art-note {
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-top: 30px;
  font-weight: 700;
}
.game-spark {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -50px;
  top: 6px;
  stroke-width: 0.4;
  color: #9c863d;
  z-index: -1;
}
.newsletter-art img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.newsletter-art > span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 800;
  background: #09241bd9;
  padding: 5px 9px;
}
.universe-copy {
  padding: 30px 32px 34px;
}
.universe-copy > .tiny-label {
  color: #965330;
}
.universe-copy h3 {
  font-size: 34px;
  margin-top: 15px;
}
.universe-copy > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin: 17px 0 20px;
  max-width: 400px;
}
.universe-copy .underlined-link {
  font-size: 12px;
}
.about-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 14%;
  align-items: center;
}
.about-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 340px;
  background: radial-gradient(circle, #dde3d4 0, transparent 66%);
}
.about-mark img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  opacity: 0.85;
  transform: rotate(-9deg);
}
.about-mark > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  margin-top: 32px;
}
.about-copy h2 em {
  color: #a44628;
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 23px;
}
.about-links {
  display: grid;
  margin-top: 29px;
}
.about-links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}
.about-links .icon {
  width: 19px;
  height: 19px;
}
.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10%;
}
.faq-section h2 {
  font-size: 43px;
}
.faq-section h2 em {
  color: #a44628;
}
.faq-section > div > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 25px;
}
.faq-section > div > p > a {
  border-bottom: 1px solid currentColor;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.faq-list details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 12px;
  color: var(--muted);
  padding: 0 35px 22px 0;
  line-height: 1.9;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--orange);
  padding: 80px 0 72px;
  text-align: center;
}
.closing-inner {
  position: relative;
}
.closing-inner > .eyebrow {
  justify-content: center;
  font-size: 9px;
}
.closing-inner h2 {
  font-size: clamp(54px, 6.7vw, 94px);
  line-height: 1.015;
}
.closing-inner h2 em {
  color: var(--paper);
}
.closing-inner > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.75;
  margin: 25px 0;
}
.closing-inner .button {
  min-width: 220px;
}
.closing-login {
  display: block;
  width: max-content;
  margin: 17px auto 0;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.closing-mark {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/logo-pattern.svg") right -100px center/620px
    no-repeat;
  opacity: 0.075;
  transform: rotate(-18deg);
}
.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding: 55px 0 22px;
}
.site-footer .brand img {
  filter: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 30px;
  padding-bottom: 43px;
}
.footer-top > div > p {
  font-size: 12px;
  line-height: 1.65;
  color: #b0bdac;
  margin-top: 15px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding-top: 8px;
  font-size: 11px;
  color: #c5cfbe;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: white;
  text-decoration: underline;
}
.footer-contact {
  padding-top: 8px;
}
.footer-contact > span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #b0bdac;
  margin-bottom: 18px;
}
.footer-contact > a {
  font-size: 11px;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid #ffffff20;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: #b0bdac;
}
.legal-main {
  max-width: 790px;
  padding-block: 80px 100px;
}
.legal-main h1 {
  font-size: 54px;
  margin-bottom: 28px;
}
.legal-main h2 {
  font-size: 25px;
  margin: 34px 0 12px;
}
.legal-main p,
.legal-main li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 15px;
}
.legal-main a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-main .back-link {
  display: inline-flex;
  margin-bottom: 38px;
  font-size: 12px;
}
.legal-note {
  padding: 20px 24px;
  background: var(--paper-dark);
  border-radius: 7px;
  margin: 28px 0;
}
.legal-note p:last-child {
  margin-bottom: 0;
}
.access-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}
.access-option {
  padding: 24px;
  background: var(--paper-dark);
  border-radius: 7px;
}
.access-option h2 {
  margin-top: 0;
}
.access-option .button {
  font-size: 12px;
  padding: 12px 16px;
  width: 100%;
  margin-top: 15px;
}
.credits-list {
  display: grid;
  gap: 22px;
}
.credit-entry {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  gap: 22px;
}
.credit-entry > img {
  width: 78px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.credit-entry h2 {
  font-size: 21px;
  margin: 0 0 8px;
}
.credit-entry p {
  font-size: 12px;
  margin: 0 0 7px;
}
.credit-entry a {
  overflow-wrap: anywhere;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 745px;
    padding-block: 90px 65px;
  }
  .hero h1 {
    font-size: 88px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .main-nav {
    gap: 18px;
  }
  .header-actions {
    gap: 18px;
  }
  .header-inner {
    gap: 18px;
  }
  .hero {
    gap: 5%;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding: 15px 18px;
    font-size: 12px;
    gap: 14px;
  }
  .hero-actions .underlined-link {
    font-size: 12px;
  }
  .floating-profile {
    padding: 16px 19px;
    left: 10%;
    right: 0;
  }
  .floating-profile strong {
    font-size: 21px;
  }
  .discovery-grid {
    gap: 7%;
  }
  .result-panel {
    padding: 25px 23px;
  }
  .section-heading > p {
    max-width: 270px;
  }
  .footer-top {
    grid-template-columns: 1fr 0.8fr 0.8fr 1.2fr;
    gap: 15px;
  }
  .footer-contact > a {
    font-size: 10px;
  }
}
@media (max-width: 960px) {
  .main-nav > a {
    font-size: 10px;
  }
  .main-nav {
    gap: 14px;
  }
  .header-actions .login-link {
    display: none;
  }
  .brand img {
    width: 120px;
  }
  .header-inner {
    height: 76px;
  }
  .button-small {
    font-size: 10px;
    padding: 10px 13px;
    gap: 10px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero {
    min-height: 600px;
    padding-top: 52px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    min-height: 50px;
  }
  .hero-actions .underlined-link {
    font-size: 11px;
  }
  .identity-stamp {
    width: 83px;
    height: 83px;
    top: 42%;
  }
  .identity-stamp img {
    width: 26px;
    height: 26px;
  }
  .identity-stamp span {
    font-size: 6px;
  }
  .art-caption {
    font-size: 7px;
  }
  .floating-profile .tiny-label {
    font-size: 6px;
  }
  .floating-profile strong {
    font-size: 18px;
  }
  .profile-tags {
    margin-top: 8px;
  }
  .profile-tags > span {
    font-size: 7px;
  }
  .art-credit {
    font-size: 7px;
  }
  .discovery-grid {
    gap: 6%;
  }
  .result-panel h3 {
    font-size: 31px;
  }
  .window-topbar {
    padding: 15px 17px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .result-panel {
    padding: 22px 18px;
  }
  .priority-list li {
    gap: 8px;
    padding: 10px;
  }
  .priority-list div > span {
    font-size: 8px;
  }
  .section-space {
    padding-block: 80px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading h2 {
    font-size: 44px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 235px;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 20px;
  }
  .politics-copy .button {
    font-size: 14px;
    padding: 15px 20px;
  }
  .politics-copy h2 {
    font-size: 37px;
  }
  .game-art,
  .newsletter-art {
    height: 265px;
  }
  .universe-copy {
    padding: 25px;
  }
  .universe-copy h3 {
    font-size: 30px;
  }
  .about-section {
    gap: 8%;
  }
  .faq-section {
    gap: 7%;
  }
  .faq-section h2 {
    font-size: 36px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-contact {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 15px;
  }
  .footer-contact > span {
    margin: 0;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 70px;
    gap: 12px;
  }
  .brand img {
    width: 109px;
  }
  .header-actions {
    gap: 14px;
  }
  .header-actions .button-small {
    font-size: 10px;
    min-height: 44px;
    padding: 9px 12px;
    gap: 9px;
  }
  .header-actions .button-small .icon {
    width: 15px;
  }
  .has-js .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 36px;
    min-height: 44px;
    background: none;
    border: 0;
    padding: 6px;
  }
  .menu-toggle span {
    height: 1.5px;
    width: 20px;
    background: var(--forest);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 16px 20px 23px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .main-nav > a {
    font-size: 12px;
  }
  .has-js .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 15px 20px #102e2310;
  }
  .has-js .main-nav.is-open {
    display: flex;
  }
  .has-js .main-nav > a {
    padding: 14px 2px;
  }
  .main-nav .mobile-login {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 37px;
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 30px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(55px, 9.2vw, 76px);
    max-width: 570px;
    letter-spacing: -0.067em;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 23px;
    max-width: 480px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 24px;
  }
  .hero-actions .button {
    padding: 16px 20px;
    gap: 20px;
    font-size: 12px;
    min-height: 53px;
  }
  .hero-actions .underlined-link {
    font-size: 12px;
  }
  .microcopy {
    font-size: 10px;
    max-width: 350px;
    margin-top: 17px;
  }
  .hero-art {
    max-width: 500px;
    width: 94%;
    margin: 0 auto;
    padding-bottom: 45px;
  }
  .portrait-mosaic {
    gap: 8px;
  }
  .art-caption {
    font-size: 8px;
    margin-bottom: 13px;
  }
  .identity-stamp {
    top: 43%;
    width: 88px;
    height: 88px;
  }
  .identity-stamp img {
    width: 27px;
    height: 27px;
  }
  .identity-stamp span {
    font-size: 7px;
  }
  .floating-profile {
    left: 21%;
    bottom: 30px;
    padding: 14px 17px;
    right: -10px;
  }
  .floating-profile strong {
    font-size: 21px;
  }
  .floating-profile .tiny-label {
    font-size: 6px;
  }
  .profile-tags {
    margin-top: 9px;
  }
  .profile-tags > span {
    font-size: 7px;
  }
  .art-credit {
    font-size: 7px;
    margin-top: 17px;
  }
  .intro-strip {
    gap: 10px;
    padding-block: 20px;
  }
  .intro-strip > span {
    font-size: 7px;
    max-width: 120px;
    line-height: 1.8;
  }
  .intro-strip p {
    font-size: 10px;
  }
  .intro-strip > a {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .mobile-only {
    display: block;
  }
  .discovery {
    padding-block: 65px 55px;
  }
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .discovery h2 {
    font-size: 52px;
  }
  .discovery .section-description {
    font-size: 13px;
    max-width: 440px;
    margin-top: 20px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .result-tabs {
    margin-top: 25px;
  }
  .result-tab {
    padding: 16px 4px;
  }
  .result-tab strong {
    font-size: 13px;
  }
  .result-tab small {
    font-size: 11px;
  }
  .result-stage {
    width: 94%;
    max-width: 480px;
    margin: 0 auto;
  }
  .window-topbar {
    padding: 17px 20px;
  }
  .result-panel {
    padding: 25px;
  }
  .result-panel h3 {
    font-size: 36px;
  }
  .priority-list li {
    padding: 12px;
    gap: 12px;
  }
  .priority-list div > span {
    font-size: 9px;
  }
  .demo-badge {
    font-size: 7px;
  }
  .preview-caption {
    font-size: 9px;
    margin-top: 22px;
  }
  .section-space {
    padding-block: 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 33px;
  }
  .section-heading h2,
  h2 {
    font-size: 43px;
  }
  .section-heading > p {
    max-width: 420px;
    margin-top: 21px;
    font-size: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .steps article {
    padding-top: 15px;
  }
  .step-top {
    margin-bottom: 20px;
  }
  .steps h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .steps p {
    max-width: 100%;
    font-size: 13px;
  }
  .archetype-grid {
    gap: 13px;
  }
  .archetype-caption {
    padding-top: 15px;
  }
  .archetype-caption h3 {
    font-size: 20px;
  }
  .archetype-caption p {
    font-size: 10px;
  }
  .archetype-image > span {
    font-size: 6px;
    top: 8px;
    left: 6px;
    letter-spacing: 0;
    padding: 3px 5px;
  }
  .archetype-bottom {
    margin-top: 26px;
    gap: 18px;
  }
  .archetype-bottom p {
    font-size: 10px;
  }
  .archetype-bottom .underlined-link {
    font-size: 11px;
    gap: 8px;
    white-space: nowrap;
  }
  .politics-copy {
    display: block;
    margin-bottom: 32px;
  }
  .politics-copy h2 {
    font-size: 43px;
  }
  .politics-copy .section-description {
    font-size: 16px;
    max-width: 100%;
    margin-block: 20px 24px;
  }
  .politics-copy .button {
    font-size: 14px;
    padding: 15px 20px;
  }
  .politics-note {
    display: block;
    margin-top: 20px;
  }
  .politics-note a {
    display: inline-block;
    margin-top: 8px;
  }
  .universe-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .game-art,
  .newsletter-art {
    height: 285px;
  }
  .universe-copy {
    padding: 25px 25px 29px;
  }
  .universe-copy h3 {
    font-size: 33px;
  }
  .universe-copy > p {
    font-size: 13px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-mark {
    min-height: 200px;
    order: 2;
  }
  .about-mark img {
    width: 145px;
    height: 145px;
  }
  .about-mark > span {
    margin-top: 24px;
  }
  .about-copy h2 {
    font-size: 48px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 43px;
  }
  .faq-section > div > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .faq-list summary {
    font-size: 12px;
    min-height: 64px;
  }
  .closing-section {
    padding-block: 64px 58px;
  }
  .closing-inner h2 {
    font-size: 65px;
  }
  .closing-inner > .eyebrow {
    font-size: 8px;
  }
  .closing-inner > p:not(.eyebrow) {
    font-size: 13px;
  }
  .closing-mark {
    background-size: 420px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding-bottom: 32px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-top > div > p {
    font-size: 10px;
    margin: 0;
  }
  .site-footer .brand img {
    width: 132px;
  }
  .footer-links {
    font-size: 11px;
    gap: 14px;
  }
  .footer-contact {
    display: block;
    grid-column: 1/-1;
    padding-top: 6px;
  }
  .footer-contact > span {
    margin-bottom: 10px;
  }
  .footer-contact > a {
    font-size: 12px;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    font-size: 8px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .legal-main {
    padding-block: 45px 65px;
  }
  .legal-main h1 {
    font-size: 43px;
  }
  .access-options {
    grid-template-columns: 1fr;
  }
  .credit-entry {
    gap: 15px;
  }
  .credit-entry > img {
    width: 65px;
    height: 84px;
  }
}
@media (max-width: 420px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header-inner {
    gap: 9px;
  }
  .brand img {
    width: 99px;
  }
  .header-actions {
    gap: 9px;
  }
  .header-actions .button-small {
    font-size: 9px;
    padding: 9px 10px;
    gap: 7px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 15px 16px;
    gap: 13px;
  }
  .hero-actions .underlined-link {
    font-size: 11px;
  }
  .hero-art {
    width: 96%;
  }
  .floating-profile strong {
    font-size: 19px;
  }
  .floating-profile .tiny-label {
    font-size: 5.5px;
  }
  .floating-profile {
    left: 18%;
    right: -5px;
  }
  .portrait figcaption {
    font-size: 8px;
    left: 10px;
    bottom: 9px;
  }
  .intro-strip > span {
    font-size: 6.5px;
    max-width: 95px;
  }
  .intro-strip p {
    font-size: 9px;
  }
  .section-heading h2,
  h2 {
    font-size: 39px;
  }
  .archetype-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .archetype-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 17px;
    align-items: center;
  }
  .archetype-caption {
    padding: 0;
  }
  .archetype-caption h3 {
    font-size: 24px;
  }
  .archetype-caption p {
    font-size: 11px;
  }
  .archetype-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .result-panel {
    padding: 23px 19px;
  }
  .result-panel h3 {
    font-size: 33px;
  }
  .priority-list div > span {
    font-size: 8px;
  }
  .window-topbar {
    padding: 15px;
  }
  .window-topbar img {
    width: 62px;
  }
  .demo-badge {
    font-size: 6px;
  }
  .closing-inner h2 {
    font-size: 59px;
  }
}
.hero-art {
  padding-bottom: 0;
}
.floating-profile {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 10px -10px 0 15%;
  padding: 15px 20px;
}
.floating-profile strong {
  font-size: 21px;
}
.identity-stamp {
  top: 39%;
}
.art-credit {
  margin-top: 16px;
}
.hero h1 {
  line-height: 1.02;
}
.hero h1 em {
  margin-top: 4px;
}
@media (max-width: 760px) {
  .hero-art {
    padding-bottom: 0;
  }
  .floating-profile {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 9px -4px 0 15%;
    padding: 13px 17px;
  }
  .floating-profile strong {
    font-size: 19px;
  }
  .identity-stamp {
    top: 36%;
  }
  .art-credit {
    margin-top: 14px;
  }
}
@media (max-width: 760px) {
  html:not(.has-js) .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 16px;
  }
  html:not(.has-js) .main-nav {
    position: static;
    order: 3;
    flex-basis: 100%;
    padding: 12px 0 0;
    border: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .portrait-mosaic,
  .floating-profile,
  .result-window {
    transform: none;
  }
}
