body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fdfdf9;
  color: #111;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
}

.blob {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.blob-top-right {
  top: -100px;
  right: -100px;
  width: 380px;
  opacity: 0.10;
}

.blob-bottom-left {
  bottom: -80px;
  left: -80px;
  width: 300px;
  opacity: 0.08;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.hero {
  position: relative;
  padding: 60px 0;
  min-height: 100svh;
  box-sizing: border-box;
}

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: none;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: #ccc;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.hero img {
  width: clamp(240px, 60vw, 400px);
  display: block;
  margin: 0 auto 48px;
}

.hero h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 28px;
}

.hero h2 em {
  font-style: normal;
  color: #58C833;
}

.divider {
  width: 44px;
  height: 4px;
  background: #F62061;
  border-radius: 2px;
  margin: 0 auto 28px;
}

.hero p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #444;
  text-align: left;
}

.hero p + p {
  margin-top: 20px;
}

.demo-button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: none;
  color: #e8507a;
  border: 2px solid #e8507a;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.1s;
}

.demo-button:hover {
  background: #e8507a;
  color: #fff;
}

.demo-button:active {
  transform: scale(0.97);
}

.signup {
  padding: 72px 0 100px;
}

.signup-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.signup-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
}

.signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.signup-form input[name="EMAIL"] {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 2px solid #e2e2e2;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #111;
  background: #fafaf6;
  outline: none;
  transition: border-color 0.18s;
  text-align: left;
}

.signup-form input[name="EMAIL"]:focus {
  border-color: #58C833;
  background: #fff;
}

.signup-form button {
  padding: 14px 22px;
  background: #6cbd3a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.1s;
}

.signup-form button:hover {
  background: #5aaa2e;
}

.signup-form button:active {
  transform: scale(0.97);
}

.signup-success {
  display: none;
  font-size: 1rem;
  color: #3F8E24;
  font-weight: 500;
  padding: 16px 0 0;
  text-align: left;
}

.signup-success.visible {
  display: block;
}

#language-picker {
  position: relative;
  z-index: 11;
  width: 100%;
  display: flex;
  padding: 20px 28px 0;
  max-width: 640px;
  margin: 0 auto;
}

#selected-language {
  display: flex;
  width: fit-content;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#selected-language span {
  color: #767676;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
}

#selected-language svg {
  color: #767676;
  position: relative;
  top: 1px;
  height: 1em;
  width: 1em;
  margin-inline-end: 3px;
}

#chevron-down-icon-container {
  width: 1em;
  height: 1em;
}

#language-options {
  position: absolute;
  right: 28px;
  top: calc(20px + 1.4em);
  padding: 4px;
  list-style-type: none;
  background: #fdfdf9;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}

#language-options li {
  padding: 4px 8px;
}

#language-options a {
  color: #767676;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
}

#language-options.hidden {
  display: none;
}

@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
  }

  .signup-form button {
    width: 100%;
  }
}
