/* ═══════════════════════════════════════════════════════════
   SIGNUP PAGE — Page-specific styles
   ═══════════════════════════════════════════════════════════ */

/* Body override for full-height layout */
body {
  display: flex; flex-direction: column; min-height: 100vh;
}

/* SIGNUP — Full-page centered */
.signup-page {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.signup-page::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.signup-container {
  width: 100%; max-width: 520px;
  text-align: center;
  position: relative; z-index: 1;
}

.signup-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--green);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.signup-container h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.signup-container h1 em { font-style: italic; color: var(--green); }

.signup-sub {
  font-size: 18px; color: var(--gray-warm); line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

/* The CTA card */
.signup-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(22,163,74,0.08);
  animation: fadeUp 0.7s ease 0.3s both;
}

.signup-cta {
  display: block; width: 100%;
  background: var(--green); color: white;
  padding: 18px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 18px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  margin-bottom: 20px;
}
.signup-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22,163,74,0.3);
}
.signup-cta .arrow { transition: margin-left 0.2s; }
.signup-cta:hover .arrow { margin-left: 4px; }

.signup-mailto {
  font-family: var(--font-mono); font-size: 14px; color: var(--gray-mid);
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.signup-mailto .addr {
  background: var(--cream); padding: 6px 14px; border-radius: 6px;
  font-weight: 600; color: var(--ink-muted);
  border: 1px solid var(--border-light);
}

.signup-divider {
  height: 1px; background: var(--border-light);
  margin-bottom: 24px;
}

/* Steps — what happens next */
.signup-steps {
  text-align: left;
}
.signup-step {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}
.signup-step:last-child { margin-bottom: 0; }
.signup-step-num {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--green-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--green); margin-top: 1px;
}
.signup-step-text {
  font-size: 15px; color: var(--ink-muted); line-height: 1.5;
}
.signup-step-text strong { color: var(--ink); }

/* Trust notes */
.signup-trust {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-mid); font-weight: 500;
}
.trust-item .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--green);
}

/* The meta wink */
.signup-meta {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  animation: fadeUp 0.7s ease 0.5s both;
}
.signup-meta p {
  font-size: 14px; color: var(--gray-warm); line-height: 1.6;
  font-style: italic;
}
.signup-meta strong { color: var(--ink-muted); font-style: normal; }

/* Webmail fallback */
.webmail-section {
  margin-top: 24px;
  animation: fadeUp 0.7s ease 0.45s both;
}
.webmail-label {
  font-size: 13px; color: var(--gray-mid); margin-bottom: 12px;
}
.webmail-buttons {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.webmail-btn {
  padding: 8px 16px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border-light);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--ink-muted); cursor: pointer;
  transition: all 0.2s;
}
.webmail-btn:hover {
  border-color: var(--gray-light); background: var(--cream-deep); color: var(--ink);
  transform: translateY(-1px);
}

/* FOOTER — Minimal */
.signup-footer {
  text-align: center; padding: 32px 24px;
  font-size: 13px; color: var(--gray-mid);
}
.signup-footer a { color: var(--gray-warm); transition: color 0.2s; }
.signup-footer a:hover { color: var(--ink); }
