@font-face {
  font-family: "Tanker";
  src: url("Tanker-Regular.otf") format("opentype");
}

body {
  background: #eceff1;
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffd400;
  background-image: url("background_pattern.png"),
    radial-gradient(circle at 50% 30%, transparent 0%, #ff5500 100%);
  background-blend-mode: color-burn, normal;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: ellipse(160% 90% at 50% 10%);
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  position: relative;
  z-index: 1;
}

.cta-container {
  position: static;
  transform: none;
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  z-index: 1;
  gap: 24px;
}

.marquee {
  background: #ffd622;
  color: #ff5500;
  height: 52px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.marquee span {
  display: inline-block;
  font-family: "Tanker", sans-serif;
  font-size: 48px;
  animation: marquee 20s linear infinite;
  padding-right: 50px;
}

.marquee span::after {
  content: "COMING SOON TO KICKSTARTER";
  padding-left: 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 380px;
}

.product-image {
  width: 85%;
  height: auto;
}

.cta-button {
  background: #000000;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Tanker", sans-serif;
  font-size: 30px;
  max-width: 350px;
  height: 55px;
  box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.1),
    inset 0 4px 4px rgba(255, 255, 255, 0.25);
  transition: transform 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cta-button.no-transition {
  transition: none;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: white;
  opacity: 0.95;
  text-align: center;
  margin-top: 16px;
  width: 80%;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.overlay.visible {
  display: block;
  opacity: 1;
}

.survey-container {
  background: white;
  max-width: 350px;
  margin: 24px auto;
  margin-top: 10vh;
  padding: 24px 20px;
  border-radius: 20px;
  border: 1px solid black;
  box-shadow: none;
  min-height: 200px;
  box-sizing: border-box;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.overlay.visible .survey-container {
  transform: translateY(0);
  opacity: 1;
}

.survey-close-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  margin: 0 auto;
  padding: 8px 16px;
  text-align: center;
}

.survey-close-button:hover {
  text-decoration: underline;
}

.survey-step {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.survey-step.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input[type="email"] {
  height: 42px;
  padding: 0 12px;
  border: 1px solid black;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: black;
  width: 100%;
  box-sizing: border-box;
}

.form-group input[type="email"]::placeholder {
  color: #999;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option {
  padding: 0;
  height: 42px;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: black;
}

.option:hover {
  background: #f5f5f5;
}

.next-button {
  background: black;
  color: white;
  border: none;
  height: 55px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  font-family: "Tanker", sans-serif;
  font-size: 30px;
  text-align: center;
  box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.1),
    inset 0 4px 4px rgba(255, 255, 255, 0.25);
}

.next-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.next-button:not(:disabled):hover {
  background: #333;
}

.faq-section {
  margin-top: -3.5vh;
  padding: 60px 20px;
  background: white;
}

.what-is-youphemism-header {
  width: calc(100% + 40px);
  margin: -20px;
  margin-bottom: 12px;
}

.faq-header-label {
  width: calc(100% + 40px);
  margin: -20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: black;
  font-family: "Tanker", sans-serif;
  font-size: 48px;
}

.faq-container {
  max-width: 600px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-item {
  margin-bottom: 30px;
  border-radius: 8px;
}

.faq-item h3 {
  margin: 0 0 10px 0;
  color: black;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: bold;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
  color: black;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.footer {
  background: #0fa0f4;
  color: white;
  padding: 36px 24px;
  text-align: center;
  margin-top: auto;
}

.contact-section {
  margin-bottom: 24px;
}

.contact-section h3 {
  font-family: "Tanker", sans-serif;
  font-size: 24px;
  margin: 0px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  margin: 0;
  width: 100%;
  justify-content: center;
}

.social-link:hover {
  opacity: 0.8;
}

.social-link img {
  width: 24px;
  height: 24px;
}

.social-link span {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

.footer p {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.survey-step-title {
  font-family: "Tanker", sans-serif;
  font-size: 40px;
  margin: 0 0 10px 0;
  text-align: center;
}

.survey-step-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  font-style: normal;
  color: #000000;
  text-align: center;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0fa0f4;
  border-radius: 16px;
  margin-bottom: 24px;
  margin-top: 5vh;
  height: 68px;
  position: relative;
}

.faq-header h2 {
  font-family: "Tanker", sans-serif;
  font-size: 48px;
  color: white;
  margin: 0;
}

.faq-header-image {
  margin-top: -10px;
  width: 52px;
  height: 55px;
  position: absolute;
}
