/* ═══════════════════════════════════════════════
   ENVELOPEPAY — REDESIGNED STYLE.CSS
   Modern Fintech UI with Rich Animations
═══════════════════════════════════════════════ */

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

:root {
  --ink:        #18192b;
  --ink-mid:    #3d3f58;
  --ink-soft:   #6b6d85;
  --indigo:     #4338ca;
  --indigo-h:   #3730a3;
  --indigo-l:   #6366f1;
  --rose:       #e03d80;
  --rose-h:     #c4306c;
  --bg:         #f4f5ff;
  --bg-2:       #eef0fc;
  --white:      #ffffff;
  --shadow-sm:  0 1px 3px rgba(24,25,43,0.06), 0 4px 12px rgba(24,25,43,0.04);
  --shadow-md:  0 4px 16px rgba(24,25,43,0.10), 0 10px 30px rgba(24,25,43,0.06);
  --shadow-lg:  0 8px 30px rgba(24,25,43,0.14), 0 20px 60px rgba(24,25,43,0.08);
  --shadow-ind: 0 6px 24px rgba(67,56,202,0.28);
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(67,56,202,0.12);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── ANIMATIONS ── */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes dotFloat {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(8px,-14px); }
  66%      { transform: translate(-6px,8px); }
}

.anim-up   { animation: fadeUp 0.65s ease-out both; }
.anim-fade { animation: fadeIn 0.65s ease-out both; }
.anim-scale{ animation: scaleIn 0.55s ease-out both; }

/* ── SCROLL-TRIGGERED ANIMATION ── */
.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; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(67,56,202,0.07);
  transition: box-shadow 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(24,25,43,0.08);
  background: rgba(255,255,255,0.95);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; display: block; max-width: 180px; object-fit: contain; }

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links > li > a {
  text-decoration: none; color: var(--ink-mid);
  font-size: 14.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links > li > a:hover { color: var(--indigo); background: rgba(67,56,202,0.06); }

.nav-item { position: relative; }
.drop-trigger {
  display: flex; align-items: center; gap: 4px;
  color: var(--ink-mid); font-size: 14.5px; font-weight: 500;
  cursor: pointer; padding: 7px 14px; border-radius: 8px;
  transition: var(--transition);
}
.drop-trigger svg { width: 12px; height: 12px; opacity: 0.5; transition: transform 0.22s; }
.nav-item:hover .drop-trigger,
.nav-item.open .drop-trigger { color: var(--indigo); background: rgba(67,56,202,0.06); }
.nav-item:hover .drop-trigger svg,
.nav-item.open .drop-trigger svg { transform: rotate(180deg); opacity: 1; }

.dropdown {
  position: absolute;
  top: calc(100% - 1px); left: 50%;
  transform: translateX(-50%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s;
  min-width: 210px;
  padding-top: 0;
}
.dropdown-inner {
  background: var(--white);
  border: 1px solid rgba(67,56,202,0.08);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 20px 60px rgba(24,25,43,0.14), 0 4px 12px rgba(67,56,202,0.06);
  position: relative;
}
.nav-item .dropdown.open {
  opacity: 1; pointer-events: all;
}
.dropdown-inner::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid rgba(67,56,202,0.08);
  border-top: 1px solid rgba(67,56,202,0.08);
  transform: translateX(-50%) rotate(45deg);
}

.drop-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--indigo);
  padding: 6px 12px 4px; display: block;
}
.drop-item {
  display: block; padding: 10px 14px;
  border-radius: 10px; font-size: 14px; font-weight: 500;
  color: var(--ink-mid); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.drop-item:hover { background: rgba(67,56,202,0.07); color: var(--indigo); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(67,56,202,0.06); }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(24,25,43,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }

#mob-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 199;
  padding: 80px 28px 40px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -10px 0 40px rgba(24,25,43,0.16);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mob-menu.open { transform: translateX(0); }
#mob-menu a {
  display: block; padding: 13px 16px;
  font-size: 15.5px; font-weight: 600;
  color: var(--ink-mid); text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
#mob-menu a:hover { background: rgba(67,56,202,0.06); color: var(--indigo); }
.mob-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(67,56,202,0.06);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background 0.2s;
}
.mob-close:hover { background: rgba(67,56,202,0.12); }

/* ── BUTTONS ── */
.btn-a {
  background: var(--indigo); color: #fff;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; display: inline-block;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(67,56,202,0.3);
  letter-spacing: -0.2px;
}
.btn-a:hover {
  background: var(--indigo-h); transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(67,56,202,0.42);
}
.btn-b {
  background: var(--rose); color: #fff;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; display: inline-block;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(224,61,128,0.3);
}
.btn-b:hover {
  background: var(--rose-h); transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(224,61,128,0.42);
}
.btn-white {
  background: #fff; color: var(--indigo);
  padding: 13px 34px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; display: inline-block;
  transition: transform 0.18s, box-shadow 0.22s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.22); }

/* ── COMMON SECTION STYLES ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 96px 60px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--indigo);
  background: rgba(67,56,202,0.08);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(67,56,202,0.12);
}
.heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800; color: var(--ink);
  line-height: 1.16; letter-spacing: -0.8px; margin-bottom: 16px;
}
.subtext {
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.78;
  max-width: 520px; margin-bottom: 56px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--indigo);
  background: rgba(67,56,202,0.08);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid rgba(67,56,202,0.12);
}

/* ── CARDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px 28px;
  border: 1px solid rgba(67,56,202,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(67,56,202,0.03), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(67,56,202,0.14); }
.card:hover::before { opacity: 1; }
.card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

.card-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  transition: transform 0.28s ease;
}
.card:hover .card-ico { transform: scale(1.1) rotate(-3deg); }
.ico-a { background: rgba(67,56,202,0.09); }
.ico-b { background: rgba(224,61,128,0.09); }
.ico-c { background: rgba(245,158,11,0.09); }
.ico-d { background: rgba(20,184,166,0.09); }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 40px 130px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 55% at 70% 35%, rgba(224,61,128,0.16) 0%, transparent 65%),
              radial-gradient(ellipse 55% 50% at 25% 60%, rgba(67,56,202,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 80% 70% at 50% 50%, rgba(99,102,241,0.08) 0%, transparent 70%),
              #e8eaff;
}
/* animated orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(67,56,202,0.18);
  top: -100px; left: -120px;
  animation: dotFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(224,61,128,0.15);
  bottom: -80px; right: -100px;
  animation: dotFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: rgba(99,102,241,0.12);
  top: 40%; left: 60%;
  animation: dotFloat 12s ease-in-out infinite 2s;
}

/* dot pattern */
.hero-dots {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(67,56,202,0.12) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900; color: var(--ink);
  line-height: 1.06; letter-spacing: -2px; margin-bottom: 28px;
}
.hero-content h1 span { color: var(--indigo); }
.hero-content p {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: var(--ink-mid); line-height: 1.8;
  max-width: 640px; margin: 0 auto 50px;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(67,56,202,0.07);
  border: 1px solid rgba(67,56,202,0.12);
  border-radius: 999px; padding: 8px 18px;
  font-size: 12.5px; font-weight: 600; color: var(--indigo);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: #10b981; border-radius: 50%;
  animation: pulse-ring 1.5s ease infinite;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
}

/* ── NUMBERS BAND ── */
.numbers {
  background: var(--ink);
  background-image: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(67,56,202,0.4) 0%, transparent 60%),
                    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(224,61,128,0.25) 0%, transparent 60%);
  padding: 60px 40px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; position: relative; overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.num-item {
  flex: 1 1 200px; text-align: center;
  padding: 28px 32px; position: relative; z-index: 1;
}
.num-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.num-item .val {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900; color: #fff; line-height: 1;
  letter-spacing: -1px; margin-bottom: 8px;
}
.num-item .val b { color: var(--rose); font-style: normal; }
.num-item small {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  font-weight: 500; letter-spacing: 0.3px;
}

/* ── WHY BAND ── */
.why-band { background: var(--bg-2); }
.why-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.feat-list { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 20px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid rgba(67,56,202,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s, box-shadow 0.28s;
}
.feat:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.feat-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(67,56,202,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: transform 0.28s;
}
.feat:hover .feat-ico { transform: scale(1.1) rotate(-4deg); }
.feat-text h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin-bottom: 5px; letter-spacing: -0.2px;
}
.feat-text p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ── POWER BAND ── */
.power-band { background: var(--white); }
.power-inner {
  max-width: 1160px; margin: 0 auto; padding: 96px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.power-img-col { position: relative; }
.power-img-col img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 24px 80px rgba(67,56,202,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.power-img-col:hover img { transform: translateY(-6px); box-shadow: 0 36px 100px rgba(67,56,202,0.24); }
.power-img-col::before {
  content: '';
  position: absolute; inset: -12px; z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(67,56,202,0.1), rgba(224,61,128,0.08));
}
.power-text-col h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--ink);
  line-height: 1.22; letter-spacing: -0.6px; margin-bottom: 16px;
}
.power-text-col p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.78; margin-bottom: 28px; }
.power-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.power-point { display: flex; align-items: flex-start; gap: 14px; }
.pp-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-l));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 3px 10px rgba(67,56,202,0.35);
}
.pp-dot svg { width: 12px; height: 12px; }
.power-point span { color: var(--ink-mid); font-size: 15px; line-height: 1.6; font-weight: 500; }

/* ── INDUSTRIES ── */
.industries { padding: 0; }
.pills {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--white); border: 1.5px solid rgba(67,56,202,0.1);
  font-size: 14.5px; font-weight: 600; color: var(--ink-mid);
  cursor: default; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pill:hover {
  background: rgba(67,56,202,0.06);
  border-color: rgba(67,56,202,0.25);
  color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pill span { font-size: 18px; }

/* ── CTA BOX ── */
.cta-wrap { padding: 40px 60px 80px; max-width: 1160px; margin: 0 auto; }
.cta-box {
  background: linear-gradient(135deg, var(--indigo) 0%, #5b4de8 40%, var(--rose) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-box h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.8px;
  position: relative;
}
.cta-box p {
  color: rgba(255,255,255,0.8); font-size: 16px;
  line-height: 1.7; margin-bottom: 38px; position: relative;
}

/* ── FOOTER / COMMUNITY BAND ── */
.community-band {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.community-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 72px 60px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px;
}
.comm-brand {}
.cert-row { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.cert-row > div {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px !important;
  border-radius: 12px !important;
}
.comm-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.comm-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); margin-top: 22px !important; }

.comm-col h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.comm-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.comm-col ul a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  transition: color 0.18s;
}
.comm-col ul a:hover { color: rgba(255,255,255,0.9); }
.comm-address {
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 14px;
}
.comm-contact { display: flex; flex-direction: column; gap: 8px; }
.comm-contact a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; font-weight: 500;
  transition: color 0.18s;
}
.comm-contact a:hover { color: var(--indigo-l); }

/* ── INNER PAGE HERO ── */
.inner-hero {
  padding: 110px 60px 80px;
  text-align: center;
  background: linear-gradient(180deg, #e8eaff 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(67,56,202,0.08);
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(67,56,202,0.09) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.inner-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900; color: var(--ink);
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 18px; position: relative;
}
.inner-hero p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-mid); line-height: 1.78;
  max-width: 600px; margin: 0 auto; position: relative;
}

/* ── PROJECT HERO (fintech/school) ── */
.project-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  padding: 110px 60px 90px;
  text-align: center; position: relative; overflow: hidden;
}
.project-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}
.project-hero .eyebrow {
  color: rgba(255,255,255,0.65) !important;
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.project-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 20px; position: relative;
}
.project-hero p {
  font-size: clamp(15px, 1.7vw, 17.5px);
  color: rgba(255,255,255,0.72); line-height: 1.78;
  max-width: 600px; margin: 0 auto 40px; position: relative;
}

/* ── ABOUT ── */
.about-text { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.about-text p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.82; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.val-card {
  background: var(--bg); border-radius: var(--radius-md);
  padding: 32px 24px; border: 1.5px solid rgba(67,56,202,0.08);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(67,56,202,0.18); }
.val-ico { font-size: 32px; margin-bottom: 16px; display: block; transition: transform 0.28s; }
.val-card:hover .val-ico { transform: scale(1.12) rotate(-5deg); }
.val-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 16.5px; font-weight: 800; color: var(--ink);
  margin-bottom: 8px;
}
.val-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── BLOG ── */
.blog-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.blog-filter-btn {
  padding: 8px 18px; border-radius: 999px; border: 1.5px solid rgba(67,56,202,0.15);
  background: var(--white); font-size: 13px; font-weight: 600;
  color: var(--ink-mid); cursor: pointer; transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--indigo); color: #fff; border-color: var(--indigo);
  box-shadow: 0 4px 14px rgba(67,56,202,0.3);
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 1.5px solid rgba(67,56,202,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(67,56,202,0.15); }
.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
}
.bt-a { background: linear-gradient(135deg, #e8eaff, #dde0ff); }
.bt-b { background: linear-gradient(135deg, #fce7f3, #fdf2f8); }
.bt-c { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.bt-d { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.bt-e { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.bt-f { background: linear-gradient(135deg, #fee2e2, #fecaca); }
.blog-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat {
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--indigo);
  background: rgba(67,56,202,0.08); padding: 4px 12px; border-radius: 999px;
}
.blog-date { font-size: 12.5px; color: var(--ink-soft); }
.blog-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--ink);
  line-height: 1.35; margin-bottom: 10px; letter-spacing: -0.3px;
}
.blog-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--indigo);
  margin-top: 16px; text-decoration: none;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read { gap: 10px; }
.blog-read svg { width: 16px; height: 16px; }

/* ── CAREERS ── */
.jobs-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 26px 30px; border: 1.5px solid rgba(67,56,202,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.job-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(67,56,202,0.18); }
.job-info h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.2px;
}
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-badge {
  font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.4px;
}
.badge-dept { background: rgba(67,56,202,0.08); color: var(--indigo); }
.badge-type { background: rgba(16,185,129,0.09); color: #059669; }
.badge-loc  { background: rgba(245,158,11,0.09); color: #d97706; }
.job-apply {
  background: var(--indigo); color: #fff;
  padding: 11px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 3px 12px rgba(67,56,202,0.25);
  flex-shrink: 0;
}
.job-apply:hover {
  background: var(--rose); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,61,128,0.35);
}

.perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.perk-card {
  background: var(--bg); border-radius: var(--radius-md);
  padding: 30px 22px; text-align: center;
  border: 1.5px solid rgba(67,56,202,0.08);
  transition: transform 0.28s, box-shadow 0.28s;
}
.perk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pico { font-size: 36px; margin-bottom: 14px; display: block; transition: transform 0.3s ease; }
.perk-card:hover .pico { transform: scale(1.18) rotate(-6deg); }
.perk-card h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px;
}
.perk-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.contact-info h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900; color: var(--ink);
  margin-bottom: 14px; letter-spacing: -0.6px;
}
.contact-info > p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.78; margin-bottom: 36px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 18px; border-radius: var(--radius-md);
  background: var(--bg-2); border: 1.5px solid rgba(67,56,202,0.07);
  margin-bottom: 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-detail:hover { border-color: rgba(67,56,202,0.18); box-shadow: var(--shadow-sm); }
.cdet-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.cdet-ico.loc   { background: rgba(67,56,202,0.1); }
.cdet-ico.phone { background: rgba(16,185,129,0.1); }
.cdet-ico.mail  { background: rgba(224,61,128,0.1); }
.cdet-ico.hours { background: rgba(245,158,11,0.1); }
.cdet-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: 0.3px; }
.cdet-text a, .cdet-text span {
  font-size: 14.5px; color: var(--indigo); text-decoration: none; font-weight: 500;
}
.cert-row-light { display: flex; gap: 12px; margin-top: 28px; }
.cert-badge-light {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1.5px solid rgba(67,56,202,0.08);
  border-radius: 12px; padding: 12px 16px; flex: 1;
}
.cert-icon { font-size: 22px; }
.cert-label { font-size: 11.5px; font-weight: 700; color: var(--ink-mid); line-height: 1.4; }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1.5px solid rgba(67,56,202,0.08);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--ink);
  margin-bottom: 28px; letter-spacing: -0.3px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 700;
  color: var(--ink-mid); margin-bottom: 7px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(67,56,202,0.12);
  border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  outline: none; transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(67,56,202,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-l));
  color: #fff; border: none; border-radius: var(--radius-sm);
  font-size: 15.5px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(67,56,202,0.3);
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67,56,202,0.42); }

/* ── FINTECH & SCHOOL FEATURES ── */
.ft-feat {
  display: flex; flex-direction: column; padding: 20px; gap: 8px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1.5px solid rgba(67,56,202,0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.ft-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(67,56,202,0.18); }
.ft-feat > div:first-child { transition: transform 0.28s; }
.ft-feat:hover > div:first-child { transform: scale(1.15) rotate(-5deg); }
.ft-feat h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px; font-weight: 800; color: var(--ink); margin-bottom: 4px;
}
.ft-feat p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; }

.ft-tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ft-tech {
  background: rgba(67,56,202,0.07); color: var(--indigo);
  border: 1.5px solid rgba(67,56,202,0.12);
  padding: 5px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}
.ft-tech:hover { background: rgba(67,56,202,0.14); transform: translateY(-1px); }

/* dashboard mockup window */
.mockup-window {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 28px 80px rgba(24,25,43,0.22), 0 4px 16px rgba(67,56,202,0.12);
  border: 1px solid rgba(67,56,202,0.12);
  animation: float 5s ease-in-out infinite;
}
.mockup-bar {
  background: #1e1b4b;
  padding: 11px 16px; display: flex; align-items: center; gap: 7px;
}
.mockup-dot {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
}
.mockup-url {
  flex: 1; background: rgba(255,255,255,0.08);
  border-radius: 5px; padding: 4px 12px; margin-left: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mockup-window img { width: 100%; height: auto; display: block; }

/* ── LEGAL (TERMS / PRIVACY) ── */
.terms-wrap {
  max-width: 840px; margin: 0 auto; padding: 72px 60px;
}
.terms-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 18px 22px; margin-bottom: 40px;
  background: rgba(67,56,202,0.04);
  border: 1.5px solid rgba(67,56,202,0.08);
  border-radius: var(--radius-md);
}
.terms-meta span { font-size: 13px; color: var(--ink-mid); font-weight: 500; }
.terms-wrap h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--ink);
  margin-bottom: 14px; margin-top: 40px; letter-spacing: -0.3px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(67,56,202,0.08);
}
.terms-wrap p { color: var(--ink-soft); font-size: 15px; line-height: 1.82; margin-bottom: 14px; }
.terms-wrap ul { padding-left: 22px; margin-bottom: 18px; }
.terms-wrap ul li { color: var(--ink-soft); font-size: 15px; line-height: 1.82; margin-bottom: 8px; }
.terms-wrap ul li strong { color: var(--ink); }
.terms-note {
  margin-top: 48px; padding: 20px 24px;
  background: rgba(67,56,202,0.05);
  border: 1.5px solid rgba(67,56,202,0.1);
  border-radius: var(--radius-md);
}
.terms-note p { color: var(--ink-mid); font-size: 14.5px; margin: 0; }

/* ── DECORATIVE SHAPES (hero) ── */
.dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.d1 { width:280px; height:280px; background:rgba(67,56,202,0.06); top:-80px; right:8%; animation: dotFloat 9s ease-in-out infinite; }
.d2 { width:180px; height:180px; background:rgba(224,61,128,0.06); bottom:10%; left:5%; animation: dotFloat 11s ease-in-out infinite 1s; }
.d3 { width:120px; height:120px; background:rgba(67,56,202,0.05); top:30%; left:12%; animation: dotFloat 7s ease-in-out infinite 2s; }
.tri { position: absolute; pointer-events: none; z-index: 1; }
.t1 { width:0; height:0; border-left:40px solid transparent; border-right:40px solid transparent; border-bottom:70px solid rgba(67,56,202,0.06); bottom:20%; right:18%; animation: dotFloat 8s ease-in-out infinite .5s; }
.t2 { width:0; height:0; border-left:25px solid transparent; border-right:25px solid transparent; border-bottom:44px solid rgba(224,61,128,0.06); top:20%; left:20%; animation: dotFloat 10s ease-in-out infinite 1.5s; }
.squig { position: absolute; right:12%; top:22%; z-index:1; opacity:.5; width:44px; animation: dotFloat 6s ease-in-out infinite 1s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 36px; }
  .wrap { padding: 72px 36px; }
  .power-inner { padding: 72px 36px; }
  .community-inner { padding: 60px 36px 40px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-band .wrap { grid-template-columns: 1fr; gap: 40px; }
  .power-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-wrap { padding: 32px 36px 64px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 100px 24px 100px; min-height: 85vh; }
  .wrap { padding: 60px 24px; }
  .power-inner { padding: 60px 24px; gap: 48px; }
  .inner-hero { padding: 90px 24px 60px; }
  .project-hero { padding: 90px 24px 70px; }
  .contact-grid { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .cta-wrap { padding: 20px 24px 52px; }
  .cta-box { padding: 52px 30px; }
  .terms-wrap { padding: 52px 24px; }
  .numbers { padding: 48px 20px; }
  .num-item { flex: 1 1 160px; padding: 20px 20px; }
  .num-item:not(:last-child)::after { display: none; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 250px; height: 250px; }
  .about-text { gap: 14px; }
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .job-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { letter-spacing: -1px; }
  .heading { letter-spacing: -0.5px; }
}
