/* ═══════════════════════════════════════════════════════════════
   AloraPay — Shared Stylesheet
   Generated: 2026-04-18
   ═══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500;700&display=swap');

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --purple: #533afd;
  --purple-hover: #4434d4;
  --purple-light: #b9b9f9;
  --purple-soft: #d6d9fc;
  --purple-faint: rgba(83,58,253,0.06);
  --navy: #061b31;
  --brand-dark: #1c1e54;
  --dark-navy: #0d253d;
  --label: #273951;
  --body: #64748d;
  --border: #e5edf5;
  --white: #ffffff;
  --success: #15be53;
  --success-text: #108c3d;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --shadow-card: rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
  --shadow-amb: rgba(23,23,23,0.06) 0px 3px 6px;
  --font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Source Code Pro', 'SFMono-Regular', monospace;
}

/* ── BASE ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.125rem; font-weight: 500; color: var(--navy);
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 7px;
  background: linear-gradient(135deg, var(--purple) 0%, #7c5dfd 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.75rem; font-weight: 600;
  box-shadow: rgba(83,58,253,0.35) 0px 4px 12px;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400; color: var(--label);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-ghost {
  font-size: 0.875rem; font-weight: 400; color: var(--purple);
  background: none; border: 1px solid var(--purple-light);
  border-radius: 4px; padding: 7px 16px; cursor: pointer;
  text-decoration: none; transition: all 0.15s;
}
.btn-ghost:hover { background: var(--purple-faint); }
.btn-primary {
  font-size: 0.875rem; font-weight: 400; color: white;
  background: var(--purple); border: none; border-radius: 4px;
  padding: 8px 18px; cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--purple-hover); }
.btn-white {
  font-size: 0.9375rem; font-weight: 400; color: var(--purple);
  background: white; border: none; border-radius: 4px;
  padding: 12px 26px; cursor: pointer; text-decoration: none;
  transition: opacity 0.15s;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  font-size: 0.9375rem; font-weight: 400; color: white;
  background: none; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; padding: 11px 22px; cursor: pointer;
  text-decoration: none; transition: border-color 0.15s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SHARED SECTION UTILITIES ──────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; }
.stag {
  font-size: 0.625rem; font-weight: 400; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-family: var(--mono); margin-bottom: 0.875rem;
}
.sh2 {
  font-size: 2.5rem; font-weight: 300; letter-spacing: -0.9px;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.1;
}
.ssub {
  font-size: 1rem; font-weight: 300; color: var(--body);
  max-width: 440px; line-height: 1.7; margin: 0 auto;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--dark-navy); padding: 64px 2rem 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 240px 1fr; gap: 80px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-top: 1rem; max-width: 200px;
}
.footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col-title {
  font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE: NAV + FOOTER ──────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
