/* TargetResume - Pro Screen (Minimalist Design) */

.pro-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--gray-50);
  color: var(--gray-900);
}

.pro-main {
  flex: 1;
  padding: 0 16px 120px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.pro-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.pro-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

.pro-section-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.pro-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.pro-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.pro-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.pro-benefit-text {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
  margin: 0;
}

/* Form */

.pro-form {
  margin-top: 36px;
}

.pro-email-input {
  width: 100%;
  padding: 16px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  color: var(--gray-900);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.pro-email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pro-email-input::placeholder {
  color: var(--gray-400);
}

.pro-privacy-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.pro-privacy-note a {
  color: var(--primary);
  text-decoration: none;
}

.pro-privacy-note a:hover {
  text-decoration: underline;
}

/* Footer */

.pro-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px 24px;
  border-top: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.pro-join-btn {
  width: 100%;
  max-width: 600px;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: all var(--transition-base);
  font-family: inherit;
}

.pro-join-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.pro-join-btn:active:not(:disabled) {
  transform: translateY(0);
}

.pro-join-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */

@media (max-width: 640px) {
  .pro-main {
    padding: 0 16px 120px;
  }
  
  .pro-title {
    font-size: 24px;
    margin-top: 16px;
  }
  
  .pro-subtitle {
    font-size: 14px;
  }
  
  .pro-section-title {
    font-size: 16px;
    margin-top: 24px;
  }
  
  .pro-benefit {
    min-height: 44px;
  }
  
  .pro-benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .pro-benefit-text {
    font-size: 14px;
  }
}

/* Animations */

.pro-title {
  animation: fadeInUp 0.4s ease-out;
}

.pro-subtitle {
  animation: fadeInUp 0.4s ease-out 0.1s both;
}

.pro-section-title {
  animation: fadeInUp 0.4s ease-out 0.2s both;
}

.pro-benefit {
  animation: fadeInUp 0.4s ease-out backwards;
}

.pro-benefit:nth-child(1) {
  animation-delay: 0.3s;
}

.pro-benefit:nth-child(2) {
  animation-delay: 0.4s;
}

.pro-benefit:nth-child(3) {
  animation-delay: 0.5s;
}

.pro-form {
  animation: fadeInUp 0.4s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}