/* ==========================================
   CONTACT / WAITLIST PAGE
   ========================================== */

.contact-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: calc(72px + var(--space-4xl)) var(--section-pad) var(--space-3xl);
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.contact-hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 55ch;
  margin: 0 auto;
}

.contact-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--section-pad) var(--space-5xl);
  width: 100%;
}

/* Waitlist form */
.waitlist-card {
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.waitlist-card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.waitlist-card .card-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: light-dark(oklch(96% 0.004 250), oklch(10% 0.008 260));
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px light-dark(oklch(48% 0.2 270 / 0.12), oklch(68% 0.16 270 / 0.15));
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(
    135deg,
    light-dark(oklch(52% 0.26 20), oklch(62% 0.24 20)),
    light-dark(oklch(46% 0.28 5), oklch(56% 0.26 5))
  );
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 16px light-dark(oklch(52% 0.26 20 / 0.3), oklch(60% 0.24 20 / 0.35));
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px light-dark(oklch(52% 0.26 20 / 0.4), oklch(60% 0.24 20 / 0.5));
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 1.8rem;
  background: light-dark(oklch(52% 0.18 145 / 0.1), oklch(72% 0.16 145 / 0.12));
  border: 1px solid light-dark(oklch(52% 0.18 145 / 0.2), oklch(72% 0.16 145 / 0.2));
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact info */
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.info-block {
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-block h3 {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    light-dark(oklch(48% 0.2 270 / 0.08), oklch(60% 0.18 270 / 0.12)),
    light-dark(oklch(48% 0.2 20 / 0.04), oklch(60% 0.18 20 / 0.06))
  );
  border: 1px solid light-dark(oklch(48% 0.2 270 / 0.1), oklch(68% 0.16 270 / 0.15));
  color: var(--accent-primary);
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-primary);
  background: light-dark(oklch(48% 0.2 270 / 0.06), oklch(68% 0.16 270 / 0.08));
  border: 1px solid light-dark(oklch(48% 0.2 270 / 0.1), oklch(68% 0.16 270 / 0.12));
  transition: all 0.2s;
  margin-top: var(--space-md);
}

.contact-email:hover {
  background: light-dark(oklch(48% 0.2 270 / 0.1), oklch(68% 0.16 270 / 0.14));
  border-color: light-dark(oklch(48% 0.2 270 / 0.2), oklch(68% 0.16 270 / 0.25));
}

.info-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.info-value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-warm));
}

@media (max-width: 800px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
