﻿html {
  scroll-behavior: smooth;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 26px rgba(185, 143, 23, 0.32), 0 0 0 0 rgba(247, 217, 127, 0.4); }
  50% { box-shadow: 0 12px 32px rgba(185, 143, 23, 0.5), 0 0 0 12px rgba(247, 217, 127, 0); }
}

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

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-down {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes scroll-mouse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes particle-drift {
  0% { transform: translate(0, 0); opacity: 0; }
  10%, 90% { opacity: 0.6; }
  100% { transform: translate(var(--tx, 0), var(--ty, -100vh)); opacity: 0; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), #fde68a, var(--amber));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  transition: width 0.1s ease-out;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--nav-height);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.topnav.show {
  transform: translateY(0);
}

.topnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.topnav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-family: "Manrope", sans-serif;
  flex-shrink: 0;
}

.topnav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-dot {
  color: var(--emerald);
  font-weight: 700;
}

.topnav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  margin-right: 16px;
}

.topnav-links a {
  color: rgba(241, 245, 249, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.topnav-links a:hover {
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
}

.topnav-cta {
  background: linear-gradient(120deg, #fbbf24, var(--amber));
  color: #161616;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--amber-dark);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.topnav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.5);
}

.topnav-burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--emerald);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

@media (max-width: 768px) {
  .topnav-burger {
    display: flex;
  }
  .topnav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(14px);
    margin: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .topnav-links.open {
    transform: translateY(0);
  }
  .topnav-links a {
    padding: 14px 12px;
    border-radius: 6px;
  }
  .topnav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .topnav-inner {
    padding: 0 14px;
    gap: 12px;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #0f1320;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(247, 217, 127, 0.18);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

:root {
  --bg: #0f172a;
  --text: #f1f5f9;
  --card: #1e293b;
  --line: #334155;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --yellow: #10b981;
  --yellow-dark: #059669;
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  --sidebar-width: 260px;
  --nav-height: 64px;
}

.bank-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 24px;
  align-items: start;
}

.bank-main {
  min-width: 0;
}

.sidebar {
  background: #141826;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px 0 22px;
  font-family: "Be Vietnam Pro", sans-serif;
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: rgba(247, 217, 127, 0.18);
  border-radius: 3px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  margin-bottom: 6px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.sidebar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sidebar-title {
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
}

.sidebar-balance {
  padding: 0 22px;
  color: rgba(231, 233, 239, 0.7);
  font-size: 14px;
  margin-bottom: 22px;
}

.sidebar-balance strong {
  color: #fff;
  font-weight: 600;
}

.sidebar-section {
  padding: 8px 14px;
}

.sidebar-label {
  color: rgba(231, 233, 239, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 8px 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  margin: 2px 0;
  color: rgba(231, 233, 239, 0.78);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.sidebar-item svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.sidebar-item.active {
  background: linear-gradient(120deg, #2563eb, #1e40af);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.sidebar-toggle {
  display: none;
  margin-bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(247, 217, 127, 0.3);
  background: rgba(20, 24, 38, 0.85);
  color: var(--yellow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99;
}

.sidebar-backdrop.show {
  display: block;
}

@media (max-width: 980px) {
  .bank-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-toggle {
    display: flex;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
p {
  margin: 0;
}

.container,
footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 20px 100px;
  overflow: hidden;
  background:
    radial-gradient(circle 700px at 18% 25%, rgba(34, 197, 94, 0.22), transparent 60%),
    radial-gradient(circle 600px at 82% 75%, rgba(16, 185, 129, 0.16), transparent 60%),
    radial-gradient(circle 900px at 50% -10%, rgba(59, 130, 246, 0.10), transparent 55%),
    radial-gradient(circle 500px at 50% 110%, rgba(34, 197, 94, 0.08), transparent 50%),
    linear-gradient(180deg, #060a14 0%, #0d1428 50%, #060a14 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, transparent 30%, rgba(6, 10, 20, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero-glow-orb.orb-1 {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.6), transparent 70%);
  top: -120px;
  left: -80px;
  animation: orb-float-1 14s ease-in-out infinite;
}

.hero-glow-orb.orb-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: orb-float-2 18s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.15); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, -50px) scale(1.1); }
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 6px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  min-width: 0;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 1.1;
  background: linear-gradient(120deg, #ffffff 30%, #ffe89a 50%, #ffffff 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: none;
  margin: 0 auto;
  max-width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(247, 217, 127, 0.12);
  border: 1px solid rgba(247, 217, 127, 0.35);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  animation: slide-down 0.7s ease-out;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 217, 127, 0.18);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  background: rgba(247, 217, 127, 0.08);
}

.stat-num {
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  background: linear-gradient(120deg, #ffe89a, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.stat-label {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow:
    100px 200px var(--yellow),
    300px 100px var(--yellow),
    500px 400px var(--yellow),
    800px 300px var(--yellow),
    200px 500px var(--yellow),
    600px 600px var(--yellow),
    900px 150px var(--yellow),
    400px 350px var(--yellow);
  opacity: 0;
  animation: particle-drift 8s ease-in-out infinite;
  --tx: 30px;
  --ty: -120vh;
}

.hero-particles::after {
  animation-delay: 4s;
  animation-duration: 10s;
  --tx: -20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float-up 2s ease-in-out infinite;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scroll-mouse 1.5s ease-in-out infinite;
}

.cta-pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.section-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.cta-pill {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(185, 143, 23, 0.45);
}

.cta-pill:hover::before {
  left: 100%;
}

.hero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 31px);
}

.hero-cta {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  justify-content: center;
}

.cta-pill {
  min-width: 280px;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  color: #161616;
  font-weight: 800;
  background: linear-gradient(120deg, #fbbf24, var(--amber));
  border: 1px solid var(--amber-dark);
  border-radius: 999px;
  padding: 15px 24px;
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.4);
  white-space: normal;
  word-break: keep-all;
  line-height: 1.3;
}

main {
  padding: 0;
}

.section {
  padding: 0;
}

.section h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 3vw, 36px);
  margin-bottom: 12px;
}

.section-dark {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 70px calc(50vw - min(560px, 46vw));
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(247, 217, 127, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(247, 217, 127, 0.06), transparent 60%),
    linear-gradient(180deg, #1a1f30 0%, #141826 100%);
  text-align: center;
  color: #e7e9ef;
}

.section-dark h2 {
  color: var(--yellow);
  font-weight: 800;
}

.section-text {
  max-width: 880px;
  margin: 8px auto 0;
  line-height: 1.75;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(231, 233, 239, 0.86);
}

.feature-card {
  background: linear-gradient(160deg, #232838 0%, #1b202e 100%);
  border: 1px solid rgba(247, 217, 127, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  padding: 28px 22px;
  text-align: center;
  min-height: 170px;
}

.feature-card h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: "Manrope", sans-serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: rgba(231, 233, 239, 0.82);
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 15px);
}

.section-dark .cards-3 {
  margin-top: 22px;
}

.demo-phones {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  justify-items: center;
}

.phone-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  padding: 8px;
  background: linear-gradient(160deg, #2a2f3f, #1a1e2c);
  border: 1px solid rgba(247, 217, 127, 0.18);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  color: transparent;
  font-size: 0;
}

@media (max-width: 768px) {
  .demo-phones {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
  margin-bottom: 14px;
}

.bank-title {
  color: #ffffff !important;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin: 0;
}

.bank-breadcrumb {
  color: rgba(231, 233, 239, 0.6);
  font-size: 14px;
}

.bank-breadcrumb span {
  color: rgba(231, 233, 239, 0.4);
  margin: 0 4px;
}

.bank-header-clean {
  display: block;
  text-align: center;
  margin-bottom: 22px;
}

.bank-header-clean .bank-title {
  color: #fff !important;
  font-size: clamp(20px, 2.4vw, 28px);
}

.bank-sub {
  color: rgba(241, 245, 249, 0.65);
  font-size: 14px;
  margin: 8px 0 0;
}

.bank-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.bank-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(241, 245, 249, 0.78);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bank-pill:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.bank-pill.active {
  background: linear-gradient(120deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  border-color: var(--emerald);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.bank-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 22px;
}

.bank-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(241, 245, 249, 0.5);
}

.bank-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 16px 12px 44px;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.bank-search input::placeholder {
  color: rgba(241, 245, 249, 0.4);
}

.bank-search input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.bank-card.hidden {
  display: none;
}

.bank-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.bank-tab {
  background: transparent;
  border: 1px solid rgba(247, 217, 127, 0.25);
  color: rgba(231, 233, 239, 0.75);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.bank-tab.active {
  background: linear-gradient(120deg, #2563eb, #1e40af);
  color: #fff;
  border-color: #2563eb;
}

.bank-tab:hover:not(.active) {
  border-color: var(--yellow);
  color: var(--yellow);
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bank-card {
  background: linear-gradient(160deg, #232838 0%, #1b202e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.bank-card:hover {
  border-color: rgba(247, 217, 127, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.bank-card.off {
  opacity: 0.6;
  cursor: not-allowed;
}

.bank-card.off:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bank-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  filter: saturate(1.15) contrast(1.05);
}

.bank-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  image-rendering: auto;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bank-name {
  color: #e7e9ef;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bank-status {
  color: rgba(231, 233, 239, 0.55);
  font-size: 12px;
}

@media (max-width: 768px) {
  .bank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bank-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.placeholder-box {
  height: 220px;
  border-radius: var(--radius);
  border: 1px dashed #bfc7d4;
  background: repeating-linear-gradient(
    -45deg,
    #f8fafc,
    #f8fafc 12px,
    #eef2f7 12px,
    #eef2f7 24px
  );
}

.placeholder-box.small {
  height: 140px;
}

.cards-3,
.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.placeholder-card {
  min-height: 170px;
  background: linear-gradient(145deg, #ffffff, #f5f7fb);
}

.placeholder-tall {
  min-height: 240px;
  background: linear-gradient(145deg, #ffffff, #f2f5fa);
}

.step-item {
  min-height: 130px;
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 20px;
}

.btn-main {
  margin-top: 14px;
  color: #151515;
  background: linear-gradient(120deg, #fbbf24, var(--amber));
  border: 1px solid var(--amber-dark);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 99;
  text-align: center;
  text-decoration: none;
  color: #121212;
  font-weight: 900;
  width: min(740px, calc(100vw - 20px));
  border-radius: 999px;
  border: 1px solid var(--amber-dark);
  background: linear-gradient(120deg, #fbbf24, var(--amber));
  padding: 14px;
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.42);
}

.cta-final {
  text-align: center;
  padding-top: 70px !important;
  padding-bottom: 80px !important;
}

.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 999px;
  margin: 0 auto 18px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.countdown {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: rgba(239, 68, 68, 0.18);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.cta-final-text strong {
  color: var(--emerald);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cta-final h2 {
  font-size: clamp(26px, 3.5vw, 40px) !important;
  background: linear-gradient(120deg, #ffe89a, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-bottom: 18px;
}

.cta-final-text {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(231, 233, 239, 0.85);
  line-height: 1.7;
  font-size: clamp(15px, 1.4vw, 17px);
}

.cta-final-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-pill-outline {
  background: transparent !important;
  color: var(--yellow) !important;
  border: 1.5px solid var(--yellow) !important;
  box-shadow: none !important;
}

.cta-pill-outline:hover {
  background: rgba(247, 217, 127, 0.1) !important;
}

.cta-final-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  color: rgba(231, 233, 239, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.site-footer {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: #0f1320;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(231, 233, 239, 0.7);
  padding: 50px 0 0 !important;
  font-size: 14px;
}

.footer-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(231, 233, 239, 0.6);
  line-height: 1.65;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-title {
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(231, 233, 239, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
  color: rgba(231, 233, 239, 0.5);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.leaderboard {
  margin-top: 24px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}

.leaderboard table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(160deg, #232838, #1b202e);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 217, 127, 0.18);
}

.leaderboard th {
  background: rgba(247, 217, 127, 0.12);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  text-align: left;
  letter-spacing: 0.3px;
}

.leaderboard td {
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(231, 233, 239, 0.88);
  font-size: 14px;
}

.leaderboard tr.rank-1 td { color: #ffd966; font-weight: 700; }
.leaderboard tr.rank-2 td { color: #d4d4d4; font-weight: 600; }
.leaderboard tr.rank-3 td { color: #d49b6a; font-weight: 600; }

.features-icon-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-icon-card {
  background: linear-gradient(160deg, #232838, #1b202e);
  border: 1px solid rgba(247, 217, 127, 0.12);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.feature-icon-card:hover {
  border-color: rgba(247, 217, 127, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247, 217, 127, 0.18), rgba(247, 217, 127, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.feature-icon-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.feature-icon-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(231, 233, 239, 0.72);
}

.steps-flow {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  background: linear-gradient(160deg, #232838, #1b202e);
  border: 1px solid rgba(247, 217, 127, 0.18);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  box-shadow: 0 6px 16px rgba(247, 217, 127, 0.3);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--yellow);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(231, 233, 239, 0.78);
}

.step-arrow {
  font-size: 28px;
  color: var(--yellow);
  font-weight: 700;
  opacity: 0.6;
}

.faq-list {
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: linear-gradient(160deg, #232838, #1b202e);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(247, 217, 127, 0.4);
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #e7e9ef;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 50px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(247, 217, 127, 0.15);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.faq-item[open] summary {
  color: var(--yellow);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--yellow);
  color: #161616;
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: rgba(231, 233, 239, 0.78);
  line-height: 1.7;
  font-size: 14px;
}

.winners-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.winners-row::-webkit-scrollbar { height: 6px; }
.winners-row::-webkit-scrollbar-thumb { background: rgba(247, 217, 127, 0.25); border-radius: 3px; }

.winner-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: linear-gradient(160deg, #232838, #1b202e);
  border: 1px solid rgba(247, 217, 127, 0.12);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  font-family: "Manrope", sans-serif;
}

.winner-info {
  text-align: left;
  min-width: 0;
}

.winner-name {
  color: #e7e9ef;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-amount {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  margin-top: 3px;
}

.longform {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.longform h2 {
  text-align: center;
  margin-bottom: 20px;
}

.longform h3 {
  color: var(--yellow);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 26px 0 12px;
}

.longform p {
  color: rgba(231, 233, 239, 0.82);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 12px;
}

.longform ul {
  margin: 8px 0 16px;
  padding-left: 20px;
  color: rgba(231, 233, 239, 0.82);
  line-height: 1.8;
  font-size: 15px;
}

.longform ul li {
  margin-bottom: 6px;
}

.longform strong {
  color: var(--yellow);
  font-weight: 700;
}

.longform a {
  color: var(--yellow);
  text-decoration: underline;
}

.data-table-wrap {
  margin-top: 24px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(160deg, #232838, #1b202e);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table th {
  background: rgba(247, 217, 127, 0.1);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(231, 233, 239, 0.88);
  font-size: 14px;
}

.data-table tr:hover td {
  background: rgba(247, 217, 127, 0.04);
}

.status-success {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .cards-3,
  .steps,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 66vh;
  }
}

@media (max-width: 980px) {
  .features-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 16px 70px;
    min-height: 58vh;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .features-icon-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .leaderboard table,
  .data-table {
    font-size: 13px;
  }

  .leaderboard th,
  .leaderboard td,
  .data-table th,
  .data-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .winner-card {
    flex: 0 0 220px;
  }

  .longform h3 {
    font-size: 17px;
  }

  .longform p,
  .longform ul {
    font-size: 14px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 14px 18px;
    padding-right: 46px;
  }

  .faq-item p {
    font-size: 13px;
    padding: 0 18px 16px;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px) !important;
  }

  .hero p {
    font-size: clamp(14px, 3.5vw, 17px) !important;
  }

  .cta-pill {
    min-width: 240px;
    padding: 13px 20px;
    font-size: 14px;
  }

  .section-dark {
    padding: 50px 16px !important;
  }

  .section-dark h2 {
    font-size: clamp(20px, 4.5vw, 28px) !important;
  }

  .section-text {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .feature-card {
    padding: 22px 18px;
    min-height: auto;
  }

  .demo-phones {
    margin-top: 20px;
  }

  .phone-frame {
    max-width: 240px;
  }

  .bank-title {
    font-size: clamp(18px, 4.5vw, 22px) !important;
  }

  .bank-tabs {
    flex-wrap: wrap;
  }

  .bank-tab {
    flex: 1;
    min-width: 130px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .bank-grid {
    gap: 10px;
  }

  .bank-card {
    padding: 14px 8px;
  }

  .bank-logo {
    width: 64px;
    height: 64px;
    padding: 5px;
  }

  .bank-name {
    font-size: 13px;
  }

  .bank-status {
    font-size: 11px;
  }

  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-final-buttons .cta-pill {
    width: 100%;
    max-width: 320px;
  }

  .cta-final-meta {
    gap: 10px 18px;
    font-size: 13px;
  }

  .sticky-cta {
    font-size: 13px;
    padding: 12px;
    width: calc(100vw - 16px);
    bottom: 8px;
  }

  main {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 12px 60px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #fff !important;
    animation: none !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    padding: 0 6px;
  }

  .hero p {
    font-size: 13px !important;
    padding: 0 4px;
  }

  .hero-badge {
    font-size: 11px !important;
    padding: 5px 10px !important;
    white-space: normal;
    line-height: 1.3;
    max-width: calc(100vw - 32px);
  }

  .cta-pill {
    min-width: 0 !important;
    width: 100% !important;
    max-width: calc(100vw - 32px) !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
  }

  .hero-cta {
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .sticky-cta {
    font-size: 11px !important;
    padding: 10px 6px !important;
    width: calc(100vw - 12px) !important;
    bottom: 6px !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .stat-item {
    padding: 12px 6px;
  }

  .stat-num {
    font-size: 18px !important;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-glow-orb {
    width: 280px;
    height: 280px;
    filter: blur(60px);
  }

  .section-cta {
    margin-top: 24px;
  }

  .winner-card {
    flex: 0 0 200px;
    padding: 14px;
  }

  .leaderboard,
  .data-table-wrap {
    margin: 18px -8px 0;
  }

  .leaderboard th,
  .leaderboard td,
  .data-table th,
  .data-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .step-card {
    padding: 22px 18px;
  }

  .feature-icon-card {
    padding: 22px 16px;
  }

  body {
    overflow-x: hidden;
  }


  .section-dark {
    padding: 40px 14px !important;
  }

  .bank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .bank-card {
    padding: 12px 6px;
  }

  .bank-logo {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .cta-pill {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta {
    width: 100%;
    align-items: center;
  }

  .sticky-cta {
    font-size: 12px;
    padding: 11px 8px;
  }

  .footer-inner {
    width: calc(100vw - 32px);
    padding: 0 0 30px;
  }

  .sidebar-toggle {
    width: 38px;
    height: 38px;
  }
}
