:root {
  --ink: #141316;
  --paper: #f7f5f0;
  --white: #fff;
  --pink: #ff7896;
  --pink-soft: #ffd7e1;
  --pink-pale: #fff0f3;
  --acid: #dfff54;
  --muted: #69656b;
  --line: rgba(20, 19, 22, .14);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  letter-spacing: -.03em;
  font-size: .82rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
}

nav {
  font-size: .72rem;
  font-weight: 700;
}

nav a,
.text-link,
.privacy-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 17px;
  cursor: pointer;
  border: 0;
  border-radius: 100px;
  color: var(--white);
  background: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: clamp(60px, 8vw, 135px);
  min-height: calc(100svh - 76px);
  padding: clamp(90px, 10vh, 135px) 7vw;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .59rem;
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(223, 255, 84, .22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4.8rem, 8.3vw, 9rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.085em;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

h1 em {
  letter-spacing: -.045em;
}

.hero-lede {
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 24px;
  cursor: pointer;
  border: 0;
  border-radius: 100px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 35px rgba(20, 19, 22, .16);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: .55;
  box-shadow: none;
  transform: none;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

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

.text-link {
  font-size: .75rem;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding-left: clamp(35px, 5vw, 80px);
  border-left: 1px solid var(--line);
}

.hero-reference {
  padding: 26px 0 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.reference-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .54rem;
  font-weight: 800;
}

.reference-topline span:last-child {
  color: var(--pink);
  letter-spacing: .04em;
}

.hero-reference blockquote {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.065em;
}

.hero-reference blockquote em {
  color: var(--pink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
}

.hero-reference cite {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .55rem;
  font-style: normal;
  font-weight: 800;
}

.hero-facts {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 28px;
}

.hero-facts > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-facts strong {
  font-size: 1.3rem;
  letter-spacing: -.05em;
}

.hero-facts span,
.hero-facts p {
  color: var(--muted);
  font-size: .56rem;
}

.hero-facts p {
  max-width: 175px;
  margin: 0 0 0 auto;
  line-height: 1.45;
}

.hero-facts p em {
  color: var(--ink);
  font-weight: 800;
}

.waitlists {
  padding: clamp(90px, 11vw, 165px) 5vw;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1380px;
  margin: 0 auto 55px;
}

.section-heading .eyebrow {
  margin: 0 0 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 7.8vw, 8rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.075em;
}

.section-heading h2 em {
  letter-spacing: -.035em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1380px;
  margin: 0 auto;
}

.waitlist-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.waitlist-card:hover {
  z-index: 2;
  box-shadow: 0 28px 65px rgba(20, 19, 22, .12);
  transform: translateY(-7px);
}

.card-light {
  background: var(--white);
}

.card-pink {
  border-color: transparent;
  background: var(--pink);
}

.card-dark {
  color: var(--white);
  background: var(--ink);
}

.card-topline,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tier-badge {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .52rem;
  font-weight: 800;
}

.card-number {
  color: currentColor;
  opacity: .5;
  font-size: .7rem;
  font-weight: 700;
}

.card-content {
  margin: auto 0;
}

.card-content h3 {
  max-width: 360px;
  margin-bottom: 17px;
  font-size: clamp(2.7rem, 4.1vw, 4.3rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.065em;
}

.card-content p {
  max-width: 270px;
  margin: 0;
  opacity: .67;
  font-size: .77rem;
  line-height: 1.55;
}

.card-footer {
  padding-top: 18px;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
}

.card-footer > span {
  font-size: .61rem;
  font-weight: 700;
}

.card-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.card-dark .card-button {
  color: var(--ink);
  background: var(--acid);
}

.card-button:hover {
  transform: rotate(45deg);
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  min-height: 330px;
  padding: 70px 7vw;
  color: var(--white);
  background: var(--ink);
}

.final-cta .eyebrow {
  margin-bottom: 13px;
  color: var(--pink);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .85;
  letter-spacing: -.075em;
}

.final-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-action small {
  color: rgba(255,255,255,.48);
  font-size: .55rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  padding: 35px 5vw;
  color: var(--white);
  background: var(--ink);
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--pink);
}

footer p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
}

.privacy-link {
  justify-self: end;
  padding: 0;
  cursor: pointer;
  border: 0;
  color: rgba(255,255,255,.7);
  background: transparent;
  font-size: .64rem;
}

.signup-dialog,
.privacy-dialog {
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
}

.signup-dialog {
  width: min(92vw, 580px);
  max-height: min(90dvh, 790px);
}

.signup-dialog[open],
.privacy-dialog[open] {
  animation: dialog-in 220ms ease-out;
}

.signup-dialog::backdrop,
.privacy-dialog::backdrop {
  background: rgba(11, 10, 12, .72);
  backdrop-filter: blur(7px);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0 0 2px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247,245,240,.8);
  font-size: 1.25rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.dialog-close:disabled {
  cursor: wait;
  opacity: .4;
}

.dialog-intro {
  padding: 42px 38px 28px;
  background: var(--pink-soft);
}

.dialog-intro .eyebrow {
  margin-bottom: 12px;
}

.dialog-intro h2,
.success-state h2,
.privacy-dialog h2 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 4.7rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.07em;
}

.signup-form {
  display: flex;
  flex-direction: column;
  padding: 30px 38px 34px;
}

.signup-form label:not(.consent) {
  display: block;
  margin-bottom: 15px;
}

.signup-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: .65rem;
  font-weight: 800;
}

.signup-form input[type="text"],
.signup-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  outline: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-size: .79rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,120,150,.22);
}

.signup-form small {
  display: none;
  margin-top: 5px;
  color: #b12645;
  font-size: .61rem;
}

.signup-form .invalid small {
  display: block;
}

.signup-form .invalid input,
.signup-form .invalid select {
  border-color: #b12645;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 2px 0 20px;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.consent.invalid {
  color: #b12645;
}

.consent small {
  grid-column: 2;
}

.form-error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #8b1832;
  background: #ffe3e9;
  font-size: .65rem;
}

.form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-form[aria-busy="true"] {
  cursor: wait;
}

.signup-form[aria-busy="true"] input,
.signup-form[aria-busy="true"] select {
  opacity: .62;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 11px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .57rem;
}

.success-state {
  min-height: 540px;
  padding: 90px 45px;
  text-align: center;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 1.45rem;
  font-weight: 800;
}

.success-state .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}

.success-state p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: .83rem;
}

.success-state h2:focus {
  outline: none;
}

.privacy-dialog {
  width: min(90vw, 520px);
  padding: 58px 42px 42px;
}

.privacy-dialog .eyebrow {
  margin-bottom: 14px;
}

.privacy-dialog h2 {
  margin-bottom: 22px;
}

.privacy-dialog > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

:focus-visible {
  outline: 3px solid #276ee8;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding-right: 4vw;
    padding-left: 4vw;
  }

  .card-content h3 {
    font-size: 3.1rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0 18px;
  }

  nav {
    display: none;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: .65rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding: 72px 20px 55px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: .55rem;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 18px;
  }

  .button {
    min-height: 50px;
    padding: 0 19px;
    font-size: .72rem;
  }

  .text-link {
    font-size: .68rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 42px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-reference {
    padding-top: 0;
    border-top: 0;
  }

  .reference-topline {
    margin-bottom: 28px;
  }

  .hero-reference blockquote {
    font-size: clamp(3.3rem, 14.5vw, 4.6rem);
  }

  .hero-facts {
    grid-template-columns: auto auto;
    gap: 18px 25px;
  }

  .hero-facts p {
    grid-column: 1 / -1;
    max-width: none;
    margin: 2px 0 0;
  }

  .waitlists {
    padding: 70px 0 95px;
    overflow: hidden;
  }

  .section-heading {
    display: block;
    padding: 0 20px;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .card-grid {
    display: flex;
    gap: 13px;
    padding: 0 20px 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .card-grid::-webkit-scrollbar {
    display: none;
  }

  .waitlist-card {
    flex: 0 0 min(84vw, 345px);
    min-height: 430px;
    padding: 24px;
    border-radius: 24px;
    scroll-snap-align: center;
  }

  .waitlist-card:hover {
    box-shadow: none;
    transform: none;
  }

  .card-content h3 {
    font-size: 3.2rem;
  }

  .final-cta {
    display: block;
    min-height: 360px;
    padding: 70px 20px;
  }

  .final-cta h2 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .final-action {
    align-items: flex-start;
    margin-top: 55px;
  }

  footer {
    grid-template-columns: 1fr auto;
    min-height: 140px;
    padding: 35px 20px;
  }

  footer p {
    display: none;
  }

  .signup-dialog {
    width: 100%;
    max-height: 94dvh;
    margin: auto 0 0;
    border-radius: 26px 26px 0 0;
  }

  .dialog-intro {
    padding: 35px 24px 22px;
  }

  .dialog-intro h2,
  .success-state h2,
  .privacy-dialog h2 {
    font-size: 3.3rem;
  }

  .signup-form {
    padding: 25px 24px 28px;
  }

  .success-state {
    min-height: 510px;
    padding: 85px 24px;
  }

  .privacy-dialog {
    width: calc(100% - 24px);
    padding: 55px 24px 28px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
