* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #111;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 50% 25%, transparent 0%, transparent 30%, #fff 75%),
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size:
    100% 100%,
    40px 40px,
    40px 40px;
  background-attachment: fixed;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.hero__eyebrow {
  max-width: 600px;
  margin: 0 auto 1rem;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #16a34a;
}

.hero__headline {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hero__headline-strong {
  font-weight: 800;
}

.hero__highlight {
  color: #16a34a;
}

.hero__subheadline {
  max-width: 600px;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: #444;
}

.vsl {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 20px 60px rgba(22, 163, 74, 0.35),
    0 0 90px rgba(22, 163, 74, 0.25);
}

.vsl wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.vsl__sound-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  animation: vsl-pulse 2s ease-in-out infinite;
}

.vsl__sound-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.vsl__sound-btn[hidden] {
  display: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .vsl__sound-btn {
    animation: none;
  }
}

.btn {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 1.625rem 2.6rem;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: clamp(1.72rem, 3.9vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.5);
}

.clients {
  width: 100%;
  max-width: 800px;
  margin: 3rem auto 0;
}

.clients__heading {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.clients__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clients__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: clients-scroll 55s linear infinite;
}

.clients__marquee:hover .clients__track {
  animation-play-state: paused;
}

.clients__item {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  white-space: nowrap;
}

.clients__sep {
  margin: 0 0.4rem;
  color: #bbb;
  font-weight: 400;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients__track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2.1rem 1.05rem 2.8rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.7rem;
  }

  .hero__subheadline {
    margin-top: 0.875rem;
  }

  .vsl {
    margin-top: 2.1rem;
  }

  .btn {
    margin-top: 1.75rem;
    padding: 0.875rem 1.4rem;
  }

  .clients {
    margin-top: 2.1rem;
  }
}

.disclaimers {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.disclaimers p {
  margin-bottom: 0.25rem;
  font-size: 0.25rem;
  line-height: 1.5;
  color: #999;
}

.disclaimers p:last-child {
  margin-bottom: 0;
}

/* Survey modal */

.survey-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
}

.survey-overlay[hidden] {
  display: none;
}

.survey-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.75rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transition: max-width 0.2s ease;
}

.survey-card--wide {
  max-width: 700px;
  padding: 2.75rem 1.5rem 1.5rem;
}

.survey-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: #888;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.survey-close:hover {
  color: #111;
}

.survey-step[hidden] {
  display: none;
}

.survey-persistent-heading {
  margin: 0 auto 1.5rem;
  padding-top: 0.5rem;
  max-width: 320px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #16a34a;
}

.survey-heading {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.survey-text {
  color: #555;
  margin-bottom: 1.5rem;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.survey-options--yesno {
  flex-direction: row;
}

.survey-option {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.survey-option:hover {
  border-color: #16a34a;
  background: #f0fdf4;
}

.survey-field {
  margin-bottom: 1rem;
  text-align: left;
}

.survey-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #333;
}

.survey-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}

.survey-field input:focus {
  outline: none;
  border-color: #16a34a;
}

.survey-error {
  color: #dc2626;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.survey-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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