:root {
  --ink-900: #0f172a;
  --ink-700: #1e293b;
  --ink-500: #475569;
  --paper-100: #f6f8fb;
  --paper-200: #eef2f7;
  --accent-500: #00a3ff;
  --accent-600: #0087d4;
  --premium-500: #c7a34a;
  --premium-100: #f4e8c9;
  --gold-500: #c7a34a;
  --gold-400: #d8b45f;
  --gold-200: #f2e3b6;
  --gold-100: #fbf5e5;
  --gold-divider: rgba(199, 163, 74, 0.24);
  --gold-hover: rgba(199, 163, 74, 0.16);
  --warning-500: #d97706;
  --danger-500: #dc2626;
  --shadow-lg: 0 16px 40px rgba(2, 16, 36, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 10% 10%, #dbe8fb 0%, #edf3fb 38%, #f6f8fb 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.theme-dark {
  color: #e5edf7;
  background: radial-gradient(circle at 10% 10%, #11233d 0%, #0d1727 38%, #09111d 100%);
}

h1,
h2,
h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(36px);
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: #9fc4ff;
  top: -100px;
  left: -60px;
}

.orb-b {
  width: 380px;
  height: 380px;
  background: #9dd9ff;
  right: -100px;
  bottom: -100px;
}

.layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.app-locked {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.auth-gate {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 29, 0.48);
  backdrop-filter: blur(12px);
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-card {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid #c5d6d8;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: none;
}

.auth-card.auth-active {
  display: block;
  animation: fade-in 380ms ease both;
}

.auth-sub {
  color: var(--ink-500);
  margin-top: 8px;
  margin-bottom: 16px;
}

.stack-form {
  display: grid;
  gap: 8px;
}

.stack-form input {
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 10px 11px;
  background: #ffffff;
  margin-bottom: 6px;
}

.stack-form select {
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 10px 11px;
  background: #ffffff;
  margin-bottom: 6px;
}

.stack-form input:focus {
  outline: 2px solid #c9ecff;
  border-color: var(--accent-500);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 4px 0 8px;
}

.sidebar {
  background: linear-gradient(180deg, #15374d 0%, #102a3a 100%);
  color: #f5fffd;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-500), #85e4d7);
  color: #0a1d2a;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand h1 {
  font-size: 1.22rem;
}

.brand p {
  font-size: 0.78rem;
  opacity: 0.75;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  border: none;
  background: transparent;
  color: #d8eaef;
  text-align: left;
  font-size: 0.98rem;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-item:hover,
.menu-item.active {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.status-card {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
}

.status-card h2 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.status-card p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #dcecf1;
}

.status-line {
  margin-top: 10px;
  font-size: 0.82rem;
  color: #b9d0d8;
}

.status-pill {
  margin-top: 12px;
  display: inline-block;
  background: #9be9d8;
  color: #123041;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.main-content {
  padding: 28px;
}

.tab-panel {
  display: none;
}

.tab-panel.tab-active {
  display: block;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-nav {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d5e8e3;
  overflow-x: auto;
  padding-bottom: 0;
}

.product-nav::-webkit-scrollbar {
  height: 3px;
}

.product-nav::-webkit-scrollbar-track {
  background: transparent;
}

.product-nav::-webkit-scrollbar-thumb {
  background: #9dcdc0;
  border-radius: 2px;
}

.product-btn {
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--ink-500);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: all 200ms ease;
}

.product-btn:hover {
  color: var(--ink-900);
}

.product-btn.active {
  color: var(--accent-500);
  font-weight: 600;
}

.product-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-500);
  border-radius: 2px 2px 0 0;
}

.eyebrow {
  color: var(--ink-500);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.top-actions {
  display: flex;
  gap: 12px;
}

button {
  font-family: inherit;
}

.primary-btn,
.ghost-btn,
.text-btn {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn {
  border: none;
  background: linear-gradient(135deg, var(--accent-500), #00c2a4);
  color: #073229;
}

.ghost-btn {
  background: transparent;
  border: 1px solid #b7c9cf;
  color: var(--ink-700);
}

.text-btn {
  border: none;
  background: #e8f1f5;
  color: var(--ink-700);
}

.text-btn:hover,
.ghost-btn:hover,
.primary-btn:hover {
  transform: translateY(-1px);
}

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

.bank-card,
.metric-panel {
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.bank-card {
  background: linear-gradient(145deg, #123750, #1e5470);
  color: #f4ffff;
}

.bank-card.alt {
  background: linear-gradient(145deg, #254b4f, #2f6870);
}

.bank-card p,
.metric-panel p {
  font-size: 0.9rem;
  opacity: 0.88;
}

.bank-card h3,
.metric-panel h3 {
  margin: 8px 0;
}

.metric-panel {
  background: #fbfffc;
}

.trend {
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
}

.trend.up {
  background: #d3f0e8;
  color: #0c6e59;
}

.trend.down {
  background: #ffe8df;
  color: #8f3b24;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
}

.single-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.analytics-grid {
  margin-top: 14px;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dce8e4;
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.activity-tools {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.activity-tools input,
.activity-tools select,
.transfer-form select {
  border: 1px solid #bfd1cd;
  border-radius: 10px;
  padding: 10px 11px;
  background: #fcfefd;
  color: var(--ink-900);
}

.activity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d7e4df;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.activity-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.activity-name {
  font-weight: 600;
}

.activity-meta {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.activity-amount {
  font-weight: 700;
}

.activity-amount.credit {
  color: #0f7f66;
}

.activity-amount.debit {
  color: #9a4429;
}

.transfer-form {
  display: grid;
  gap: 8px;
}

.transfer-form label {
  margin-top: 3px;
  font-size: 0.86rem;
  color: var(--ink-500);
}

.transfer-form input {
  border: 1px solid #bfd1cd;
  border-radius: 10px;
  padding: 10px 11px;
  background: #fcfefd;
}

.transfer-form select {
  appearance: none;
}

.transfer-form input:focus {
  outline: 2px solid #8ddfce;
  border-color: #6dcfb9;
}

.transfer-form select:focus,
.activity-tools input:focus,
.activity-tools select:focus,
.stack-form select:focus {
  outline: 2px solid #8ddfce;
  border-color: #6dcfb9;
}

.full {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  min-height: 22px;
  font-size: 0.88rem;
}

.form-message.success {
  color: #0f7f66;
}

.form-message.error {
  color: #9a4429;
}

.account-row,
.card-control-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d7e4df;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.accounts-list {
  display: grid;
  gap: 10px;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.account-summary-grid article {
  border: 1px solid #d7e4df;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
}

.account-summary-grid span {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.account-summary-grid strong {
  font-size: 1.1rem;
}

.account-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-row-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.soft-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #dcefeb;
  color: #0f5d64;
}

.soft-pill.outline {
  background: transparent;
  border: 1px solid #c8ddd7;
  color: var(--ink-700);
}

.account-row p,
.card-control-row p {
  color: var(--ink-500);
  font-size: 0.86rem;
  margin-top: 4px;
}

.limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.limits-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-500);
}

.limits-grid input,
.inline-form input {
  border: 1px solid #bfd1cd;
  border-radius: 10px;
  padding: 10px 11px;
  background: #fcfefd;
}

.card-action-row {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}

.inline-form {
  grid-template-columns: 1.2fr 1fr 1fr auto;
  margin-bottom: 14px;
}

.alert-item {
  grid-template-columns: 1fr auto;
}

.alert-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.alert-tag.high {
  background: #fbe6df;
  color: #8b3f29;
}

.alert-tag.medium {
  background: #fff1d6;
  color: #8b6117;
}

.alert-tag.low {
  background: #dff3ed;
  color: #0d6b58;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 180px;
}

.bar-col {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.bar-track {
  width: 100%;
  height: 140px;
  border-radius: 999px;
  background: #e1efeb;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bar-fill {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #00c2a4, #0f6d83);
}

.bar-label {
  font-size: 0.76rem;
  color: var(--ink-500);
}

.category-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #d7e4df;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.compact-list li {
  padding: 9px 10px;
}

.approval-section {
  margin-top: 12px;
}

.approval-section h4 {
  margin-bottom: 8px;
}

.approval-actions {
  display: flex;
  gap: 8px;
}

.chip-btn {
  border: none;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  cursor: pointer;
}

.chip-btn.approve {
  background: #d4efe8;
  color: #0b6a56;
}

.chip-btn.reject {
  background: #fbe6df;
  color: #8b3f29;
}

.hidden {
  display: none !important;
}

.modal.hidden {
  display: none !important;
  pointer-events: none !important;
}

.reward-level {
  margin-bottom: 10px;
}

.progress-wrap {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #dcece8;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar {
  height: 100%;
  width: 76%;
  background: linear-gradient(90deg, var(--accent-500), #63d9c4);
  transition: width 0.35s ease;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.rewards-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d6e6e1;
  border-radius: 12px;
  padding: 12px;
}

.reward-action {
  margin-top: 12px;
  width: 100%;
}

.rewards-grid h4 {
  margin-bottom: 4px;
}

.rewards-grid p {
  color: var(--ink-500);
  font-size: 0.87rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 7;
  background: #102f42;
  color: #f4fbff;
  padding: 10px 14px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(8, 22, 31, 0.56);
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-card {
  width: min(420px, 100%);
  background: #faffff;
  border: 1px solid #ccdfdb;
  border-radius: 16px;
  padding: 18px;
}

.modal-card p {
  color: var(--ink-500);
  margin: 8px 0 12px;
}

.modal-card h3 {
  margin-bottom: 4px;
}

.modal-content {
  color: var(--ink-500);
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.modal-content strong,
.modal-content h4 {
  color: var(--ink-900);
}

.info-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.info-list li {
  padding: 10px 12px;
  border: 1px solid #d7e4df;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.mini-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.fade-in {
  animation: fade-in 560ms ease both;
}

.slide-up {
  animation: slide-up 700ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.delay {
  animation-delay: 120ms;
}

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

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

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .back-to-top-btn {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .limits-grid {
    grid-template-columns: 1fr;
  }

  .account-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Discovery Bank Style Website ========== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Navigation */
.main-nav {
  background: linear-gradient(135deg, #0a1a2f 0%, #102541 100%);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.back-to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: linear-gradient(135deg, #0a1a2f 0%, #0f3c68 100%);
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 18, 34, 0.24);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  z-index: 160;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, #133763 0%, #0a5b95 100%);
}

.back-to-top-btn:focus-visible {
  outline: 3px solid rgba(0, 163, 255, 0.45);
  outline-offset: 2px;
}

.main-nav.menu-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.main-nav.menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.main-nav.menu-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
  flex-shrink: 0;
}

.logo-mark {
  width: 108px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img,
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: all 200ms ease;
  position: relative;
}

.nav-tab:hover {
  color: white;
}

.nav-tab.active {
  color: white;
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-500);
}

.nav-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 200ms ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.nav-btn.primary {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: #04243d;
}

.nav-btn.primary:hover {
  background: var(--accent-600);
}

.theme-toggle-btn {
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.theme-toggle-icon {
  font-size: 0.98rem;
  line-height: 1;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a1a2f 0%, #102541 55%, #0f3c68 100%);
  padding: 96px 20px 72px;
  color: white;
  animation: fade-in 800ms ease both;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(199, 163, 74, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(0, 163, 255, 0.16), transparent 24%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.hero-content {
  max-width: 860px;
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--premium-100);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.hero-support {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(230, 237, 247, 0.84);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-outline {
  color: #e6edf7;
  border-color: rgba(230, 237, 247, 0.85);
}

.hero-outline:hover {
  color: #0a1a2f;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-metric-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.hero-metric-item strong {
  display: block;
  font-size: 1.3rem;
  color: #ffffff;
}

.hero-metric-item span {
  color: rgba(230, 237, 247, 0.82);
  font-size: 0.88rem;
}

.hero-trust {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(230, 237, 247, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark, #e6edf7);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.cta-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 0.95rem;
}

.cta-btn.primary-lg {
  background: white;
  color: var(--accent-500);
  padding: 16px 32px;
  font-size: 1rem;
}

.cta-btn.primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary {
  background: var(--accent-500);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--accent-600);
}

.cta-btn.outline {
  background: transparent;
  color: var(--text-on-dark, #e6edf7);
  border: 2px solid rgba(230, 237, 247, 0.85);
}

.cta-btn.outline:hover {
  background: white;
  color: var(--accent-500);
}

.wealth-preview-section {
  padding: 76px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 163, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fafc 0%, #edf3f9 100%);
}

.wealth-preview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--accent-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 8px;
  background: var(--gold-divider);
}

.wealth-preview-copy h2 {
  font-size: 2.25rem;
  line-height: 1.14;
  margin-bottom: 18px;
  color: var(--ink-900);
}

.wealth-description {
  text-align: left;
  margin: 0 0 24px;
  max-width: 540px;
}

.wealth-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.wealth-feature {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(10, 26, 47, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.wealth-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wealth-outline {
  color: var(--accent-500);
  border-color: rgba(0, 163, 255, 0.3);
}

.wealth-outline:hover {
  color: white;
  background: var(--accent-500);
}

.wealth-preview-board {
  background: linear-gradient(180deg, rgba(11, 28, 48, 0.98) 0%, rgba(18, 39, 68, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(10, 26, 47, 0.18);
  color: var(--text-on-dark, #e6edf7);
}

.wealth-board-top,
.wealth-board-bottom {
  display: grid;
  gap: 20px;
}

.wealth-board-top {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  margin-bottom: 20px;
}

.wealth-board-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.wealth-balance-card,
.wealth-panel,
.wealth-stack-card {
  border-radius: 22px;
  border: 1px solid rgba(230, 237, 247, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.wealth-balance-card {
  padding: 24px;
}

.wealth-card-head,
.wealth-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wealth-card-head span:first-child,
.wealth-panel-head h3 {
  color: #f5f8fd;
}

.wealth-panel-head h3 {
  font-size: 1rem;
}

.wealth-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wealth-chip.positive {
  background: rgba(30, 194, 139, 0.14);
  color: #83e7bf;
}

.wealth-chip.neutral {
  background: rgba(0, 163, 255, 0.14);
  color: #8ad2ff;
}

.wealth-chip.gold {
  background: rgba(199, 163, 74, 0.18);
  color: #f2d27d;
}

.wealth-balance-amount {
  margin: 18px 0 22px;
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

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

.wealth-balance-metrics div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.wealth-metric-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(230, 237, 247, 0.68);
  font-size: 0.82rem;
}

.wealth-balance-metrics strong,
.allocation-row strong,
.activity-row strong,
.rewards-progress-meta strong {
  color: #ffffff;
}

.wealth-stack-card {
  position: relative;
  min-height: 240px;
  padding: 18px;
  overflow: hidden;
}

.premium-card-face {
  position: absolute;
  left: 18px;
  right: 18px;
  min-height: 140px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.premium-card-primary {
  top: 18px;
  background: linear-gradient(135deg, #0d2038 0%, #154b78 100%);
}

.premium-card-secondary {
  top: 84px;
  background: linear-gradient(135deg, rgba(241, 247, 255, 0.16) 0%, rgba(179, 196, 216, 0.08) 100%);
  backdrop-filter: blur(8px);
}

.premium-card-face strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.premium-card-face span {
  color: rgba(230, 237, 247, 0.78);
  font-size: 0.88rem;
}

.premium-card-label {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wealth-panel {
  padding: 22px;
}

.wealth-side-column {
  display: grid;
  gap: 20px;
}

.allocation-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.allocation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.allocation-name,
.activity-row span,
.rewards-copy,
.rewards-progress-meta span {
  color: rgba(230, 237, 247, 0.68);
}

.allocation-name {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
}

.allocation-change.positive,
.activity-value.positive {
  color: #7fe1ba;
}

.allocation-bar,
.rewards-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.allocation-bar span,
.rewards-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.allocation-bar span {
  background: linear-gradient(90deg, #00a3ff 0%, #54c8ff 100%);
}

.rewards-copy {
  margin: 16px 0 18px;
  line-height: 1.6;
}

.rewards-progress-bar span {
  background: linear-gradient(90deg, #c7a34a 0%, #f1cf78 100%);
}

.rewards-progress-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
}

.activity-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.activity-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(230, 237, 247, 0.08);
}

.activity-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.activity-row div {
  display: grid;
  gap: 4px;
}

.cards-showcase-section {
  padding: 78px 20px;
  background: #ffffff;
}

.cards-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 34px;
}

.cards-showcase-copy h2,
.proof-section h2,
.luxury-services-copy h2 {
  font-size: 2.2rem;
  line-height: 1.14;
  color: var(--ink-900);
}

.cards-showcase-description,
.proof-description,
.luxury-description {
  text-align: left;
  margin: 18px 0 26px;
  max-width: 620px;
}

.cards-showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cards-outline {
  color: var(--accent-500);
  border-color: rgba(0, 163, 255, 0.28);
}

.cards-outline:hover {
  color: white;
  background: var(--accent-500);
}

.cards-visual-stage {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0a1a2f 0%, #14345a 62%, #0f3c68 100%);
  box-shadow: 0 24px 60px rgba(10, 26, 47, 0.16);
  overflow: hidden;
}

.cards-visual-stage::before,
.cards-visual-stage::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cards-visual-stage::before {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(199, 163, 74, 0.32) 0%, transparent 70%);
}

.cards-visual-stage::after {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
}

.showcase-card {
  position: absolute;
  width: min(78%, 390px);
  min-height: 188px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.showcase-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.showcase-card span:last-child {
  color: rgba(230, 237, 247, 0.76);
  font-size: 0.9rem;
}

.showcase-card-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 74, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card-platinum {
  top: 28px;
  left: 28px;
  z-index: 4;
  color: #ffffff;
  background: linear-gradient(135deg, #10253d 0%, #164b76 100%);
}

.showcase-card-platinum .showcase-card-label {
  color: #5a471f;
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-200) 100%);
}

.showcase-card-signature {
  top: 78px;
  right: 28px;
  z-index: 3;
  color: #0d2337;
  background: linear-gradient(135deg, #f2e3b0 0%, #c7a34a 100%);
}

.showcase-card-signature .showcase-card-label,
.showcase-card-signature span:last-child {
  color: rgba(13, 35, 55, 0.82);
}

.showcase-card-signature .showcase-card-label {
  background: rgba(255, 255, 255, 0.38);
}

.showcase-card-business {
  bottom: 26px;
  left: 56px;
  z-index: 2;
  color: #ffffff;
  background: linear-gradient(135deg, #111827 0%, #223754 100%);
}

.showcase-card-business .showcase-card-label {
  color: #d8e6f5;
  background: rgba(255, 255, 255, 0.1);
}

.showcase-card-travel {
  bottom: 52px;
  right: 42px;
  z-index: 1;
  color: #ffffff;
  background: linear-gradient(135deg, #19455e 0%, #2b6c7c 100%);
}

.showcase-card-travel .showcase-card-label {
  color: #d2eef4;
  background: rgba(255, 255, 255, 0.1);
}

.card-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card-spec-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #dde5ef;
  background: linear-gradient(180deg, #f9fbfd 0%, #f1f5fa 100%);
  box-shadow: 0 10px 26px rgba(10, 26, 47, 0.05);
}

.card-spec-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.card-spec-head h3 {
  font-size: 1.15rem;
  color: var(--ink-900);
}

.card-spec-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--gold-divider);
  background: linear-gradient(135deg, var(--gold-100), #f6ecd3);
  color: #715724;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-spec-list {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--ink-600);
  line-height: 1.6;
}

.card-spec-list strong {
  color: var(--ink-900);
}

.proof-section {
  padding: 76px 20px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.proof-kicker,
.proof-section h2,
.proof-description {
  text-align: center;
}

.proof-description {
  margin-left: auto;
  margin-right: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.proof-card {
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid #dbe5ef;
  box-shadow: 0 12px 30px rgba(10, 26, 47, 0.06);
}

.proof-metric {
  display: block;
  margin-bottom: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  color: var(--accent-500);
}

.proof-card h3 {
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.proof-card p {
  color: var(--ink-500);
  line-height: 1.65;
}

.security-trust-section {
  padding: 74px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fc 100%);
}

.security-trust-shell {
  display: grid;
  gap: 28px;
}

.security-trust-copy {
  max-width: 760px;
}

.security-trust-copy h2 {
  font-size: 2.05rem;
  line-height: 1.16;
  color: var(--ink-900);
}

.security-trust-description {
  text-align: left;
  margin: 18px 0 24px;
}

.security-trust-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.security-trust-outline {
  color: var(--accent-500);
  border-color: rgba(0, 163, 255, 0.3);
}

.security-trust-outline:hover {
  color: white;
  background: var(--accent-500);
}

.security-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.security-card {
  padding: 22px;
  border-radius: 20px;
  background: white;
  border: 1px solid #dce5ef;
  box-shadow: 0 12px 28px rgba(10, 26, 47, 0.05);
}

.security-metric {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.1);
  color: var(--accent-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.security-card h3 {
  margin-bottom: 10px;
  color: var(--ink-900);
  font-size: 1.02rem;
}

.security-card p {
  color: var(--ink-500);
  line-height: 1.62;
}

.luxury-services-section {
  padding: 78px 20px;
  background: linear-gradient(135deg, #0b1c30 0%, #122744 60%, #102c4f 100%);
}

.luxury-services-shell {
  display: grid;
  gap: 30px;
}

.luxury-services-copy h2,
.luxury-services-copy .section-kicker,
.luxury-description {
  color: white;
}

.luxury-description {
  color: rgba(230, 237, 247, 0.78);
}

.luxury-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.luxury-service-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(230, 237, 247, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.luxury-service-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.05rem;
}

.luxury-service-card p {
  color: rgba(230, 237, 247, 0.72);
  line-height: 1.65;
}

.luxury-service-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(199, 163, 74, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(199, 163, 74, 0.24);
}

.luxury-highlight-label {
  display: block;
  margin-bottom: 8px;
  color: #f1cf78;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.luxury-service-highlight strong {
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
}

.institutional-services-section {
  padding: 76px 20px;
  background: linear-gradient(180deg, #f7fafd 0%, #eef3f8 100%);
}

.institutional-kicker,
.institutional-services-section h2,
.institutional-description {
  text-align: center;
}

.institutional-services-section h2 {
  font-size: 2.15rem;
  line-height: 1.16;
  color: var(--ink-900);
}

.institutional-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.institutional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.institutional-card {
  padding: 24px;
  border-radius: 22px;
  background: white;
  border: 1px solid #dbe4ee;
  box-shadow: 0 12px 30px rgba(10, 26, 47, 0.05);
}

.institutional-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--ink-900);
}

.institutional-card p {
  color: var(--ink-500);
  line-height: 1.65;
}

/* Intro Section */
.intro-section {
  padding: 60px 20px;
  background: var(--paper-100);
}

.intro-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.intro-card h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--ink-900);
}

.intro-description {
  color: var(--ink-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.intro-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.intro-quest h3 {
  color: var(--ink-900);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.quest-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 200ms ease;
}

.option:hover {
  background: rgba(0, 163, 255, 0.08);
}

.option input {
  margin-top: 4px;
  cursor: pointer;
}

.option span {
  color: var(--ink-700);
  line-height: 1.4;
}

/* Awards Section */
.awards-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.awards-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--ink-900);
}

.awards-tagline {
  text-align: center;
  color: var(--ink-500);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.award-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #d8e0ea;
  transition: all 200ms ease;
}

.award-item:hover {
  border-color: var(--accent-500);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.12);
  transform: translateY(-4px);
}

.award-item h4 {
  color: var(--accent-500);
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.award-item p {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 60px 20px;
  background: #ffffff;
}

.products-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--ink-900);
}

.section-description {
  text-align: center;
  color: var(--ink-500);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: #f6f8fb;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #d8e0ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
  overflow: hidden;
}

.service-card {
  isolation: isolate;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(130deg, rgba(0, 163, 255, 0.24), rgba(199, 163, 74, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: 0;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a1a2f;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(199, 163, 74, 0.28));
  border: 1px solid rgba(10, 26, 47, 0.12);
}

.products-grid .product-card:nth-child(1)::before,
.products-grid .product-card:nth-child(3)::before {
  content: "Platinum";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a471f;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  border: 1px solid var(--gold-divider);
  border-radius: 999px;
  padding: 4px 9px;
}

.products-grid .product-card:nth-child(3)::before {
  content: "Signature";
}

body[data-page="bank"] .products-grid .product-card:nth-child(1)::before {
  content: "Signature";
}

body[data-page="bank"] .products-grid .product-card:nth-child(3)::before {
  content: "Elite";
  background: linear-gradient(135deg, #f7ebc8, #e2c47e);
  border-color: rgba(199, 163, 74, 0.48);
  box-shadow: 0 0 0 2px rgba(199, 163, 74, 0.14);
}

body[data-page="dashboard"] .products-grid .product-card:nth-child(1)::before {
  content: "Priority";
}

body[data-page="dashboard"] .products-grid .product-card:nth-child(3)::before {
  content: "Rewards+";
}

.product-card:hover {
  background: white;
  border-color: var(--gold-500);
  box-shadow: 0 12px 32px rgba(0, 163, 255, 0.1);
  transform: translateY(-6px);
}

.service-card:hover::after {
  opacity: 1;
}

.product-card h3 {
  color: var(--ink-900);
  font-size: 1.1rem;
}

.product-tag {
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-desc {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card-btn {
  background: var(--accent-500);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 200ms ease;
  align-self: flex-start;
}

.card-btn:hover {
  background: var(--accent-600);
  transform: translateX(4px);
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--ink-900);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-500);
}

.faq-question[aria-expanded="true"]::after {
  content: '-';
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background: #f3f7fc;
}

.testimonials-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--ink-900);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 360ms ease;
}

.testimonial {
  min-width: 100%;
  background: white;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #d8e0ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-control {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #c6d7e8;
  background: #ffffff;
  color: #0a1a2f;
  font-size: 1.15rem;
  cursor: pointer;
}

.slider-control:hover {
  background: #edf3fb;
}

.testimonial-quote {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '"';
  color: var(--accent-500);
  font-size: 2rem;
  line-height: 0.1;
}

.testimonial-author {
  color: var(--ink-500);
  font-size: 0.9rem;
}

.testimonial-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #b7c8da;
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--accent-500);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a1a2f 0%, #0c1f36 100%);
  color: white;
  padding: 60px 20px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  padding-bottom: 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 74, 0.22);
  background: rgba(199, 163, 74, 0.12);
  color: #f0cf79;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-block {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-label {
  color: #f0cf79;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.footer-link:hover {
  color: var(--accent-500);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 180ms ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-icon:hover {
  border-color: var(--accent-500);
  background: rgba(0, 163, 255, 0.2);
  transform: translateY(-1px);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 720px;
}

.form-card {
  max-width: 720px;
  margin: 0 auto;
}

.real-form {
  gap: 10px;
}

.real-form select,
.real-form textarea {
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 10px 11px;
  background: #ffffff;
  margin-bottom: 8px;
  font-family: inherit;
  color: var(--ink-900);
}

.real-form textarea:focus,
.real-form select:focus {
  outline: 2px solid #c9ecff;
  border-color: var(--accent-500);
}

.form-result {
  min-height: 20px;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.login-wrap {
  display: block;
}

.login-card {
  max-width: 420px;
  margin: 48px auto 32px;
  border: 1px solid #e3eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.login-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.login-card-logo {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #e3eaf2;
  background: #f6f8fb;
  flex-shrink: 0;
}

.login-card-title {
  font-family: Sora, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
}

.credential-generator-card {
  max-width: 860px;
}

.credential-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.credential-outline {
  color: var(--accent-500);
  border-color: rgba(0, 163, 255, 0.32);
}

.credential-outline:hover {
  color: #ffffff;
  background: var(--accent-500);
}

/* Credential slip */
.credential-slip {
  margin-top: 28px;
  border: 1.5px solid var(--gold-divider);
  border-radius: 14px;
  background: linear-gradient(135deg, #fefdf9 0%, #fffdf4 100%);
  padding: 24px 28px 20px;
}

.slip-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-divider);
}

.slip-badge {
  background: var(--navy-700, #1a2f5e);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.slip-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

.slip-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e9d2;
}

.slip-row:last-of-type {
  border-bottom: none;
}

.slip-key {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a7a55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 110px;
  flex-shrink: 0;
}

.slip-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-700, #111827);
}

.slip-mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background: #f5f0e3;
  padding: 2px 10px;
  border-radius: 6px;
}

.slip-note {
  font-size: 0.78rem;
  color: #8a8a9a;
  margin: 16px 0 20px;
  font-style: italic;
}

/* Saved accounts list */
.accounts-list {
  margin-top: 8px;
}

.accounts-empty {
  color: #9aa5b4;
  font-size: 0.9rem;
  padding: 12px 0;
}

.account-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
  flex-wrap: wrap;
}

.account-row:last-child {
  border-bottom: none;
}

.account-index {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-100, #e0f4ff);
  color: var(--accent-500);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700, #111827);
  min-width: 120px;
}

.account-username {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.88rem;
  color: var(--accent-500);
  background: #f0f9ff;
  padding: 2px 8px;
  border-radius: 6px;
}

.account-date {
  font-size: 0.78rem;
  color: #9aa5b4;
  margin-left: auto;
}

.account-delete-btn {
  background: none;
  border: 1px solid #f0c0c0;
  color: #c0392b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.account-delete-btn:hover {
  background: #fff0f0;
}

@media print {
  .main-nav,
  .hero,
  .products-section,
  .footer,
  #toast,
  #credentialGeneratorForm,
  .credential-actions,
  .accounts-list,
  .account-delete-btn {
    display: none !important;
  }

  .credential-slip {
    border: 2px solid #c7a34a;
    box-shadow: none;
  }
}

.login-switch {
  display: flex;
  gap: 10px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}

.login-switch .nav-btn {
  min-width: 140px;
}

.auth-panel[hidden] {
  display: none;
}

.auth-divider {
  position: relative;
  margin: 20px 0 18px;
  text-align: center;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #dce6f0;
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: #ffffff;
  color: #6b7a90;
  font-size: 0.84rem;
  font-weight: 600;
}

/* Password show/hide wrapper */
.pwd-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.pwd-wrap input {
  flex: 1;
  padding-right: 68px;
  margin-bottom: 0;
}

.pwd-toggle {
  position: absolute;
  right: 2px;
  background: none;
  border: none;
  color: var(--accent-500);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 12px;
  height: calc(100% - 4px);
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.pwd-toggle:hover {
  background: #f0f9ff;
  color: var(--navy-700);
}

/* Generate credentials button */
.generate-creds-btn {
  justify-self: start;
  font-size: 0.88rem;
}

.form-hint {
  font-size: 0.81rem;
  color: #6b7a90;
  min-height: 1.1em;
  margin-top: -2px;
}

.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-700);
  cursor: pointer;
}

.checkbox-inline input {
  margin: 3px 0 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.account-issued-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #d7e5f2;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.account-issued-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.account-issued-head strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--ink-900);
}

.account-issued-head span,
.account-issued-meta,
.account-issued-label {
  color: #5d7087;
}

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

.account-issued-grid > div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(162, 186, 211, 0.28);
}

.account-issued-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-issued-value {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--ink-900);
  word-break: break-word;
}

.account-issued-meta {
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.onboarding-section {
  background: linear-gradient(180deg, #f5f9fd 0%, #edf3fa 100%);
}

.onboarding-card {
  max-width: 860px;
}

.apply-flow-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 28px;
}

.flow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid #dbe4ee;
  background: #f7fafd;
}

.flow-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dce6f1;
  color: var(--ink-700);
  font-weight: 700;
}

.flow-step p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-600);
}

.flow-step.is-active {
  border-color: rgba(0, 163, 255, 0.38);
  background: rgba(0, 163, 255, 0.08);
}

.flow-step.is-active span {
  background: var(--accent-500);
  color: #ffffff;
}

.flow-step.is-done {
  border-color: rgba(30, 194, 139, 0.38);
  background: rgba(30, 194, 139, 0.08);
}

.flow-step.is-done span {
  background: #1ec28b;
  color: #ffffff;
}

.apply-step {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.apply-step legend {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.form-nav-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.apply-back {
  color: var(--accent-500);
  border-color: rgba(0, 163, 255, 0.34);
}

.apply-back:hover {
  color: #ffffff;
  background: var(--accent-500);
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 2px;
}

.consent-row input {
  margin-top: 3px;
}

.consent-row span {
  color: var(--ink-600);
  line-height: 1.5;
}

.apply-status-tracker {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #dbe5ef;
  background: linear-gradient(180deg, #f7fbff 0%, #eff5fb 100%);
}

.apply-status-tracker h3 {
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.status-tracker-copy {
  color: var(--ink-500);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.status-timeline {
  display: grid;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #dbe5ef;
  background: #ffffff;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  border: 2px solid #b7c8da;
  background: #f4f8fc;
}

.status-item strong {
  color: var(--ink-900);
}

.status-item p {
  color: var(--ink-500);
  margin-top: 4px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.status-item.is-pending {
  opacity: 0.82;
}

.status-item.is-active {
  border-color: rgba(0, 163, 255, 0.38);
  background: rgba(0, 163, 255, 0.08);
}

.status-item.is-active .status-dot {
  border-color: var(--accent-500);
  background: var(--accent-500);
}

.status-item.is-done {
  border-color: rgba(30, 194, 139, 0.38);
  background: rgba(30, 194, 139, 0.08);
  opacity: 1;
}

.status-item.is-done .status-dot {
  border-color: #1ec28b;
  background: #1ec28b;
}

/* Media Queries for Website */
@media (max-width: 1100px) {
  .nav-actions {
    gap: 8px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .cards-showcase-grid {
    grid-template-columns: 1fr;
  }

  .cards-showcase-copy {
    max-width: 760px;
  }

  .wealth-preview-grid,
  .wealth-board-top,
  .wealth-board-bottom {
    grid-template-columns: 1fr;
  }

  .wealth-preview-copy {
    max-width: 760px;
  }

  .luxury-service-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .intro-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .nav-container {
    gap: 12px;
    padding: 0 12px;
  }

  .brand-logo {
    gap: 10px;
  }

  .logo-mark {
    width: 84px;
    height: 52px;
  }

  .nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-main {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 120;
    background: rgba(10, 26, 47, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 28px rgba(5, 15, 28, 0.28);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    display: none;
  }

  .main-nav.menu-open .nav-main {
    display: flex;
  }

  .nav-tabs {
    flex-direction: column;
    border-bottom: 0;
    gap: 8px;
  }

  .nav-tab {
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-tab.active::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }

  .nav-actions .nav-btn {
    width: 100%;
    text-align: left;
  }

  .hero {
    padding: 64px 20px 48px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-support {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .cta-btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-trust {
    gap: 10px;
  }

  .trust-pill {
    width: 100%;
    max-width: 320px;
  }

  .intro-section {
    padding: 40px 20px;
  }

  .wealth-preview-section {
    padding: 52px 20px;
  }

  .wealth-preview-copy h2 {
    font-size: 1.8rem;
  }

  .cards-showcase-section,
  .institutional-services-section,
  .security-trust-section,
  .proof-section,
  .luxury-services-section {
    padding: 52px 20px;
  }

  .cards-showcase-copy h2,
  .institutional-services-section h2,
  .security-trust-copy h2,
  .proof-section h2,
  .luxury-services-copy h2 {
    font-size: 1.8rem;
  }

  .security-trust-actions,
  .form-nav-row,
  .login-switch,
  .credential-actions {
    flex-direction: column;
  }

  .security-trust-actions .cta-btn,
  .form-nav-row .cta-btn,
  .login-switch .nav-btn,
  .credential-actions .cta-btn {
    width: 100%;
  }

  .cards-showcase-actions {
    flex-direction: column;
  }

  .cards-showcase-actions .cta-btn,
  .luxury-service-highlight .cta-btn {
    width: 100%;
  }

  .cards-visual-stage {
    min-height: auto;
    padding: 18px;
    display: grid;
    gap: 16px;
  }

  .showcase-card {
    position: static;
    width: 100%;
    min-height: 170px;
  }

  .wealth-actions {
    flex-direction: column;
  }

  .wealth-actions .cta-btn {
    width: 100%;
  }

  .wealth-preview-board {
    padding: 18px;
    border-radius: 22px;
  }

  .wealth-balance-amount {
    font-size: 1.8rem;
  }

  .wealth-balance-metrics {
    grid-template-columns: 1fr;
  }

  .wealth-stack-card {
    min-height: 260px;
  }

  .premium-card-face {
    left: 14px;
    right: 14px;
  }

  .activity-row,
  .wealth-card-head,
  .wealth-panel-head,
  .allocation-row,
  .rewards-progress-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .awards-section,
  .products-section,
  .faq-section,
  .testimonials-section {
    padding: 40px 20px;
  }

  .awards-section h2,
  .cards-showcase-copy h2,
  .institutional-services-section h2,
  .security-trust-copy h2,
  .wealth-preview-copy h2,
  .proof-section h2,
  .products-section h2,
  .faq-section h2,
  .luxury-services-copy h2,
  .testimonials-section h2 {
    font-size: 1.5rem;
  }

  .card-spec-grid,
  .institutional-grid,
  .security-trust-grid,
  .proof-grid,
  .awards-grid,
  .products-grid,
  .luxury-services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .slider-control {
    width: 100%;
    height: 40px;
  }

  .apply-flow-progress {
    grid-template-columns: 1fr;
  }

  .status-item {
    padding: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    order: -1;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

/* ===== Scroll entrance animations ===== */
.animate-entry {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
  transition-delay: var(--entry-delay, 0ms);
}

.animate-entry.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-entry {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Contact & About — single-column section layout */
body[data-page="contact"] .intro-section .container,
body[data-page="about"] .intro-section .container {
  grid-template-columns: 1fr;
}

/* ===== Contact page — info grid ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-card {
  background: #f6f8fb;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.10);
}

.contact-info-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.93rem;
  color: var(--ink-700);
  line-height: 1.75;
  margin: 0;
}

/* ===== About page — stats row ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about-stat-item {
  text-align: center;
  padding: 28px 16px;
  background: #f6f8fb;
  border: 1px solid #e3eaf2;
  border-radius: 18px;
}

.about-stat-item strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-500);
  margin-bottom: 6px;
}

.about-stat-item span {
  font-size: 0.92rem;
  color: var(--ink-700);
}

/* ===== Apply hero breadcrumb kicker ===== */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(230, 237, 247, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.hero-breadcrumb a:hover {
  color: rgba(230, 237, 247, 0.95);
}

.hero-breadcrumb-sep {
  opacity: 0.5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 170;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(12, 31, 56, 0.12);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(2, 16, 36, 0.16);
  animation: slide-up 320ms ease both;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner__title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.cookie-banner__copy {
  color: var(--ink-500);
  line-height: 1.6;
}

.cookie-banner__copy a {
  color: var(--accent-500);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__btn {
  min-width: 120px;
}

.cookie-banner .cta-btn.outline {
  border-color: rgba(12, 31, 56, 0.18);
  color: var(--ink-900);
}

.cookie-banner .cta-btn.outline:hover {
  background: rgba(10, 26, 47, 0.06);
  color: var(--ink-900);
}

body.theme-dark .main-nav {
  background: linear-gradient(135deg, #08121f 0%, #10223a 100%);
}

body.theme-dark .product-nav,
body.theme-dark .products-section,
body.theme-dark .faq-section,
body.theme-dark .testimonials-section,
body.theme-dark .intro-section,
body.theme-dark .wealth-preview-section,
body.theme-dark .cards-showcase-section,
body.theme-dark .awards-section,
body.theme-dark .security-trust-section {
  background: transparent;
}

body.theme-dark .product-card,
body.theme-dark .testimonial,
body.theme-dark .faq-item,
body.theme-dark .intro-card,
body.theme-dark .contact-info-card,
body.theme-dark .about-stat-item,
body.theme-dark .dashboard-card,
body.theme-dark .auth-card,
body.theme-dark .status-card,
body.theme-dark .wealth-panel,
body.theme-dark .wealth-balance-card,
body.theme-dark .wealth-stack-card,
body.theme-dark .showcase-card,
body.theme-dark .apply-status-tracker,
body.theme-dark .onboarding-card {
  background: rgba(11, 23, 39, 0.9);
  border-color: rgba(194, 214, 235, 0.12);
  color: #e5edf7;
}

body.theme-dark .products-section h2,
body.theme-dark .faq-section h2,
body.theme-dark .testimonials-section h2,
body.theme-dark .product-card h3,
body.theme-dark .faq-question,
body.theme-dark .intro-card h2,
body.theme-dark .contact-info-card h3,
body.theme-dark .about-stat-item strong,
body.theme-dark .footer h3,
body.theme-dark .footer h4,
body.theme-dark .dashboard-card h3,
body.theme-dark .db-page-title,
body.theme-dark .modal-content strong,
body.theme-dark .modal-content h4 {
  color: #f5f8fc;
}

body.theme-dark .section-description,
body.theme-dark .product-desc,
body.theme-dark .faq-answer,
body.theme-dark .contact-info-card p,
body.theme-dark .about-stat-item span,
body.theme-dark .intro-description,
body.theme-dark .testimonial-author,
body.theme-dark .footer-text,
body.theme-dark .footer-intro,
body.theme-dark .copyright,
body.theme-dark .hero-support,
body.theme-dark .product-btn,
body.theme-dark .status-card p,
body.theme-dark .status-line,
body.theme-dark .rewards-copy,
body.theme-dark .wealth-metric-label,
body.theme-dark .activity-row span,
body.theme-dark .allocation-name {
  color: rgba(229, 237, 247, 0.74);
}

body.theme-dark .product-nav {
  border-bottom-color: rgba(194, 214, 235, 0.12);
}

body.theme-dark .product-btn:hover,
body.theme-dark .footer-link,
body.theme-dark .cookie-banner__copy a {
  color: #9ed7ff;
}

body.theme-dark .footer-link:hover {
  color: #ffffff;
}

body.theme-dark .hero-metric-item,
body.theme-dark .trust-pill,
body.theme-dark .info-list li,
body.theme-dark .stack-form input,
body.theme-dark .stack-form select,
body.theme-dark .stack-form textarea,
body.theme-dark .support-chat-history,
body.theme-dark .dashboard-table thead tr,
body.theme-dark .slider-control,
body.theme-dark .back-to-top-btn,
body.theme-dark .modal {
  border-color: rgba(194, 214, 235, 0.12);
}

body.theme-dark .stack-form input,
body.theme-dark .stack-form select,
body.theme-dark .stack-form textarea,
body.theme-dark .support-chat-history,
body.theme-dark .dashboard-table thead tr,
body.theme-dark .slider-control,
body.theme-dark .info-list li,
body.theme-dark .cookie-banner,
body.theme-dark .back-to-top-btn {
  background: rgba(12, 24, 40, 0.95);
  color: #e5edf7;
}

body.theme-dark .slider-control:hover,
body.theme-dark .back-to-top-btn:hover {
  background: rgba(20, 44, 72, 0.98);
}

body.theme-dark .db-info-line,
body.theme-dark .db-list > li,
body.theme-dark .db-list > div {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(194, 214, 235, 0.1);
}

body.theme-dark .db-info-line span {
  color: rgba(229, 237, 247, 0.72);
}

body.theme-dark .db-info-line strong {
  color: #f5f8fc;
}

body.theme-dark .customer-mastercard {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #0c1830 0%, #14365d 52%, #1a5d8a 100%);
  border-color: rgba(194, 214, 235, 0.2);
}

body.theme-dark .checkbox-inline,
body.theme-dark .account-issued-head span,
body.theme-dark .account-issued-meta,
body.theme-dark .account-issued-label {
  color: rgba(229, 237, 247, 0.76);
}

body.theme-dark .account-issued-card {
  background: linear-gradient(135deg, rgba(12, 24, 40, 0.96) 0%, rgba(16, 35, 58, 0.96) 100%);
  border-color: rgba(194, 214, 235, 0.12);
}

body.theme-dark .account-issued-head strong,
body.theme-dark .account-issued-value {
  color: #f5f8fc;
}

body.theme-dark .account-issued-grid > div {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(194, 214, 235, 0.1);
}

body.theme-dark .cookie-banner {
  border-color: rgba(194, 214, 235, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

body.theme-dark .cookie-banner__title {
  color: #f5f8fc;
}

body.theme-dark .nav-btn,
body.theme-dark .cta-btn.outline {
  border-color: rgba(229, 237, 247, 0.36);
  color: #e5edf7;
}

body.theme-dark .nav-btn:hover,
body.theme-dark .cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.theme-dark .back-to-top-btn {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

/* ===== Product page accent themes ===== */
body[data-page="bank"] {
  --product-accent: #00a3ff;
  --product-accent-strong: #0087d4;
  --product-accent-soft: rgba(0, 163, 255, 0.26);
  --product-hero-start: #0a1a2f;
  --product-hero-end: #0f3c68;
  --product-kicker: #d6ecff;
  --product-surface: #f1f8ff;
}

body[data-page="medical"] {
  --product-accent: #0e9f8d;
  --product-accent-strong: #0b8274;
  --product-accent-soft: rgba(14, 159, 141, 0.28);
  --product-hero-start: #0f2c34;
  --product-hero-end: #0e4d60;
  --product-kicker: #d5f4ef;
  --product-surface: #eefaf8;
}

body[data-page="health"] {
  --product-accent: #2f9e44;
  --product-accent-strong: #247b34;
  --product-accent-soft: rgba(47, 158, 68, 0.24);
  --product-hero-start: #132a1b;
  --product-hero-end: #275337;
  --product-kicker: #ddf5e3;
  --product-surface: #f2fbf4;
}

body[data-page="insurance"] {
  --product-accent: #cc8a00;
  --product-accent-strong: #a86f00;
  --product-accent-soft: rgba(204, 138, 0, 0.24);
  --product-hero-start: #2f2210;
  --product-hero-end: #5f3f16;
  --product-kicker: #f8e8c9;
  --product-surface: #fff8eb;
}

body[data-page="investments"] {
  --product-accent: #4353ff;
  --product-accent-strong: #2f3ed8;
  --product-accent-soft: rgba(67, 83, 255, 0.26);
  --product-hero-start: #171c3c;
  --product-hero-end: #2a3474;
  --product-kicker: #e3e7ff;
  --product-surface: #f3f5ff;
}

body[data-page="carhome"] {
  --product-accent: #d26a24;
  --product-accent-strong: #ab541b;
  --product-accent-soft: rgba(210, 106, 36, 0.25);
  --product-hero-start: #302015;
  --product-hero-end: #6b3a1f;
  --product-kicker: #f9e4d5;
  --product-surface: #fff4ec;
}

body[data-page="vitality"] {
  --product-accent: #1fa873;
  --product-accent-strong: #18835a;
  --product-accent-soft: rgba(31, 168, 115, 0.26);
  --product-hero-start: #142b21;
  --product-hero-end: #216145;
  --product-kicker: #d8f5e8;
  --product-surface: #eefbf5;
}

body[data-page="travel"] {
  --product-accent: #0c94c5;
  --product-accent-strong: #08769d;
  --product-accent-soft: rgba(12, 148, 197, 0.25);
  --product-hero-start: #10253a;
  --product-hero-end: #184f76;
  --product-kicker: #d8effb;
  --product-surface: #eef8ff;
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .hero {
  background: linear-gradient(135deg, var(--product-hero-start) 0%, var(--product-hero-end) 100%);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .hero::before {
  background:
    radial-gradient(circle at 18% 22%, var(--product-accent-soft), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 26%);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .hero-kicker {
  color: var(--product-kicker);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .products-section {
  background: linear-gradient(180deg, var(--product-surface) 0%, #ffffff 24%);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .section-kicker,
body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .product-btn.active,
body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .faq-question::after,
body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .testimonial-dot.is-active {
  color: var(--product-accent);
  background-color: var(--product-accent);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .product-btn.active::after {
  background: var(--product-accent);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .cta-btn.primary,
body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .card-btn {
  background: var(--product-accent);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .cta-btn.primary:hover,
body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .card-btn:hover {
  background: var(--product-accent-strong);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .service-card::after {
  background: linear-gradient(130deg, var(--product-accent-soft), rgba(199, 163, 74, 0.18), transparent 60%);
}

body:is([data-page="bank"], [data-page="medical"], [data-page="health"], [data-page="insurance"], [data-page="investments"], [data-page="carhome"], [data-page="vitality"], [data-page="travel"]) .service-icon {
  background: linear-gradient(135deg, var(--product-accent-soft), rgba(255, 255, 255, 0.55));
}

@media (max-width: 800px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);

  /* ===== Dashboard layout ===== */
  body[data-page="dashboard"] {
    background: linear-gradient(120deg, #eaf6ff 0%, #f6f8fb 100%);
    min-height: 100vh;
  }

  .db-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .db-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 0 36px;
    box-sizing: border-box;
  }

  .db-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .db-brand-logo {
    height: 48px;
    width: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #e3eaf2;
    flex-shrink: 0;
  }

  .db-brand h2 {
    font-family: Sora, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
  }

  .db-brand p {
    font-size: 0.85rem;
    color: var(--ink-500);
    margin: 0;
  }

  .db-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .db-user-greeting {
    font-size: 0.97rem;
    color: var(--ink-700);
  }

  .db-mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid #d8e0ea;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--ink-900);
    line-height: 1;
  }

  .db-body {
    display: flex;
    flex: 1;
  }

  .db-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 26, 47, 0.45);
    backdrop-filter: blur(2px);
    z-index: 150;
  }

  .db-sidebar-overlay.is-visible {
    display: block;
  }

  .sidebar.sidebar-open {
    transform: translateX(0) !important;
  }

  .db-panel {
    display: none;
  }

  .db-panel.tab-active {
    display: block;
  }

  .db-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }

  .db-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }

  .dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e3eaf2;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .dashboard-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 14px;
  }

  .db-account-summary {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.10);
    padding: 32px 40px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  .db-account-summary::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,163,255,0.13) 0%, transparent 70%);
    pointer-events: none;
  }

  .db-account-identity {
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    z-index: 1;
  }

  .db-account-identity img {
    height: 64px;
    width: 64px;
    border-radius: 14px;
    background: #f6f8fb;
    box-shadow: 0 2px 8px #e3eaf2;
    flex-shrink: 0;
  }

  .db-welcome-label {
    font-size: 0.95rem;
    color: var(--ink-500);
    margin-bottom: 2px;
  }

  .db-account-identity h1 {
    font-family: Sora, sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--ink-900);
  }

  .db-account-number {
    font-size: 0.9rem;
    color: var(--ink-500);
  }

  .db-balance-block {
    text-align: right;
    position: relative;
    z-index: 1;
  }

  .db-balance-label {
    font-size: 0.95rem;
    color: var(--ink-500);
    margin-bottom: 4px;
  }

  .db-balance-amount {
    font-family: Sora, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-500);
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .db-balance-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }

  .db-table-wrap {
    overflow-x: auto;
  }

  .db-info-stack {
    display: grid;
    gap: 12px;
  }

  .db-info-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    margin: 0;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e7eef5;
  }

  .db-info-line span {
    color: var(--ink-500);
    font-size: 0.88rem;
  }

  .db-info-line strong {
    color: var(--ink-900);
    font-size: 0.95rem;
    text-align: right;
    word-break: break-word;
  }

  .db-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .db-list > li,
  .db-list > div {
    padding: 12px 14px;
    border-radius: 12px;
    background: #f7fafc;
    border: 1px solid #e7eef5;
    color: var(--ink-700);
    line-height: 1.5;
  }

  .customer-mastercard {
    position: relative;
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 18px;
    color: #f8fbff;
    background:
      radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 32%),
      linear-gradient(145deg, #111d36 0%, #153d6e 52%, #1f73a8 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 28px rgba(14, 25, 48, 0.22);
    overflow: hidden;
  }

  .customer-mastercard__top,
  .customer-mastercard__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 2;
  }

  .customer-mastercard__chip {
    width: 34px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(150deg, #d8c58b 0%, #f3de9d 40%, #b69753 100%);
    box-shadow: inset 0 0 0 1px rgba(28, 30, 45, 0.22);
  }

  .customer-mastercard__network {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.9;
  }

  .customer-mastercard__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .customer-mastercard__toggle {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: #f8fbff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease;
  }

  .customer-mastercard__toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.46);
  }

  .customer-mastercard__number {
    margin: 20px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: 1.04rem;
    letter-spacing: 0.08em;
    word-spacing: 0.16em;
    position: relative;
    z-index: 2;
  }

  .customer-mastercard__label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .customer-mastercard__bottom strong {
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  .customer-mastercard__brand {
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 40px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 40% 50%, rgba(240, 114, 69, 0.95) 0%, rgba(233, 91, 64, 0.9) 70%);
    box-shadow: -14px 0 0 rgba(255, 186, 66, 0.88);
    opacity: 0.96;
    z-index: 1;
  }

  .dashboard-table {
    width: 100%;
    border-collapse: collapse;
  }

  .dashboard-table thead tr {
    background: #f6f8fb;
  }

  .dashboard-table th {
    padding: 11px 14px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-700);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .dashboard-table td {
    padding: 10px 14px;
    border-top: 1px solid #f0f4f8;
    font-size: 0.92rem;
    color: var(--ink-700);
  }

  .dashboard-history h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 14px;
  }

  .db-panel .stack-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .db-panel .stack-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 4px;
    display: block;
  }

  .db-panel .stack-form input,
  .db-panel .stack-form select,
  .db-panel .stack-form textarea {
    width: 100%;
    border: 1px solid #d8e0ea;
    border-radius: 10px;
    padding: 9px 11px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--ink-900);
    background: #fff;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  .db-panel .stack-form input:focus,
  .db-panel .stack-form select:focus,
  .db-panel .stack-form textarea:focus {
    outline: 2px solid #c9ecff;
    border-color: var(--accent-500);
  }

  .support-chat-history {
    min-height: 110px;
    max-height: 260px;
    overflow-y: auto;
    background: #f6f8fb;
    border: 1px solid #e3eaf2;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .db-page-title {
    font-family: Sora, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-900);
    margin: 0 0 20px;
  }

  @media (max-width: 900px) {
    .db-topbar {
      padding: 0 16px;
    }

    .db-mobile-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .sidebar {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 200;
      transform: translateX(-100%);
      transition: transform 280ms ease;
      width: 260px;
    }

    .db-grid-2,
    .db-grid-3 {
      grid-template-columns: 1fr;
    }

    .db-account-summary {
      padding: 22px 18px;
      flex-direction: column;
      align-items: flex-start;
    }

    .db-balance-block {
      text-align: left;
    }

    .db-balance-actions {
      justify-content: flex-start;
    }
  }
  }
}
