/* head styles */

@media (max-width: 720px) { .container { padding: 0 18px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--bg-cool);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
  animation: pulseDot 2s infinite;
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 18px;
}
.section-label::before {
  content: ''; width: 22px; height: 2px;
  background: var(--mint); border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}
h2.section-title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  text-wrap: balance;
}
h2.section-title em,
h1 em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--text-mute);
  max-width: 620px;
  text-wrap: pretty;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 18px 32px; font-size: 15.5px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 6px 18px -4px rgba(11,15,31,0.4);
}
.btn-primary:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(11,15,31,0.45); }
.btn-mint {
  background: var(--mint); color: var(--ink);
  box-shadow: var(--shadow-mint);
}
.btn-mint:hover { background: #1BE19D; transform: translateY(-2px); box-shadow: 0 18px 44px -8px rgba(0,179,119,0.5); }
.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

section { padding: 100px 0; position: relative; }
@media (max-width: 720px) { section { padding: 70px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .section-label { justify-content: center; }
.section-head .section-sub { margin: 0 auto; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }
.reveal.delay-6 { transition-delay: 0.48s; }
