/* ── Sign In Page ─────────────────────────────────────────────────────────── */
.signin-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 32px 16px;
}

.signin-blob1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,158,0,0.08) 0%, transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.signin-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.signin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.5s ease;
}

.signin-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.signin-logo-emoji { font-size: 28px; }
.signin-logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.signin-logo-accent { color: var(--green); }

.signin-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.signin-subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.signin-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--text);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 20px;
  font-family: inherit;
  text-decoration: none;
}
.signin-google-btn:hover {
  background: var(--text2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.signin-terms {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 28px;
}

.signin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.signin-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}

@media (max-width: 480px) {
  .signin-card { padding: 36px 24px; }
}