/* Hero */
.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-text);
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 56%;
  height: 4px;
  background: var(--text-3);
  border-radius: 2px;
  transform: rotate(-2deg);
}
.hero .lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta .item {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-art {
  position: relative;
  background: var(--pine);
  border-radius: 24px;
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(46, 219, 143, 0.18), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(46, 219, 143, 0.08), transparent 60%);
  pointer-events: none;
}
.ha-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  position: relative;
}
.ha-toolbar .l,
.ha-toolbar .r {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-pine-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ha-toolbar .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pingou-pulse 1.6s ease-in-out infinite;
}
@keyframes pingou-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ha-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  position: relative;
}
.ha-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
}
.ha-col h6 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-pine-3);
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
}
.ha-col h6 .count {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 999px;
}
.ha-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 11px;
}
.ha-card.signal {
  background: rgba(46, 219, 143, 0.12);
  border: 1px solid rgba(46, 219, 143, 0.4);
  box-shadow: 0 0 0 4px rgba(46, 219, 143, 0.12);
}
.ha-card.warn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.ha-card .who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
}
.ha-card .who span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
}
.ha-card .msg {
  color: var(--on-pine-2);
  font-size: 11px;
  line-height: 1.4;
}
.ha-card .meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--on-pine-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.ha-card.warn .meta {
  color: var(--warning);
}
.ha-floating {
  position: absolute;
  right: -16px;
  top: 60px;
  background: var(--white);
  color: var(--pine);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  align-items: center;
  transform: rotate(2deg);
}
.ha-floating .ic-mascot {
  width: 56px;
  height: 64px;
  flex-shrink: 0;
}
.ha-floating .t {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.ha-floating .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}

/* Logos strip */
.logos-strip {
  padding: 32px 0 8px;
  border-bottom: 1px solid var(--hairline);
}
.logos-strip .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logos-strip .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
}
.logos-strip .row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.fake-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-2);
  letter-spacing: -0.01em;
  display: flex;
  gap: 6px;
  align-items: center;
}
.fake-logo::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: var(--m);
  mask: var(--m);
  opacity: 0.6;
}

/* How it works (streamer) */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: border-color var(--dur-fast);
}
.how-step:hover {
  border-color: var(--accent);
}
.how-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-text);
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.how-step p {
  font-size: 15px;
  color: var(--text-2);
}
.how-step .visual {
  margin: 20px 0 16px;
  height: 140px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.vis-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  align-items: stretch;
  width: 100%;
}
.vis-signup .input {
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-2);
}
.vis-signup .gbtn {
  background: var(--text-1);
  color: var(--surface);
  border-radius: 8px;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}
.vis-obs {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #cfd2cf;
  padding: 12px;
  box-sizing: border-box;
  font-family: var(--font-mono);
  font-size: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vis-obs .top {
  color: #888;
}
.vis-obs .src {
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 8px;
  border-left: 2px solid transparent;
  margin: 4px 0;
}
.vis-obs .src.accent {
  border-left-color: var(--accent);
  background: rgba(46, 219, 143, 0.08);
}
.vis-obs .src.dim {
  border-left-color: transparent;
  background: rgba(255, 255, 255, 0.04);
}
.vis-ack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  width: 100%;
  box-sizing: border-box;
}
.vis-ack .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 8px 12px;
}
.vis-ack .row .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.vis-ack .row .stat {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vis-ack .row.tocando .stat {
  color: var(--accent-text);
}
.vis-ack .row.warn .stat {
  color: var(--warning-text);
}
.vis-ack .row.ack .stat {
  color: var(--success-text);
}

/* Donor section */
.donor-section {
  background: var(--pine);
  color: var(--white);
  padding: 96px 0;
  border-radius: 32px;
  margin: 0 32px;
  position: relative;
  overflow: hidden;
}
.donor-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 219, 143, 0.15), transparent 70%);
  pointer-events: none;
}
.donor-section h2 {
  color: var(--white);
}
.donor-section .lede {
  color: var(--on-pine-2);
}
.donor-section .eyebrow {
  color: var(--accent);
}
.donor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.donor-step {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}
.donor-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 16px;
}
.donor-step h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}
.donor-step p {
  color: var(--on-pine-2);
  font-size: 15px;
}

/* Overlay preview */
.overlay-section .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.obs-frame {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(135deg, #2a3540 0%, #1a2329 50%, #0f1418 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hairline);
}
.obs-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46, 219, 143, 0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.06), transparent 40%);
}
.obs-frame .stream-meta {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.obs-frame .stream-meta .live {
  color: #ff4d4d;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.obs-frame .stream-meta .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pingou-pulse 1.6s ease-in-out infinite;
}
.alert-card-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  max-width: 480px;
  background: rgba(0, 36, 30, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(46, 219, 143, 0.4);
  border-radius: 16px;
  padding: 16px 20px;
  color: white;
  box-shadow: 0 0 0 6px rgba(46, 219, 143, 0.18), 0 20px 60px -10px rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 16px;
  align-items: center;
}
.alert-card-overlay .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #a78bfa);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}
.alert-card-overlay .body {
  flex: 1;
}
.alert-card-overlay .top {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 4px;
}
.alert-card-overlay .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.alert-card-overlay .amt {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}
.alert-card-overlay .msg {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.alert-card-overlay .wave {
  margin-top: 8px;
  height: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.alert-card-overlay .wave span {
  flex: 1;
  background: var(--accent);
  border-radius: 1px;
  animation: pingou-wave 0.9s ease-in-out infinite;
}
@keyframes pingou-wave {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
.overlay-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay-bullets li {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  color: var(--text-2);
}
.overlay-bullets li:last-child {
  border-bottom: 0;
}
.overlay-bullets li strong {
  color: var(--text-1);
}

/* Pricing teaser */
.pricing-teaser {
  padding: 96px 0;
}
.pricing-teaser-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.pt-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
}
.pt-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pt-card.featured::before {
  content: "Recomendado";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--pine);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}
.pt-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.pt-card .pricing-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 16px 0 8px;
}
.pt-card .pricing-line .pct {
  color: var(--accent-text);
}
.pt-card .pricing-line small {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-3);
  display: block;
  margin-top: 4px;
}
.pt-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.pt-card li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pt-card li:last-child {
  border: 0;
}
.pt-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-wash);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003F34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Social proof */
.proof {
  padding: 96px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
}
.proof-card .quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text-1);
}
.proof-card .quote em {
  color: var(--accent-text);
  font-style: normal;
}
.proof-card .who {
  display: flex;
  gap: 12px;
  align-items: center;
}
.proof-card .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2edb8f, #14705e);
}
.proof-card .who .nm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.proof-card .who .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
}
.stat-item .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--text-1);
}
.stat-item .v em {
  color: var(--accent-text);
  font-style: normal;
}
.stat-item .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-top: 4px;
}

/* FAQ */
.faq-grid {
  max-width: 880px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-1);
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--text-3);
  transition: transform var(--dur-fast) var(--ease-standard);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-2);
  max-width: 720px;
}

/* Final CTA */
.final-cta {
  margin: 96px 32px 0;
  padding: 96px 48px;
  background: var(--pine);
  color: var(--white);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46, 219, 143, 0.18);
  pointer-events: none;
}
.final-cta::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.final-cta::after {
  width: 800px;
  height: 800px;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
}
.final-cta h2 {
  color: var(--white);
  font-size: 64px;
  margin-bottom: 20px;
}
.final-cta h2 em {
  color: var(--accent);
  font-style: normal;
}
.final-cta p {
  color: var(--on-pine-2);
  font-size: 19px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-grid,
  .donor-grid,
  .pt-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .overlay-section .container {
    grid-template-columns: 1fr;
  }
  .final-cta h2 {
    font-size: 40px;
  }
  .donor-section {
    margin: 0 16px;
    padding: 64px 0;
  }
  .final-cta {
    margin: 64px 16px 0;
    padding: 64px 24px;
  }
}
