:root {
  --pink: #ed0f5f;
  --soft-pink: #f58ca3;
  --orange: #f6a06b;
  --ink: #111;
  --cream: rgba(255, 244, 235, 0.97);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--soft-pink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: var(--soft-pink);
}

.mobile-landing {
  display: none;
}

.desktop-landing {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--soft-pink);
}

.desktop-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-signup {
  position: absolute;
  z-index: 2;
  left: 8.43%;
  top: 60.47%;
  width: 30.68%;
  height: 5.95%;
  display: flex;
}

.desktop-signup input {
  width: 63.7%;
  height: 100%;
  padding: 0 0 0 4%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(10px, 0.95vw, 18px);
}

.desktop-signup input::placeholder,
.desktop-signup button {
  color: transparent;
}

.desktop-signup button {
  width: 36.3%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.desktop-social {
  position: absolute;
  z-index: 2;
  left: 18.55%;
  top: 85.05%;
  width: 9.85%;
  height: 3.65%;
  display: flex;
  justify-content: space-between;
}

.desktop-social a {
  width: 30%;
  height: 100%;
}

@media (max-width: 760px) {
  .desktop-landing {
    display: none;
  }

  .mobile-landing {
    display: block;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--soft-pink) 0%, var(--orange) 54%, var(--pink) 100%);
  }

  .mobile-media {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  .mobile-media img {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .mobile-signup-card {
    position: relative;
    z-index: 2;
    margin: -32px 16px -32px;
    padding: 18px;
    border-radius: 26px;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(120, 20, 45, 0.24);
    text-align: center;
  }

  .mobile-signup-card form {
    display: grid;
    gap: 10px;
  }

  .mobile-signup-card label {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .mobile-signup-card p {
    max-width: 330px;
    margin: 0 auto 4px;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .mobile-signup-card input,
  .mobile-signup-card button {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: 16px;
  }

  .mobile-signup-card input {
    padding: 0 18px;
    border: 0;
    outline: 0;
    background: #fff;
    color: var(--ink);
    text-align: center;
  }

  .mobile-signup-card button {
    border: 0;
    background: var(--pink);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
  }

  .mobile-products {
    position: relative;
    z-index: 0;
    margin-top: 0;
    background: linear-gradient(180deg, var(--orange), var(--pink));
  }

  .mobile-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 14px 18px 22px;
    background: var(--pink);
    color: var(--ink);
    text-align: center;
  }

  .mobile-badge-item {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 7px;
    padding: 14px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
  }

  .mobile-badge-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 2px solid var(--pink);
    border-radius: 50%;
  }

  .mobile-badge-icon img {
    width: 62%;
    height: 62%;
    object-fit: contain;
  }

  .mobile-badge-item span:last-child {
    font-size: 0.8rem;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-social {
    padding: 20px 16px 22px;
    background: var(--pink);
    color: #fff;
    text-align: center;
  }

  .mobile-social p {
    margin: 0 0 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .mobile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    font-size: 1.35rem;
    transition: background 160ms ease, color 160ms ease;
  }

  .mobile-social a:hover,
  .mobile-social a:focus-visible {
    background: #fff;
    color: var(--pink);
  }

  .mobile-footer {
    background: var(--pink);
    color: #fff;
    text-align: center;
  }

  .mobile-footer div {
    padding: 14px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .mobile-signup-card {
    margin-right: 12px;
    margin-left: 12px;
    padding: 16px;
  }

  .mobile-badges {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
