* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #030a2a;
  --bg-2: #06113c;
  --blue: #0c48ff;
  --cyan: #13b8ff;
  --yellow: #ffc400;
  --pink: #ff187f;
  --text: #f7f9ff;
  --muted: #aab5d2;
  --border: rgba(93, 128, 255, .35);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 15%, rgba(16, 82, 255, .18), transparent 30%),
    linear-gradient(180deg, #020722 0%, #06123d 50%, #020822 100%);
}

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

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  height: 62px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2, 7, 28, .92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.3px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #07112e;
  font-weight: 1000;
  font-size: 21px;
  box-shadow: 0 0 18px rgba(255,196,0,.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8d0e3;
  font-size: 13px;
}

.nav-links a:hover { color: white; }
.instagram-link { font-size: 22px; margin-left: 22px; }
.menu-btn { display: none; background: none; color: white; border: 0; font-size: 26px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 405px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 60%, rgba(8, 83, 255, .42), transparent 33%),
    linear-gradient(90deg, rgba(1,7,35,.95) 0%, rgba(2,9,42,.55) 52%, rgba(2,9,42,.08) 100%);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  right: 11%;
  top: -230px;
  border: 1px solid rgba(14, 151, 255, .5);
  box-shadow: 0 0 90px rgba(0,98,255,.25);
}

.hero-grid {
  position: relative;
  min-height: 405px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
}

h1 {
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -2.5px;
  font-weight: 900;
}

h1 span { color: var(--yellow); }

.hero-text {
  color: #c0c9dd;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0;
}

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

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.btn:hover, .small-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-yellow {
  background: var(--yellow);
  color: #07102b;
  box-shadow: 0 8px 28px rgba(255,196,0,.2);
}

.btn-outline {
  border: 1px solid rgba(35, 110, 255, .75);
  background: rgba(5, 23, 75, .5);
}

.members {
  margin-top: 18px;
  font-size: 12px;
  color: #aeb9d2;
}
.members strong { color: var(--yellow); }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 405px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.people {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0;
  padding-top: 25px;
}

.person {
  width: 45%;
  height: 91%;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.person-head {
  position: absolute;
  top: 10px;
  font-size: 118px;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,.35));
}

.person::after {
  content: "";
  width: 175px;
  height: 230px;
  border-radius: 70px 70px 12px 12px;
  background: linear-gradient(145deg, #121a28, #05070d);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 -30px 70px rgba(11,74,255,.15);
}

.person-woman::after { background: linear-gradient(145deg, #15141c, #05060c); }

.laptop {
  position: absolute;
  z-index: 3;
  bottom: 8px;
  width: 210px;
  height: 112px;
  border: 8px solid #1b2b4a;
  border-radius: 10px 10px 5px 5px;
  display: grid;
  place-items: center;
  font-size: 42px;
  color: #060b18;
  box-shadow: 0 12px 20px rgba(0,0,0,.4);
}

.laptop-dark { background: #7f8a9a; }
.laptop-pink { background: #c78d8b; }

.floating-tag {
  position: absolute;
  z-index: 5;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  transform: rotate(-15deg);
}
.tag-yellow { left: 15%; top: 25%; background: var(--yellow); color: #062; }
.tag-blue { right: 8%; top: 8%; background: #0fc8ff; color: #073068; border-radius: 50%; }

.visual-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 11px 18px;
  border: 1px solid rgba(25,130,255,.75);
  border-radius: 8px;
  background: rgba(8, 40, 108, .78);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  z-index: 8;
}

.section {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: 20px;
  letter-spacing: -.4px;
  font-weight: 900;
}
.section-heading p {
  color: #aab5d0;
  font-size: 12px;
  margin-top: 3px;
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.group-card {
  min-height: 122px;
  padding: 18px 28px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid;
}

.group-men {
  border-color: rgba(0,115,255,.65);
  background: linear-gradient(110deg, rgba(8,48,135,.75), rgba(2,19,67,.75));
}

.group-women {
  border-color: rgba(255,29,126,.55);
  background: linear-gradient(110deg, rgba(89,7,70,.72), rgba(40,5,45,.75));
}

.avatar {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 37px;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.04), 0 0 28px rgba(0,89,255,.22);
}
.avatar-blue { background: #0849f4; }
.avatar-pink { background: #be0966; }

.group-content { flex: 1; }
.group-content h3 { font-size: 18px; margin-bottom: 3px; }
.group-content p {
  color: #d0d7e7;
  font-size: 11px;
  line-height: 1.45;
  max-width: 430px;
}

.small-btn {
  display: inline-flex;
  margin-top: 9px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}
.small-btn.blue { background: #0788ff; }
.small-btn.pink { background: #e00075; }

.stores { padding-top: 10px; padding-bottom: 12px; }

.store-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}

.store {
  min-height: 61px;
  border-radius: 9px;
  background: #f7f7f7;
  color: #172038;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.store.nike { font-style: italic; font-size: 22px; }
.store.centauro { color: #d42a2a; font-size: 11px; }
.store.netshoes { color: #31207e; font-size: 12px; }
.store.adidas { font-size: 19px; }
.store.kabum { color: #0789c8; }
.store.magalu { color: #167be8; }
.store.shopee { color: #ef5b35; }
.store.more { background: #071b4d; color: var(--yellow); border: 1px solid #26498b; font-size: 25px; }
.store.more small { display: block; font-size: 8px; color: var(--yellow); }

.how { padding-top: 10px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  display: flex;
  gap: 12px;
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.step:last-child { border-right: 0; }
.step-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: #07112f;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}
.step strong { font-size: 12px; }
.step p { color: #aab5ce; font-size: 10px; line-height: 1.4; margin-top: 3px; }

.instagram-banner, .alert-banner {
  margin-top: 14px;
  border-radius: 9px;
  min-height: 65px;
  display: flex;
  align-items: center;
  padding: 11px 22px;
}

.instagram-banner {
  background: linear-gradient(90deg, #0646c9, #5a0961);
}

.ig-icon { font-size: 38px; margin-right: 15px; }
.ig-copy { display: flex; flex-direction: column; gap: 2px; font-size: 11px; }
.ig-copy strong { font-size: 14px; }
.ig-copy b { color: white; }
.ig-message { margin-left: auto; font-size: 12px; font-weight: 700; }
.btn-instagram { background: linear-gradient(90deg, #ff405f, #d51c82); margin-left: 24px; min-height: 36px; font-size: 11px; }

.alert-banner {
  margin-bottom: 15px;
  background: var(--yellow);
  color: #09122e;
}
.alert-icon { font-size: 32px; margin-right: 17px; }
.alert-copy { display: flex; flex-direction: column; }
.alert-copy strong { font-size: 14px; }
.alert-copy span { font-weight: 800; font-size: 13px; }
.alert-copy small { font-size: 10px; }
.btn-dark { margin-left: auto; background: #06143d; color: white; min-height: 38px; font-size: 11px; }

.footer {
  background: #02071c;
  padding: 14px 0;
  color: #7f8ba9;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-brand .brand-mark { width: 31px; height: 31px; font-size: 17px; }
.footer-brand strong { color: white; font-size: 12px; display: block; }
.footer-brand small { display: block; font-size: 9px; margin-top: 2px; }
.footer-links { margin-left: auto; display: flex; gap: 25px; font-size: 10px; }
.affiliate-note { font-size: 9px; border-left: 1px solid #28314c; padding-left: 20px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 45px; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .members { justify-content: center; }
  .hero-visual { min-height: 350px; }
  .store-row { grid-template-columns: repeat(5, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid rgba(255,255,255,.08); }
  .ig-message { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1240px); }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero { min-height: 650px; }
  .hero-grid { min-height: 650px; }
  h1 { font-size: 42px; }
  .hero-visual { min-height: 310px; }
  .person { width: 47%; }
  .person::after { width: 130px; height: 180px; }
  .person-head { font-size: 86px; }
  .laptop { width: 155px; height: 84px; font-size: 28px; }
  .visual-badge { font-size: 9px; padding: 9px; bottom: 8px; }
  .group-grid { grid-template-columns: 1fr; }
  .group-card { padding: 16px; }
  .store-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; }
  .instagram-banner, .alert-banner { flex-wrap: wrap; gap: 10px; }
  .btn-instagram, .btn-dark { margin-left: 0; }
  .footer-inner { flex-wrap: wrap; }
  .footer-links { margin-left: 0; width: 100%; }
  .affiliate-note { width: 100%; border-left: 0; padding-left: 0; }
}
