:root {
  --magenta: #b51263;
  --magenta-deep: #8d0d4b;
  --charcoal: #242424;
  --ink: #121212;
  --slate: #7e8794;
  --soft-gray: #f1f2f4;
  --line: #dedfe3;
  --white: #ffffff;
  --green: #20b35b;
  --shadow: 0 18px 45px rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: "Nunito Sans", Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0 24%, transparent 24% 28%, rgba(241, 242, 244, 0.7) 28% 52%, transparent 52% 56%, rgba(255, 255, 255, 0.92) 56% 100%),
    var(--soft-gray);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 223, 227, 0.85);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  margin-top: 10px;
  box-shadow: 0 16px 38px rgba(18, 18, 18, 0.14);
}

.brand img {
  width: 86px;
  height: 62px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  background: var(--charcoal);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--magenta);
  background: rgba(181, 18, 99, 0.08);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0 72px;
}

.hero::before,
.leaders::before,
.cta::before {
  content: "++++++++++++";
  position: absolute;
  color: var(--magenta);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  top: 74px;
  right: 24px;
  width: 180px;
  line-height: 1.35;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--magenta);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.hero p,
.about p,
.leader-info p,
.cta p {
  color: #3f3f3f;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.hero p {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 12px 26px rgba(181, 18, 99, 0.28);
}

.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(32, 179, 91, 0.22);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(86vw, 530px);
  aspect-ratio: 1;
  border: 28px solid var(--magenta);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: min(74vw, 480px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transform: translate(36px, -18px);
}

.hero-visual img {
  position: relative;
  width: min(78vw, 480px);
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(18, 18, 18, 0.16));
}

.about,
.lifestyle-panel,
.payout-band,
.products,
.leaders,
.cta {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.about p {
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border-left: 6px solid var(--magenta);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lifestyle-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(181, 18, 99, 0.28), transparent 28%),
    linear-gradient(135deg, #070707, #1d1d1f 62%, #2b1621);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lifestyle-panel h2,
.payout-band h2,
.products h2 {
  color: var(--white);
}

.lifestyle-panel .eyebrow,
.payout-band .eyebrow,
.products .eyebrow {
  color: #ff4f9c;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.benefit-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ff4f9c;
  border: 1px solid rgba(255, 79, 156, 0.55);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.lifestyle-media {
  min-height: 520px;
}

.community-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.community-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}

.community-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.payout-band {
  display: grid;
  gap: 34px;
  margin-top: 36px;
  padding: clamp(42px, 7vw, 76px);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(181, 18, 99, 0.26), transparent 30%),
    linear-gradient(145deg, #08090c, #111218 68%, #2b0d1d);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.diamond {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  background: var(--magenta);
  clip-path: polygon(50% 0, 96% 32%, 78% 100%, 22% 100%, 4% 32%);
}

.payout-band h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 5.5vw, 5.1rem);
  text-transform: uppercase;
}

.payout-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.payout-content strong {
  color: #e02a84;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 800;
  line-height: 0.86;
}

.payout-content p {
  margin: 0;
  padding-left: clamp(22px, 4vw, 46px);
  color: rgba(255, 255, 255, 0.9);
  border-left: 6px solid var(--magenta);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.55;
  text-align: left;
}

.products {
  margin-top: 36px;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 94% 42%, rgba(48, 96, 116, 0.24), transparent 28%),
    linear-gradient(135deg, #252525, #0d0e10 46%, #080808);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-layout {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
  margin-top: 42px;
}

.certifications {
  display: grid;
  align-content: center;
  gap: 18px;
}

.certifications img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 8px;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 48%, rgba(181, 18, 99, 0.52), rgba(181, 18, 99, 0.16) 36%, transparent 37%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.product-card img {
  width: min(100%, 420px);
  height: 190px;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.28));
}

.product-card h3 {
  color: #ffe8f3;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-transform: uppercase;
}

.product-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.leaders {
  padding: 86px 0;
}

.leaders::before {
  top: 92px;
  left: 0;
  width: 170px;
  line-height: 1.35;
}

.section-copy {
  max-width: 760px;
}

.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.leader-grid {
  display: grid;
  gap: 26px;
}

.leader-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.leader-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.leader-card:nth-child(even) .leader-image {
  order: 2;
}

.leader-image {
  min-height: 520px;
  background: var(--soft-gray);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.leader-info p {
  margin: 16px 0 0;
}

.leader-info .role {
  margin: 0 0 12px;
  color: var(--magenta);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.leader-info .button {
  align-self: flex-start;
  margin-top: 26px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
  padding: clamp(34px, 5vw, 54px);
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
}

.cta::before {
  right: -22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.2);
  width: 210px;
  line-height: 1.35;
}

.cta h2 {
  max-width: 820px;
  color: var(--white);
}

.cta .eyebrow {
  color: #ff7dbc;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 16px 38px;
  color: #575757;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.site-footer img {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    justify-content: stretch;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    font-size: 0.76rem;
  }

  .site-header.menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 12px 10px;
    background: rgba(181, 18, 99, 0.06);
    text-align: center;
  }

  .hero,
  .about,
  .lifestyle-panel,
  .payout-content,
  .product-layout,
  .leader-card,
  .leader-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero::before,
  .leaders::before {
    opacity: 0.22;
  }

  .lifestyle-media,
  .community-photo {
    min-height: 420px;
  }

  .payout-content p {
    padding: 24px 0 0;
    border-top: 5px solid var(--magenta);
    border-left: 0;
    text-align: center;
  }

  .certifications {
    grid-template-columns: repeat(5, 1fr);
  }

  .certifications img {
    width: 100%;
    height: 70px;
  }

  .leader-card:nth-child(even) .leader-image {
    order: 0;
  }

  .leader-image {
    min-height: 430px;
  }

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .about,
  .lifestyle-panel,
  .payout-band,
  .products,
  .leaders,
  .cta {
    width: min(100% - 22px, 1180px);
  }

  .brand img {
    width: 64px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2.05rem, 11.5vw, 3.05rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero p {
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
    text-align: center;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual::before {
    border-width: 18px;
  }

  .about,
  .leaders {
    padding: 58px 0;
  }

  .lifestyle-panel,
  .payout-band,
  .products {
    padding: 28px 18px;
  }

  .benefit-list li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .benefit-list span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .lifestyle-media,
  .community-photo {
    min-height: 330px;
  }

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

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

  .product-card {
    min-height: 310px;
  }

  .product-card img {
    height: 150px;
  }

  .leader-image {
    min-height: 360px;
  }

  .leader-info {
    padding: 24px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
}
