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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.5;
  overflow-x: hidden;
}

.split-container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

.content-panel {
  width: 50%;
  min-height: 100vh;
  background-color: #ffffff;
  padding: 3.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-header {
  width: 100%;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.brand-logo {
  object-fit: contain;
  width: 80px;
  height: 80px;
}

span.brand-bt {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.25rem;
    color: black;
    transform: translateX(-12px);
}

.main-body {
  width: 100%;
  max-width: 560px;
  margin: 4rem 0;
}

.coming-soon-title {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.coming-soon-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  color: #9ca3af;
  margin-bottom: 2.75rem;
  font-weight: 400;
}

.subscribe-form {
  width: 100%;
}

.subscribe-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffe151;
  height: 68px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  transition: box-shadow 0.25s ease;
}

.subscribe-input-wrap:focus-within {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.subscribe-label {
  font-family: 'Oxanium', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  padding: 0 1.25rem 0 1.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  user-select: none;
}

.subscribe-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #111827;
  min-width: 0;
}

.subscribe-input::placeholder {
  color: rgba(17, 24, 39, 0.5);
}

.subscribe-input:disabled {
  opacity: 0.7;
}

.subscribe-button {
  width: 68px;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.subscribe-button .arrow-icon {
  display: block;
  transition: transform 0.25s ease;
}

.subscribe-button:hover:not(:disabled) .arrow-icon {
  transform: translateX(4px);
}

.subscribe-button .spinner-icon {
  display: none;
  animation: spin 0.8s linear infinite;
}

.subscribe-button.loading .arrow-icon {
  display: none;
}

.subscribe-button.loading .spinner-icon {
  display: block;
}

.subscribe-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.turnstile-wrapper {
  margin-top: 1.25rem;
  min-height: 65px;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.5rem;
  transition: opacity 0.25s ease;
}

.form-feedback.success {
  color: #059669;
  font-weight: 500;
}

.form-feedback.error {
  color: #dc2626;
  font-weight: 500;
}

.social-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background-color: #111827;
  color: #ffffff;
  transform: translateY(-2px);
}

.image-panel {
  width: 50%;
  min-height: 100vh;
  background-image: url('bg.webp');
  background-size: cover;
  background-position: center;
}

@media (max-width: 992px) {
  .split-container {
    flex-direction: column;
  }

  .content-panel {
    width: 100%;
    min-height: 100vh;
    padding: 2.5rem 1.75rem;
  }

  .image-panel {
    display: none;
  }
}

@media (max-width: 576px) {
  .subscribe-input-wrap {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem;
    border-radius: 8px;
  }

  .subscribe-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.5rem;
  }

  .subscribe-input {
    padding: 0.75rem 0.5rem;
    height: 48px;
  }

  .subscribe-button {
    width: 48px;
    height: 48px;
  }
}
