:root {
  color-scheme: dark;
  --black: #050505;
  --cream: #fff4df;
  --pink: #ff8fc7;
  --blue: #65d6ff;
  --gold: #f6c85f;
  --taupe: #c9bca6;
  --panel: #0d0d0d;
  --line: rgb(255 244 223 / 16%);
  --radius: 1.5rem;
  --shadow: 0 1.5rem 5rem rgb(0 0 0 / 45%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgb(255 143 199 / 10%), transparent 22rem),
    radial-gradient(circle at 90% 34%, rgb(101 214 255 / 8%), transparent 28rem),
    var(--black);
  color: var(--cream);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--cream);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgb(5 5 5 / 92%);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
}

.logo {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

nav a {
  color: var(--taupe);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 4.25rem);
  place-items: center;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 17vw, 8rem);
}

h1 span,
h2 span {
  color: var(--pink);
}

h2 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 9vw, 5rem);
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-tagline {
  max-width: 45rem;
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 650;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-support,
.lead,
.product-card p,
.site-footer p {
  color: var(--taupe);
}

.hero-support {
  margin-bottom: 0;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background: var(--pink);
  color: var(--black);
}

.button-secondary {
  border-color: var(--blue);
  color: var(--blue);
}

.button:hover {
  filter: brightness(1.12);
}

.hero-logo {
  display: block;
  width: min(88vw, 520px);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.story-section,
.drop-section {
  border-block: 1px solid var(--line);
  background: rgb(255 244 223 / 2.5%);
}

.split-layout,
.signup-layout {
  display: grid;
  gap: 2.5rem;
}

.lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.pillar-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 750;
}

.pillar-list span {
  color: var(--gold);
}

.product-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.product-card,
.signup-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
}

.product-card {
  min-height: 15rem;
  padding: 1.5rem;
}

.product-card:nth-child(3n + 2) {
  border-color: rgb(255 143 199 / 35%);
}

.product-card:nth-child(3n + 3) {
  border-color: rgb(101 214 255 / 35%);
}

.card-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.25rem;
}

.product-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.drop-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgb(246 200 95 / 40%);
  border-radius: calc(var(--radius) * 1.25);
  background:
    radial-gradient(circle at 90% 20%, rgb(255 143 199 / 15%), transparent 18rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.sticker-badge {
  display: grid;
  width: 10rem;
  aspect-ratio: 1;
  place-content: center;
  margin: 0 auto;
  transform: rotate(6deg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.drop-preview-section {
  background:
    radial-gradient(circle at 15% 15%, rgb(255 143 199 / 8%), transparent 22rem),
    radial-gradient(circle at 85% 65%, rgb(101 214 255 / 7%), transparent 24rem),
    var(--black);
}

.drop-preview-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.drop-preview-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px rgb(255 255 255 / 4%);
}

.drop-preview-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: calc(var(--radius) * 0.8);
  background: #000;
}

.drop-preview-card h3 {
  margin-bottom: 0;
}

.drop-preview-card p {
  margin-bottom: 0;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

label {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

label span {
  color: var(--taupe);
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--black);
  color: var(--cream);
  font: inherit;
  padding-inline: 0.9rem;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.sister-brand {
  border-top: 1px solid var(--line);
  background: rgb(255 244 223 / 2.5%);
  padding-block: 2rem;
}

.sister-brand p {
  max-width: 58rem;
  margin: 0;
  color: var(--taupe);
  font-size: 0.85rem;
  line-height: 1.75;
}

.sister-brand a {
  color: var(--cream);
  font-weight: 750;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.sister-brand a:hover {
  color: var(--pink);
}

.site-footer p {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.error-card,
.thanks-card {
  width: min(100%, 42rem);
  padding: clamp(2.5rem, 9vw, 6rem) 1.5rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.25);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.thanks-card h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.5rem, 10vw, 5rem);
}

.thanks-card > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--taupe);
}

.thanks-social {
  margin-top: 1.5rem;
  color: var(--taupe);
  font-size: 0.9rem;
}

.thanks-social a {
  color: var(--blue);
  font-weight: 800;
}

.error-card h1 {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.error-code {
  margin-bottom: 1.5rem;
  color: var(--pink);
  font-size: clamp(5rem, 25vw, 11rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

@media (min-width: 42rem) {
  .container {
    width: min(100% - 3rem, 72rem);
  }

  .section {
    padding: 6rem 0;
  }

  .hero-inner,
  .split-layout,
  .signup-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drop-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .drop-card {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 62rem) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .drop-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .signup-form {
    padding: 2rem;
  }
}

@media (max-width: 700px) {
  .hero-logo {
    width: min(92vw, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 41.99rem) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    margin-inline: auto;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

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