/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===== TOKENS ===== */
:root {
  --bg: #000;
  --bg-soft: #050505;
  --bg-card: #0a0a0a;
  --text: #ffffff;
  --text-dim: #9a9a9a;
  --text-mute: #6a6a6a;
  --cyan: #00e0ff;
  --cyan-soft: rgba(0, 224, 255, 0.12);
  --cyan-glow: rgba(0, 224, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.16);
  --container: 1240px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== PARTICLE NETWORK BG ===== */
.particle-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Subtle circuit grid pattern overlay on dark sections */
.pillars::after,
.card-section::after,
.privacy-section::after,
.coverage::after,
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 224, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.pillars > *, .card-section > *, .privacy-section > *,
.coverage > *, .cta-section > * { position: relative; z-index: 2; }
.nav, .hero, .pillars, .showcase, .card-section, .privacy-section, .coverage, .cta-section, .footer {
  position: relative;
  z-index: 2;
}

/* ===== BRAND / LOGO (rendered exactly like the app) ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-image: url('assets/images/app-icon-original.jpg');
  background-size: 118%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2a73c1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.logo:hover .brand-icon {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05) rotate(-3deg);
}
.brand-icon-footer {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.brand-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background-size: 118%;
  box-shadow:
    0 16px 40px -8px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  transition: filter 0.3s ease, transform 0.3s ease;

  /* default size = navbar (large, app size 'xl') */
  --brand-font: 38px;
  --brand-spacing: 8px;
  --brand-gap: 14px;
  --brand-dot: 9px;
}
.brand-ninja {
  font-weight: 300;
  font-size: var(--brand-font);
  letter-spacing: var(--brand-spacing);
}
.brand-pay {
  font-weight: 900;
  font-size: var(--brand-font);
  letter-spacing: var(--brand-spacing);
  /* The PAY letter spacing creates extra trailing space — counteract */
  padding-right: 0;
}
.brand-dot {
  width: var(--brand-dot);
  height: var(--brand-dot);
  border-radius: 50%;
  background: var(--cyan);
  margin: 0 var(--brand-gap);
  margin-top: calc(var(--brand-font) * 0.04);
  box-shadow: 0 0 12px var(--cyan-glow);
  flex-shrink: 0;
}
.logo:hover .brand {
  filter: drop-shadow(0 0 20px rgba(0, 224, 255, 0.4));
  transform: scale(1.02);
}

/* Footer size — same as navbar */
.brand-footer {
  --brand-font: 34px;
  --brand-spacing: 7px;
  --brand-gap: 12px;
  --brand-dot: 8px;
}

/* Card size — smaller for inside the virtual card */
.brand-card {
  --brand-font: 18px;
  --brand-spacing: 4px;
  --brand-gap: 7px;
  --brand-dot: 5px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 24px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--cyan-glow);
  color: #fff;
}
.lang-toggle .lang-active { color: var(--cyan); font-weight: 600; }
.lang-toggle .lang-sep { color: var(--text-mute); opacity: 0.6; }

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.03);
}
.nav-cta:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
  box-shadow: 0 0 24px var(--cyan-soft);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 100px;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 980px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}
.accent {
  color: var(--cyan);
  text-shadow: 0 0 40px var(--cyan-glow);
}
.hero-sub {
  font-size: clamp(16px, 1.55vw, 20px);
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 44px;
  font-weight: 400;
}
.hero-sub-main {
  display: block;
  margin-bottom: 6px;
}
.hero-sub-slogan {
  display: block;
  white-space: nowrap;
  font-weight: 500;
  color: #cfcfcf;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 8px 32px -8px var(--cyan-glow), 0 0 0 0 var(--cyan);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 48px -8px var(--cyan-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: var(--border-bright);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-soft);
}

/* ===== SECTIONS ===== */
section { padding: 140px 0; position: relative; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 64px;
}

/* ===== PILLARS ===== */
.pillars { background: transparent; }
.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--cyan-soft) 0%, transparent 70%);
  pointer-events: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.pillar {
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cyan-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pillar:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border-color: var(--cyan-glow);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -30px rgba(0, 224, 255, 0.3);
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; }
.pillar-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-glow);
  border-radius: 14px;
  margin-bottom: 28px;
  color: var(--cyan);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.pillar p { font-size: 15px; color: var(--text-dim); line-height: 1.65; }

/* ===== SHOWCASE ===== */
.showcase { background: rgba(5, 5, 5, 0.55); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.showcase-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 500px;
}
.showcase-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 440px;
  margin: 0 auto;
  /* No border, no border-radius — fully integrated as tech element */
}
.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fade edges into background (holographic feel) */
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 50% 50%, #000 30%, rgba(0,0,0,0.5) 75%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 85% at 50% 50%, #000 30%, rgba(0,0,0,0.5) 75%, transparent 100%);
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
  mix-blend-mode: lighten;
}
.showcase-glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 224, 255, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 0, 180, 0.08) 0%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Scanline overlay for holographic feel */
.showcase-scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 3px,
      rgba(0, 224, 255, 0.04) 3px,
      rgba(0, 224, 255, 0.04) 4px
    );
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 50%, #000 40%, transparent 100%);
}

/* HUD-style corner markers (sci-fi UI accents) */
.hud-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  pointer-events: none;
  opacity: 0.85;
}
.hud-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.hud-tr { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.hud-bl { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.hud-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* ===== NINJA CARD ===== */
.card-section { background: transparent; overflow: hidden; }
.card-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, var(--cyan-soft) 0%, transparent 70%);
  pointer-events: none;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.card-visual { position: relative; display: flex; justify-content: center; }
.virtual-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.6 / 1;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #050505 100%);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 80px -20px rgba(0, 224, 255, 0.4),
    0 0 0 1px rgba(0, 224, 255, 0.1) inset;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}
.virtual-card:hover { transform: rotate(0deg) scale(1.03); }
.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(0, 224, 255, 0.06) 50%,
    transparent 70%
  );
  pointer-events: none;
}
.card-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 224, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 100%);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.card-logo {
  filter: drop-shadow(0 0 12px rgba(0, 224, 255, 0.3));
}
.card-virtual-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--cyan);
  padding: 4px 10px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-glow);
  border-radius: 100px;
}
.card-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--text);
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.card-wallets {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wallet-icon {
  width: 22px;
  height: 22px;
  color: var(--text-dim);
  opacity: 0.9;
}
.card-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--text);
}
.card-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.18) 0%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
}
.card-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 15px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 6px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

/* ===== PRIVACY SECTION (Zero Tracking) ===== */
.privacy-section { background: rgba(5, 5, 5, 0.55); }
.privacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, var(--cyan-soft) 0%, transparent 70%);
  pointer-events: none;
}
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.privacy-card {
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  transition: all 0.4s ease;
  text-align: left;
}
.privacy-card:hover {
  border-color: var(--cyan-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(0, 224, 255, 0.25);
}
.privacy-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-glow);
  border-radius: 16px;
  margin-bottom: 28px;
  color: var(--cyan);
}
.privacy-icon svg { width: 28px; height: 28px; }
.privacy-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.privacy-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ===== COVERAGE ===== */
.coverage { background: transparent; text-align: center; }
.coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--cyan-soft) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-grid { display: block; position: relative; }
.coverage-text { max-width: 800px; margin: 0 auto; }
.coverage-body {
  font-size: 19px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== CTA ===== */
.cta-section {
  background: transparent;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, var(--cyan-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  position: relative;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 48px;
  position: relative;
}

/* Stores */
.stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.store-badge-link {
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border-radius: 12px;
}
.store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.15) drop-shadow(0 8px 24px var(--cyan-soft));
}
.store-badge {
  height: 56px;
  width: auto;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-meta {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
  text-align: center;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  section { padding: 90px 0; }
  .pillars-grid, .privacy-grid { grid-template-columns: 1fr; gap: 16px; }
  .showcase-grid, .card-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .showcase-body, .card-body { margin: 0 auto; }
  .virtual-card { margin: 0 auto; }
  .card-features { max-width: 280px; margin: 0 auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .brand { --brand-font: 30px; --brand-spacing: 6px; --brand-gap: 11px; --brand-dot: 7px; }
  .brand-footer { --brand-font: 28px; }
  .brand-icon { height: 44px; width: 44px; }
  .brand-icon-footer { height: 40px; width: 40px; }
  .logo { gap: 12px; }
  .store-badge { height: 50px; }
}
@media (max-width: 640px) {
  .container, .nav-inner { padding: 0 20px; }
  .hero { padding: 140px 0 80px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }
  .stores { flex-direction: column; }
  .store-badge-link { width: 100%; max-width: 220px; display: flex; justify-content: center; }
  .nav-right { gap: 8px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  .brand { --brand-font: 24px; --brand-spacing: 5px; --brand-gap: 9px; --brand-dot: 6px; }
  .brand-footer { --brand-font: 22px; }
  .brand-icon { height: 36px; width: 36px; border-radius: 9px; }
  .brand-icon-footer { height: 34px; width: 34px; border-radius: 8px; }
  .logo { gap: 10px; }
  .virtual-card { padding: 22px; }
  .card-number { font-size: 18px; }
}
