:root {
  --obsidian: #07090f;
  --night: #0b1830;
  --panel: #10192a;
  --panel-soft: #17233a;
  --gold: #d7a947;
  --gold-bright: #f2cf79;
  --ruby: #8f1d2b;
  --ivory: #fff7e8;
  --muted: #c8c3b8;
  --line: rgba(242, 207, 121, 0.24);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--obsidian);
  color: var(--ivory);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(7, 9, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 52px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(7, 9, 15, 0.9);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

.brand small,
.kicker,
.eyebrow {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f6d984, var(--gold));
  color: #111018;
  box-shadow: 0 14px 34px rgba(215, 169, 71, 0.24);
}

.btn-secondary {
  background: rgba(15, 32, 60, 0.88);
  border-color: rgba(242, 207, 121, 0.45);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 247, 232, 0.32);
  color: var(--ivory);
}

.btn[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-icon svg,
.card-icon svg,
.section-icon svg,
.icon-medal svg,
.play-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 720px;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 64px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 15, 0.92) 0%, rgba(7, 9, 15, 0.76) 38%, rgba(7, 9, 15, 0.3) 66%, rgba(7, 9, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 9, 15, 0.78) 0%, rgba(7, 9, 15, 0.12) 38%, rgba(7, 9, 15, 0.26) 100%);
  pointer-events: none;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 169, 71, 0.15), transparent 32%),
    linear-gradient(135deg, var(--obsidian), var(--night) 62%, #0d0e15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-subtitle,
.lead {
  color: var(--ivory);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.4;
}

.hero-facts {
  display: grid;
  gap: 10px;
  margin: 28px 0 18px;
}

.hero-facts div,
.notice,
.disclaimer,
.transparency-card,
.quote-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 247, 232, 0.055);
}

.hero-facts div {
  padding: 13px 15px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--gold-bright);
}

.hero-facts span {
  color: var(--ivory);
}

.notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  color: var(--ivory);
}

.notice strong {
  color: var(--gold-bright);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.microcopy,
.copy-status {
  margin-top: 12px;
  font-size: 0.92rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media::after {
  content: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: #0a0d16;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(242, 207, 121, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 247, 232, 0.04);
}

.trust-card h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.trust-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.avatar {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.logo-pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 116px;
}

.logo-pair img {
  max-height: 50px;
  object-fit: contain;
}

.icon-medal,
.card-icon,
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(242, 207, 121, 0.42);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(215, 169, 71, 0.08);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 780px;
}

.centered,
.centered-heading {
  text-align: center;
}

.centered .section-heading,
.narrow,
.centered-heading {
  margin-right: auto;
  margin-left: auto;
}

.quote-block {
  max-width: 920px;
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 42px);
}

.quote-block p {
  color: var(--ivory);
  font-size: clamp(1.28rem, 2.5vw, 2rem);
}

.opportunity-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.opportunity-lines span {
  padding: 8px 12px;
  border: 1px solid rgba(242, 207, 121, 0.34);
  border-radius: 999px;
  color: var(--gold-bright);
}

.video-section {
  background: #fff7e8;
  color: #141419;
}

.video-section p,
.video-copy p {
  color: #4d4a43;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: center;
  max-width: 1060px;
  margin-top: 28px;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(11, 24, 48, 0.24);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 247, 232, 0.65);
  border-radius: 50%;
  color: #111018;
  background: rgba(242, 207, 121, 0.92);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.promoter {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.promoter-media img {
  width: 100%;
  max-height: 720px;
  border: 1px solid rgba(242, 207, 121, 0.32);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.step-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(215, 169, 71, 0.22);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.info-card p,
.step-card p {
  margin-bottom: 0;
}

.disclaimer {
  margin: 24px 0 0;
  padding: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.check-list,
.transparency-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.transparency-card li {
  position: relative;
  padding-left: 34px;
  color: var(--ivory);
}

.check-list li::before,
.transparency-card li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d56f, #d9282d 48%, #0b58bf);
  box-shadow: 0 0 0 4px rgba(242, 207, 121, 0.1);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #111018;
  font-weight: 900;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.transparency {
  background:
    linear-gradient(rgba(7, 9, 15, 0.82), rgba(7, 9, 15, 0.88)),
    url("assets/images/whatsapp-profile-venezuela-se-levanta.png") center / cover;
}

.transparency-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(7, 9, 15, 0.86);
  box-shadow: var(--shadow);
}

.transparency-card h2 {
  color: var(--ivory);
}

.transparency-card ul {
  margin: 22px 0;
}

.share-section .section-heading {
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 64px);
  background: #05060a;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.site-footer p {
  margin-bottom: 6px;
}

.footer-small {
  align-self: end;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .promoter,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 15, 0.94) 0%, rgba(7, 9, 15, 0.72) 50%, rgba(7, 9, 15, 0.26) 100%),
      linear-gradient(0deg, rgba(7, 9, 15, 0.78) 0%, rgba(7, 9, 15, 0.08) 48%, rgba(7, 9, 15, 0.26) 100%);
  }

  .trust-strip,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .video-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .brand-logo {
    width: 100%;
  }

  .brand-logo-shell {
    width: 108px;
    height: 44px;
    padding: 4px 6px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    padding-top: 250px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 15, 0.12) 0%, rgba(7, 9, 15, 0.54) 34%, rgba(7, 9, 15, 0.96) 68%),
      linear-gradient(90deg, rgba(7, 9, 15, 0.7), rgba(7, 9, 15, 0.12));
  }

  .hero-media img {
    object-position: 62% top;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .trust-strip,
  .card-grid.four,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-card {
    align-items: flex-start;
  }

  .logo-pair {
    width: 90px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
