* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font: 15px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}
::selection {
  background: var(--color-selection);
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 73px;
  padding: 8px 5%;
  background: var(--color-paper-deep);
  border-bottom: 1px solid var(--color-border);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}
.header-actions nav {
  white-space: nowrap;
}
.header-actions > .button {
  min-width: 164px;
}
.brand img {
  object-fit: contain;
  mix-blend-mode: darken;
}
.site-header nav {
  font-size: 13px;
}
.site-header a:hover,
.site-footer a:hover {
  color: var(--color-rust);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--color-forest);
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 160ms,
    transform 160ms;
}
.button-primary {
  color: var(--color-on-action);
  background: var(--color-action);
}
.button-primary:hover:not(:disabled) {
  background: var(--color-action-hover);
}
.button-primary:active:not(:disabled) {
  transform: translateY(1px);
}
.button-outline {
  background: transparent;
  font-size: 13px;
  padding: 10px 18px;
  min-height: 45px;
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 85vh;
  min-height: 85svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-art,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-art {
  object-fit: cover;
  object-position: center right;
  z-index: -3;
}
.hero-wash {
  background: linear-gradient(
    to right,
    #eee9d8 0%,
    rgb(238 233 216 / 94%) 20%,
    rgb(238 233 216 / 65%) 40%,
    transparent 68%
  );
  z-index: -2;
}
.hero-inner {
  width: 100%;
  max-width: 1248px;
  margin: auto;
  padding: 80px 32px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-forest);
}
.hero h1 {
  margin: 28px 0 32px;
  font-size: clamp(42px, 4.5vw, 72px);
  letter-spacing: -0.035em;
}
.hero h1 em {
  color: var(--color-forest);
}
.hero-description {
  color: var(--color-muted);
  line-height: 2;
  font-size: 18px;
}
.playtest-form {
  max-width: 530px;
  margin-top: 44px;
}
.playtest-form > label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-row input {
  min-width: 0;
  flex: 1;
  width: 100%;
  background: var(--color-surface);
  color: var(--color-ink);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  padding: 12px 16px;
}
.form-row input::placeholder {
  color: #7b857b;
}
.form-row button {
  white-space: nowrap;
}
.form-note {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--color-muted);
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.muted-note {
  font-style: italic;
  margin-top: 4px;
}
.form-status {
  min-height: 24px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-forest);
}
.form-status[data-error='true'] {
  color: #7e361d;
}
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.leaves {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.leaves i {
  position: absolute;
  top: -30px;
  left: 12%;
  width: 12px;
  height: 8px;
  border-radius: 2px 10px;
  background: var(--color-forest);
  animation: fall 14s linear infinite;
  opacity: 0;
}
.leaves i:nth-child(2) {
  left: 35%;
  animation-delay: -8s;
  animation-duration: 17s;
}
.leaves i:nth-child(3) {
  left: 55%;
  animation-delay: -4s;
  animation-duration: 15s;
}
.leaves i:nth-child(4) {
  left: 72%;
  animation-delay: -11s;
  animation-duration: 19s;
}
.leaves i:nth-child(5) {
  left: 88%;
  animation-delay: -6s;
  animation-duration: 16s;
}
.leaves i:nth-child(6) {
  left: 26%;
  animation-delay: -13s;
  animation-duration: 20s;
}
@keyframes fall {
  0% {
    transform: translate(0, -30px) rotate(0);
    opacity: 0;
  }
  15%,
  85% {
    opacity: 0.22;
  }
  100% {
    transform: translate(90px, 95vh) rotate(300deg);
    opacity: 0;
  }
}
.world-section {
  background: var(--color-paper-deep);
  border-block: 1px solid var(--color-border);
}
.world-inner {
  max-width: 1248px;
  margin: auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.world-film {
  min-width: 0;
}
.film-frame {
  aspect-ratio: 74/43;
  background: var(--color-paper-deep);
  mask-image: linear-gradient(to right, black 89%, transparent);
}
.world-film video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.world-film figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 10px;
  color: var(--color-muted);
}
.world-film button {
  padding: 5px 0;
  background: transparent;
  border: 0;
  color: var(--color-forest);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.world-copy .eyebrow {
  color: var(--color-gold);
}
.world-copy h2 {
  margin: 16px 0 44px;
  font-size: 36px;
  letter-spacing: -0.03em;
}
.features {
  display: grid;
  gap: 32px;
}
.features article {
  position: relative;
  transition: transform 220ms ease;
}
.features article::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 14px;
  background: var(--color-gold);
  transform-origin: left;
  transition: width 260ms ease;
}
.features article:hover {
  transform: translateX(4px);
}
.features article:hover::after {
  width: 72px;
}
.features.is-visible article {
  animation: feature-arrive 700ms ease backwards;
}
.features.is-visible article:nth-child(2) {
  animation-delay: 120ms;
}
.features.is-visible article:nth-child(3) {
  animation-delay: 240ms;
}
.features.is-visible article:nth-child(4) {
  animation-delay: 360ms;
}
.features.is-visible h3 span {
  animation: feature-spark 1400ms ease-in-out 3;
}
.features.is-visible article:nth-child(2) h3 span {
  animation-delay: 120ms;
}
.features.is-visible article:nth-child(3) h3 span {
  animation-delay: 240ms;
}
.features.is-visible article:nth-child(4) h3 span {
  animation-delay: 360ms;
}
@keyframes feature-arrive {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes feature-spark {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.18);
  }
}
.features h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--color-forest);
}
.features h3 span {
  display: inline-block;
  margin-right: 8px;
  color: var(--color-gold);
}
.features p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-muted);
}
.back-link {
  display: inline-block;
  margin-top: 42px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1248px;
  min-height: 80px;
  margin: auto;
  padding: 16px 32px;
  background: var(--color-paper-deep);
  font-size: 11px;
  color: var(--color-muted);
}
body:has(.site-footer) {
  background: var(--color-paper-deep);
}
.site-footer > a:last-child {
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.site-footer p {
  border-left: 1px solid var(--color-border);
  padding-left: 24px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  z-index: 20;
  background: var(--color-surface);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.document {
  max-width: 740px;
  margin: 64px auto;
  padding: 0 24px;
}
.document h1 {
  font-size: 42px;
  margin-bottom: 24px;
}
.document h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 10px;
}
.document p {
  margin-bottom: 16px;
}
.document a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 800px) {
  .site-header {
    padding-inline: 20px;
    gap: 12px;
  }
  .site-header nav {
    display: none;
  }
  .site-header .brand img {
    width: 145px;
    height: 48px;
  }
  .site-header .button {
    padding-inline: 13px;
    font-size: 12px;
  }
  .hero {
    min-height: 780px;
  }
  .hero-inner {
    padding: 64px 24px;
  }
  .hero h1 {
    font-size: clamp(40px, 7vw, 60px);
  }
  .hero-wash {
    background: linear-gradient(
      to bottom,
      rgb(238 233 216 / 96%) 10%,
      rgb(238 233 216 / 84%) 50%,
      rgb(238 233 216 / 45%) 100%
    );
  }
  .hero-description {
    font-size: 16px;
  }
  .world-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 24px;
  }
  .world-copy {
    order: -1;
  }
  .world-copy h2 {
    margin-bottom: 32px;
  }
  .features {
    gap: 24px;
  }
  .back-link {
    margin-top: 30px;
  }
  .film-frame {
    mask-image: linear-gradient(to bottom, black 90%, transparent);
  }
  .site-footer {
    gap: 12px;
    padding: 16px 24px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .site-footer p {
    padding-left: 12px;
  }
  .site-footer .brand img {
    width: 84px;
    height: 28px;
  }
}
@media (max-width: 440px) {
  .form-row {
    flex-direction: column;
  }
  .form-row input {
    min-height: 50px;
    font-size: 16px;
  }
  .form-row .button {
    width: 100%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .site-footer p {
    border: 0;
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .features article:hover {
    transform: none;
  }
  .leaves {
    display: none;
  }
}

.language-picker select {
  width: 145px;
  min-height: 45px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-paper-deep);
  color: var(--color-ink);
  font: inherit;
  font-size: 12px;
}
.document > .language-picker {
  display: block;
  margin-bottom: 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (max-width: 800px) {
  .header-actions {
    gap: 0;
  }
  .language-picker select {
    width: 120px;
  }
  .site-header .language-picker {
    margin-left: auto;
  }
  .header-actions > .button {
    display: none;
  }
  html[lang='pt-BR'] .hero h1 {
    font-size: clamp(34px, 7vw, 54px);
  }
}
html[lang='pt-BR'] .playtest-form {
  max-width: 630px;
}

.confirmation-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: var(--color-paper-deep);
  color: var(--color-ink);
  box-shadow: 0 24px 80px rgb(23 42 29 / 25%);
  text-align: center;
}
.confirmation-page {
  max-width: 880px;
  margin-block: 40px;
}
.confirmation-city {
  width: 100%;
  height: clamp(180px, 29vw, 280px);
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--radius-panel);
  margin-bottom: 32px;
}
.confirmation-page h1 {
  max-width: 720px;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.15;
}
.confirmation-page #confirmation-status {
  max-width: 640px;
  margin-bottom: 24px;
}
.confirmation-page #confirmation-thanks {
  max-width: 680px;
  margin-bottom: 24px;
}
.confirmation-page #confirm-updates {
  margin-bottom: 28px;
}
.confirmation-page .confirmation-disclaimer {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-muted);
}
.confirmation-dialog::backdrop {
  background: rgb(23 42 29 / 58%);
  backdrop-filter: blur(4px);
}
#confirmation-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.confirmation-content {
  position: relative;
  padding: 24px clamp(20px, 5vw, 44px) 36px;
}
.confirmation-wordmark {
  display: block;
  width: 180px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px;
  mix-blend-mode: darken;
}
.confirmation-seal {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-on-action);
  font-size: 28px;
}
.confirmation-dialog h2 {
  margin: 8px 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 7vw, 40px);
  line-height: 1.1;
  font-weight: 500;
}
.confirmation-dialog p {
  line-height: 1.65;
}
.confirmation-dialog .confirmation-note {
  margin: 16px 0 24px;
  font-size: 12px;
  color: var(--color-muted);
}
.confirmation-dialog .button {
  width: 100%;
}
