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



/* ============================================
   AML CHECK - Global Styles
   ============================================ */
:root {
  /* Colors */
  --primary: #0057FF;
  --primary-dark: #0046CC;
  --primary-glow: rgba(0, 87, 255, 0.5);
  --bg-page: #F3F6FF;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-light: #F6F9FF;
  --bg-white: #FFFFFF;
  --text-primary: #050F19;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --green: #10B981;
  --orange: #F59E0B;
  --red: #EF4444;
  --border: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);

  /* Force Light Theme Overrides */
  --bg-dark: #FFFFFF;
  --text-white: #050F19;
  --text-light: #71717A;
  --text-gray: #A1A1AA;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --container-max: 1200px;
  --container-padding: 20px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 87, 255, 0.16) 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(0, 212, 255, 0.14) 0%, transparent 55%),
    radial-gradient(800px 600px at 50% 110%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(700px 500px at 15% 30%, rgba(0, 87, 255, 0.12) 0%, transparent 65%),
    radial-gradient(650px 450px at 85% 35%, rgba(0, 212, 255, 0.1) 0%, transparent 65%),
    radial-gradient(600px 520px at 60% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 65%),
    radial-gradient(500px 400px at 35% 75%, rgba(99, 102, 241, 0.08) 0%, transparent 65%),
    radial-gradient(520px 420px at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 65%),
    var(--bg-page);
  background-size: 140% 140%;
  animation: bgFloat 18s ease-in-out infinite;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a:active {
  transform: scale(0.98);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
button:active {
  transform: scale(0.97);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
img {
  max-width: 100%;
  height: auto;
}
/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
/* Button Primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-md);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:disabled {
  background: #B0B0B0;
  cursor: not-allowed;
  transform: none;
  transition: none;
}
/* Button Secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-sm);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Card */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes bgFloat {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 30%; }
  100% { background-position: 0% 0%; }
}
.animate-fadeIn {
  animation: fadeIn 0.5s ease forwards;
}
/* Universal click animation for all interactive elements */
button:not(:disabled),
a[href],
[role="button"],
.cursor-pointer,
.select-item,
.wallet-item,
.checking-card__btn-text,
.btn-text {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
button:not(:disabled):active,
a[href]:active,
[role="button"]:active,
.cursor-pointer:active,
.select-item:active,
.wallet-item:active,
.checking-card__btn-text:active,
.btn-text:active {
  transform: scale(0.98);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Responsive */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
}
/* Header - Modern Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.header.scrolled .header__wrap {
  padding: 12px 0;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header__logo:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.header__logo svg {
  height: 32px;
  width: auto;
}

.header__logo text {
  fill: var(--text-primary);
}

/* Navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.header__link:hover,
.header__link.active {
  color: var(--text-primary);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 87, 255, 0.5);
}

.header__link:hover::after,
.header__link.active::after {
  width: 24px;
}

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__cta {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--primary);
  color: white;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 87, 255, 0.4);
  background: var(--primary-dark);
}

/* Burger Menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1001;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #050F19;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header__burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay */
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .header__list {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .header__cta {
    display: none !important;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
  }

  .header__nav.open {
    right: 0;
  }

  .header__list {
    flex-direction: column;
    gap: 32px;
  }

  .header__link {
    font-size: 20px;
    opacity: 1;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header__logo svg {
    height: 32px;
  }
}



/* Footer - Modern Light Theme */
.footer {
  background: transparent;
  color: var(--text-primary);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__logo:hover {
  transform: translateY(-2px);
}

.footer__logo svg {
  filter: drop-shadow(0 0 15px rgba(0, 87, 255, 0.2));
  width: 48px;
  height: 48px;
}

.footer__logo span {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #050F19 0%, #0057FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.footer__links {
  display: flex;
  gap: 100px;
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.footer__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__col a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  position: relative;
}

.footer__col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer__bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer__wrap {
    flex-direction: column;
    gap: 60px;
    padding-bottom: 60px;
  }
  
  .footer__links {
    gap: 60px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 80px 0 40px;
  }
  
  .footer__links {
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  width: 100%;
  min-height: 100vh;
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}
