@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/space-grotesk-regular-637578d47b0e.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/space-grotesk-bold-8fb63865c6af.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/space-mono-regular-508a2a382b46.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/space-mono-bold-35da133403a9.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --teal: #0e7c7b;
  --teal-dark: #0b5e5d;
  --cream: #fffbf2;
  --cream-deep: #f3e7ce;
  --ink: #241c15;
  --muted: #4a3f33;
  --coral: #e4572e;
  --gold: #e8a93b;
  --border: 3px solid var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--cream);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
}
body {
  margin: 0;
  min-width: 320px;
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.wrapper {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px;
  z-index: 5;
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.wordmark img {
  border-radius: 10px;
}
.soon-badge,
.store-badge em {
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  background: var(--gold);
  font:
    700 11px "Space Mono",
    monospace;
  letter-spacing: 0.08em;
  padding: 7px 13px;
  text-transform: uppercase;
}
.hero {
  display: grid;
  gap: 40px;
  padding: 54px 0 72px;
}
.hero-art {
  display: grid;
  place-items: center;
  min-height: 310px;
}
.card-fan {
  position: relative;
  width: 300px;
  height: 300px;
}
.fan-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  aspect-ratio: 3 / 4;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  transform-origin: 50% 190%;
}
.fan-card svg {
  height: auto;
  width: 52%;
}
.card-one {
  background: radial-gradient(120% 120% at 30% 20%, #4fa9a0, var(--ink));
  transform: translate(-50%, -50%) rotate(-34deg);
}
.card-two {
  background: radial-gradient(120% 120% at 30% 20%, #6e8fb5, var(--ink));
  transform: translate(-50%, -50%) rotate(-17deg);
}
.card-three {
  background: radial-gradient(120% 120% at 30% 20%, #f2794f, var(--ink));
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, -50%);
}
.card-four {
  background: radial-gradient(120% 120% at 30% 20%, #e8a93b, var(--ink));
  transform: translate(-50%, -50%) rotate(17deg);
}
.card-five {
  background: radial-gradient(120% 120% at 30% 20%, #a472a8, var(--ink));
  transform: translate(-50%, -50%) rotate(34deg);
}
.eyebrow {
  color: var(--muted);
  font:
    700 12px "Space Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.03;
}
h1 {
  font-size: clamp(42px, 7vw, 68px);
  margin: 12px 0 16px;
  max-width: 10ch;
}
h1 span {
  color: var(--teal);
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 8px 0 24px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 53ch;
}
.lead strong {
  color: var(--ink);
}
.signup {
  margin-top: 30px;
  max-width: 490px;
}
.signup-area {
  position: relative;
}
.signup-controls > label,
.attribution legend {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.email-field {
  align-items: center;
  background: white;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex: 1 1 230px;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
}
.email-field svg {
  color: var(--muted);
  flex: none;
  height: 20px;
  width: 20px;
}
.email-field input {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  width: 100%;
}
button {
  background: var(--teal);
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  color: white;
  font-weight: 700;
  min-height: 54px;
  padding: 0 22px;
}
button:hover {
  background: var(--teal-dark);
}
button:active {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}
button:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
.turnstile {
  border: 0;
  margin-top: 12px;
  min-height: 0;
  padding: 0;
}
.form-status {
  color: var(--muted);
  font:
    400 13px "Space Mono",
    monospace;
  min-height: 1.5em;
  margin: 10px 0 0;
}

.signup-success,
.attribution-success {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: 7px 8px 0 var(--ink);
  display: grid;
  gap: 8px;
  inset: 0;
  padding: 24px 28px;
  place-content: center start;
  position: absolute;
}
.signup-success[hidden],
.attribution-success[hidden] {
  display: none;
}
.signup.is-complete .signup-controls {
  visibility: hidden;
}
.attribution.is-complete .attribution-controls {
  display: none;
}
.signup-success strong,
.attribution-success strong {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.signup-success span,
.attribution-success span {
  color: var(--muted);
  font-size: 1.05rem;
}
.form-status.is-error {
  color: #8f2626;
}
.form-note {
  color: var(--muted);
  font:
    400 12px "Space Mono",
    monospace;
  line-height: 1.5;
  margin: 10px 0 0;
}
.how,
.platforms,
.faq {
  border-top: 2px dashed #d9c49c;
  padding: 54px 0;
}
.steps-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps-list li {
  background: #fbf4e7;
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
  padding: 20px;
}
.steps-list strong {
  color: var(--teal);
  font-size: 20px;
}
.steps-list span {
  color: var(--muted);
  line-height: 1.5;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-badge {
  align-items: center;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  color: var(--cream);
  display: flex;
  gap: 12px;
  min-height: 68px;
  padding: 10px 14px;
  position: relative;
}
.store-badge small,
.store-badge strong {
  display: block;
}
.store-badge strong {
  font-size: 20px;
  line-height: 1.1;
}
.store-icon {
  flex: none;
  height: 38px;
  width: 38px;
}
.store-icon-apple {
  fill: currentColor;
}
.store-icon-play {
  fill: currentColor;
  overflow: visible;
}
.store-badge em {
  background: var(--coral);
  box-shadow: none;
  color: white;
  font-style: normal;
  margin-left: 6px;
  padding: 4px 7px;
}
.platform-note {
  color: var(--muted);
  font:
    400 13px "Space Mono",
    monospace;
  margin: 20px 0 0;
}
.faq details {
  border-bottom: 2px solid #d9c49c;
  padding: 17px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}
.faq details p {
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 0;
  max-width: 65ch;
}
.footer {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font:
    400 12px "Space Mono",
    monospace;
  gap: 12px 24px;
  justify-content: space-between;
  padding-bottom: 32px;
}
.legal,
.confirmed {
  max-width: 760px;
  padding: 64px 0;
}
.legal h1,
.confirmed h1 {
  max-width: 14ch;
}
.legal h2 {
  font-size: 24px;
  margin: 38px 0 8px;
}
main.legal p {
  color: var(--muted);
  line-height: 1.65;
}
.legal p strong {
  color: var(--ink);
}
.attribution {
  background: #fbf4e7;
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  margin-top: 26px;
  padding: 22px;
}
.attribution-area {
  position: static;
}
.attribution-success {
  position: static;
}
.attribution.is-complete {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.attribution fieldset {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
}
.attribution label {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 40px;
  padding: 8px 2px;
}
.attribution .radio {
  appearance: none;
  background: var(--cream);
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: grid;
  flex: none;
  height: 24px;
  margin: 0;
  place-items: center;
  transition:
    background 150ms ease-out,
    box-shadow 150ms ease-out,
    transform 150ms ease-out;
  width: 24px;
}
.attribution .radio::after {
  background: white;
  border-radius: 999px;
  content: "";
  height: 10px;
  transform: scale(0);
  transition: transform 180ms ease-out;
  width: 10px;
}
.attribution .radio:checked {
  background: var(--teal);
}
.attribution .radio:checked::after {
  transform: scale(1);
}
.attribution .radio:active {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}
.attribution .radio:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
@media (min-width: 760px) {
  .hero {
    align-items: center;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 56px;
    padding-top: 78px;
  }
  .hero-art {
    order: 0;
  }
  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .wrapper {
    width: min(100% - 32px, 1040px);
  }
  .topbar {
    padding-top: 18px;
  }
  .hero {
    padding-top: 30px;
  }
  .hero-art {
    min-height: 265px;
    transform: scale(0.85);
  }
  .form-row > button {
    flex: 1;
  }
  .store-badge {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}
