:root {
  --primary: #0f3460;
  --primary-dark: #0b2545;
  --accent: #e94560;
  --success: #16a34a;
  --success-light: #f0fdf4;
  --danger-light: #fff5f5;
  --bg-color: #f5f7ff;
  --bg-white: #fff;
  --text-dark: #333;
  --text-light: #666;
  --text-muted: #888;
  --border: #eee;
}

* { box-sizing: border-box; font-family: 'Inter', system-ui, sans-serif; }
body { margin: 0; background: var(--bg-color); color: var(--text-dark); overflow-x: hidden; }
.hidden { display: none !important; }

/* Navbar ΓÇö fixed so it stays while scrolling */
.navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-logo { font-weight: 800; font-size: 19px; color: #1e1b4b; letter-spacing: -0.5px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.nav-logo .logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 4px; }
.nav-btn { background: transparent; color: #555; border: none; padding: 6px 14px; border-radius: 8px; font-size: 13px; cursor: pointer; }
.nav-btn.active { background: var(--primary); color: #fff; font-weight: 600; }
.btn-logout { color: var(--accent); border: 0.5px solid var(--accent); margin-left: 8px; }
.btn-login { color: var(--primary); border: 0.5px solid var(--primary); }
.btn-register { background: var(--primary); color: #fff; border: none; }


/* Buttons */
.btn { border-radius: 10px; cursor: pointer; font-weight: 600; transition: all 0.2s; letter-spacing: 0.3px; border: none; display: inline-block; text-align: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-danger { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 0.5px solid var(--primary); }
.btn-ghost { background: #f5f5f5; color: #333; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-md { padding: 11px 24px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; display: block; }

/* Inputs */
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 13px; color: #555; margin-bottom: 6px; font-weight: 500; }
.input-wrapper { position: relative; display: flex; align-items: center; }
.input-prefix { position: absolute; left: 12px; font-size: 14px; color: #888; }
.input-wrapper input { width: 100%; padding: 10px 12px; border: 0.5px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; background: #fafafa; transition: border-color 0.2s; }
.input-wrapper input.has-prefix { padding-left: 32px; }
.input-wrapper input:focus { border-color: var(--primary); }

/* Clean keyframe animations for smooth page transitions */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Layout & Utils */
/* Offset for fixed top navbar (56px) */
#app { padding-top: 56px; }
#app.no-navbar { padding-top: 0; }


.layout-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
  animation: pageFadeIn 0.3s ease-out forwards;
}
.landing-container { max-width: 1100px; margin: 0 auto; padding: 80px 24px 60px; }
.auth-container { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px; min-height: calc(100vh - 60px); }
.card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  border: 0.5px solid #eee;
  animation: cardSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 0.5px solid #eee;
  margin: 0 auto;
  animation: cardSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 20px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.w-full { width: 100%; }

/* Virtual Card */
.vcard-container { perspective: 1000px; width: 100%; max-width: 360px; height: 210px; margin: 0 auto; cursor: pointer; }
.vcard-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d; }
.vcard-inner.flipped { transform: rotateY(180deg); }
.vcard-front, .vcard-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.4); box-sizing: border-box; }
.vcard-front { padding: 22px 24px; color: #fff; font-family: 'Courier New', monospace; }
.vcard-back { transform: rotateY(180deg); }
.vcard-chip svg { margin-top: 18px; }
.vcard-bg-circle1 { position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; border-radius: 50%; opacity: 0.1; }
.vcard-bg-circle2 { position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px; border-radius: 50%; opacity: 0.08; }

.vcard-mini { border-radius: 16px; padding: 20px 22px; width: 100%; max-width: 320px; color: #fff; font-family: 'Courier New', monospace; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* ΓöÇΓöÇ Dashboard Virtual Card ΓöÇΓöÇ */
.dashboard-card-wrapper {
  perspective: 1000px;
  width: 100%;
  max-width: 360px;
  height: 227px;
  margin: 0 auto;
  cursor: pointer;
}
.db-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Both faces stacked absolutely */
.db-card {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
  /* 3-row grid: top | middle | bottom */
  grid-template-rows: auto 1fr auto !important;
}

/* FRONT: visible by default */
.db-card-front {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: perspective(1000px) rotateY(0deg);
  transition: opacity 0.15s ease 0.2s,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* BACK: hidden by default */
.db-card-back {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: perspective(1000px) rotateY(180deg);
  transition: opacity 0.15s ease,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  grid-template-rows: auto 1fr auto !important;
}

/* Flipped state: swap visibility */
.db-card-inner.flipped .db-card-front {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: perspective(1000px) rotateY(-180deg);
  transition: opacity 0.15s ease,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.db-card-inner.flipped .db-card-back {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: perspective(1000px) rotateY(0deg);
  transition: opacity 0.15s ease 0.2s,
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Middle row: holds card number */
.db-card-mid {
  z-index: 2;
  position: relative;
  align-self: center;
  width: 100%;
}

/* Card number ΓÇö single line, always fills card width */
.db-card-number {
  /* (100vw - 80px) = card content area (32px page margin + 48px card padding).
     Divide by 15 (em-width of 16-digit number with our spacing) to get exact fill.
     Capped at 21px ΓÇö the fill size for the max 360px card. */
  font-size: clamp(11px, calc((100vw - 80px) / 15), 21px);
  font-weight: 700;
  letter-spacing: 0.1em;
  word-spacing: 0.4em;
  color: #1a1d21;
  font-family: 'Courier New', monospace;
  text-shadow: 0 1px 3px rgba(255,255,255,0.5);
  z-index: 2;
  position: relative;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}


/* ΓöÇΓöÇ Back face components ΓöÇΓöÇ */
.db-magstripe {
  height: 44px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  margin: -24px -24px 0 -24px;
  border-radius: 10px 10px 0 0;
  z-index: 2;
  position: relative;
}
.db-sig-area {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  position: relative;
  align-self: center;
}
.db-sig-strip {
  flex: 1;
  height: 36px;
  background: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.35) 0px,
    rgba(255,255,255,0.35) 4px,
    rgba(200,190,180,0.25) 4px,
    rgba(200,190,180,0.25) 8px
  );
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
}
.db-cvv-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 4px 14px;
  min-width: 54px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.db-cvv-value {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 800;
  color: #1a1d21;
  letter-spacing: 3px;
}

/* Back face disclaimer */
.db-card-back-info {
  z-index: 2;
  position: relative;
  align-self: end;
}
.db-back-legal {
  font-size: 10px;
  line-height: 1.6;
  color: #1a1d21;
  opacity: 0.65;
  margin: 0;
  font-style: italic;
  letter-spacing: 0.2px;
}




/* Card back detail rows */
.db-back-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  position: relative;
  align-self: center;
}
.db-back-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.db-back-label {
  font-size: 9px;
  opacity: 0.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.db-back-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a1d21;
}

@media (max-width: 400px) {
  .dashboard-card-wrapper {
    max-width: 100%;
    height: calc((100vw - 48px) * 0.631);
  }
}


/* Interactive Premium 3D Virtual Cards (Airwallex-Style Graphics) */
@keyframes cardAnimation {
  60% {
    background-size: 400px 267px;
    background-position-x: 60%;
    background-position-y: 60%;
  }
}

@keyframes cardGradient {
  0% { background-position: 0% 10%; }
  50% { background-position: 100% 91%; }
  100% { background-position: 0% 10%; }
}

.hero-3d-scene {
  perspective: 1500px;
  width: 100%;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fanned-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 227px;
}

.interactive-vcard {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 24px;
  color: #1a1d21;
  background-color: rgb(42, 41, 45);
  background-size: 360px 227px;
  animation: cardAnimation 10s infinite;
  transform: translateZ(0);
  box-shadow: 0 0px 8px rgb(0 0 0 / 12%), 0 2px 16px rgb(0 0 0 / 12%),
    0 4px 20px rgb(0 0 0 / 12%), 0 12px 28px rgb(0 0 0 / 12%);
  display: grid;
  grid-template-rows: 1fr auto;
  font-family: AxLLCircular, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, z-index 0s;
  transform-style: preserve-3d;
  cursor: pointer;
  box-sizing: border-box;
}

.interactive-vcard:hover {
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

.interactive-vcard img.top-brand,
.interactive-vcard img.bottom-logo {
  filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.3))
    drop-shadow(0 2px 16px rgba(0, 0, 0, 0.12))
    drop-shadow(0px 0px 12px rgba(255, 255, 255, 1));
  height: 18px;
}

.interactive-vcard img.bottom-logo {
  height: 40px;
}

.interactive-vcard::before {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 0 -1px 0 0 rgb(255 255 255 / 90%), 0 1px 0 0 rgb(0 0 0 / 20%);
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  border-radius: 10px;
  pointer-events: none;
}

.interactive-vcard::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
      120deg,
      rgb(255 255 255 / 2%) 30%,
      rgb(255 255 255 / 25%) 40%,
      rgb(255 255 255 / 8%) 40%
    ),
    linear-gradient(0deg, rgb(255 255 255 / 20%), rgb(255 255 255 / 30%));
  background-size: 150% 150%;
  animation: cardGradient 45s ease-in-out infinite;
  transform: translateZ(0);
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
}

/* Card Internal Layout Elements */
.interactive-vcard .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}
.interactive-vcard .card-top span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.interactive-vcard .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}

.interactive-vcard .card-name {
  display: grid;
  grid-gap: 8px;
  text-align: left;
}
.interactive-vcard .card-name p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-shadow: 0 0px 8px rgb(0 0 0 / 12%);
  font-weight: 700;
  max-width: 232px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.interactive-vcard .card-name p:first-child {
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
}

/* Theme Skins */
.theme-snowy-mint {
  background-image: url("https://assets.codepen.io/14762/snowy-mint.jpg");
}
.theme-egg-sour {
  background-image: url("https://assets.codepen.io/14762/egg-sour.jpg");
}
.theme-columbia-blue {
  background-image: url("https://assets.codepen.io/14762/columbia-blue.jpg");
}
.theme-my-pink {
  background-image: url("https://assets.codepen.io/14762/my-pink.jpg");
}
.theme-buttercup {
  background-image: url("https://assets.codepen.io/14762/buttercup.jpg");
}
.theme-cream-whisper {
  background-image: url("https://assets.codepen.io/14762/cream-whisper.jpg");
}
.theme-honeysuckle {
  background-image: url("https://assets.codepen.io/14762/honeysuckle.jpg");
}
.theme-tonys-pink {
  background-image: url("https://assets.codepen.io/14762/tonys-pink.jpg");
}

/* Card Glare reflection overlay */
.vcard-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.interactive-vcard:hover .vcard-glare {
  opacity: 1;
}

/* Card Slots for 3-Card Stack */
.card-slot-1 {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 3;
}

.card-slot-2 {
  transform: translate3d(30px, 20px, -40px) rotate(4deg) scale(0.96);
  z-index: 2;
}

.card-slot-3 {
  transform: translate3d(-30px, -20px, -80px) rotate(-6deg) scale(0.92);
  z-index: 1;
}

/* Outgoing shuffling card transition style */
.interactive-vcard.shuffling {
  transform: translate3d(-240px, -30px, 120px) rotate(-15deg) scale(1.03) !important;
  z-index: 10 !important;
  box-shadow: 0 35px 70px rgba(0,0,0,0.5) !important;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Adjust layout on hover when cursor is in scene */
.fanned-stack:hover .interactive-vcard {
  opacity: 0.85;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.fanned-stack .interactive-vcard:hover {
  opacity: 1 !important;
  z-index: 5 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* Make sure child elements look 3D */
.interactive-vcard > * {
  transform: translateZ(40px);
}


/* Toast */
.toast { position: fixed; bottom: 24px; right: 16px; left: 16px; max-width: 360px; margin: 0 auto; background: #1a1a2e; color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 13px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 9999; border-left: 3px solid #4ade80; display: flex; align-items: center; gap: 10px; transition: opacity 0.3s ease, transform 0.3s ease; }
.toast-icon { color: #4ade80; font-size: 16px; }

/* Grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }

/* Settings grid */
.settings-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}
.settings-grid .card:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}
.settings-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  color: #4a5568;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.settings-tab-btn:hover {
  background: #f8f9ff;
  color: var(--primary);
}
.settings-tab-btn.active {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
  color: var(--primary);
  border-color: rgba(15, 52, 96, 0.12);
  font-weight: 600;
}
.settings-tab-btn .svg-icon {
  width: 18px;
  height: 18px;
  color: #718096;
}
.settings-tab-btn.active .svg-icon {
  color: var(--primary);
}
.settings-tab-btn.logout-tab-btn:hover {
  background: var(--danger-light);
  color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .landing-container { padding: 40px 16px 60px; text-align: center; }
  .landing-container .flex { justify-content: center; }
  .landing-container .grid-2 > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .landing-container h1 { font-size: clamp(18px, 6.8vw, 32px) !important; }
  .landing-container p { font-size: 15px !important; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .layout-container { padding: 20px 14px 100px; }
  .stat-card { text-align: center; }
  .settings-grid { grid-template-columns: 1fr; }
  .settings-grid .card:first-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
  }
  .settings-grid .card:first-child button {
    justify-content: center;
    padding: 10px 8px;
    font-size: 13px;
    width: 100%;
  }
  .desktop-only { display: none !important; }
  .auth-card { padding: 32px 20px; }
  .mobile-bottom-nav { display: flex !important; }
}
@media (min-width: 641px) {
  .mobile-only { display: none !important; }
  .mobile-bottom-nav { display: none !important; }
}
@media (max-width: 640px) {
  .desktop-only { display: none !important; }
}

/* Mobile Nav Styles */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 52, 96, 0.08);
  border-radius: 0 0 24px 24px;
  z-index: 99;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(15, 52, 96, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: #f8f9ff;
  cursor: pointer;
  margin-bottom: 2px;
  transition: all 0.2s ease;
}
.mobile-menu-item:active {
  background: #f0f4ff;
  border-color: rgba(15, 52, 96, 0.1);
}
.mobile-menu-item.active {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
  border-color: rgba(15, 52, 96, 0.15);
}
.mobile-menu-item.active .menu-title {
  color: var(--primary);
  font-weight: 700;
}
.menu-icon {
  font-size: 20px;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.mobile-menu-item.active .menu-icon {
  background: var(--primary);
  color: #fff;
}
.menu-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  text-align: left;
}
.menu-desc {
  display: block;
  font-size: 11px;
  color: #888;
  text-align: left;
}
.menu-arrow {
  margin-left: auto;
  font-size: 14px;
  color: #aaa;
}

.mobile-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(233, 69, 96, 0.2);
  background: rgba(233, 69, 96, 0.04);
  color: var(--accent);
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}
.mobile-logout-btn:active {
  background: rgba(233, 69, 96, 0.08);
}

.hamburger {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
  padding: 6px 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.hamburger:active {
  background-color: rgba(0, 0, 0, 0.05);
}

.bottom-nav {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 52, 96, 0.08);
  border-radius: 22px;
  display: flex;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(15, 52, 96, 0.15), 0 2px 8px rgba(0,0,0,0.06);
  padding: 6px 4px;
}
.bottom-nav-item {
  flex: 1;
  background: none;
  border: none;
  padding: 8px 4px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-radius: 16px;
  transition: background 0.2s;
  position: relative;
}
.bottom-nav-item.active {
  background: rgba(15, 52, 96, 0.07);
}
.bottom-nav-item span:first-child { font-size: 20px; transition: font-size 0.2s; display: flex; align-items: center; justify-content: center; }
.bottom-nav-item.active span:first-child { font-size: 22px; }
.bottom-nav-item span:nth-child(2) { font-size: 10px; color: #aaa; font-weight: 500; transition: all 0.2s; }
.bottom-nav-item.active span:nth-child(2) { color: var(--primary); font-weight: 700; }
.bottom-nav-item span.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

.stat-card { background: #fff; border-radius: 14px; padding: 18px 16px; border: 0.5px solid #eee; flex: 1; min-width: 0; }

/* SVG Icon styles */
.svg-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease;
}
.menu-icon .svg-icon {
  width: 18px;
  height: 18px;
}
.bottom-nav-item .svg-icon {
  width: 20px;
  height: 20px;
  color: #aaa;
}
.bottom-nav-item.active .svg-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  stroke-width: 2.5;
}
.stat-card .svg-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}
.mobile-menu-item .menu-arrow .svg-icon {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}
.grid-auto button .svg-icon {
  width: 26px;
  height: 26px;
  color: var(--primary);
}
.flex.items-center.gap-3 .svg-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Frozen Card Styles */
.frozen {
  filter: grayscale(100%);
  transition: filter 0.2s ease-in-out;
  position: relative;
}
.frozen .card-top,
.frozen .card-bottom {
  filter: blur(6px);
  transition: filter 0.2s ease-in-out;
}
.frozen:hover {
  filter: grayscale(0%);
}
.frozen:hover .card-top,
.frozen:hover .card-bottom {
  filter: blur(0);
}

.frozen-label {
  width: 80px;
  text-align: center;
  position: absolute;
  background: rgb(0 0 0 / 80%);
  z-index: 2;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  color: white;
  top: calc(50% - 14px);
  left: calc(50% - 40px);
  box-sizing: border-box;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================================
   PREMIUM LANDING PAGE ΓÇö Exact Reference CSS
   ============================================================ */

/* Body gradient when landing is active */
body.premium-landing-active {
  background: linear-gradient(135deg, #D6C7FF 0%, #CBE9FE 50%, #FBCFE8 100%);
  min-height: 400vh;
  overflow-x: hidden;
  color: #1f2937;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Beautiful soft pastel gradient background for the logged-in dashboard pages */
body.dashboard-themed {
  background: linear-gradient(135deg, #e0d7ff 0%, #e2f1fc 50%, #fce7f3 100%) !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  color: #1f2937;
  font-family: 'Plus Jakarta Sans', sans-serif;
}


/* Prevent residual 400vh scroll space on all non-landing pages, ensuring at least 100vh height */
body:not(.premium-landing-active) {
  min-height: 100vh !important;
  height: auto !important;
  overflow-y: auto !important;
}
html:not(.premium-landing-active) {
  min-height: 100vh !important;
  height: auto !important;
}

/* Glassmorphism Outer Shell Fixed Layer */
.glass-shell {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- AIRWALLEX COMPATIBLE TRANSPARENT GLOWING CARD ENGINE --- */
@keyframes cardAnimation {
  60% {
    background-size: 400px 267px;
    background-position-x: 60%;
    background-position-y: 60%;
  }
}
@keyframes cardGradient {
  0%   { background-position: 0% 10%; }
  50%  { background-position: 100% 91%; }
  100% { background-position: 0% 10%; }
}

/* Pulsing Subtle Ambient Glow */
@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05),
                0 12px 28px rgba(0,0,0,0.08),
                0 0 15px rgba(255,255,255,0.35);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0,0,0,0.06),
                0 12px 32px rgba(0,0,0,0.10),
                0 0 25px rgba(255,255,255,0.55);
  }
}

.card-element {
  color: #1a1d21;
  border-radius: 12px;
  height: 227px;
  width: 360px;
  position: absolute;
  box-sizing: border-box;
  padding: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;

  /* Enhanced Transparency Engine */
  background-size: 360px 227px;
  background-blend-mode: screen;
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  /* Applied Glow + Structural Shadow */
  animation: cardAnimation 10s infinite, subtleGlow 6s ease-in-out infinite;
  transform: translateZ(0);
}

/* Pure Asset Glow Amplification */
.card-element img {
  filter: drop-shadow(0px 1px 0px rgba(255,255,255,0.4))
          drop-shadow(0px 0px 8px rgba(255,255,255,0.8));
}

/* Glass highlight outer-rim border */
.card-element:before {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.60),
              0 0 0 1px rgba(255,255,255,0.4);
  position: absolute;
  top: 0; left: 0;
  z-index: 3;
  border-radius: 12px;
  pointer-events: none;
}

/* Moving shimmer reflection overlay */
.card-element:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.25) 40%,
    rgba(255,255,255,0.0) 45%
  ),
  linear-gradient(0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  background-size: 150% 150%;
  animation: cardGradient 45s ease-in-out infinite;
  transform: translateZ(0);
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  pointer-events: none;
}

/* Variant Textures */
.card-element.theme-pink   { background-image: url("https://assets.codepen.io/14762/my-pink.jpg"); }
.card-element.theme-blue   { background-image: url("https://assets.codepen.io/14762/columbia-blue.jpg"); }
.card-element.theme-purple { background-image: url("https://assets.codepen.io/14762/tonys-pink.jpg"); }
.card-element.theme-mint   { background-image: url("https://assets.codepen.io/14762/snowy-mint.jpg"); }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.card-top span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}
.card-top img { height: 18px; }

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.card-bottom img { height: 40px; }

.card-name {
  display: grid;
  grid-gap: 4px;
}
.card-name p:first-child {
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  opacity: 0.7;
}
.card-name p:last-child {
  margin: 0;
  font-size: 16px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}

/* Scrollbar */
body.premium-landing-active::-webkit-scrollbar { width: 6px; }
body.premium-landing-active::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* lp-root needs to establish scroll height */
.lp-root {
  position: relative;
  min-height: 400vh;
}

/* Outer viewport frame ΓÇö transparent, border-only (no blur/bg that hides text) */
.lp-frame {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}


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

.premium-landing-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Fixed Centered Glassmorphic Frame Container */
.premium-landing-glass {
  position: fixed;
  top: 5vh;
  left: 3vw;
  width: 94vw;
  height: 90vh;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 30px 100px rgba(15, 52, 96, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  z-index: 10;
  overflow: hidden;
}

/* Scroll Trigger Track (Creates scrolling height) */
.landing-scroll-track {
  width: 100%;
  height: 400vh;
  position: relative;
}

.scroll-trigger-zone {
  height: 100vh;
  width: 100%;
}

/* Top Navigation Header */
.landing-header {
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-header .nav-logo {
  font-weight: 800;
  font-size: 19px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Left Rotated Text Sidebar */
.left-sidebar-nav {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 50;
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-links-rotated {
  display: flex;
  gap: 28px;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.sidebar-link {
  font-size: 11px;
  font-weight: 700;
  color: rgba(15, 52, 96, 0.45);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding: 4px 0;
}

.sidebar-link:hover {
  color: var(--primary);
}

.sidebar-link.active {
  color: var(--primary);
  text-shadow: 0 0 1px rgba(15, 52, 96, 0.2);
}

.sidebar-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 4px;
}

/* Right Navigation Dots Pagination */
.right-pagination-dots {
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  z-index: 50;
}

.pag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 52, 96, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  border: 2px solid #fff;
}

.pag-dot.active {
  background: var(--primary);
  transform: scale(1.35);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Content Layout Panel */
.landing-contents-wrapper {
  position: absolute;
  top: 70px;
  left: 60px;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* Left text side pane */
.landing-left-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.landing-text-stage {
  position: absolute;
  width: 90%;
  max-width: 480px;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.landing-text-stage.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.landing-text-stage h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.landing-text-stage h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.landing-text-stage p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 32px;
}

/* Circular Get Started Button */
.circle-cta-btn {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 10px 30px rgba(15, 52, 96, 0.08);
}

.circle-cta-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.65);
}

.circle-cta-btn span:first-child {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.circle-cta-btn .circle-arrow {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s;
}

.circle-cta-btn:hover .circle-arrow {
  transform: translateX(6px);
}

/* Visual Stage Panel (Right side) */
.landing-visuals-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  perspective: 1500px;
}

/* Fanned overlaps & cards visual */
.scroll-cards-container {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 227px;
  transform-style: preserve-3d;
}

.scroll-card {
  position: absolute;
  width: 330px;
  height: 208px;
  border-radius: 14px;
  padding: 22px;
  box-sizing: border-box;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.scroll-card .scard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.scroll-card .scard-top span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.scroll-card .scard-mid {
  margin-top: 10px;
}

.scroll-card .scard-number {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.scroll-card .scard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: sans-serif;
}

.scroll-card .scard-bottom small {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}

.scroll-card .scard-bottom div {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.scroll-card .scard-brand-text {
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
}

/* Custom Card Skins */
.card-mastercard {
  background-image: url("https://assets.codepen.io/14762/columbia-blue.jpg");
  background-size: cover;
  color: #1a1d21;
}

.card-visa-dark {
  background: linear-gradient(135deg, #0b1e36 0%, #173459 100%);
  color: #fff;
}

.card-visa-purple {
  background: linear-gradient(135deg, #3d1c5a 0%, #68309a 100%);
  color: #fff;
}

.card-discover {
  background-image: url("https://assets.codepen.io/14762/snowy-mint.jpg");
  background-size: cover;
  color: #1a1d21;
}

/* Floating Brand Badges (Section 2) */
.brand-badge {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255,255,255,0.4);
  z-index: 10;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s;
}

.brand-badge:hover {
  transform: scale(1.15) !important;
  background: rgba(255, 255, 255, 0.7);
}

.brand-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* White 3D POS Terminal key parts */
.pos-terminal-wrapper {
  position: absolute;
  bottom: -320px;
  left: 45%;
  transform: translate(-50%, 0) rotateX(20deg) rotateY(-5deg);
  width: 220px;
  height: 330px;
  perspective: 1200px;
  z-index: 12;
  opacity: 0;
  transition: transform 0.3s;
}

.pos-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), inset 0 2px 2px rgba(255,255,255,0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  z-index: 13;
}

.pos-screen {
  height: 70px;
  background: #1a1d21;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1.5px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pos-screen-text {
  color: #00ff66;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0,255,102,0.65);
}

.pos-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
  margin-bottom: 12px;
}

.pos-btn {
  background: #f3f4f6;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  box-shadow: 0 1.5px 2px rgba(0,0,0,0.05);
}

.pos-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid #d1d5db;
  box-shadow: 0 -3px 8px rgba(0,0,0,0.02), 0 5px 15px rgba(0,0,0,0.08);
  z-index: 15;
  pointer-events: none;
}

/* POS Insertion slot details styling */
.pos-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #9ca3af;
  opacity: 0.8;
}

/* Glass signup container (Section 4) */
.glass-signup-container {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%) scale(0.9);
  width: 360px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 50px rgba(15, 52, 96, 0.08);
  padding: 36px 30px;
  box-sizing: border-box;
  opacity: 0;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.glass-signup-container.active {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
  pointer-events: auto;
}

.glass-signup-container h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.glass-form-group {
  margin-bottom: 24px;
}

.glass-form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.glass-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(15, 52, 96, 0.15);
  padding: 8px 0;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  outline: none;
  transition: border-bottom-color 0.3s;
}

.glass-input:focus {
  border-bottom-color: var(--accent);
}

.btn-apply-gradient {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

/* Auth page floating orb animations */
@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(25px, -25px) scale(1.1); }
}
@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.15); }
}

/* Premium Stat Cards for Dashboard */
.stat-card-premium {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  flex: 1;
  min-width: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.stat-card-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  border-color: rgba(99, 102, 241, 0.15);
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.stat-card-premium:hover .stat-icon-wrap {
  transform: scale(1.05);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #8e8e93;
  letter-spacing: 0.2px;
}

.stat-value {
  font-size: 17px;
  font-weight: 800;
  color: #1c1c1e;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ============================================================
   NEOPAYY LANDING PAGE — FULL STYLES
   ============================================================ */

body.premium-landing-active {
  background: #f5f4ff !important;
  min-height: 100vh !important;
  overflow-x: hidden;
  color: #1e1b4b;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
.lp-root {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* ── NAVBAR ── */
.lp-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid rgba(124,58,237,0.07);
  transition: box-shadow 0.3s;
}
.lp-navbar-scrolled { box-shadow: 0 4px 24px rgba(124,58,237,0.10); }
.lp-nav-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none; flex-shrink: 0;
}
.lp-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg,#ede9fe,#ddd6fe);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-logo-text { font-weight: 800; font-size: 17px; color: #1e1b4b; letter-spacing: -0.3px; }
.lp-nav-links {
  display: flex; list-style: none; margin: 0; padding: 0; gap: 4px;
}
.lp-nav-link {
  font-size: 13.5px; font-weight: 500; color: #6b7280;
  text-decoration: none; padding: 6px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s; cursor: pointer;
}
.lp-nav-link:hover, .lp-nav-link.active {
  color: #7c3aed; background: rgba(124,58,237,0.07); font-weight: 600;
}
.lp-nav-actions { display: flex; align-items: center; gap: 12px; }
.lp-wa-btn {
  width: 38px; height: 38px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}
.lp-wa-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
.lp-btn-download {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px;
  background: linear-gradient(135deg,#7c3aed,#4f46e5);
  color: #fff; font-size: 13px; font-weight: 700; border: none;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3); white-space: nowrap;
}
.lp-btn-download:hover { opacity: 0.92; transform: translateY(-1px); }
.lp-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.lp-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #4b5563; border-radius: 4px; transition: all 0.3s;
}
.lp-mobile-drawer {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  flex-direction: column; padding: 16px 24px 24px; gap: 4px;
  z-index: 999; box-shadow: 0 16px 40px rgba(124,58,237,0.1);
}
.lp-mobile-drawer a {
  display: block; padding: 12px 16px; border-radius: 12px;
  font-weight: 600; font-size: 14px; color: #374151;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lp-mobile-drawer a:hover { background: rgba(124,58,237,0.07); color: #7c3aed; }
.lp-drawer-open { display: flex !important; }

/* ── HERO ── */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 108px 40px 72px;
}
.lp-hero-left { text-align: left; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,rgba(124,58,237,0.08),rgba(79,70,229,0.06));
  border: 1px solid rgba(124,58,237,0.15);
  color: #7c3aed; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.lp-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #7c3aed;
  animation: lpPulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes lpPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}
.lp-hero-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800; line-height: 1.13;
  color: #1e1b4b; margin: 0 0 16px; letter-spacing: -1px;
}
.lp-hero-title-highlight { color: #7c3aed; display: block; }
.lp-hero-desc {
  font-size: 14.5px; color: #6b7280; line-height: 1.7;
  margin: 0 0 26px; max-width: 420px;
}
.lp-hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; margin-bottom: 28px;
}
.lp-btn-android {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  background: linear-gradient(135deg,#7c3aed,#4f46e5);
  color: #fff; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
  white-space: nowrap;
}
.lp-btn-android:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124,58,237,0.45); }
.lp-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  background: #fff; color: #374151; font-size: 14px; font-weight: 600;
  border: 1.5px solid #d1d5db; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.lp-btn-outline:hover { border-color: #7c3aed; color: #7c3aed; }
.lp-trust-badges {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.lp-trust-item { display: flex; align-items: center; gap: 7px; }
.lp-trust-label { font-size: 12px; font-weight: 700; color: #374151; line-height: 1.2; }
.lp-trust-sub   { font-size: 10.5px; color: #9ca3af; }

/* Hero Right */
.lp-hero-right {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  min-height: 360px;
}
.lp-cards-stack {
  position: relative; width: 320px; height: 210px;
}
.lp-card-back, .lp-card-front {
  position: absolute; width: 300px; height: 188px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.lp-card-back img, .lp-card-front img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
}
.lp-float-badge {
  position: absolute; width: 50px; height: 50px; border-radius: 50%;
  background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; border: 1.5px solid rgba(0,0,0,0.05);
}
.lp-float-netflix  { top: 8%;  left: 0%;  animation: lpFloat1 4s ease-in-out infinite; }
.lp-float-spotify  { bottom: 12%; right: -2%; animation: lpFloat2 5s ease-in-out infinite; }
.lp-float-google   { bottom: 0%;  right: 18%; animation: lpFloat3 6s ease-in-out infinite; }
@keyframes lpFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes lpFloat2 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-8px) rotate(3deg)} }
@keyframes lpFloat3 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-12px) rotate(-2deg)} }

/* ── STATS BAR ── */
.lp-stats {
  background: #fff;
  border-top: 1px solid rgba(124,58,237,0.07);
  border-bottom: 1px solid rgba(124,58,237,0.07);
  padding: 32px 40px;
}
.lp-stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.lp-stat-item { display: flex; align-items: center; gap: 14px; }
.lp-stat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-stat-num { font-size: 22px; font-weight: 800; color: #1e1b4b; line-height: 1; margin-bottom: 3px; }
.lp-stat-label { font-size: 12px; color: #9ca3af; font-weight: 500; }

/* ── SECTION SHARED ── */
.lp-section { padding: 72px 40px; }
.lp-section-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.lp-section-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: #7c3aed;
  background: rgba(124,58,237,0.07); padding: 5px 16px;
  border-radius: 50px; margin-bottom: 14px;
}
.lp-section-title {
  font-size: clamp(24px,3.2vw,36px); font-weight: 800;
  color: #1e1b4b; line-height: 1.2; margin: 0 0 44px; letter-spacing: -0.5px;
}
.lp-section-title-accent { color: #7c3aed; }

/* ── FEATURES ── */
.lp-features-section { background: #f5f4ff; }
.lp-features-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 16px;
  text-align: center; margin-top: 8px;
}
.lp-feature-card {
  background: #fff; border-radius: 18px; padding: 24px 16px;
  border: 1px solid rgba(124,58,237,0.07);
  box-shadow: 0 2px 12px rgba(124,58,237,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.12); }
.lp-feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.lp-feature-card h3 { font-size: 13px; font-weight: 700; color: #1e1b4b; margin: 0 0 6px; }
.lp-feature-card p  { font-size: 11.5px; color: #9ca3af; margin: 0; line-height: 1.5; }

/* ── HOW IT WORKS ── */
.lp-how-section { background: #fff; }
.lp-steps-grid {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; flex-wrap: nowrap;
}
.lp-step-card {
  background: #f5f4ff; border-radius: 18px; padding: 28px 18px;
  flex: 1; max-width: 200px; text-align: center;
  border: 1px solid rgba(124,58,237,0.08); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.12); }
.lp-step-num {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg,#7c3aed,#4f46e5);
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}
.lp-step-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg,#ede9fe,#ddd6fe);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 10px auto 14px;
}
.lp-step-card h3 { font-size: 13.5px; font-weight: 700; color: #1e1b4b; margin: 0 0 6px; }
.lp-step-card p  { font-size: 11.5px; color: #9ca3af; margin: 0; line-height: 1.5; }
.lp-step-arrow { font-size: 20px; color: #c4b5fd; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.lp-testimonials-section { background: #f5f4ff; }
.lp-testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; text-align: left; margin-top: 8px;
}
.lp-testimonial-card {
  background: #fff; border-radius: 18px; padding: 26px 22px;
  border: 1px solid rgba(124,58,237,0.07);
  box-shadow: 0 2px 12px rgba(124,58,237,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lp-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.12); }
.lp-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.lp-testimonial-text { font-size: 13px; color: #374151; line-height: 1.65; margin: 0 0 18px; }
.lp-testimonial-author { display: flex; align-items: center; gap: 10px; }
.lp-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.lp-testimonial-name { font-size: 13.5px; font-weight: 700; color: #1e1b4b; }
.lp-testimonial-role { font-size: 11.5px; color: #7c3aed; font-weight: 600; margin-top: 2px; }

/* ── CTA ── */
.lp-cta-section {
  background: linear-gradient(135deg,#5b21b6 0%,#7c3aed 50%,#4f46e5 100%);
  padding: 72px 40px; text-align: center;
}
.lp-cta-inner { max-width: 600px; margin: 0 auto; }
.lp-cta-inner h2 {
  font-size: clamp(24px,3.5vw,38px); font-weight: 800;
  color: #fff; margin: 0 0 12px; letter-spacing: -0.5px;
}
.lp-cta-inner p { font-size: 15px; color: rgba(255,255,255,0.75); margin: 0 0 24px; line-height: 1.6; }

/* ── FOOTER ── */
.lp-footer { background: #1e1b4b; padding: 26px 40px; }
.lp-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ── SCROLL REVEAL ── */
.lp-reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.lp-reveal-delay { transition-delay: 0.15s; }
.lp-reveal.lp-revealed { opacity: 1; transform: translateY(0); }
.lp-reveal-card {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.lp-reveal-card.lp-revealed { opacity: 1; }
.lp-feature-card.lp-reveal:nth-child(2) { transition-delay: 0.06s; }
.lp-feature-card.lp-reveal:nth-child(3) { transition-delay: 0.12s; }
.lp-feature-card.lp-reveal:nth-child(4) { transition-delay: 0.18s; }
.lp-feature-card.lp-reveal:nth-child(5) { transition-delay: 0.24s; }
.lp-feature-card.lp-reveal:nth-child(6) { transition-delay: 0.30s; }
.lp-stat-item.lp-reveal:nth-child(2) { transition-delay: 0.07s; }
.lp-stat-item.lp-reveal:nth-child(3) { transition-delay: 0.14s; }
.lp-stat-item.lp-reveal:nth-child(4) { transition-delay: 0.21s; }
.lp-testimonial-card.lp-reveal:nth-child(2) { transition-delay: 0.1s; }
.lp-testimonial-card.lp-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .lp-navbar { padding: 0 20px; }
  .lp-nav-links { display: none; }
  .lp-btn-download { display: none; }
  .lp-hamburger { display: flex; }

  .lp-hero {
    grid-template-columns: 1fr;
    padding: 88px 20px 56px;
    gap: 0;
  }
  /* Card visual moves ABOVE text on mobile */
  .lp-hero-right {
    order: -1;
    min-height: 240px;
    margin-bottom: 28px;
  }
  .lp-cards-stack { width: 280px; height: 180px; }
  .lp-card-back, .lp-card-front { width: 260px; height: 163px; }

  /* Text stays LEFT-aligned */
  .lp-hero-left { text-align: left; }
  .lp-hero-desc { max-width: 100%; }

  /* Buttons side-by-side */
  .lp-hero-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .lp-btn-android {
    flex: 1; justify-content: center;
    font-size: 13px; padding: 12px 14px;
  }
  .lp-btn-outline {
    flex: 1; justify-content: center;
    font-size: 13px; padding: 12px 14px;
  }

  /* Trust badges — horizontal row, left-aligned */
  .lp-trust-badges { flex-wrap: wrap; gap: 12px 18px; }
  .lp-trust-item   { align-items: center; }

  .lp-features-grid { grid-template-columns: repeat(3,1fr); }
  .lp-steps-grid { flex-wrap: wrap; gap: 20px; }
  .lp-step-card  { max-width: 160px; }
  .lp-step-arrow { display: none; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-stats-inner { grid-template-columns: 1fr 1fr; }
  .lp-section { padding: 56px 20px; }
  .lp-cta-section { padding: 56px 20px; }
  .lp-footer { padding: 22px 20px; }
  .lp-footer-inner { flex-direction: column; text-align: center; gap: 10px; }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
  .lp-hero { padding: 80px 16px 48px; }
  .lp-hero-title { font-size: 26px; letter-spacing: -0.5px; }
  .lp-hero-desc  { font-size: 13.5px; }
  .lp-btn-android, .lp-btn-outline { font-size: 12.5px; padding: 11px 12px; }
  .lp-features-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .lp-stats-inner   { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lp-steps-grid    { gap: 16px; }
  .lp-step-card     { max-width: 100%; width: 100%; flex: none; }
  .lp-cards-stack   { width: 240px; height: 155px; }
  .lp-card-back, .lp-card-front { width: 222px; height: 140px; }
}
/* ── MOBILE HERO FIXES ── */
@media (max-width: 900px) {
  /* Center the badge pill on mobile */
  .lp-hero-badge {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Trust badges: all 3 on ONE row, evenly spaced */
  .lp-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }
  .lp-trust-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .lp-trust-label { font-size: 11px; }
  .lp-trust-sub   { font-size: 10px; }

  /* Keep hero title highlight on one line */
  .lp-hero-title-highlight {
    white-space: nowrap;
    font-size: clamp(22px, 5vw, 36px);
  }
}

@media (max-width: 480px) {
  /* Badge centered on small phones too */
  .lp-hero-badge {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Trust badges still 3-across on small phones */
  .lp-trust-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .lp-trust-item { align-items: flex-start; }
  .lp-trust-label { font-size: 10.5px; }
  .lp-trust-sub   { font-size: 9.5px; }

  /* Prevent title overflow */
  .lp-hero-title-highlight {
    white-space: normal;
    font-size: clamp(20px, 5.5vw, 30px);
  }
}
/* ── HOW IT WORKS — 2x2 grid on mobile ── */
@media (max-width: 900px) {
  .lp-steps-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    flex-wrap: unset;
    justify-content: unset;
    align-items: unset;
  }
  .lp-step-card {
    max-width: 100% !important;
    width: 100% !important;
    flex: unset !important;
    padding: 22px 14px;
  }
  .lp-step-arrow { display: none !important; }
}
/* ============================================================
   NEO VIRTUAL CARD COMPONENT
   ============================================================ */
.neo-scene {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.neo-card-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  user-select: none;
}
.neo-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.neo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(4,6,22,0.08) 0%,
    rgba(4,6,22,0.00) 35%,
    rgba(4,6,22,0.50) 70%,
    rgba(4,6,22,0.70) 100%
  );
  border-radius: 18px;
  z-index: 1;
}
.neo-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 20px 16px;
}
.neo-top-spacer {
  flex: 0 0 52px;
}
/* CVV chip */
.neo-cvv-chip-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.neo-cvv-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 62px;
  height: 36px;
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  padding: 4px 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.neo-cvv-box:hover { background: rgba(255,255,255,0.13); }
.neo-cvv-label {
  font-size: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  line-height: 1;
}
.neo-cvv-number {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
  transition: filter 0.3s;
}
.neo-cvv-number.masked { filter: blur(5px); opacity: 0.7; }
.neo-cvv-tip {
  font-size: 5.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  line-height: 1;
}
/* Card number */
.neo-card-number {
  display: flex;
  gap: 12px;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
  margin-bottom: 10px;
  flex-wrap: nowrap;
}
.neo-card-number .grp { flex-shrink: 0; }
/* Bottom info */
.neo-card-bottom {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex: 1;
  align-items: flex-end;
}
.neo-info-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.neo-info-label {
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.neo-info-label .arrow { color: #7c6cd1; font-size: 6px; }
.neo-info-value {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  line-height: 1;
}
.neo-info-value.name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}