/* ===== PulseScreen landing page ===== */

.landing-body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(ellipse 1200px 800px at 50% -10%, rgba(34,211,163,0.12), transparent 60%),
    radial-gradient(ellipse 800px 600px at 100% 100%, rgba(110,168,255,0.06), transparent 60%),
    #05060a;
}

#bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(120,140,200,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,140,200,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  opacity: 0.8;
}
.bg-particles {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0; pointer-events: none;
  opacity: 0.5;
}
.bg-orb-1 { top: 15%; left: -12%; width: 420px; height: 420px; background: rgba(34,211,163,0.22); animation: orb-float-1 14s ease-in-out infinite; }
.bg-orb-2 { top: 50%; right: -10%; width: 520px; height: 520px; background: rgba(110,168,255,0.16); animation: orb-float-2 18s ease-in-out infinite; }
@keyframes orb-float-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, 30px); } }
@keyframes orb-float-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px, -40px); } }

/* ---- Top nav (sticky) ---- */
.l-nav {
  position: sticky; top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 40px;
  gap: 32px;
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.l-nav.scrolled {
  background: rgba(5, 6, 10, 0.94);
  border-bottom-color: rgba(120,140,200,0.10);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.l-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.l-logo {
  width: 42px; height: 42px; border-radius: 11px;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,211,163,0.1), transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(110,168,255,0.07), transparent 70%),
    linear-gradient(180deg, #0c1324, #05060a);
  border: 1px solid rgba(34,211,163,0.45);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(34,211,163,0.32), inset 0 0 12px rgba(34,211,163,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.l-logo::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 900ms cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
}
.l-brand:hover .l-logo {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 38px rgba(34,211,163,0.52), inset 0 0 14px rgba(34,211,163,0.22);
}
.l-brand:hover .l-logo::before { transform: rotate(45deg) translateX(100%); }
.l-logo svg { position: relative; z-index: 2; }
.l-logo-sm { width: 28px; height: 28px; border-radius: 7px; }
.l-logo-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 10px var(--up-glow);
  animation: pulse-live 1.6s ease-in-out infinite;
}
.l-brand-name { font-size: 17px; font-weight: 800; letter-spacing: 0.24em; color: var(--text); }
.l-brand-accent { color: var(--up); }
.l-brand-sub { font-size: 8.5px; letter-spacing: 0.32em; color: var(--text-mute); margin-top: 3px; }

.l-nav-links {
  display: flex; gap: 32px; justify-content: center;
}
.l-nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}
.l-nav-links a:hover { color: var(--text); }

.l-nav-cta { display: flex; gap: 10px; align-items: center; }

.l-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--ff-ui);
}
.l-btn .arrow { transition: transform 200ms ease; display: inline-block; }
.l-btn:hover .arrow { transform: translateX(3px); }
.l-btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.l-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}
.l-btn-primary {
  color: #05060a;
  background: linear-gradient(180deg, #2ce2b0, #22d3a3);
  border-color: rgba(34,211,163,0.5);
  box-shadow: 0 10px 24px rgba(34,211,163,0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}
.l-btn-primary:hover {
  box-shadow: 0 14px 32px rgba(34,211,163,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.l-btn-lg { padding: 14px 26px; font-size: 13.5px; }

/* ---- Live ticker strip (sticks below nav) ---- */
.l-strip {
  position: sticky; top: 66px;
  z-index: 35;
  height: 46px;
  border-top: 1px solid rgba(120,140,200,0.08);
  border-bottom: 1px solid rgba(120,140,200,0.12);
  background: linear-gradient(180deg, rgba(8,12,20,0.94), rgba(12,16,26,0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  margin: 0;
}
@media (max-width: 720px) {
  .l-strip { top: 62px; height: 38px; }
}
.l-strip .ticker-track {
  display: flex; align-items: center;
  white-space: nowrap; height: 100%;
  animation: marquee-scroll 50s linear infinite;
  padding-left: 96px;
}

/* ---- HERO ---- */
.l-hero {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 80px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.l-hero-text { max-width: 600px; }
.l-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(34,211,163,0.08);
  border: 1px solid rgba(34,211,163,0.22);
  color: var(--up);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 20px;
}
.l-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 8px var(--up-glow);
  animation: pulse-live 1.4s ease-in-out infinite;
}

.l-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--text);
}
.l-h-line { display: block; }
.l-grad {
  background: linear-gradient(90deg, #22d3a3, #6ea8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.l-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 32px;
  max-width: 560px;
}
.l-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.l-trust {
  display: flex; flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px dashed rgba(120,140,200,0.12);
}
.l-trust-item {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.l-trust-item b {
  color: var(--text);
  font-weight: 700;
  margin-right: 2px;
}

/* ---- Hero globe ---- */
.l-hero-visual {
  position: relative;
}
.l-hero-globe {
  max-width: 520px !important;
  max-height: 520px !important;
  margin: 0 auto;
}

/* ---- Sections ---- */
.l-section {
  position: relative; z-index: 2;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.l-section-muted {
  background: linear-gradient(180deg, transparent, rgba(110,168,255,0.03), transparent);
}
.l-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.l-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--up);
  margin-bottom: 12px;
}
.l-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}

/* ---- Feature grid ---- */
.l-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.l-feature {
  background: linear-gradient(180deg, rgba(18,24,38,0.85), rgba(10,14,24,0.85));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(110,168,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 260ms cubic-bezier(0.2, 0.9, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.l-feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(34,211,163,0.06), transparent 60%);
  opacity: 0; transition: opacity 280ms ease;
}
.l-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,163,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.l-feature:hover::before { opacity: 1; }
.l-feat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(34,211,163,0.08);
  border: 1px solid rgba(34,211,163,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--up);
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(34,211,163,0.4);
}
.l-feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.l-feature p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---- Markets grid ---- */
.l-markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.l-market-card {
  background: rgba(18,24,38,0.6);
  border: 1px solid rgba(110,168,255,0.12);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  transition: all 220ms ease;
}
.l-market-card:hover {
  background: rgba(34,211,163,0.08);
  border-color: rgba(34,211,163,0.35);
  transform: translateY(-2px);
}
.l-market-card b {
  display: block;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text);
  margin-bottom: 6px;
}
.l-market-card span {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ---- Steps ---- */
.l-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.l-step {
  background: rgba(18,24,38,0.5);
  border: 1px solid rgba(110,168,255,0.1);
  border-radius: 14px;
  padding: 30px 26px;
  position: relative;
}
.l-step-n {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--up);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 700;
}
.l-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.l-step p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---- Final CTA ---- */
.l-final-cta {
  text-align: center;
  padding: 60px 40px;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(34,211,163,0.12), transparent 60%),
    linear-gradient(180deg, rgba(18,28,42,0.8), rgba(10,14,24,0.8));
  border: 1px solid rgba(34,211,163,0.25);
  border-radius: 20px;
  margin-top: 24px;
}
.l-final-cta h2 { margin: 0 0 10px; max-width: none; }
.l-final-cta p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 28px;
}

/* =========================================================
   PREMIUM FOOTER — ps-footer namespace
   ========================================================= */
.ps-footer {
  position: relative;
  margin-top: 80px;
  background:
    radial-gradient(ellipse 800px 300px at 20% 0%, rgba(34,211,163,0.06), transparent 60%),
    radial-gradient(ellipse 800px 300px at 80% 10%, rgba(110,168,255,0.06), transparent 60%),
    linear-gradient(180deg, rgba(8,11,20,0.6), rgba(4,5,9,1) 60%);
  border-top: 1px solid rgba(120,140,200,0.08);
  color: var(--text-dim);
  overflow: hidden;
  z-index: 2;
}

/* Background glow ornaments */
.psf-ornament {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.psf-ornament-1 { top: -200px; left: -150px; background: radial-gradient(circle, #22d3a3, transparent 70%); }
.psf-ornament-2 { top: 300px; right: -180px; background: radial-gradient(circle, #6ea8ff, transparent 70%); }

/* ---- Mega CTA strip ---- */
.psf-mega {
  position: relative;
  padding: 56px 60px 48px;
  border-bottom: 1px solid rgba(120,140,200,0.08);
  background:
    linear-gradient(180deg, rgba(34,211,163,0.04), transparent 60%);
}
.psf-mega-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 2;
}
.psf-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 800;
  color: var(--up);
  margin-bottom: 14px;
}
.psf-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 10px var(--up);
  animation: pulse-live 1.6s ease-in-out infinite;
}
.psf-mega-title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 800;
}
.psf-mega-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0;
}
.psf-mega-right {
  display: flex; flex-direction: column; gap: 10px;
  align-items: stretch;
}
.psf-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #22d3a3, #16a780);
  color: #05060a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(34,211,163,0.28);
  transition: all 220ms ease;
}
.psf-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(34,211,163,0.42);
}
.psf-cta-primary .arrow { transition: transform 200ms ease; }
.psf-cta-primary:hover .arrow { transform: translateX(4px); }
.psf-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border: 1px solid rgba(120,140,200,0.2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  border-radius: 10px;
  text-decoration: none;
  transition: all 180ms ease;
}
.psf-cta-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(120,140,200,0.35);
}
.psf-cta-meta {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 6px;
}
.psf-check { color: var(--up); font-weight: 800; }
.psf-sep { color: var(--text-mute); opacity: 0.4; margin: 0 4px; }

/* ---- Stats row ---- */
.psf-stats {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 30px 60px;
  border-bottom: 1px solid rgba(120,140,200,0.08);
  z-index: 2;
}
.psf-stat {
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid rgba(120,140,200,0.06);
}
.psf-stat:last-child { border-right: none; }
.psf-stat-value {
  font-family: var(--ff-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.psf-stat-value span {
  font-size: 16px;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.psf-grad {
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.psf-live {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--up);
}
.psf-live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 10px var(--up);
  animation: pulse-live 1.4s ease-in-out infinite;
}
.psf-stat-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 700;
}

/* ---- Main grid ---- */
.psf-main {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding: 56px 60px 36px;
  z-index: 2;
}
.psf-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.psf-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(34,211,163,0.06);
  border: 1px solid rgba(34,211,163,0.28);
  box-shadow: 0 0 16px rgba(34,211,163,0.22);
}
.psf-brand-name {
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text);
  line-height: 1;
}
.psf-brand-sub {
  font-size: 8.5px;
  letter-spacing: 0.36em;
  color: var(--text-mute);
  font-weight: 700;
  margin-top: 5px;
}
.psf-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 22px;
  max-width: 420px;
}
.psf-socials { display: flex; gap: 10px; }
.psf-social {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(120,140,200,0.15);
  color: var(--text-dim);
  text-decoration: none;
  transition: all 220ms ease;
}
.psf-social:hover {
  background: rgba(34,211,163,0.1);
  border-color: rgba(34,211,163,0.4);
  color: var(--up);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34,211,163,0.22);
}

.psf-col-head {
  font-size: 10px;
  letter-spacing: 0.26em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.psf-col-head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--up), transparent);
  border-radius: 2px;
}
.psf-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.psf-col li { font-size: 13px; color: var(--text-dim); }
.psf-col a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.psf-col a:hover { color: var(--up); padding-left: 3px; }
.psf-dot-i {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
.psf-dot-g { background: #22d3a3; }
.psf-dot-y { background: #f0b429; }
.psf-dot-o { background: #f7a021; }
.psf-dot-b { background: #6ea8ff; }
.psf-dot-p { background: #a78bfa; }

/* Contact cards */
.psf-col-connect { display: flex; flex-direction: column; }
.psf-contact {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(120,140,200,0.1);
  border-radius: 11px;
  text-decoration: none;
  color: var(--text);
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.psf-contact::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--up), #6ea8ff);
  opacity: 0;
  transition: opacity 200ms ease;
}
.psf-contact:hover {
  background: rgba(34,211,163,0.05);
  border-color: rgba(34,211,163,0.28);
  transform: translateX(3px);
}
.psf-contact:hover::before { opacity: 1; }
.psf-contact-icon {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(34,211,163,0.15), rgba(110,168,255,0.15));
  color: var(--up);
  flex: 0 0 auto;
}
.psf-contact-icon-accent {
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  color: #05060a;
  font-size: 15px;
  font-weight: 800;
}
.psf-contact-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 700;
  margin-bottom: 2px;
}
.psf-contact-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

/* ---- Disclaimer ---- */
.psf-disclaim {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  padding: 18px 60px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-mute);
  border-top: 1px solid rgba(120,140,200,0.08);
  border-bottom: 1px solid rgba(120,140,200,0.08);
  background: rgba(240,180,41,0.025);
  z-index: 2;
}
.psf-disclaim b { color: var(--text); }
.psf-disclaim-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 800;
  color: #f0b429;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.32);
  border-radius: 3px;
  padding: 2px 7px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ---- Bottom bar ---- */
.psf-bottom {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 60px 28px;
  font-size: 11px;
  color: var(--text-mute);
  z-index: 2;
}
.psf-bottom a {
  color: var(--text-dim); text-decoration: none;
  transition: color 160ms ease;
}
.psf-bottom a:hover { color: var(--up); }
.psf-bottom-l b { color: var(--text); letter-spacing: 0.12em; font-weight: 800; }
.psf-bottom-c { text-align: center; letter-spacing: 0.05em; }
.psf-bottom-r { text-align: right; display: flex; gap: 8px; justify-content: flex-end; }
.psf-heart { color: #ff4d6d; animation: pulse-live 1.8s ease-in-out infinite; display: inline-block; }
.psf-credit {
  color: var(--up) !important;
  letter-spacing: 0.12em;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(34,211,163,0.07);
  border: 1px solid rgba(34,211,163,0.22);
  margin: 0 4px;
}
.psf-credit:hover {
  background: rgba(34,211,163,0.14) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .psf-main { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .psf-main .psf-col:nth-child(4) { grid-column: 2 / span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .psf-main .psf-col:nth-child(4) .psf-col-head { grid-column: 1 / -1; }
  .psf-main .psf-col:nth-child(4) ul { margin: 0; }
}
@media (max-width: 860px) {
  .psf-mega { padding: 40px 24px; }
  .psf-mega-inner { grid-template-columns: 1fr; gap: 24px; }
  .psf-stats { grid-template-columns: repeat(3, 1fr); gap: 20px 0; padding: 24px; }
  .psf-stat { border-right: none; }
  .psf-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px 24px; }
  .psf-brand-col { grid-column: 1 / -1; }
  .psf-main .psf-col:nth-child(4) { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .psf-disclaim { padding: 16px 24px; }
  .psf-bottom { grid-template-columns: 1fr; text-align: center; gap: 10px; padding: 16px 24px 24px; }
  .psf-bottom-r { justify-content: center; }
}
@media (max-width: 560px) {
  .psf-stats { grid-template-columns: repeat(2, 1fr); }
  .psf-main { grid-template-columns: 1fr; }
  .psf-main .psf-col:nth-child(4) { grid-template-columns: 1fr; }
}

/* =========================================================
   OLD footer (l-footer-new) — kept below for compatibility
   ========================================================= */
.l-footer-new {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8,11,20,0.4), rgba(5,6,10,0.95));
  border-top: 1px solid rgba(120,140,200,0.1);
  margin-top: 40px;
}
.l-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 60px 32px;
  max-width: 1400px; margin: 0 auto;
}
.l-fcol { min-width: 0; }
.l-fcol-brand { padding-right: 20px; }
.l-fbrand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.l-fdesc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 18px;
  max-width: 420px;
}
.l-fbadges { display: flex; gap: 8px; flex-wrap: wrap; }
.l-fbadge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--up);
  background: rgba(34,211,163,0.08);
  border: 1px solid rgba(34,211,163,0.22);
  border-radius: 20px;
}
.l-fbadge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 6px var(--up);
  animation: pulse-live 1.6s ease-in-out infinite;
}
.l-fbadge-muted {
  color: var(--text-mute);
  background: rgba(255,255,255,0.03);
  border-color: rgba(120,140,200,0.14);
}
.l-fhead {
  font-size: 10px;
  letter-spacing: 0.26em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(120,140,200,0.1);
}
.l-flist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.l-flist a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 160ms ease, padding-left 160ms ease;
  display: inline-block;
}
.l-flist a:hover {
  color: var(--up);
  padding-left: 4px;
}

/* Contact cards */
.l-fcol-connect { display: flex; flex-direction: column; }
.l-fcontact {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(120,140,200,0.1);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 180ms ease;
}
.l-fcontact:hover {
  background: rgba(34,211,163,0.06);
  border-color: rgba(34,211,163,0.28);
  transform: translateX(2px);
}
.l-fc-icon {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34,211,163,0.2), rgba(110,168,255,0.2));
  color: var(--up);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.l-fc-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 700;
  margin-bottom: 2px;
}
.l-fc-value {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  word-break: break-all;
}

/* Disclaimer */
.l-fdisclaimer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 60px;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-mute);
  border-top: 1px solid rgba(120,140,200,0.08);
  border-bottom: 1px solid rgba(120,140,200,0.08);
  background: rgba(240,180,41,0.03);
}
.l-fdisclaimer b { color: var(--neutral, #f0b429); }

/* Bottom bar */
.l-fbottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 60px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.l-fbottom-center {
  text-align: center;
  letter-spacing: 0.14em;
}
.l-fbottom-center b {
  color: var(--up);
  letter-spacing: 0.18em;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(34,211,163,0.08);
  border: 1px solid rgba(34,211,163,0.22);
  margin: 0 3px;
}
.l-fbottom-right {
  text-align: right;
  display: flex; justify-content: flex-end; gap: 8px;
}
.l-fbottom-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 140ms ease;
}
.l-fbottom-link:hover { color: var(--up); }
.l-fsep { color: var(--text-mute); opacity: 0.4; }

/* ---- Animations ---- */
.l-fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: l-fade-in 720ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes l-fade-in {
  to { opacity: 1; transform: translateY(0); }
}
.l-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.l-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .l-hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 40px; }
  .l-hero-visual { display: flex; justify-content: center; }
  .l-hero-globe { max-width: 400px !important; max-height: 400px !important; }
  .l-feature-grid, .l-markets-grid, .l-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1080px) {
  .l-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 32px 24px;
  }
  .l-fcol-brand { grid-column: 1 / -1; padding-right: 0; }
  .l-fdisclaimer, .l-fbottom { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 720px) {
  .l-nav { padding: 14px 20px; grid-template-columns: auto auto; }
  .l-nav-links { display: none; }
  .l-nav-cta a span.arrow { display: none; }
  .l-brand-text .l-brand-sub { display: none; }
  .l-hero { padding: 40px 20px; gap: 28px; }
  .l-headline { font-size: clamp(32px, 8vw, 44px); }
  .l-sub { font-size: 15px; }
  .l-section { padding: 60px 20px; }
  .l-feature-grid, .l-markets-grid, .l-steps { grid-template-columns: 1fr; }
  .l-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 20px;
  }
  .l-fdisclaimer { padding: 14px 20px; font-size: 11px; }
  .l-fbottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    padding: 16px 20px;
  }
  .l-fbottom-right { justify-content: center; }
}

/* =========================================================
   FOOTER V2 — real premium styling (overrides)
   ========================================================= */

/* Animated grid backdrop */
.ps-footer-v2 {
  padding-top: 0;
  background:
    linear-gradient(180deg,
      rgba(5,6,10,0.4) 0%,
      rgba(8,11,20,0.85) 20%,
      rgba(4,5,9,1) 100%);
}
.psf-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34,211,163,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,163,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
  animation: psf-grid-drift 28s linear infinite;
  opacity: 0.6;
  z-index: 1;
}
@keyframes psf-grid-drift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 48px 48px, 48px 48px; }
}

/* 3rd ornament for drama */
.psf-ornament-3 {
  top: 600px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.12), transparent 70%);
  filter: blur(100px);
  opacity: 0.5;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Mega CTA — upgrade --- */
.ps-footer-v2 .psf-mega {
  padding: 72px 60px 60px;
  border-bottom: 1px solid rgba(120,140,200,0.08);
  background: transparent;
}
.ps-footer-v2 .psf-mega-title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(135deg, #e4e8f0 0%, #e4e8f0 60%, #22d3a3 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ps-footer-v2 .psf-mega-title .l-grad {
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(34,211,163,0.3));
}
.ps-footer-v2 .psf-cta-primary {
  position: relative;
  padding: 16px 26px;
  font-size: 13px;
  overflow: hidden;
}
.ps-footer-v2 .psf-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #22d3a3, #16a780);
  transition: opacity 400ms ease;
}
.ps-footer-v2 .psf-cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6ea8ff, #22d3a3);
  opacity: 0;
  transition: opacity 400ms ease;
}
.ps-footer-v2 .psf-cta-primary:hover::after { opacity: 1; }
.ps-footer-v2 .psf-cta-primary > * { position: relative; z-index: 2; }

/* --- Stats upgrade — vertical glow bars --- */
.ps-footer-v2 .psf-stats {
  padding: 36px 60px;
  background: linear-gradient(180deg, rgba(18,24,38,0.4), transparent);
  position: relative;
}
.ps-footer-v2 .psf-stats::before,
.ps-footer-v2 .psf-stats::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,163,0.28), transparent);
}
.ps-footer-v2 .psf-stats::before { top: 0; }
.ps-footer-v2 .psf-stats::after { bottom: 0; }
.ps-footer-v2 .psf-stat {
  position: relative;
  padding: 8px 18px;
  transition: transform 300ms ease;
}
.ps-footer-v2 .psf-stat:hover { transform: translateY(-4px); }
.ps-footer-v2 .psf-stat-value {
  font-size: 34px;
  background: linear-gradient(180deg, #ffffff, #8891a7);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.ps-footer-v2 .psf-stat-value.psf-grad {
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ps-footer-v2 .psf-stat-value.psf-live {
  background: none;
  -webkit-text-fill-color: var(--up);
  color: var(--up);
  font-size: 20px;
}
.ps-footer-v2 .psf-stat-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 800;
  color: var(--text-mute);
  opacity: 0.75;
  transition: opacity 300ms ease;
}
.ps-footer-v2 .psf-stat:hover .psf-stat-label { opacity: 1; color: var(--up); }

/* --- Main grid upgrade --- */
.ps-footer-v2 .psf-main {
  padding: 72px 60px 48px;
  gap: 48px;
  grid-template-columns: 2.4fr 1fr 1fr 1.2fr 1.5fr;
}

/* Brand column — animated logo glow */
.ps-footer-v2 .psf-brand-col { position: relative; }
.ps-footer-v2 .psf-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(34,211,163,0.08), rgba(110,168,255,0.06));
  border: 1px solid rgba(34,211,163,0.32);
  box-shadow:
    0 0 28px rgba(34,211,163,0.22),
    inset 0 0 20px rgba(34,211,163,0.08);
  animation: psf-logo-pulse 3.6s ease-in-out infinite;
}
@keyframes psf-logo-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(34,211,163,0.18), inset 0 0 20px rgba(34,211,163,0.06); }
  50%      { box-shadow: 0 0 38px rgba(34,211,163,0.38), inset 0 0 22px rgba(34,211,163,0.12); }
}
.ps-footer-v2 .psf-brand-name {
  font-size: 19px;
  letter-spacing: 0.24em;
  background: linear-gradient(135deg, #e4e8f0 0%, #22d3a3 120%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.ps-footer-v2 .psf-brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 440px;
}

/* Social icons — glass morph pills */
.ps-footer-v2 .psf-socials { gap: 12px; margin-top: 4px; }
.ps-footer-v2 .psf-social {
  width: 42px; height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(120,140,200,0.14);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.ps-footer-v2 .psf-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  opacity: 0;
  transition: opacity 280ms ease;
}
.ps-footer-v2 .psf-social:hover::before { opacity: 0.14; }
.ps-footer-v2 .psf-social:hover {
  color: var(--up);
  border-color: rgba(34,211,163,0.5);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(34,211,163,0.24);
}
.ps-footer-v2 .psf-social svg { position: relative; z-index: 2; transition: transform 280ms ease; }
.ps-footer-v2 .psf-social:hover svg { transform: scale(1.15); }

/* Column heads — vertical accent bar */
.ps-footer-v2 .psf-col-head {
  font-size: 11px;
  letter-spacing: 0.32em;
  padding-left: 14px;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 20px;
}
.ps-footer-v2 .psf-col-head::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 3px;
  background: linear-gradient(180deg, #22d3a3, transparent);
  border-radius: 2px;
}
.ps-footer-v2 .psf-col-head::after { display: none; }

/* Link hover → arrow reveal */
.ps-footer-v2 .psf-col ul { gap: 13px; }
.ps-footer-v2 .psf-col a {
  font-size: 13.5px;
  position: relative;
  padding-left: 14px;
}
.ps-footer-v2 .psf-col a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--up);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.ps-footer-v2 .psf-col a:hover {
  color: var(--up);
  padding-left: 18px;
}
.ps-footer-v2 .psf-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.ps-footer-v2 .psf-col li {
  font-size: 13px;
  padding-left: 14px;
  position: relative;
}
.ps-footer-v2 .psf-col li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--up);
  font-weight: 800;
}

/* Contact cards upgrade — 3D hover */
.ps-footer-v2 .psf-contact {
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(34,211,163,0.04), rgba(110,168,255,0.03) 50%, rgba(255,255,255,0.02));
  border: 1px solid rgba(120,140,200,0.12);
  position: relative;
}
.ps-footer-v2 .psf-contact:hover {
  transform: translateX(4px) translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,211,163,0.4);
}
.ps-footer-v2 .psf-contact-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(34,211,163,0.2), rgba(110,168,255,0.2));
  box-shadow: 0 4px 14px rgba(34,211,163,0.18), inset 0 0 0 1px rgba(34,211,163,0.28);
}
.ps-footer-v2 .psf-contact-icon-accent {
  background: linear-gradient(135deg, #22d3a3, #6ea8ff);
  color: #05060a;
  box-shadow: 0 6px 16px rgba(34,211,163,0.44);
  animation: psf-shine 4s ease-in-out infinite;
}
@keyframes psf-shine {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(6deg) scale(1.06); }
  75%      { transform: rotate(-4deg); }
}

/* Disclaimer — softer background + better divider */
.ps-footer-v2 .psf-disclaim {
  padding: 22px 60px;
  background:
    linear-gradient(90deg, rgba(240,180,41,0.06), rgba(240,180,41,0.01) 50%, rgba(240,180,41,0.06));
  border-color: rgba(240,180,41,0.12);
  font-size: 12px;
  line-height: 1.75;
}

/* Bottom bar — gradient line above + animated heart + credit pill */
.ps-footer-v2 .psf-bottom {
  padding: 22px 60px 32px;
  position: relative;
  font-size: 12px;
}
.ps-footer-v2 .psf-bottom::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,163,0.3), rgba(110,168,255,0.3), transparent);
}
.ps-footer-v2 .psf-heart {
  display: inline-block;
  font-size: 14px;
  animation: psf-heartbeat 1.4s ease-in-out infinite;
  color: #ff4d6d;
  filter: drop-shadow(0 0 4px rgba(255,77,109,0.4));
}
@keyframes psf-heartbeat {
  0%, 100% { transform: scale(1); }
  14%, 42% { transform: scale(1.22); }
  28%, 70% { transform: scale(0.92); }
}
.ps-footer-v2 .psf-credit {
  display: inline-block;
  letter-spacing: 0.18em;
  font-weight: 800;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(34,211,163,0.12), rgba(110,168,255,0.12));
  border: 1px solid rgba(34,211,163,0.3);
  border-radius: 5px;
  margin: 0 5px;
  color: var(--up) !important;
  position: relative;
  overflow: hidden;
}
.ps-footer-v2 .psf-credit::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34,211,163,0.24), transparent);
  transform: translateX(-100%);
  transition: transform 600ms ease;
}
.ps-footer-v2 .psf-credit:hover::before { transform: translateX(100%); }

/* Bottom bar link pills */
.ps-footer-v2 .psf-bottom-r a {
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 200ms ease;
}
.ps-footer-v2 .psf-bottom-r a:hover {
  background: rgba(34,211,163,0.1);
  color: var(--up);
}

/* Entrance animation for footer sections on scroll-into-view */
.ps-footer-v2 .psf-mega,
.ps-footer-v2 .psf-stats,
.ps-footer-v2 .psf-main,
.ps-footer-v2 .psf-disclaim,
.ps-footer-v2 .psf-bottom {
  opacity: 0;
  transform: translateY(18px);
  animation: psf-in 800ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
.ps-footer-v2 .psf-stats { animation-delay: 120ms; }
.ps-footer-v2 .psf-main  { animation-delay: 220ms; }
.ps-footer-v2 .psf-disclaim { animation-delay: 340ms; }
.ps-footer-v2 .psf-bottom { animation-delay: 420ms; }
@keyframes psf-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .ps-footer-v2 .psf-main { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}
@media (max-width: 860px) {
  .ps-footer-v2 .psf-mega { padding: 48px 24px 40px; }
  .ps-footer-v2 .psf-stats { padding: 28px 24px; }
  .ps-footer-v2 .psf-main  { padding: 48px 24px 32px; }
  .ps-footer-v2 .psf-disclaim { padding: 18px 24px; }
  .ps-footer-v2 .psf-bottom { padding: 18px 24px 28px; }
  .ps-footer-v2 .psf-stat-value { font-size: 24px; }
}
