/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  position: relative;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 35px 70px -15px rgba(244, 91, 226, 0.45);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text);
  border-color: var(--c-surface-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: var(--c-pink-soft);
  color: var(--c-pink-soft);
}

/* ---------- About card ---------- */
.about-card {
  position: relative;
  padding: 2px;
  border-radius: var(--radius-lg);
  background: var(--grad-border);
  box-shadow: var(--shadow-soft);
}

.about-card-inner {
  background: linear-gradient(180deg, rgba(13, 13, 42, 0.94), rgba(13, 13, 42, 0.85));
  border-radius: calc(var(--radius-lg) - 2px);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-surface-border);
}

.kpi-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.kpi-value {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- Pillar card ---------- */
.pillar-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-surface-border);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .25s ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--c-pink-soft);
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14.5px;
  color: var(--c-text-soft);
  line-height: 1.55;
}

/* ---------- Process step ---------- */
.process-step {
  display: flex;
  gap: 22px;
  padding: 26px;
  background: var(--c-surface);
  border: 1px solid var(--c-surface-border);
  border-radius: var(--radius-md);
  transition: transform .25s ease, background .25s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--grad-soft);
  border: 1px solid var(--c-surface-border);
  background-clip: padding-box;
  color: var(--c-blue-soft);
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--c-text-soft);
}

/* ---------- Stat ---------- */
.stat {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-surface-border);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.stat p {
  font-size: 14px;
  color: var(--c-text-soft);
}

/* ---------- Manifesto ---------- */
.manifesto-quote {
  margin: 28px auto 0;
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(79,140,255,0.06), rgba(244,91,226,0.06)),
    rgba(255,255,255,0.02);
  border: 1px solid var(--c-surface-border);
}

.manifesto-quote::before {
  content: "“";
  position: absolute;
  top: -28px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.6;
}

.manifesto-quote p {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--c-text);
  font-weight: 400;
}

.manifesto-quote footer {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
