* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




.popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  z-index: 1000;
  opacity: 0.95;
}

.popup.success { background-color: #28a745; }  /* green */
.popup.error { background-color: #dc3545; }    /* red */









.page-wrapper {
  min-height: 100vh;
  background: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background circles */
.background-circles {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(270, 70%, 75%) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  top: -100px;
  right: 200px;
}

.circle-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(180, 85%, 65%) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  top: 50px;
  right: -50px;
}

.circle-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(270, 70%, 75%) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.5;
  bottom: -200px;
  left: -150px;
}

.circle-4 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsl(180, 85%, 65%) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.5;
  bottom: -200px;
  right: -150px;
}

.content {
  position: relative;
  z-index: 10;
  flex: 1;
}

/* Header */
.header {
  padding: 2rem 3rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1146px;
  margin-left: calc(50% - 573px);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-box {
  background: black;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6px;
  row-gap: 0;
}

.logo-letter {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-m {
  transform: scaleX(0.85);
}

.logo-s {
  transform: scaleX(1.15);
}

/* ✅ Hide company name everywhere */
.company-name {
  display: none;
}

.launch-date {
  color: black;
  font-weight: 600;
  font-size: 16px;
  margin-right: 125px;
}

/* Hero section */
.hero {
  padding: 3rem 3rem 2rem;
}

.hero-container {
  max-width: 1146px;
  margin-left: calc(50% - 573px);
}

.hero-title {
  font-size: 60px;
  font-weight: bold;
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: black;
  line-height: 1.6;
}

/* Main section */
.main-section {
  padding: 3rem;
}

.flex-container {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

/* Form */
.form-container {
  flex-shrink: 0;
  width: 500px;
}

.form-box {
  background: white;
  border-radius: 24px;
  padding: 50px 32px; /* Increased height via padding */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12); /* Softer shadow to remove sharp line */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute content evenly vertically */
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
  text-align: center;
  margin-bottom: 36px; /* Adjusted for taller card */
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased gap for professional spacing */
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #666;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.form-input::placeholder {
  color: #333;
}

.form-input:focus::placeholder {
  opacity: 0.5;
}

.submit-button {
  width: 100%;
  background: black;
  color: white;
  padding: 16px;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 28px; /* adjusted for spacing */
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #1f2937;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px; /* fills space at bottom */
  font-weight: 500;
  color: #E4405F;
  text-decoration: none;
  transition: opacity 0.3s;
}

.instagram-link svg {
  fill: #E4405F;
}

.instagram-link:hover {
  opacity: 0.8;
}

/* Video */
.video-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: auto;
  margin-left: 50px;
}

.video-player {
  width: 450px;
  height: 550px;
  background-color: #090B0A;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #090B0A;
  object-fit: contain;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 20px 0;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .flex-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .video-container {
    margin-left: 0;
  }
  .header-container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }
  .hero-container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }
  .launch-date {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1.5rem 1rem;
  }
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 100%;
  }
  .logo-section {
    gap: 10px;
  }
  .logo-box {
    padding: 6px;
    transform: scale(0.7);
  }
  .launch-date {
    font-size: 14px;
    margin-right: 0;
    text-align: right;
  }
  .hero {
    padding: 2rem 1.5rem 1.5rem;
  }
  .hero-container {
    padding: 0;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .main-section {
    padding: 2rem 1rem;
  }
  .form-container,
  .video-container {
    width: 100%;
    max-width: 500px;
  }
  .form-box {
    padding: 40px 25px; /* increased for mobile height */
  }
  .video-player {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 9/11;
  }
  /* Footer fix for mobile */
  .footer {
    text-align: center;
    margin-bottom: 20px;
  }
  /* Hide video on mobile */
  .video-container {
    display: none;
  }
}
