/* ================================================================
   HOMEPAGE PREMIUM — Mobile-First CSS for Blade Template
   Scoped under .hp-landing to avoid conflicts with marketing-shell
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Prevent Scrolling Flash --- */
html, body.marketing-shell {
  background-color: #090a0d !important;
  scroll-behavior: auto !important;
}

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
.hp-landing {
  /* Colors — Dark */
  --hp-bg-primary: #0a0c14;
  --hp-bg-secondary: #0f1628;
  --hp-bg-tertiary: #131b30;
  --hp-bg-light: #f8f9fc;
  --hp-bg-card: #ffffff;
  --hp-bg-card-dark: rgba(255,255,255,0.04);

  /* Text */
  --hp-text-white: #ffffff;
  --hp-text-light: rgba(255,255,255,0.75);
  --hp-text-muted-light: rgba(255,255,255,0.5);
  --hp-text-dark: #1a1a2e;
  --hp-text-body: #4b5563;
  --hp-text-muted: #9ca3af;

  /* Accent */
  --hp-accent: #6366f1;
  --hp-accent-hover: #5558e6;
  --hp-accent-glow: rgba(99,102,241,0.25);
  --hp-accent-soft: rgba(99,102,241,0.08);
  --hp-success: #10b981;

  /* Borders */
  --hp-border-light: rgba(0,0,0,0.06);
  --hp-border-dark: rgba(255,255,255,0.08);

  /* Typography */
  --hp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Font sizes — mobile base */
  --hp-xs: 0.75rem;
  --hp-sm: 0.875rem;
  --hp-base: 1rem;
  --hp-lg: 1.125rem;
  --hp-xl: 1.25rem;
  --hp-2xl: 1.5rem;
  --hp-3xl: 2rem;
  --hp-4xl: 2.5rem;
  --hp-5xl: 3.25rem;

  /* Spacing */
  --hp-1: 4px;  --hp-2: 8px;  --hp-3: 12px;
  --hp-4: 16px; --hp-5: 20px; --hp-6: 24px;
  --hp-8: 32px; --hp-10: 40px; --hp-12: 48px;
  --hp-16: 64px; --hp-20: 80px; --hp-24: 96px;

  /* Radii */
  --hp-r-sm: 4px;
  --hp-r-md: 6px;
  --hp-r-lg: 10px;
  --hp-r-xl: 16px;
  --hp-r-pill: 9999px;

  /* Shadows */
  --hp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --hp-shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --hp-shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --hp-shadow-glow: 0 0 24px var(--hp-accent-glow);

  /* Transitions */
  --hp-t-fast: 150ms ease;
  --hp-t-base: 200ms ease;
  --hp-t-slow: 400ms ease;
  --hp-t-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  font-family: var(--hp-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ================================================================
   2. CONTAINER
   ================================================================ */
.hp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--hp-5);
}

@media (min-width: 1440px) {
  .hp-container {
    max-width: 1320px;
  }
}

@media (min-width: 768px) {
  .hp-container { padding: 0 var(--hp-8); }
}
@media (min-width: 1280px) {
  .hp-container { padding: 0 var(--hp-12); }
}


/* ================================================================
   3. ANIMATION UTILITIES
   ================================================================ */
.hp-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-fade-up.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hp-fade-d1 { transition-delay: 80ms; }
.hp-fade-d2 { transition-delay: 160ms; }
.hp-fade-d3 { transition-delay: 240ms; }
.hp-fade-d4 { transition-delay: 320ms; }

/* Stagger children system */
.hp-stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-stagger-child.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hp-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes hp-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--hp-accent-glow); }
  50% { box-shadow: 0 0 40px var(--hp-accent-glow), 0 0 60px rgba(99,102,241,0.1); }
}
@keyframes hp-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes hp-rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section divider — gradient glow line */
.hp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
  border: none;
  margin: 0;
}

/* Scroll Progress Bar */
.hp-scroll-progress {
  position: fixed;
  top: var(--marketing-header-height-desktop, 80px);
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--hp-accent), #38bdf8);
  z-index: 9999;
  box-shadow: 0 0 10px var(--hp-accent-glow);
  transition: width 0.1s ease-out;
}
@media (max-width: 900px) {
  .hp-scroll-progress { top: var(--marketing-header-height-mobile, 78px); }
}

/* Typography Gradient */
.hp-text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a5aed1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 3D Tilt Wrapper */
.hp-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Magnetic Button Wrap */
.hp-magnetic-wrap {
  display: inline-block;
  padding: 10px; /* Magnetic capture area */
  margin: -10px;
}
.hp-btn--magnetic {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.hp-btn--magnetic::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(transparent, rgba(255,255,255,0.4), transparent 30%);
  animation: hp-rotate-slow 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.hp-btn--magnetic:hover::before {
  opacity: 1;
}
.hp-btn--magnetic::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--hp-accent);
  border-radius: inherit;
  z-index: -1;
  transition: background 0.3s ease;
}
.hp-btn--magnetic:hover::after {
  background: var(--hp-accent-hover);
}



/* ================================================================
   3b. LUCIDE ICON UTILITIES
   Lucide replaces <i data-lucide="x"> with <svg class="lucide lucide-x">
   ================================================================ */
.hp-icon-inline,
.hp-icon-inline + .lucide,
.hp-landing .lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  vertical-align: middle;
  flex-shrink: 0;
}
.hp-lucide-lg,
.hp-lucide-lg + .lucide {
  width: 24px;
  height: 24px;
}
.hp-check-icon,
.hp-check-icon + .lucide {
  width: 18px;
  height: 18px;
  color: var(--hp-accent);
  flex-shrink: 0;
}
.hp-stat-icon,
.hp-stat-icon + .lucide {
  width: 18px;
  height: 18px;
  color: var(--hp-accent);
}
.hp-footer-icon,
.hp-footer-icon + .lucide {
  width: 14px;
  height: 14px;
  opacity: 0.65;
  margin-right: 4px;
  visibility: visible !important;
}
.footer-link:hover .lucide,
.footer-link:hover .hp-footer-icon {
  opacity: 1;
}
.hp-icon-social,
.hp-icon-social + .lucide {
  width: 18px;
  height: 18px;
  font-size: 16px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1;
}



.hp-landing .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hp-2);
  padding: var(--hp-3) var(--hp-6);
  border-radius: var(--hp-r-sm);
  font-family: var(--hp-font);
  font-size: var(--hp-sm);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all var(--hp-t-base);
  white-space: nowrap;
  text-decoration: none;
}
.hp-btn--primary {
  background: var(--hp-accent);
  color: var(--hp-text-white);
  box-shadow: var(--hp-shadow-glow);
}
.hp-btn--primary:hover {
  background: var(--hp-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--hp-accent-glow);
}
.hp-btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 16px var(--hp-accent-glow);
}
.hp-btn--secondary {
  background: transparent;
  color: var(--hp-text-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.hp-btn--secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}
.hp-btn--secondary:active {
  transform: scale(0.98);
  background: rgba(255,255,255,0.03);
}
.hp-btn--outline {
  background: transparent;
  color: var(--hp-accent);
  border: 1.5px solid var(--hp-accent);
}
.hp-btn--outline:hover {
  background: var(--hp-accent-soft);
}
.hp-btn--outline:active {
  transform: scale(0.98);
}
.hp-btn--white {
  background: var(--hp-text-white);
  color: var(--hp-accent);
}
.hp-btn--white:hover {
  background: #f0f0ff;
  transform: translateY(-2px);
}
.hp-btn--white:active {
  transform: translateY(0) scale(0.98);
}
.hp-btn--lg {
  padding: var(--hp-4) var(--hp-8);
  font-size: var(--hp-base);
}


/* ================================================================
   5. HERO SECTION
   ================================================================ */
.hp-hero {
  position: relative;
  min-height: calc(100svh - var(--marketing-header-height-mobile, 78px));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--hp-bg-primary) 0%, var(--hp-bg-secondary) 50%, var(--hp-bg-tertiary) 100%);
  overflow: hidden;
  padding-top: var(--hp-8);
  padding-bottom: var(--hp-12);
}

/* Ambient background orbs */
.hp-hero::before,
.hp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hp-hero::before {
  width: 500px; height: 500px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
  z-index: -1;
}
.hp-hero::after {
  width: 400px; height: 400px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 60%);
  z-index: -1;
}

.hp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--hp-10);
  width: 100%;
}

.hp-hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--hp-5);
}

.hp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--hp-2);
  padding: var(--hp-2) var(--hp-4);
  background: rgba(99,102,241,0.12);
  border-radius: var(--hp-r-pill);
  color: var(--hp-accent);
  font-size: var(--hp-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hp-hero__headline {
  font-size: var(--hp-3xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--hp-text-white);
  letter-spacing: -0.02em;
  margin: 0;
}

.hp-hero__subtext {
  font-size: var(--hp-base);
  line-height: 1.7;
  color: var(--hp-text-light);
  max-width: 480px;
  margin: 0;
}

.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hp-3);
}

.hp-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hp-hero__image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--hp-r-xl);
  animation: hp-float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.hp-hero__image::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hp-hero {
    min-height: calc(100svh - var(--marketing-header-height, 88px));
    padding-top: var(--hp-12);
    padding-bottom: var(--hp-16);
  }
  .hp-hero__headline { font-size: var(--hp-4xl); }
  .hp-hero__actions { gap: var(--hp-4); }
}
@media (min-width: 1024px) {
  .hp-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--hp-16);
  }
  .hp-hero__text { flex: 0 0 45%; }
  .hp-hero__headline { font-size: var(--hp-5xl); }
  .hp-hero__subtext { font-size: var(--hp-lg); }
  .hp-hero__image { flex: 1; }
  .hp-hero__image img {
    max-width: 100%;
    transform: perspective(1200px) rotateY(-3deg);
    animation: none;
    transition: transform 0.4s ease;
  }
  .hp-hero__image:hover img {
    transform: perspective(1200px) rotateY(0deg);
  }
}


/* ================================================================
   6. TRUST BAR
   ================================================================ */
.hp-trust {
  background: #ffffff;
  border-top: 1px solid var(--hp-border-light);
  border-bottom: 1px solid var(--hp-border-light);
  padding: var(--hp-10) 0;
  position: relative;
  overflow: hidden;
}
.hp-trust::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 70% 50%, rgba(99,102,241,0.03), transparent 60%);
  pointer-events: none;
}
.hp-trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hp-4);
}
.hp-trust__label {
  font-size: var(--hp-sm);
  font-weight: 700;
  color: var(--hp-text-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-trust__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hp-10);
  flex-wrap: wrap;
}
.hp-trust__logos img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(0.8);
  transition: all var(--hp-t-base);
}
.hp-trust__logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@media (min-width: 768px) {
  .hp-trust { padding: var(--hp-12) 0; }
  .hp-trust__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--hp-16);
  }
  .hp-trust__logos { 
    gap: var(--hp-12); 
    justify-content: flex-end;
  }
  .hp-trust__logos img { height: 44px; }
}


/* ================================================================
   6.5 TRANSFER CALCULATOR
   ================================================================ */
.hp-calculator {
  background: var(--hp-bg-light);
  padding: var(--hp-12) 0 0 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hp-calculator::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.06), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.hp-calc-widget {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--hp-r-xl);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(99,102,241,0.06);
  margin: 0 auto;
  overflow: hidden;
}
.hp-calc-widget__header {
  padding: var(--hp-6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-4);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,249,252,0.8) 100%);
}
.hp-calc-widget__title {
  font-size: var(--hp-base);
  font-weight: 700;
  color: var(--hp-text-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-calc-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.04);
  padding: 4px;
  border-radius: var(--hp-r-md);
  border: 1px solid rgba(0,0,0,0.02);
}
.hp-calc-tab {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--hp-text-muted);
  border-radius: var(--hp-r-sm);
  cursor: pointer;
  transition: all var(--hp-t-fast);
}
.hp-calc-tab.active {
  background: var(--hp-bg-card);
  color: var(--hp-accent);
  box-shadow: var(--hp-shadow-sm);
}
.hp-calc-panel {
  display: none;
}
.hp-calc-panel.active {
  display: block;
  animation: hp-calc-fade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes hp-calc-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hp-calc-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--hp-r-pill);
  background: rgba(16, 185, 129, 0.1);
  color: var(--hp-success);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.hp-calc-widget__body {
  padding: var(--hp-8) var(--hp-6);
}
.hp-calc-input-group {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--hp-r-sm);
  padding: var(--hp-5) var(--hp-6);
  transition: all var(--hp-t-base);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}
.hp-calc-input-group:focus-within {
  border-color: var(--hp-accent);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.12), 0 8px 24px rgba(0,0,0,0.08);
  background: #ffffff;
  transform: translateY(-2px);
}
.hp-calc-input-group label {
  display: block;
  font-size: var(--hp-xs);
  font-weight: 600;
  color: var(--hp-text-muted);
  margin-bottom: var(--hp-1);
}
.hp-calc-input {
  display: flex;
  align-items: center;
  font-size: var(--hp-xl);
  font-weight: 700;
  color: var(--hp-text-dark);
}
.hp-calc-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--hp-text-dark);
  outline: none;
  min-width: 0;
  margin-left: 6px;
  box-shadow: none !important;
}
.hp-calc-input input:-webkit-autofill,
.hp-calc-input input:-webkit-autofill:hover,
.hp-calc-input input:-webkit-autofill:focus,
.hp-calc-input input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--hp-text-dark) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.hp-calc-input-group:focus-within input {
  color: var(--hp-accent);
}
.hp-calc-input .currency-code {
  font-size: var(--hp-lg);
  font-weight: 700;
  color: var(--hp-text-dark);
}
.hp-calc-currency-select {
  appearance: none;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: var(--hp-lg);
  font-weight: 700;
  color: var(--hp-text-dark);
  cursor: pointer;
  outline: none;
  padding: 4px 20px 4px 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b0c0f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  transition: background-color var(--hp-t-fast);
}
.hp-calc-currency-select:hover {
  background-color: rgba(0,0,0,0.04);
  border-radius: var(--hp-r-sm);
}
.hp-calc-path {
  position: relative;
  padding: var(--hp-4) 0 var(--hp-4) var(--hp-6);
}
.hp-calc-path-line {
  position: absolute;
  top: 0; bottom: 0; left: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--hp-border-light), rgba(99,102,241,0.4), var(--hp-border-light));
}
.hp-calc-fees {
  display: flex;
  flex-direction: column;
  gap: var(--hp-3);
  position: relative;
  z-index: 1;
}
.hp-calc-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--hp-sm);
  color: var(--hp-text-body);
  background: rgba(248, 250, 252, 0.6);
  padding: 10px 14px;
  border-radius: var(--hp-r-md);
  margin-bottom: 4px;
  border: 1px solid rgba(0,0,0,0.02);
}
.hp-calc-fee-row:last-child {
  margin-bottom: 0;
}
.hp-calc-cost {
  font-weight: 600;
  color: var(--hp-text-dark);
}
.hp-calc-widget__footer {
  padding: var(--hp-6);
  border-top: 1px solid var(--hp-border-light);
  background: #fafafa;
}
.hp-calc-disclosure {
  text-align: center;
  font-size: var(--hp-xs);
  color: var(--hp-text-muted);
  margin: var(--hp-4) 0 0 0;
}


/* ================================================================
   7. FEATURES GRID
   ================================================================ */
.hp-features {
  background: var(--hp-bg-light);
  padding: var(--hp-16) 0;
}
.hp-features__header {
  text-align: center;
  margin-bottom: var(--hp-12);
}
.hp-features__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-dark);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-features__subtitle {
  margin: var(--hp-3) auto 0;
  font-size: var(--hp-base);
  color: var(--hp-text-body);
  max-width: 520px;
}
.hp-features__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--hp-5);
  gap: var(--hp-5);
  padding-bottom: var(--hp-4);
  -webkit-overflow-scrolling: touch;
}
.hp-features__grid::-webkit-scrollbar {
  display: none;
}
.hp-feature-card {
  scroll-snap-align: start;
  flex: 0 0 85%;
  background: var(--hp-bg-card);
  border: 1px solid var(--hp-border-light);
  border-radius: var(--hp-r-lg);
  padding: var(--hp-8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  --x: 50%;
  --y: 50%;
}
.hp-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hp-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 350px at var(--x) var(--y), rgba(99,102,241,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.hp-feature-card:hover::after {
  opacity: 1;
}
.hp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.15);
}
.hp-feature-card:hover::before {
  opacity: 1;
}
.hp-feature-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--hp-r-md);
  background: var(--hp-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--hp-5);
}
.hp-feature-card__icon .lucide,
.hp-feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--hp-accent);
  stroke-width: 1.75;
}
.hp-feature-card__title {
  font-size: var(--hp-lg);
  font-weight: 700;
  color: var(--hp-text-dark);
  margin: 0 0 var(--hp-3);
}
.hp-feature-card__body {
  font-size: var(--hp-sm);
  line-height: 1.7;
  color: var(--hp-text-body);
  margin: 0;
}
@media (min-width: 768px) {
  .hp-features { padding: var(--hp-20) 0; }
  .hp-features__title { font-size: var(--hp-3xl); }
  .hp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    gap: var(--hp-6);
  }
  .hp-feature-card {
    flex: auto;
  }
}
@media (min-width: 1024px) {
  .hp-features__grid { gap: var(--hp-8); }
}


/* ================================================================
   8. BANKING EXPERIENCE (split section)
   ================================================================ */
.hp-experience {
  background: #ffffff;
  padding: var(--hp-16) 0;
}
.hp-experience__inner {
  display: flex;
  flex-direction: column;
  gap: var(--hp-10);
}
.hp-experience__image {
  border-radius: var(--hp-r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hp-experience__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--hp-r-xl);
}
.hp-experience__text {
  display: flex;
  flex-direction: column;
  gap: var(--hp-5);
}
.hp-experience__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-dark);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-experience__body {
  font-size: var(--hp-base);
  color: var(--hp-text-body);
  line-height: 1.7;
  margin: 0;
}
.hp-experience__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--hp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp-experience__checklist li {
  display: flex;
  align-items: center;
  gap: var(--hp-3);
  font-size: var(--hp-sm);
  font-weight: 500;
  color: var(--hp-text-dark);
}
.hp-experience__checklist li .lucide,
.hp-experience__checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--hp-accent);
  flex-shrink: 0;
  stroke-width: 2;
}
@media (min-width: 768px) {
  .hp-experience { padding: var(--hp-20) 0; }
  .hp-experience__title { font-size: var(--hp-3xl); }
}
@media (min-width: 1024px) {
  .hp-experience__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--hp-16);
  }
  .hp-experience__image {
    flex: 0 0 50%;
    aspect-ratio: auto;
    max-height: 460px;
  }
  .hp-experience__text { flex: 1; }
}


/* ================================================================
   9. CARD SHOWCASE (cinematic dark section)
   ================================================================ */
.hp-cards {
  position: relative;
  background: linear-gradient(180deg, var(--hp-bg-primary) 0%, #0d1020 50%, var(--hp-bg-secondary) 100%);
  padding: var(--hp-16) 0;
  overflow: hidden;
}
/* Shimmer accent line at top */
.hp-cards::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), rgba(16,185,129,0.2), transparent);
}
.hp-cards__inner {
  display: flex;
  flex-direction: column;
  gap: var(--hp-10);
}
.hp-cards__text {
  display: flex;
  flex-direction: column;
  gap: var(--hp-5);
}
.hp-cards__tag {
  font-size: var(--hp-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hp-accent);
  margin: 0;
}
.hp-cards__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-white);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-cards__body {
  font-size: var(--hp-base);
  color: var(--hp-text-light);
  line-height: 1.7;
  margin: 0;
}
.hp-cards__features {
  display: flex;
  flex-direction: column;
  gap: var(--hp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp-cards__features li {
  display: flex;
  align-items: center;
  gap: var(--hp-3);
  font-size: var(--hp-sm);
  font-weight: 500;
  color: var(--hp-text-light);
}
.hp-cards__features li .lucide,
.hp-cards__features li svg {
  color: var(--hp-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2;
}
.hp-cards__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hp-cards__image img {
  width: 85%;
  max-width: 420px;
  height: auto;
  border-radius: var(--hp-r-xl);
  overflow: hidden;
  animation: hp-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.hp-cards__image::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
@media (min-width: 768px) {
  .hp-cards { padding: var(--hp-20) 0; }
  .hp-cards__title { font-size: var(--hp-3xl); }
}
@media (min-width: 1024px) {
  .hp-cards__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--hp-16);
  }
  .hp-cards__text { flex: 0 0 45%; }
  .hp-cards__image { flex: 1; }
  .hp-cards__image img {
    max-width: 520px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    animation: none;
    transition: transform 0.5s ease;
  }
  .hp-cards__image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
  }
}

/* Card stats row */
.hp-cards__stats {
  display: flex;
  gap: var(--hp-5);
  margin-top: var(--hp-3);
}
.hp-cards__stat {
  display: flex;
  align-items: center;
  gap: var(--hp-3);
  padding: var(--hp-3) var(--hp-4);
  border-radius: var(--hp-r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hp-border-dark);
}
.hp-cards__stat > .lucide,
.hp-cards__stat > svg {
  width: 18px;
  height: 18px;
  color: var(--hp-accent);
  stroke-width: 2;
  flex-shrink: 0;
}
.hp-cards__stat strong {
  display: block;
  font-size: var(--hp-sm);
  font-weight: 700;
  color: var(--hp-text-white);
  line-height: 1.2;
}
.hp-cards__stat span {
  display: block;
  font-size: var(--hp-xs);
  color: var(--hp-text-muted-light);
  line-height: 1.3;
}


/* ================================================================
   10. SECURITY & TRUST (dark section)
   ================================================================ */
.hp-security {
  position: relative;
  background: linear-gradient(180deg, var(--hp-bg-secondary) 0%, var(--hp-bg-primary) 100%);
  padding: var(--hp-16) 0;
  overflow: hidden;
}
.hp-security__inner {
  display: flex;
  flex-direction: column;
  gap: var(--hp-10);
}
.hp-security__text {
  display: flex;
  flex-direction: column;
  gap: var(--hp-5);
}
.hp-security__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-white);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-security__body {
  font-size: var(--hp-base);
  color: var(--hp-text-light);
  line-height: 1.7;
  margin: 0;
}
.hp-security__features {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--hp-5);
  gap: var(--hp-4);
  padding-bottom: var(--hp-4);
  -webkit-overflow-scrolling: touch;
}
.hp-security__features::-webkit-scrollbar {
  display: none;
}
.hp-security__feature {
  scroll-snap-align: start;
  flex: 0 0 85%;
  display: flex;
  align-items: flex-start;
  gap: var(--hp-4);
  padding: var(--hp-4);
  border-radius: var(--hp-r-md);
  background: var(--hp-bg-card-dark);
  border: 1px solid var(--hp-border-dark);
  transition: all 0.3s ease;
}
.hp-security__feature:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99,102,241,0.2);
  transform: translateX(4px);
}
.hp-security__feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--hp-r-sm);
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-security__feature-icon .lucide,
.hp-security__feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--hp-accent);
  stroke-width: 1.75;
}
.hp-security__feature-label {
  font-size: var(--hp-sm);
  font-weight: 600;
  color: var(--hp-text-white);
}
.hp-security__feature-desc {
  font-size: var(--hp-xs);
  color: var(--hp-text-muted-light);
  margin-top: 2px;
}
.hp-security__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--hp-2);
  padding: var(--hp-3) var(--hp-5);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--hp-r-pill);
  color: var(--hp-success);
  font-size: var(--hp-sm);
  font-weight: 600;
  width: fit-content;
}
.hp-security__image {
  display: flex;
  justify-content: center;
}
.hp-security__image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--hp-r-xl);
}
@media (min-width: 768px) {
  .hp-security { padding: var(--hp-20) 0; }
  .hp-security__title { font-size: var(--hp-3xl); }
  .hp-security__features {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .hp-security__feature {
    flex: auto;
  }
}
@media (min-width: 1024px) {
  .hp-security__inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--hp-16);
  }
  .hp-security__text { flex: 0 0 50%; }
  .hp-security__image { flex: 1; }
}


/* ================================================================
   11. SUPPORT SECTION (light)
   ================================================================ */
.hp-support {
  background: var(--hp-bg-light);
  padding: var(--hp-16) 0;
}
.hp-support__inner {
  display: flex;
  flex-direction: column;
  gap: var(--hp-10);
}
.hp-support__text {
  display: flex;
  flex-direction: column;
  gap: var(--hp-5);
}
.hp-support__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-dark);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-support__body {
  font-size: var(--hp-base);
  color: var(--hp-text-body);
  line-height: 1.7;
  margin: 0;
}
.hp-support__channels {
  display: flex;
  gap: var(--hp-4);
  flex-wrap: wrap;
}
.hp-support__channel {
  display: flex;
  align-items: center;
  gap: var(--hp-2);
  padding: var(--hp-2) var(--hp-4);
  background: var(--hp-bg-card);
  border: 1px solid var(--hp-border-light);
  border-radius: var(--hp-r-pill);
  font-size: var(--hp-sm);
  font-weight: 500;
  color: var(--hp-text-dark);
  transition: all var(--hp-t-base);
}
.hp-support__channel:hover {
  border-color: var(--hp-accent);
  box-shadow: 0 2px 8px rgba(99,102,241,0.1);
}
.hp-support__channel .lucide,
.hp-support__channel svg {
  width: 15px;
  height: 15px;
  color: var(--hp-accent);
  stroke-width: 2;
}
.hp-support__image {
  border-radius: var(--hp-r-xl);
  overflow: hidden;
}
.hp-support__image img {
  width: 100%;
  height: auto;
  border-radius: var(--hp-r-xl);
}
@media (min-width: 768px) {
  .hp-support { padding: var(--hp-20) 0; }
  .hp-support__title { font-size: var(--hp-3xl); }
}
@media (min-width: 1024px) {
  .hp-support__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--hp-16);
  }
  .hp-support__text { flex: 0 0 45%; }
  .hp-support__image { flex: 1; }
}


/* ================================================================
   12. FINAL CTA
   ================================================================ */
.hp-cta {
  position: relative;
  background: linear-gradient(135deg, var(--hp-bg-primary) 0%, var(--hp-bg-tertiary) 100%);
  padding: var(--hp-16) 0;
  text-align: center;
  overflow: hidden;
}
.hp-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/generated/cta-background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}
.hp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hp-5);
}
.hp-cta__title {
  font-size: var(--hp-2xl);
  font-weight: 800;
  color: var(--hp-text-white);
  letter-spacing: -0.02em;
  margin: 0;
}
.hp-cta__body {
  font-size: var(--hp-base);
  color: var(--hp-text-light);
  max-width: 480px;
  margin: 0;
}
.hp-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--hp-3);
  margin-top: var(--hp-4);
}
@media (min-width: 768px) {
  .hp-cta { padding: var(--hp-24) 0; }
  .hp-cta__title { font-size: var(--hp-4xl); }
  .hp-cta__body { font-size: var(--hp-lg); }
  .hp-cta__actions {
    flex-direction: row;
    gap: var(--hp-4);
  }
}


/* ================================================================
   13. ANDROID APP PROMPT — Enhanced
   ================================================================ */
.hp-app-prompt__header {
  display: flex;
  align-items: center;
  gap: var(--hp-4);
  margin-bottom: var(--hp-4);
}
.hp-app-prompt__icon {
  width: 52px; height: 52px;
  border-radius: var(--hp-r-md);
  background: linear-gradient(135deg, #3ddc84 0%, #1fa463 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(61,220,132,0.2);
}
.hp-app-prompt__icon .lucide,
.hp-app-prompt__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
  stroke-width: 2;
}

/* ================================================================
   UNIVERSAL APP DOWNLOAD MODAL
   ================================================================ */
.bank-app-prompt {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999 !important;
    display: flex;
    align-items: flex-end !important;
    justify-content: center;
    padding: 0;
}

.bank-app-prompt[hidden] {
    display: none !important;
}

.bank-app-prompt__backdrop {
    display: none !important;
}

.bank-app-prompt__panel {
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    gap: 0.9rem;
    padding: 1.15rem 1.15rem 2rem 1.15rem;
    border-radius: 1.4rem 1.4rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    background:
        radial-gradient(circle at top right, rgba(138, 99, 255, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(9, 10, 13, 0.96);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    opacity: 0;
}

.bank-app-prompt:not([hidden]) .bank-app-prompt__panel {
    animation: hp-sheet-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hp-sheet-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes hp-modal-pop {
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .bank-app-prompt {
        inset: 0;
        align-items: center !important;
        padding: 1rem;
    }
    .bank-app-prompt__backdrop {
        display: block !important;
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(5, 7, 11, 0.64);
    }
    .bank-app-prompt__panel {
        width: min(100%, 28rem);
        border-radius: 1.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.15rem;
        transform: translateY(20px) scale(0.95);
    }
    .bank-app-prompt:not([hidden]) .bank-app-prompt__panel {
        animation: hp-modal-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

.hp-app-prompt__header .bank-app-prompt__eyebrow {
    margin-bottom: 2px;
    color: rgba(245, 158, 11, 0.92);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hp-app-prompt__header .bank-app-prompt__eyebrow .lucide,
.hp-app-prompt__header .bank-app-prompt__eyebrow svg {
    width: 13px;
    height: 13px;
    margin-right: 4px;
    opacity: 0.7;
    vertical-align: middle;
}

.hp-app-prompt__header .bank-app-prompt__title {
    margin: 0;
    color: #f8f8fb;
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    font-weight: 700;
    line-height: 1.05;
}

.bank-app-prompt__body {
    margin: 0;
    color: rgba(210, 212, 219, 0.84);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hp-app-prompt__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hp-2);
    margin-bottom: var(--hp-4);
}

.hp-app-prompt__features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--hp-r-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(243, 244, 246, 0.88);
}

.hp-app-prompt__features span .lucide,
.hp-app-prompt__features span svg {
    width: 13px;
    height: 13px;
    color: var(--hp-accent);
    stroke-width: 2;
}

.bank-app-prompt__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

.bank-app-prompt__primary,
.bank-app-prompt__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--ui-duration-fast) var(--ui-ease), box-shadow var(--ui-duration-fast) var(--ui-ease), border-color var(--ui-duration-fast) var(--ui-ease);
}

.bank-app-prompt__primary {
    border: 1px solid rgba(155, 126, 255, 0.35);
    background: linear-gradient(135deg, rgba(111, 73, 246, 0.98), rgba(138, 99, 255, 0.92));
    color: #fff;
    box-shadow: 0 16px 30px rgba(86, 53, 191, 0.35);
}

.bank-app-prompt__secondary {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(243, 244, 246, 0.88);
}

.bank-app-prompt__primary:hover,
.bank-app-prompt__primary:focus-visible,
.bank-app-prompt__secondary:hover,
.bank-app-prompt__secondary:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.bank-app-prompt__primary .lucide,
.bank-app-prompt__primary svg {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    stroke-width: 2;
}

@media (max-width: 767px) {
    .bank-app-prompt__actions {
        grid-template-columns: 1fr;
    }
}


/* ================================================================
   14. FOOTER ENHANCEMENTS (within marketing layout)
   ================================================================ */
.hp-landing + .marketing-footer .marketing-footer__grid,
.hp-landing ~ .marketing-footer .marketing-footer__grid {
  gap: 1.6rem;
}

.hp-landing + .marketing-footer .footer-link,
.hp-landing ~ .marketing-footer .footer-link {
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

@media (min-width: 900px) {
  .hp-landing + .marketing-footer .marketing-footer__grid,
  .hp-landing ~ .marketing-footer .marketing-footer__grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* Footer social icons */
.marketing-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.marketing-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(210,212,219,0.7) !important;
  transition: all 200ms ease;
  text-decoration: none;
}
.marketing-footer__social a .lucide,
.marketing-footer__social a svg,
.marketing-footer__social a .hp-icon-social {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2.2 !important;
  stroke: rgba(210,212,219,0.85) !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.marketing-footer__social a:hover {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.3);
  color: #fff !important;
  transform: translateY(-2px);
}
.marketing-footer__social a:hover .lucide,
.marketing-footer__social a:hover svg {
  stroke: #fff !important;
}

/* Footer link icons */
.footer-link .lucide,
.footer-link svg {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.8 !important;
  margin-right: 4px;
  flex-shrink: 0;
  stroke-width: 2 !important;
  display: inline-block !important;
  vertical-align: middle;
  stroke: currentColor !important;
}
.footer-link:hover .lucide,
.footer-link:hover svg {
  opacity: 1;
}

/* ================================================================
   15. HEADER & NAVIGATION MENU (Mature UI Upgrade)
   ================================================================ */

/* Frosted glass header override */
body.marketing-shell .marketing-header {
  background: rgba(10, 12, 20, 0.75) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nav Link Hover States */
body.marketing-shell .marketing-nav__link {
  position: relative;
  color: var(--hp-text-light) !important;
  transition: color 0.3s ease;
}
body.marketing-shell .marketing-nav__link:hover,
body.marketing-shell .marketing-nav__link.is-current-page {
  color: var(--hp-text-white) !important;
}
body.marketing-shell .marketing-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hp-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.marketing-shell .marketing-nav__link:hover::after,
body.marketing-shell .marketing-nav__link.is-current-page::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Enhancing Mobile Menu Toggle */
body.marketing-shell .mobile-menu-toggle {
  color: var(--hp-text-white);
  transition: transform 0.3s ease;
}
body.marketing-shell .mobile-menu-toggle:active {
  transform: scale(0.9);
}

/* ================================================================
   15. DEDICATED APP DOWNLOAD SECTION
   ================================================================ */
.hp-apps {
    padding: var(--hp-24) 0;
    overflow: hidden;
    background: radial-gradient(circle at 100% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-apps--contact {
    padding: var(--hp-16) 0;
    background: transparent;
    border-bottom: none;
}

.hp-apps__inner {
    display: flex;
    align-items: center;
    gap: var(--hp-12);
}

.hp-apps__text {
    flex: 1 1 50%;
}

.hp-apps__eyebrow {
    color: var(--hp-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: var(--hp-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-apps__title {
    margin-bottom: var(--hp-4);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.hp-apps__body {
    margin-bottom: var(--hp-8);
    color: rgba(210, 212, 219, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
}

.hp-apps__downloads {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hp-4);
}

.hp-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: var(--hp-r-xl);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-app-btn:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hp-app-btn__icon {
    font-size: 1.75rem;
}

.hp-app-btn__content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hp-app-btn__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 2px;
}

.hp-app-btn__value {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.hp-apps__image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hp-apps__image img {
    max-width: 440px;
    height: auto;
    border-radius: var(--hp-r-xl);
    overflow: hidden;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.1s ease-out;
}

@media (min-width: 992px) {
    .hp-apps__inner {
        align-items: flex-start;
    }
    .hp-apps__text {
        padding-bottom: 20vh; /* create scroll space */
    }
    .hp-apps__image {
        align-self: flex-start;
        position: sticky;
        top: calc(var(--marketing-header-height-desktop, 80px) + 2rem);
    }
}

@media (max-width: 991px) {
    .hp-apps__inner {
        flex-direction: column;
        text-align: center;
    }
    .hp-apps__downloads {
        justify-content: center;
    }
    .hp-apps__image {
        order: -1;
    }
    .hp-apps__image img {
        max-width: 300px;
        border-radius: var(--hp-r-xl);
    }
}

/* ================================================================
   16. CONTACT PAGE ENHANCEMENTS (Premium Polish)
   ================================================================ */
.hp-landing.public-page {
    background: #090a0d !important;
    position: relative;
    overflow: hidden;
}

.hp-landing.public-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp-landing.public-page::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp-landing.public-page .marketing-container {
    position: relative;
    z-index: 1;
}

.hp-landing.public-page .public-surface {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hp-landing.public-page .public-surface:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hp-landing.public-page .public-contact-link {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-landing.public-page .public-contact-link:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    transform: translateX(6px);
}

.hp-landing.public-page .public-contact-link__icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(167, 139, 250, 0.1)) !important;
    color: var(--hp-accent) !important;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hp-landing.public-page .public-contact-socials__link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.hp-landing.public-page .public-contact-socials__link:hover {
    background: var(--hp-accent);
    border-color: var(--hp-accent);
    color: #fff;
    transform: scale(1.1);
}

