/* =========================================
   AUTH PAGES STYLES
   ========================================= */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--dark);
}

.auth-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: none;
}

@media (min-width: 1024px) {
  .auth-visual { display: block; }
}

.auth-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(201,151,58,0.15) 0%, 
    rgba(13,13,15,0.9) 100%
  );
}

.auth-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12);
}

.auth-visual-content .nav-logo {
  font-size: 1.4rem;
  margin-bottom: var(--space-12);
}

.auth-visual-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.auth-visual-quote em {
  color: var(--gold);
  font-style: italic;
}

.auth-visual-sub {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

.auth-visual-artists {
  position: absolute;
  bottom: var(--space-10);
  left: var(--space-12);
  right: var(--space-12);
  display: flex;
  gap: -8px;
}

.auth-avatar-stack {
  display: flex;
}

.auth-avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
  background: var(--dark-4);
  margin-left: -10px;
}

.auth-avatar-stack img:first-child { margin-left: 0; }

.auth-visual-stats {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  font-size: 0.875rem;
  color: var(--white-70);
}

.auth-visual-stat-num {
  font-weight: 700;
  color: var(--white);
}

/* === AUTH FORM SIDE === */
.auth-form-side {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .auth-form-side {
    border-left: 1px solid rgba(255,255,255,0.06);
  }
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-10);
}

.auth-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.auth-sub {
  color: var(--gray-1);
  font-size: 0.925rem;
  margin-bottom: var(--space-8);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
  color: var(--gray-2);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.auth-footer-link {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 0.875rem;
  color: var(--gray-1);
}

.auth-footer-link a {
  color: var(--gold);
  font-weight: 600;
}

.auth-footer-link a:hover {
  text-decoration: underline;
}

.password-toggle {
  position: relative;
}

.password-toggle .form-input {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-1);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
}

.password-strength {
  margin-top: var(--space-2);
}

.password-strength-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.password-strength-bar div {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--dark-4);
  transition: background var(--duration-base) var(--ease);
}

.password-strength-label {
  font-size: 0.75rem;
  color: var(--gray-1);
}

/* Role selector */
.role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.role-option {
  position: relative;
  cursor: pointer;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-card {
  padding: var(--space-4);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease);
  text-align: center;
}

.role-option input:checked ~ .role-card {
  border-color: var(--gold);
  background: rgba(201,151,58,0.08);
}

.role-icon {
  font-size: 1.6rem;
  margin-bottom: var(--space-2);
}

.role-name {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--white);
  margin-bottom: 2px;
}

.role-desc {
  font-size: 0.75rem;
  color: var(--gray-1);
}

/* === HOW IT WORKS PAGE === */
.how-page {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-24);
}

.how-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.steps-full {
  max-width: 900px;
  margin: 0 auto var(--space-16);
}

.step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  align-items: start;
}

.step-number-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,151,58,0.2);
  line-height: 1;
  text-align: center;
}

.step-full-content {
  padding-top: var(--space-2);
}

.step-full-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.step-full-content p {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.faq-question {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  transition: background var(--duration-fast) var(--ease);
}

.faq-question:hover { background: var(--white-05); }

.faq-chevron {
  font-size: 0.8rem;
  color: var(--gray-1);
  transition: transform var(--duration-base) var(--ease);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 var(--space-6);
  color: var(--white-70);
  font-size: 0.925rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease),
              padding var(--duration-slow) var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: var(--space-4) var(--space-6) var(--space-5);
}

/* === CONTACT PAGE === */
.contact-page {
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-24);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.contact-info p {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,151,58,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.875rem;
  color: var(--gray-1);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .how-page, .contact-page {
    padding-top: calc(var(--nav-height) + var(--space-8));
  }
}
