* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f7;
  color: #1a1a1a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 24px;
}

.tagline {
  display: inline-block;
  background: #ff0040;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.headline {
  font-size: clamp(22px, 5.8vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.headline .highlight {
  background: linear-gradient(180deg, transparent 60%, #ffd60022 60%);
  color: #ff0040;
  padding: 0 2px;
}

.subheadline {
  font-size: clamp(15px, 3.8vw, 18px);
  color: #555;
  font-weight: 500;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(180deg, #1ecb4f 0%, #16a83f 100%);
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 4.2vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(30, 203, 79, 0.35), 0 2px 0 rgba(0,0,0,0.05) inset;
  margin: 18px 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: pulse 2.2s ease-in-out infinite;
}

.cta:active {
  transform: translateY(2px);
  box-shadow: 0 4px 10px rgba(30, 203, 79, 0.3);
}

.cta-arrow {
  font-size: 14px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* VIDEO */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 8px auto;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  aspect-ratio: 9 / 16;
}

#vsl {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.unmute-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.2s;
  backdrop-filter: blur(2px);
}

.unmute-btn:hover {
  background: rgba(0,0,0,0.55);
}

.unmute-btn.hidden {
  display: none;
}

.unmute-icon {
  font-size: 48px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.unmute-text {
  background: #ff0040;
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0 24px;
  text-align: center;
}

.trust-item {
  background: #fff;
  padding: 16px 8px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.trust-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 12px;
  color: #555;
  font-weight: 600;
  line-height: 1.3;
}

/* FOOTER */
.footer {
  margin-top: 32px;
  text-align: center;
  border-top: 1px solid #e5e5e7;
  padding-top: 20px;
}

.disclaimer {
  font-size: 11px;
  color: #888;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.copy {
  font-size: 11px;
  color: #aaa;
}

/* DESKTOP */
@media (min-width: 768px) {
  .container {
    padding: 48px 24px;
  }
  .trust-item p {
    font-size: 13px;
  }
}
