:root {
  --pink: #ed0b72;
  --pink-dark: #c90059;
  --orange: #ff7a00;
  --yellow: #ffd537;
  --navy: #101237;
  --blue: #066ee8;
  --green: #13a65a;
  --muted: #c9c8da;
  --surface: #15153f;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(4, 4, 25, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 213, 55, 0.34), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(237, 11, 114, 0.56), transparent 31rem),
    radial-gradient(circle at 45% 90%, rgba(6, 110, 232, 0.34), transparent 33rem),
    linear-gradient(145deg, #0c0d30 0%, #21104b 48%, #120d35 100%);
  background-attachment: fixed;
  font-family: "Manrope", system-ui, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 78%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  z-index: 0;
  inset: -18%;
  background:
    radial-gradient(circle at 22% 32%, rgba(145, 72, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 78% 64%, rgba(215, 37, 186, 0.14), transparent 28rem);
  filter: blur(42px);
  opacity: 0.72;
  pointer-events: none;
  animation: ambient-glow 15s ease-in-out infinite alternate;
}

@keyframes ambient-glow {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(0.98);
    opacity: 0.58;
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.03);
    opacity: 0.82;
  }
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 22%, rgba(237, 11, 114, 0.28), transparent 22rem),
    linear-gradient(145deg, #171744, #0d0e31);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(13, 11, 44, 0.48));
  pointer-events: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.premium-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  padding: 13px 18px;
  color: #fff;
  background: linear-gradient(90deg, #c80767, #f20b7f 42%, #ff7a00);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.premium-strip b {
  color: var(--yellow);
}

.exclusive-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(16, 18, 55, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.brand-stamp {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 4px 18px rgba(16, 18, 55, 0.4);
}

.brand-stamp > span:nth-child(2) span {
  color: #ff4f9c;
}

.brand-stamp strong {
  margin-left: 2px;
  padding: 4px 10px 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 11px;
  font-size: 0.7em;
  letter-spacing: -0.03em;
  transform: rotate(-3deg);
}

.house-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 12px;
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: none;
}

.hero-copy {
  padding: 30px 22px 32px;
  text-align: center;
}

.eyebrow,
.social-heading p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Nunito Sans", system-ui, sans-serif;
}

h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 10vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  color: #ff3c96;
}

.lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.benefit {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px;
  background: linear-gradient(145deg, rgba(40, 41, 72, 0.96), rgba(20, 21, 48, 0.96));
  border: 1px solid rgba(232, 210, 158, 0.2);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(2, 3, 20, 0.18);
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(#f4cf72, #c9912e);
}

.benefit-icon {
  display: grid;
  flex: 0 0 43px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #f5d98a, #c6892a);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  color: #171126;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(237, 11, 114, 0.2);
}

.benefit strong,
.benefit small,
.cta span,
.profile-copy {
  display: block;
}

.benefit strong {
  font-size: 1rem;
}

.benefit small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cta {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 14px 10px 12px;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(19, 166, 90, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(19, 166, 90, 0.34);
}

.cta:focus-visible,
.social-card:focus-visible {
  outline: 4px solid rgba(6, 110, 232, 0.28);
  outline-offset: 3px;
}

.cta-whatsapp {
  max-width: 510px;
  margin-inline: auto;
  background: linear-gradient(135deg, #087a53, #12b875);
  border: 1px solid rgba(126, 255, 197, 0.36);
  box-shadow: 0 18px 42px rgba(9, 155, 98, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta .cta-icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  line-height: 0;
}

.cta-icon svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.cta-copy {
  min-width: 0;
  text-align: left;
}

.cta-copy strong,
.cta-copy small {
  display: block;
}

.cta strong {
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.cta small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.arrow {
  position: absolute;
  right: 16px;
  font-size: 1.7rem;
}

.safe-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.67);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.safe-note span {
  color: #58e698;
}

.social {
  margin-top: 22px;
  padding: 26px 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 71, 155, 0.24), transparent 20rem),
    linear-gradient(135deg, #10123d, #17154d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(16, 18, 55, 0.2);
}

.social-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  justify-content: center;
  text-align: left;
}

.social-mark {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #1b1531;
  background: linear-gradient(145deg, #f7dfa1, #ca922e);
  border-radius: 15px;
  font-size: 1.55rem;
  font-weight: 900;
}

.social-heading p {
  color: #f4cf72;
}

.social-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 7vw, 2.25rem);
  line-height: 1.05;
}

.social-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.social-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 82px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(38, 39, 71, 0.96), rgba(22, 23, 51, 0.96));
  border: 1px solid rgba(232, 210, 158, 0.18);
  border-radius: 18px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 28px rgba(2, 3, 20, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 114, 0.5);
  box-shadow: 0 16px 34px rgba(2, 3, 20, 0.3);
}

.profile-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: linear-gradient(135deg, #7b2cff, #ed0b72 56%, #ff7a00);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 15px;
  font-weight: 900;
}

.profile-avatar svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.instagram-shop .profile-avatar {
  background: linear-gradient(135deg, #4e4de8, #a833d6 55%, #ee367c);
}

.tiktok .profile-avatar {
  background: linear-gradient(135deg, #111426, #232742);
  box-shadow: inset 3px 0 #25f4ee, inset -3px 0 #fe2c55;
}

.youtube .profile-avatar {
  background: linear-gradient(135deg, #ff3348, #b90016);
}

.profile-copy {
  min-width: 0;
}

.profile-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
}

.profile-copy small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.25;
}

.follow-pill {
  padding: 9px 12px;
  color: #f7dfa1;
  background: rgba(244, 207, 114, 0.08);
  border: 1px solid rgba(244, 207, 114, 0.3);
  border-radius: 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.social-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.5;
}

footer {
  display: flex;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 30px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.75rem;
}

footer strong {
  color: #fff;
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .page-shell {
    padding-top: 44px;
  }

  .hero-copy {
    padding: 42px 48px 46px;
  }

  h1 {
    max-width: 800px;
    font-size: clamp(3.1rem, 6vw, 4.55rem);
  }

  .lead {
    max-width: 780px;
    font-size: 1.08rem;
  }

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

  .social {
    padding: 34px;
  }

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

@media (max-width: 620px) {
  .arrow {
    display: none;
  }

  .premium-strip {
    gap: 7px 14px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .premium-strip span:last-child {
    display: none;
  }
}

@media (max-width: 380px) {
  .page-shell {
    width: min(100% - 20px, 1040px);
  }

  .hero-copy {
    padding-inline: 16px;
  }

  .follow-pill {
    display: none;
  }

  .social-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
