:root {
  --ink: #10110f;
  --paper: #f3f0e7;
  --white: #fffef9;
  --asphalt: #686963;
  --acid: #e9ff55;
  --line: rgba(16, 17, 15, 0.18);
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed",
    "Franklin Gothic Medium", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

img,
svg {
  display: block;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  transform: translateY(-180%);
}

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

.announcement {
  min-height: 34px;
  padding: 8px 20px;
  background: var(--acid);
}

.announcement a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 24px;
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.wordmark-paw {
  display: inline-flex;
  width: 18px;
  margin: 0 2px;
  color: var(--ink);
  transform: rotate(-14deg);
}

.wordmark-paw svg {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--acid);
  color: var(--ink);
  outline: none;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--acid);
}

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

h1,
h2 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  min-height: calc(100svh - 118px);
  padding-block: 64px 58px;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 590px;
  animation: rise 600ms ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.9vw, 7.8rem);
  line-height: 0.8;
}

.hero h1 em {
  display: block;
  color: var(--asphalt);
  font-family: var(--serif);
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
  text-transform: none;
  transform: translateX(8%);
}

.hero-coming {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--asphalt);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--acid);
  color: var(--ink);
  outline: none;
}

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

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  outline: none;
}

.hero-product {
  position: relative;
  margin: 0;
  padding: 46px 24px 0;
  border-block: 1px solid var(--ink);
  background: var(--paper);
  animation: rise 600ms 100ms ease-out both;
}

.hero-product::after {
  position: absolute;
  z-index: 0;
  right: -10px;
  bottom: 78px;
  width: 42%;
  height: 12px;
  background: var(--acid);
  content: "";
  transform: rotate(-1deg);
}

.hero-product-label {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 18px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.hero-product figcaption {
  position: relative;
  z-index: 2;
}

.product-facts {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  min-height: 54px;
  border-top: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-facts > * {
  padding: 0 14px;
  border-right: 1px solid var(--ink);
}

.product-facts > *:first-child {
  padding-left: 0;
}

.product-facts strong {
  justify-self: end;
  padding-right: 0;
  border-right: 0;
  font-size: 18px;
}

.hero-product figcaption small {
  display: block;
  padding: 9px 0 12px;
  color: var(--asphalt);
  font-size: 9px;
  line-height: 1.4;
}

.brand-track {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--acid);
}

.brand-track-inner {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding-inline: 14px;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}

.brand-track-inner b {
  font-size: 0.75em;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.first-drop {
  padding-block: 120px;
}

.first-drop-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.first-drop-copy h2 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: 0.86;
}

.first-drop-copy > p:last-child {
  max-width: 550px;
  margin: 0;
  color: rgba(243, 240, 231, 0.68);
  font-size: clamp(17px, 1.6vw, 21px);
}

.signup-form {
  padding-top: 26px;
  border-top: 1px solid rgba(243, 240, 231, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.form-row input,
.form-row button {
  min-height: 64px;
  border: 1px solid var(--paper);
  border-radius: 0;
}

.form-row input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--paper);
  font-size: 16px;
  outline: none;
}

.form-row input::placeholder {
  color: rgba(243, 240, 231, 0.55);
  opacity: 1;
}

.form-row input:focus {
  box-shadow: inset 0 0 0 2px var(--acid);
}

.form-row button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}

.form-row button:hover,
.form-row button:focus-visible {
  background: var(--acid);
  outline: none;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(243, 240, 231, 0.55);
  font-size: 10px;
}

.door-reset {
  padding-block: 130px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-intro h2 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  line-height: 0.87;
}

.section-intro > p {
  max-width: 390px;
  margin: 0;
  color: var(--asphalt);
  font-size: 18px;
}

.door-reset-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--acid);
}

.door-reset-visual img {
  width: 100%;
  height: auto;
}

.door-reset-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 950;
  letter-spacing: -0.04em;
  transform: rotate(-1.5deg);
}

.closing {
  padding-block: 120px;
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr auto;
  gap: 60px;
  align-items: end;
}

.closing-grid .eyebrow {
  align-self: start;
}

.closing-grid h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.84;
}

.site-footer {
  padding-block: 56px;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(243, 240, 231, 0.22);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.wordmark-footer {
  font-size: clamp(42px, 6vw, 78px);
}

.wordmark-footer .wordmark-paw {
  width: 0.75em;
  color: var(--paper);
}

.footer-meta {
  display: flex;
  gap: 34px;
  color: rgba(243, 240, 231, 0.5);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

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

.success-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
}

.success-main {
  display: grid;
  align-items: center;
  padding-block: 90px;
}

.success-main > div {
  max-width: 980px;
}

.success-main h1 {
  margin-bottom: 32px;
  font-size: clamp(5rem, 11vw, 11rem);
  line-height: 0.78;
}

.success-main h1 em {
  display: block;
  color: var(--asphalt);
  font-family: var(--serif);
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: none;
}

.success-main > div > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--asphalt);
  font-size: clamp(17px, 1.7vw, 22px);
}

.success-footer {
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--asphalt);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.success-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .closing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .closing-grid .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 70px;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 7rem);
  }

  .hero-product {
    margin-top: 8px;
  }

  .first-drop {
    padding-block: 88px;
  }

  .first-drop-grid,
  .section-intro,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .closing-grid .button {
    grid-column: auto;
  }

  .door-reset {
    padding-block: 88px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .announcement a {
    font-size: 8px;
  }

  .site-header {
    min-height: 72px;
  }

  .wordmark {
    font-size: 20px;
  }

  .wordmark-paw {
    width: 15px;
  }

  .nav-cta {
    min-height: 40px;
    gap: 12px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.7rem);
  }

  .hero h1 em {
    transform: translateX(2%);
  }

  .hero .button {
    width: 100%;
  }

  .hero-product {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 40px 12px 0;
  }

  .hero-product-label {
    left: 12px;
  }

  .product-facts {
    grid-template-columns: auto auto 1fr;
    font-size: 10px;
  }

  .product-facts > * {
    padding-inline: 7px;
  }

  .product-facts strong {
    font-size: 11px;
  }

  .brand-track-inner {
    min-height: 50px;
    font-size: 18px;
  }

  .first-drop-copy h2,
  .closing-grid h2 {
    font-size: clamp(3.5rem, 16vw, 5.3rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row button {
    border-top: 0;
  }

  .section-intro h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .door-reset-visual {
    width: calc(100% + 14px);
    margin-left: -7px;
    box-shadow: 7px 7px 0 var(--acid);
  }

  .door-reset-visual figcaption {
    right: 8px;
    bottom: 8px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .closing {
    padding-block: 88px;
  }

  .success-main h1 {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
