:root {
  color-scheme: light;
  --ink: #171520;
  --muted: #665f54;
  --paper: #fff2dc;
  --surface: #fff8eb;
  --lime: #c6dc18;
  --orange: #ff681f;
  --yellow: #ffd12a;
  --purple: #7a4ab1;
  --blue: #2e6cff;
  --violet: var(--purple);
  --line: rgba(23, 21, 32, 0.14);
  --shadow: 0 24px 70px rgba(23, 21, 32, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  background:
    linear-gradient(90deg, rgba(23, 21, 32, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 21, 32, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  padding: 24px clamp(18px, 4vw, 64px) 54px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 14%, rgba(198, 220, 24, 0.74), transparent 20%),
    radial-gradient(circle at 78% 16%, rgba(255, 209, 42, 0.6), transparent 22%),
    radial-gradient(circle at 65% 86%, rgba(122, 74, 177, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 242, 220, 0.98), rgba(255, 246, 226, 0.88));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 5% auto;
  z-index: -1;
  width: min(460px, 60vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(23, 21, 32, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand,
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-weight: 800;
}

.brand {
  gap: 10px;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--lime);
  overflow: hidden;
}

.brand__mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav__link {
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.74);
  backdrop-filter: blur(12px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(92vh - 122px);
  margin: 0 auto;
  padding-top: 20px;
}

.hero__content {
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Fredoka", "Space Grotesk", system-ui, sans-serif;
  line-height: 0.9;
}

h1 {
  max-width: 7.8ch;
  color: var(--ink);
  font-size: clamp(5.1rem, 10.4vw, 9rem);
  font-weight: 700;
  text-shadow: 5px 5px 0 rgba(198, 220, 24, 0.55);
}

h1 span {
  display: block;
}

.hero__badge {
  width: fit-content;
  margin: 16px 0 0;
  padding: 9px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--orange);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 700;
}

.hero__copy {
  max-width: 590px;
  margin: 18px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.55;
  color: #34303f;
}

.subscribe {
  width: min(590px, 100%);
  margin-top: 20px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 8px 8px 0 var(--yellow), var(--shadow);
  backdrop-filter: blur(14px);
}

.subscribe__label {
  display: block;
  margin: 2px 0 10px;
  font-weight: 800;
}

.subscribe__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.subscribe input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.subscribe input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 108, 255, 0.16);
}

.subscribe button {
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  white-space: normal;
}

.subscribe button:hover {
  transform: translateY(-1px);
  background: #34252f;
}

.subscribe button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.subscribe__message {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.subscribe__message[data-tone="success"] {
  color: #14794f;
  font-weight: 800;
}

.subscribe__message[data-tone="error"] {
  color: #b33a2d;
  font-weight: 800;
}

.hero__products {
  position: relative;
  min-height: 570px;
}

.product-card {
  position: absolute;
  width: min(350px, 66%);
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 12px 12px 0 rgba(23, 21, 32, 0.14), var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card div {
  position: absolute;
  left: 14px;
  top: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 12px 28px rgba(23, 21, 32, 0.12);
  backdrop-filter: blur(10px);
}

.product-card p {
  margin: 0 0 2px;
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  text-align: left;
}

.product-card--tee {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.product-card--hoodie {
  right: 0;
  bottom: 48px;
  transform: rotate(3deg);
}

.signal-card {
  position: absolute;
  left: 8%;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  width: min(310px, 72%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(23, 21, 32, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.signal-card__dot {
  grid-row: span 2;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 104, 31, 0.18);
}

.signal-card span:last-child {
  color: var(--muted);
}

.drop,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.drop {
  padding: clamp(60px, 9vw, 110px) 0 42px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.drop__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.drop-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1fr);
  min-height: 310px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 7px 7px 0 rgba(23, 21, 32, 0.12);
}

.drop-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.drop-card__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
}

.drop-card__status {
  width: fit-content;
  margin: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.drop-card h3 {
  margin: 42px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.drop-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  flex: 0 0 auto;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero__grid,
  .section-heading,
  .drop__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__products {
    min-height: 760px;
  }

  .product-card {
    width: min(420px, 72%);
  }

  .drop-card {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding: 16px 18px 42px;
  }

  h1 {
    max-width: 7.8ch;
    font-size: clamp(4.3rem, 18vw, 6.2rem);
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__badge {
    margin-top: 12px;
  }

  .subscribe {
    margin-top: 18px;
  }

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

  .subscribe button {
    width: 100%;
  }

  .hero__products {
    min-height: 560px;
  }

  .product-card {
    width: min(330px, 82%);
  }

  .product-card div {
    left: 10px;
    top: 10px;
  }

  .product-card--hoodie {
    bottom: 62px;
  }

  .signal-card {
    left: 0;
    width: min(310px, 92%);
  }

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

  .drop-card img {
    min-height: 0;
    aspect-ratio: 1;
  }

  .drop-card__body {
    min-height: 230px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 120px;
  }

  .nav__link {
    padding: 0 12px;
  }

  .hero__grid {
    gap: 22px;
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(3.75rem, 17vw, 4.6rem);
  }

  .hero__copy {
    line-height: 1.45;
  }

  .hero__products {
    min-height: 500px;
  }

  .product-card {
    width: min(270px, 84%);
  }

  .product-card--hoodie {
    bottom: 72px;
  }
}
