/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    background: #faf9fc;
    min-height: 100vh;
    overflow-x: hidden;
}

.split-container {
    display: flex;
    height: 100vh;
    min-height: 100vh;
}

.split-left, .split-right {
    width: 50vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.split-left {
    background: #fff;
    padding: 4vw;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7748cd 0%, #d740a6 50%, #f54e5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1rem;
}

.main-headline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-top: 0.1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.08rem;
    font-weight: 500;
    background: #f7f6fa;
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    box-shadow: 0 2px 10px rgba(119, 72, 205, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 2.8rem;
}

.benefit-row:hover {
    box-shadow: 0 6px 24px rgba(119, 72, 205, 0.13);
    transform: translateY(-2px) scale(1.02);
}

.benefit-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.gradient-icon {
    background: linear-gradient(135deg, #7748cd 0%, #d740a6 50%, #f54e5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(119, 72, 205, 0.18));
}

.black-icon {
    color: #111;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.12);
}

.no-icon .benefit-icon {
    display: none;
}

.no-icon span:last-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    letter-spacing: -0.01em;
}

/* Right Side (Image + Form) */
.split-right {
    position: relative;
    background: radial-gradient(circle at 60% 40%, #23213a 0%, #1a1a2e 80%, #111 100%);
    overflow: hidden;
}

/* Abstract blurred growth shapes */
.split-right::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 55%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(119,72,205,0.18) 0%, rgba(245,78,90,0.10) 100%);
    border-radius: 50% 40% 60% 50%/60% 50% 40% 50%;
    filter: blur(24px);
    z-index: 2;
    pointer-events: none;
}

.split-right::before {
    content: '';
    position: absolute;
    bottom: 8%;
    right: 10%;
    width: 180px;
    height: 180px;
    background: linear-gradient(120deg, rgba(245,78,90,0.18) 0%, rgba(119,72,205,0.12) 100%);
    border-radius: 60% 40% 50% 70%/50% 60% 40% 50%;
    filter: blur(16px);
    z-index: 2;
    pointer-events: none;
}

/* Animated tech/growth lines */
.split-right .growth-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}

.form-container {
    position: relative;
    z-index: 3;
    background: rgba(0,0,0,0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(119, 72, 205, 0.18);
    border: 2.5px solid;
    border-image: linear-gradient(135deg, #7748cd 0%, #d740a6 50%, #f54e5a 100%) 1;
    padding: 1.6rem 2rem 1.6rem 2rem;
    max-width: 540px !important;
    width: 100% !important;
    margin: 0 auto;
    color: #fff;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: 240px !important;
    gap: 1.1rem !important;
}

.form-container h3 {
    margin-top: 0;
}

.form-container h3.cta-headline {
    margin-bottom: 1.5rem;
}

.form-note {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    width: 100%;
    padding: 2rem 0 1.2rem 0;
    border-top: 1px solid rgba(0,0,0,0.07);
    background: transparent;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #7748cd;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .split-left {
        padding: 4vw 2vw 4vw 2vw;
    }
    .form-container {
        max-width: 95vw;
    }
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }
    .split-left, .split-right {
        width: 100vw;
        min-height: unset;
        height: auto;
        padding: 2.5rem 1rem;
    }
    .split-left {
        align-items: center;
        text-align: center;
        padding: 2.5rem 1rem 1.5rem 1rem;
    }
    .logo {
        align-items: center;
    }
    .benefits-list {
        align-items: center;
    }
    .benefit-row {
        justify-content: center;
    }
    .split-right {
        min-height: 350px;
        padding: 2.5rem 1rem 2rem 1rem;
    }
    .form-container {
        margin: 2rem auto 0 auto;
    }
}

@media (max-width: 600px) {
    .main-headline {
        font-size: 1.3rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .benefit-row {
        font-size: 0.95rem;
        padding: 0.5rem 0.5rem;
    }
    .form-container {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-width: unset;
    }
}

@media (max-width: 400px) {
    .main-headline {
        font-size: 1.05rem;
    }
    .logo-text {
        font-size: 1.05rem;
    }
}

.join-beta-btn {
    min-width: 120px;
    white-space: nowrap;
    height: 48px;
    padding: 0 2em;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #7748cd 0%, #ff416c 100%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.join-beta-btn:hover {
    background: linear-gradient(90deg, #ff416c 0%, #7748cd 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.logo-link {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7748cd 0%, #d740a6 60%, #ff416c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
    border: none;
    outline: none;
}

.logo-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.final-line {
    margin-top: 2.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7748cd;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(119, 72, 205, 0.08);
}

.email-form .form-group {
    display: flex;
    gap: 0.7rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.email-input {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 1em;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    outline: none;
    height: 48px;
    box-sizing: border-box;
}

.gradient-headline {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7748cd 0%, #d740a6 60%, #ff416c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0.05rem !important;
    margin-top: 0;
    text-align: left;
    display: inline-block;
}

.cta-subhead {
    font-size: 1.15rem;
    color: #e0d7f7;
    font-weight: 500;
    margin-bottom: 0.7rem !important;
    margin-top: 0.05rem !important;
    text-align: left;
}

.gradient-headline {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(90deg, #7748cd 0%, #d740a6 60%, #ff416c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    margin-bottom: 0.05rem !important;
    margin-top: 0 !important;
    text-align: left !important;
    display: inline-block !important;
}

.cta-subhead {
    font-size: 1.15rem !important;
    color: #e0d7f7 !important;
    font-weight: 500 !important;
    margin-bottom: 0.7rem !important;
    margin-top: 0.05rem !important;
    text-align: left !important;
}

h2.main-headline.gradient-headline {
  margin-bottom: 1rem !important;
}

.brand-link {
  color: #7748cd;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.brand-link:hover {
  color: #ff416c;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(20, 16, 32, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: #23103a;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 16, 64, 0.25);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: modal-fade-in 0.3s;
}

@keyframes modal-fade-in {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}
.modal-close:hover {
  opacity: 1;
}

.modal h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(90deg, #7748cd 0%, #ff416c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.modal-form input[type="text"],
.modal-form input[type="email"] {
  padding: 0.9em 1em;
  border-radius: 8px;
  border: none;
  font-size: 1.08em;
  background: #2a1a44;
  color: #fff;
  box-shadow: 0 1px 4px rgba(40,16,64,0.07);
  outline: none;
  transition: box-shadow 0.2s, background 0.2s;
}
.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus {
  background: #32205a;
  box-shadow: 0 2px 8px #7748cd33;
}

.modal-form .join-beta-btn {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.15em;
  padding: 0.9em 0;
  border-radius: 8px;
}

@media (max-width: 500px) {
  .modal {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .modal h3 {
    font-size: 1.1rem;
  }
}

