#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 118px 0 88px;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

/* Grade de fundo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 204, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 204, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

/* ── ORBS DE LUZ ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 760px;
  height: 760px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.09), transparent 65%);
}

.hero-orb--2 {
  width: 560px;
  height: 560px;
  bottom: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(0, 136, 204, 0.06), transparent 65%);
}

.hero-orb--3 {
  width: 380px;
  height: 380px;
  top: 35%;
  left: 42%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.04), transparent 65%);
}

/* ── GRID INTERNO ── */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── COLUNA DE CONTEÚDO ── */
.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

/* Kicker */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-full);
  padding: 8px 16px;
  margin-bottom: 28px;
  align-self: flex-start;
}


.hero-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: blink 1.9s ease infinite;
}

/* Headline */
.hero-headline {
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  max-width: 9.5ch;
  text-wrap: balance;
}

.hero-headline em {
  font-style: normal;
  color: var(--cyan);
}

.hero-headline__gold {
  background: linear-gradient(135deg, var(--gold), #d4880a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slogan técnico */
.hero-slogan {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(0, 204, 255, 0.68);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Subtítulo */
.hero-sub {
  font-size: 21px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

.hero-ctas .btn {
  min-height: 54px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
}

/* Provas sociais */
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}

.hero-proof__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
}

.hero-proof__check {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── COLUNA VISUAL (dashboard) ── */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 500px;
  transform: translateY(10px);
}

/* Badges flutuantes */
.hero-badge {
  position: absolute;
  z-index: 3;
  background: rgba(7, 15, 28, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 13px 17px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-badge--top {
  top: -18px;
  right: -18px;
  border-color: var(--green-border);
}

.hero-badge--bottom {
  bottom: -18px;
  left: -18px;
  border-color: var(--gold-border);
}

.hero-badge__label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ghost);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.hero-badge__value--green { color: var(--green); }
.hero-badge__value--gold  { color: var(--gold); }

/* ── CARD DO DASHBOARD ── */
.hv-card {
  background: rgba(7, 15, 28, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(0, 204, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Topbar */
.hv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.hv-dots {
  display: flex;
  gap: 5px;
}

.hv-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hv-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ghost);
  letter-spacing: 0.05em;
}

.hv-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  border-radius: var(--r-full);
  padding: 3px 10px;
}

.hv-live__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease infinite;
}

/* Corpo do dashboard */
.hv-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Métricas */
.hv-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hv-metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hv-metric__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hv-metric__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hv-metric__sub {
  font-size: 10px;
  color: var(--ghost);
}

/* Barra de progresso */
.hv-progress {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 13px;
}

.hv-progress__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hv-progress__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ghost);
  font-weight: 700;
  margin-bottom: 2px;
}

.hv-progress__name {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
}

.hv-progress__pct {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
}

.hv-progress__track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}

.hv-progress__fill {
  height: 100%;
  width: 0;                   /* começa em 0 — animado via JS */
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: var(--r-full);
  transition: width 2s cubic-bezier(0.2, 1, 0.3, 1) 0.6s;
}

/* Eventos */
.hv-events {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.hv-event {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.hv-event__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hv-event__text {
  font-size: 11px;
  color: var(--muted);
  flex: 1;
}

.hv-event__time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ghost);
  flex-shrink: 0;
}

/* ── RESPONSIVO ── */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 44px;
  }

  .hero-headline {
    font-size: clamp(50px, 6vw, 78px);
    max-width: 8.8ch;
  }

  .hero-sub {
    font-size: 19px;
    max-width: 520px;
  }
}

@media (max-width: 1060px) {
  #hero {
    padding: 112px 0 78px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(46px, 8vw, 72px);
    line-height: 0.97;
    max-width: 10ch;
  }

  .hero-sub {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  #hero {
    min-height: auto;
    padding: 104px 0 72px;
  }

  .hero-kicker {
    font-size: 11px;
    padding: 7px 14px;
    margin-bottom: 22px;
  }

  .hero-headline {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-slogan {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-proof__item {
    font-size: 14px;
  }
}