* {
  box-sizing: border-box;
}

:root {
  --bg: #030914;
  --bg-2: #071426;
  --surface: #0b1b30;
  --surface-2: #0d223d;
  --blue: #1266ee;
  --blue-light: #35a5ff;
  --yellow: #ffbf00;
  --yellow-light: #ffd662;
  --text: #f7fbff;
  --muted: #afc1d3;
  --border: rgba(127, 176, 235, 0.22);
  --green: #27d980;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 9, 20, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--yellow);
  color: #07101e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 102, 238, 0.22), transparent 35%),
    linear-gradient(180deg, #030914 0%, #071426 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  color: var(--yellow-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0;
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

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

.hero-text {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-text strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  color: #07101e;
  box-shadow: 0 16px 40px rgba(255, 191, 0, 0.18);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(39, 217, 128, 0.8);
}

.reward-card {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(53, 165, 255, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(11, 35, 69, 0.94), rgba(4, 16, 36, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.reward-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(18, 102, 238, 0.24);
  filter: blur(8px);
}

.reward-label,
.reward-caption,
.reward-small {
  position: relative;
  z-index: 1;
}

.reward-label {
  color: var(--yellow-light);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.reward-number {
  position: relative;
  z-index: 1;
  margin: 4px 0 -8px;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  font-weight: 950;
  color: var(--text);
}

.reward-caption {
  color: var(--muted);
  font-weight: 700;
}

.reward-divider {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 2px;
  margin: 26px auto;
  background: var(--yellow);
}

.reward-value {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.reward-small {
  margin-top: 8px;
  color: var(--muted);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  right: 6%;
  top: 7%;
  background: rgba(18, 102, 238, 0.22);
}

.hero-glow-2 {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -40px;
  background: rgba(255, 191, 0, 0.09);
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: #061121;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-heading h2,
.form-copy h2,
.final-cta h2 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading p,
.form-copy > p,
.final-cta p {
  margin: 0;
  color: var(--muted);
}

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

.step-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 27, 48, 0.88), rgba(7, 19, 35, 0.88));
}

.step-number {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 191, 0, 0.12);
  color: var(--yellow);
  font-weight: 950;
}

.step-card h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.credit-card {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  text-align: center;
}

.credit-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.credit-card span {
  display: block;
  margin: 7px 0 22px;
  color: var(--muted);
}

.credit-card b {
  color: var(--yellow);
  font-size: 1.8rem;
}

.credit-card.featured {
  border-color: rgba(255, 191, 0, 0.48);
  box-shadow: 0 20px 60px rgba(255, 191, 0, 0.08);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 191, 0, 0.12);
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.form-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 102, 238, 0.14), transparent 28%),
    var(--bg);
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 115px;
}

.rule-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 191, 0, 0.24);
  border-radius: 18px;
  background: rgba(255, 191, 0, 0.06);
}

.rule-box h3 {
  margin: 0 0 6px;
  color: var(--yellow-light);
}

.rule-box p {
  margin: 0;
  color: var(--muted);
}

.tally-card {
  min-height: 800px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tally-card iframe {
  display: block;
  width: 100%;
  min-height: 850px;
}

.rules-section {
  background: #061121;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.rule-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}

.rule-item span {
  color: var(--green);
  font-weight: 950;
}

.rule-item p {
  margin: 0;
  color: var(--muted);
}

.consent-note {
  margin: 26px 0 0;
  color: #8ea6be;
  font-size: 0.87rem;
}

.final-cta {
  padding: 65px 0;
  background: linear-gradient(135deg, #0c2850, #071426 66%);
  border-top: 1px solid rgba(53, 165, 255, 0.24);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-cta h2 {
  margin-bottom: 6px;
}

.site-footer {
  padding: 28px 0 95px;
  border-top: 1px solid var(--border);
  background: #020711;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8399ad;
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--yellow-light);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #06210f;
  font-size: 0.85rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

@media (max-width: 980px) {
  .hero-grid,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    height: 44px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .reward-card {
    padding: 32px 24px;
  }

  .section {
    padding: 70px 0;
  }

  .steps-grid,
  .credits-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    gap: 30px;
  }

  .tally-card {
    padding: 4px;
    border-radius: 18px;
  }

  .final-cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
