/* ===================== NETWORK HERO ===================== */
#net-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.net-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 10% 55%, rgba(5,5,8,.7) 0%, transparent 70%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(5,5,8,.9) 0%, transparent 62%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(5,5,8,.55) 0%, transparent 65%);
}

.net-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 32px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 72px;
  align-items: center;
}

.net-hero-text { min-width: 0; }

.net-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,204,255,.06);
  border: 1px solid rgba(0,204,255,.2);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up .7s var(--ease) .3s both;
}

.net-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0,204,255,.6);
  animation: pulse 1.8s ease-in-out infinite;
}

.net-title {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 22px;
}

.net-title .rl { display: block; }
.net-title .accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.net-lead {
  font-size: 15px;
  font-weight: 300;
  color: #9ea3b4;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 500px;
}

.net-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.net-hero-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 400;
  color: #9ea3b4;
}

.net-hero-meta strong {
  display: block;
  font-size: 24px;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}

.net-hero-meta .sep {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
}

/* — Commission card (right side) — */
.net-hero-card {
  opacity: 0;
  animation: fade-up .9s var(--ease) .8s both;
}

.net-commission {
  background: rgba(8,8,18,.82);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 0 1px rgba(0,204,255,.06),
    0 40px 100px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.net-com-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(255,255,255,.01);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.net-com-title {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.net-com-rate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  color: var(--cyan);
  padding: 4px 10px;
  background: rgba(0,204,255,.08);
  border: 1px solid rgba(0,204,255,.2);
  border-radius: 999px;
  letter-spacing: .04em;
}

.net-com-rate::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0,204,255,.5);
  animation: pulse 1.8s infinite;
}

.net-com-body {
  padding: 22px 20px 16px;
  text-align: center;
}

.net-com-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9095a5;
  margin-bottom: 10px;
}

.net-com-val {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.net-com-val .currency {
  font-size: 20px;
  color: #9095a5;
  margin-right: 6px;
  background: none;
  -webkit-text-fill-color: #9095a5;
}

.net-com-delta {
  font-size: 11px;
  font-weight: 400;
  color: #22c55e;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.net-com-delta svg { vertical-align: -2px; margin-right: 4px; }

.net-com-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.net-com-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 10px rgba(0,204,255,.4);
  animation: netBarGrow 1.8s cubic-bezier(.16,1,.3,1) 1s forwards;
}

@keyframes netBarGrow {
  from { width: 0; }
  to { width: 72%; }
}

.net-com-progress {
  font-size: 10.5px;
  font-weight: 300;
  color: #9095a5;
  letter-spacing: .02em;
}

.net-com-list {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.01);
}

.net-com-section {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #82869a;
  margin-bottom: 10px;
}

.net-com-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  transition: background .25s;
}

.net-com-row:hover {
  background: rgba(0,204,255,.03);
}

.net-com-row + .net-com-row {
  border-top: 1px solid rgba(255,255,255,.04);
}

.net-com-row-av {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.net-com-row-info { flex: 1; min-width: 0; }

.net-com-row-info strong {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.net-com-row-info span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  color: #9095a5;
  margin-top: 1px;
}

.net-com-row-stat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.net-com-row-stat.ok { background: rgba(34,197,94,.08); color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.net-com-row-stat.prog { background: rgba(0,204,255,.08); color: var(--cyan); border: 1px solid rgba(0,204,255,.2); }
.net-com-row-stat.pend { background: rgba(255,170,0,.07); color: #ffcc44; border: 1px solid rgba(255,170,0,.2); }

/* Scroll hint */
.net-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fade-up .6s var(--ease) 1.4s both;
}

.net-scroll-hint span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .25em;
  color: #787d8f;
  text-transform: uppercase;
}

/* ===================== BENEFITS (4 cards) ===================== */
.net-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.net-benefit {
  position: relative;
  padding: 32px 26px 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}

.net-benefit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 180px at var(--gx,50%) var(--gy,50%), rgba(0,204,255,.07), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.net-benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(0,204,255,.2);
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 40px rgba(0,204,255,.06);
}
.net-benefit:hover::after { opacity: 1; }

.net-benefit-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  background: rgba(0,204,255,.08);
  border: 1px solid rgba(0,204,255,.2);
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}

.net-benefit:hover .net-benefit-ic {
  transform: rotate(-6deg) scale(1.06);
}

.net-benefit-ic.purple { color: var(--purple); background: rgba(123,45,255,.08); border-color: rgba(123,45,255,.2); }
.net-benefit-ic.green  { color: #22c55e; background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.2); }
.net-benefit-ic.blue   { color: #6699ff; background: rgba(0,102,255,.08); border-color: rgba(0,102,255,.2); }

.net-benefit h3 {
  font-size: 16px;
  font-weight: 500;
  color: #ddd;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.net-benefit p {
  font-size: 13px;
  font-weight: 300;
  color: #9ea3b4;
  line-height: 1.7;
}

/* ===================== COMO FUNCIONA (timeline 5 steps) ===================== */
.net-steps {
  position: relative;
  margin-top: 72px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.net-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,204,255,.25) 10%, rgba(123,45,255,.25) 90%, transparent 100%);
}

.net-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 14px 0;
  align-items: start;
}

.net-step + .net-step { margin-top: 16px; }

.net-step-num {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #08080d;
  border: 1px solid rgba(0,204,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}

.net-step:hover .net-step-num {
  transform: scale(1.08);
  border-color: rgba(0,204,255,.6);
  box-shadow: 0 0 24px rgba(0,204,255,.22);
}

.net-step:nth-child(2) .net-step-num { color: #b090ff; border-color: rgba(123,45,255,.28); }
.net-step:nth-child(2):hover .net-step-num { border-color: rgba(123,45,255,.6); box-shadow: 0 0 24px rgba(123,45,255,.22); }
.net-step:nth-child(3) .net-step-num { color: #22c55e; border-color: rgba(34,197,94,.28); }
.net-step:nth-child(3):hover .net-step-num { border-color: rgba(34,197,94,.6); box-shadow: 0 0 24px rgba(34,197,94,.22); }
.net-step:nth-child(4) .net-step-num { color: #6699ff; border-color: rgba(0,102,255,.28); }
.net-step:nth-child(4):hover .net-step-num { border-color: rgba(0,102,255,.6); box-shadow: 0 0 24px rgba(0,102,255,.22); }
.net-step:nth-child(5) .net-step-num { color: #ffcc44; border-color: rgba(255,170,0,.3); }
.net-step:nth-child(5):hover .net-step-num { border-color: rgba(255,170,0,.6); box-shadow: 0 0 24px rgba(255,170,0,.22); }

.net-step-body { padding: 10px 0 14px; }

.net-step-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: #ddd;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  line-height: 1.35;
}

.net-step-body p {
  font-size: 13px;
  font-weight: 300;
  color: #9ea3b4;
  line-height: 1.75;
  max-width: 560px;
}

.net-steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================== SOBRE (3 paragraphs card) ===================== */
.net-about {
  margin-top: 72px;
  padding: 48px 40px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,204,255,.07), transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(123,45,255,.07), transparent 70%),
    rgba(10,10,18,.4);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.net-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 32px);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 80%);
  pointer-events: none;
}

.net-about-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.net-about p {
  font-size: 15px;
  font-weight: 300;
  color: #b3b8c8;
  line-height: 1.85;
  letter-spacing: -.005em;
}

.net-about p + p { margin-top: 20px; }

.net-about p.lead {
  font-size: 18px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 24px;
}

.net-about-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ===================== FORM ===================== */
.net-form-wrap {
  margin-top: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 48px 48px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,204,255,.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(123,45,255,.06), transparent 60%),
    rgba(8,8,14,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.net-form-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,204,255,.3), transparent 40%, transparent 60%, rgba(123,45,255,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.net-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.net-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.net-form .field.full { grid-column: 1 / -1; }

.net-form label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b3b8c8;
  padding-left: 2px;
}

.net-form input,
.net-form select {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  color: #fff;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  transition: border-color .25s, background .25s, box-shadow .25s;
  letter-spacing: .01em;
}

.net-form input::placeholder { color: #82869a; }

.net-form input:focus,
.net-form select:focus {
  outline: none;
  border-color: rgba(0,204,255,.3);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 4px rgba(0,204,255,.06);
}

.net-form input.has-error {
  border-color: rgba(255,77,94,.55) !important;
  background: rgba(255,77,94,.05) !important;
  box-shadow: 0 0 0 4px rgba(255,77,94,.06) !important;
}
.net-form .field-error {
  display: block;
  margin-top: 6px;
  min-height: 14px;
  font-size: 11.5px;
  font-weight: 400;
  color: #ff8a98;
  letter-spacing: .01em;
}
.net-form .field-error:empty { display: none; }

.net-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.net-form select option {
  background: #0a0a14;
  color: #ddd;
}

.net-form .terms {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 300;
  color: #a9aebf;
  line-height: 1.5;
}

.net-form .terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--cyan);
  flex-shrink: 0;
}

.net-form .terms a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0,204,255,.3);
  text-underline-offset: 3px;
  transition: color .2s;
}

.net-form .terms a:hover { color: #8ce0ff; }

.net-form button {
  grid-column: 1 / -1;
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s, filter .2s;
  margin-top: 6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.net-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,204,255,.25);
  filter: brightness(1.1);
}

.net-form button svg { transition: transform .25s; }
.net-form button:hover svg { transform: translateX(3px); }

.net-form .success-msg {
  grid-column: 1 / -1;
  padding: 14px 16px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 12px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  display: none;
}

.net-form.submitted .success-msg { display: block; }
.net-form.submitted .field,
.net-form.submitted .terms,
.net-form.submitted button { display: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .net-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .net-hero-ctas { justify-content: center; }
  .net-hero-meta { justify-content: center; }
  .net-hero-card { max-width: 440px; margin: 0 auto; width: 100%; }
  .net-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .net-hero-inner { padding: 120px 20px 80px; }
  .net-title { font-size: 40px; }
  .net-benefits { grid-template-columns: 1fr; }
  .net-steps::before { left: 22px; }
  .net-step { grid-template-columns: 44px 1fr; gap: 18px; }
  .net-step-num { width: 44px; height: 44px; font-size: 13px; }
  .net-about { padding: 32px 24px; }
  .net-form-wrap { padding: 40px 24px; }
  .net-form { grid-template-columns: 1fr; gap: 14px; }
}
