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

html,
body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    sans-serif;
}

body {
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

main {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.title_hindi {
  font-size: 95px;
  font-weight: 300;
  color: #000000;
}

.container {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  z-index: 10;
}

.bg-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.03;
  border: 1px solid;
}

.bg-accent-1 {
  top: -10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: #000000;
}

.bg-accent-2 {
  bottom: -5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: #000000;
}

.header {
  opacity: 0;
}

.subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666666;
  font-weight: 400;
  margin-bottom: 12px;
  opacity: 0;
}

h1 {
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.1;
  opacity: 0;
}

.accent-line {
  width: 60px;
  height: 2px;
  background: #000000;
  margin: 16px auto;
  opacity: 0;
  position: relative;
}

.accent-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.tagline {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  max-width: 480px;
  font-weight: 300;
  opacity: 0;
  letter-spacing: 0.3px;
}

.bottle-container {
  position: relative;
  width: 180px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;

  img {
    width: 330px;
  }
}

svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.email-form {
  width: 100%;
  max-width: 420px;
  opacity: 0;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #000000;
  border-radius: 50px;
  background: #ffffff;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  transition: all 0.3s ease;
  outline: none;
}

input[type="email"]::placeholder {
  color: #999999;
}

input[type="email"]:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

input[type="email"]:hover {
  border-color: #333333;
}

.submit-btn {
  padding: 12px 32px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.submit-btn:hover {
  background: #333333;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
  transform: scale(0.95);
}

.success-message {
  font-size: 13px;
  color: #000000;
  margin-top: 12px;
  opacity: 0;
  font-weight: 500;
}

.footer-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  opacity: 0;
  font-weight: 400;
}

@media (max-width: 640px) {
  .container {
    gap: 68px;
  }

  h1 {
    font-size: 42px;
  }

  .tagline {
    font-size: 14px;
  }

  .bottle-container {
    width: 140px;
    height: 220px;
  }

  input[type="email"] {
    font-size: 13px;
    padding: 14px 20px;
  }

  .title_hindi {
    font-size: 50px;
  }
}
