@font-face {
  font-family: Clearface;
  src: url("/fonts/clearface.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f5f1e7;
  --muted: #e2e0d6;
  --line: rgba(245, 241, 231, 0.38);
  --ink: #272f28;
  --serif: Clearface, Georgia, serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  border-radius: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 6px;
}
input:focus-visible {
  outline: 0;
  border-color: var(--paper);
}
input:focus-visible + span {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}
button {
  border: 0;
  background: none;
}
button,
input,
dialog {
  font-synthesis: none;
}
[hidden] {
  display: none !important;
}
.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.photograph {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(9px);
  transform: scale(1.045);
  transition: opacity 2.2s ease;
  animation: drift 20s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.photograph--a {
  animation-delay: -4s;
}
.photograph--b {
  animation-direction: alternate-reverse;
  animation-delay: -10s;
}
.photograph.is-visible {
  opacity: 1;
}
.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 10, 0.63),
    rgba(8, 16, 10, 0.61) 45%,
    rgba(8, 16, 10, 0.69)
  );
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("/grain.svg");
  opacity: 0.09;
  mix-blend-mode: soft-light;
}
.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  padding: 88px 46px;
}
.small-type {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.015em;
}
.main {
  display: grid;
  place-items: center;
}
.hero {
  width: 100%;
  text-align: center;
  animation: appear 1.8s both 0.1s;
}
h1 {
  font-weight: 400;
  font-size: clamp(100px, min(11.8vw, 15svh), 184px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  margin: 8px 0 38px;
  padding-right: 0.06em;
  transition:
    font-size 0.65s ease,
    margin 0.65s ease;
}
h1 > span {
  display: block;
}
h1 > span + span {
  margin-top: 0.08em;
  padding-left: 0.035em;
}
.wordmark-motion {
  display: inline-block;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}
.wordmark-motion:disabled {
  cursor: default;
}
.introduction {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0;
}
.join-area {
  margin: 30px auto 0;
  max-width: 480px;
  position: relative;
}
.join-toggle {
  display: inline-flex;
  align-items: center;
  gap: 41px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding: 13px 0 12px;
  border-bottom: 1px solid var(--paper);
  transition:
    gap 0.25s,
    opacity 0.25s;
}
.join-toggle:hover {
  gap: 51px;
}
.join-arrow {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}
.club-rhythm {
  display: grid;
  justify-items: center;
  gap: 4px;
  font-size: 16px;
  font-family: var(--serif);
  line-height: 1.7;
  color: var(--muted);
  margin: 26px auto 0;
  max-width: 36ch;
  text-align: center;
  text-wrap: balance;
  letter-spacing: -0.015em;
}
.footer {
  position: absolute;
  left: 46px;
  bottom: 33px;
  animation: appear 1.8s both 0.4s;
  min-height: 53px;
}
.prompt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prompt-label {
  font-size: 13px;
}
.prompt-title {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.signup-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.55s ease,
    opacity 0.4s ease;
  text-align: left;
}
.signup-inner {
  overflow: hidden;
}
.is-joining .signup-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.is-joining .join-toggle {
  display: none;
}
.is-joining h1 {
  font-size: clamp(80px, 8vw, 113px);
  margin-bottom: 22px;
}
.is-joining .club-rhythm {
  display: none;
}
.is-joining .join-area {
  margin-top: 26px;
}
.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form-heading p {
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.02em;
}
.close-button {
  font: 28px var(--serif);
  padding: 0 3px;
  line-height: 1;
  min-width: 30px;
  min-height: 30px;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field--camera {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font: 14px/1.5 var(--serif);
  letter-spacing: 0;
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font: 16px/1.4 var(--serif);
  padding: 5px 0 10px;
  border-radius: 0;
  transition: border-color 0.2s;
}
.field input::placeholder {
  color: #dddccf;
  opacity: 0.85;
}
.field input[aria-invalid="true"] {
  border-color: #ffd1c2;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 22px;
  font: 14px/1.55 var(--serif);
  cursor: pointer;
  letter-spacing: -0.025em;
}
.consent input {
  accent-color: var(--paper);
  width: 14px;
  height: 14px;
  flex: none;
  margin: 2px 0 0;
}
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 17px;
  font: 17px var(--serif);
  min-width: 165px;
  transition: background 0.2s;
}
.submit-button span + span {
  font: 20px/1 var(--serif);
}
.submit-button:hover {
  background: #fffdf6;
}
.submit-button:disabled {
  opacity: 0.65;
}
.privacy-link {
  font: 14px var(--serif);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.form-message {
  font: 14px/1.6 var(--serif);
  margin: 13px 0 0;
  max-width: 44ch;
  color: #ffe2d5;
}
.form-message:empty {
  margin: 0;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.confirmation {
  text-align: center;
  padding: 12px 0 8px;
}
.confirmation-mark {
  font-size: 39px;
}
.confirmation h2 {
  font: 32px/1.2 var(--serif);
  letter-spacing: -0.035em;
  margin: 8px 0 15px;
}
.confirmation p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.confirmation .confirmation-note {
  font-size: 13px;
  margin-top: 20px;
}
dialog {
  color: var(--paper);
  background: #263129;
  border: 1px solid var(--line);
  width: min(460px, calc(100% - 32px));
  padding: 38px;
  box-shadow: 0 20px 80px #0006;
}
dialog::backdrop {
  background: #121a17aa;
  backdrop-filter: blur(6px);
}
dialog .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
}
dialog h2 {
  font: 36px var(--serif);
  margin: 0 0 25px;
  letter-spacing: -0.025em;
}
dialog p {
  font: 15px/1.7 var(--serif);
}
.noscript {
  position: fixed;
  bottom: 10px;
  left: 20px;
  right: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
  text-align: center;
}
body.motion-paused .photograph {
  animation-play-state: paused;
  transition: none;
}
@keyframes drift {
  from {
    transform: scale(1.045) translate3d(-1.8%, 1.1%, 0) rotate(-0.3deg);
  }
  to {
    transform: scale(1.16) translate3d(1.8%, -1.2%, 0) rotate(0.3deg);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .page {
    padding: 100px 58px;
  }
  .footer {
    left: 58px;
    bottom: 40px;
  }
}
@media (max-width: 700px) {
  .page {
    padding: 80px 23px;
  }
  h1 {
    font-size: clamp(88px, 19vw, 134px);
    margin: 0 0 30px;
    letter-spacing: -0.065em;
  }
  .introduction {
    font-size: 18px;
    line-height: 1.5;
  }
  .join-area {
    margin-top: 26px;
  }
  .join-toggle {
    font-size: 18px;
    gap: 35px;
  }
  .club-rhythm {
    margin: 23px auto 0;
    font-size: 15px;
    line-height: 1.65;
  }
  .prompt-label {
    font-size: 12px;
  }
  .prompt-title {
    font-size: 18px;
  }
  .footer {
    left: 23px;
    bottom: 26px;
  }
  .is-joining h1 {
    font-size: 72px;
    margin-bottom: 19px;
  }
  .is-joining .introduction {
    font-size: 16px;
  }
  .is-joining .join-area {
    margin-top: 24px;
  }
  .fields {
    gap: 17px 18px;
  }
  .form-heading p {
    font-size: 22px;
  }
  .form-message {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .page {
    padding-left: 19px;
    padding-right: 19px;
  }
  .footer {
    left: 19px;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .field--camera {
    grid-column: auto;
  }
  h1 {
    font-size: 84px;
  }
  .prompt-title {
    font-size: 17px;
  }
}
@media (max-height: 720px) and (min-width: 701px) {
  h1 {
    font-size: clamp(88px, min(10vw, 14svh), 136px);
    margin-bottom: 25px;
  }
  .join-area {
    margin-top: 20px;
  }
  .club-rhythm {
    margin-top: 20px;
  }
  .is-joining h1 {
    font-size: 73px;
  }
  .is-joining .introduction {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .photograph {
    will-change: auto;
  }
}
