/* ============================================
   EVERMIT — Typography & Animations
   ============================================ */

/* ─── Section Shared ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--green);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 640px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green) 0%, #8effc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 84%;
  height: 1px;
  margin: 0 8%;
  background: linear-gradient(90deg, transparent, var(--glass-border) 30%, var(--glass-border) 70%, transparent);
}

/* ─── Buttons ─── */
.btn-primary {
  background: var(--green);
  color: #071009;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: #5aee88;
  box-shadow: 0 0 40px rgba(61, 220, 110, 0.45), 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(240, 250, 242, 0.2);
  transition: all 0.3s;
  backdrop-filter: var(--blur);
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Keyframe Animations ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
