:root {
  --bg: #0c1018;
  --bg-soft: #121826;
  --bg-veil: rgba(255, 255, 255, 0.06);
  --ink: #f4f1ea;
  --muted: #b6b0a6;
  --accent: #e9c38c;
  --accent-strong: #ffb347;
  --accent-cool: #8cc6ff;
  --rose: #ff94b4;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --glass: blur(24px);
  --font-display: "Playfair Display", serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-emoji: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 20% 10%, #1c2332, #0b0f18 55%, #070b12);
  min-height: 100vh;
  overflow-x: hidden;
}

select,
option,
button,
input,
textarea {
  font-family: var(--font-body), var(--font-emoji);
}

.mouse-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.18), rgba(140, 198, 255, 0.05), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(10px);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.net-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  text-align: center;
  background: rgba(255, 148, 180, 0.18);
  color: #fdf7f2;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 148, 180, 0.35);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 60;
}

.net-banner.show {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 148, 180, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

body.motion-off * {
  animation: none !important;
  transition: none !important;
}

.bg-orbit {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 195, 140, 0.35), transparent 60%);
  filter: blur(10px);
  animation: floatOrb 16s ease-in-out infinite;
  z-index: 0;
}

.orbit-2 {
  top: 40%;
  left: 70%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(140, 198, 255, 0.3), transparent 65%);
  animation-delay: -6s;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  backdrop-filter: blur(24px);
  background: rgba(10, 12, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.topbar-actions .primary-btn {
  position: relative;
  overflow: hidden;
}

.topbar-actions .primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  animation: sheen 3s ease-in-out infinite;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f6d79a, #b984ff);
  color: #1b0f0b;
  box-shadow: 0 12px 30px rgba(255, 179, 71, 0.4);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-btn.active,
.nav-btn:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn.active {
  box-shadow: 0 10px 20px rgba(255, 179, 71, 0.15);
}

.topbar-actions {
  display: flex;
  gap: 10px;
}

.primary-btn,
.ghost-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #f6d79a, #ffb347);
  color: #2b1604;
  box-shadow: 0 18px 32px rgba(255, 179, 71, 0.3);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.file-btn {
  position: relative;
  overflow: hidden;
}

.layout {
  position: relative;
  z-index: 1;
  padding: 24px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section {
  display: grid;
  gap: 18px;
}

.section-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.view-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.view-title::after {
  content: "";
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, rgba(255, 179, 71, 0.6), transparent);
}

.plan-grid {
  display: grid;
  gap: 12px;
}

.plan-item {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.plan-item .list-title {
  font-weight: 600;
}

.plan-item.active {
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow: 0 12px 28px rgba(255, 179, 71, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: 42px;
  margin: 0 0 16px;
}

.hero-left p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card.glass {
  backdrop-filter: var(--glass);
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.stat-value {
  font-size: 24px;
  margin: 10px 0 4px;
  font-weight: 600;
}

.stat-foot {
  font-size: 12px;
  color: rgba(233, 195, 140, 0.8);
}

.card {
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.88), rgba(14, 18, 28, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: var(--glass);
  transition: transform 0.3s ease, border 0.3s ease;
}

.card.breathe {
  animation: breathe 6s ease-in-out infinite;
}

.ad-slot {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 179, 71, 0.08));
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow);
}

.ad-slot.compact {
  padding: 12px 16px;
}

.ad-label {
  font-size: 11px;
  color: var(--muted);
}

.ad-body {
  font-weight: 500;
}

.card-title {
  letter-spacing: 0.4px;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card.glow {
  background: linear-gradient(180deg, rgba(18, 24, 38, 0.7), rgba(18, 24, 38, 0.5));
}

.card.spotlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(18, 24, 38, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f8f4ef;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

select option {
  color: #f4f1ea;
  background: #111825;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 179, 71, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 179, 71, 0.15);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.seg-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.seg-btn.active {
  background: rgba(255, 179, 71, 0.18);
  color: var(--ink);
  border-color: rgba(255, 179, 71, 0.3);
}

.primary-btn.full {
  width: 100%;
  margin-top: 8px;
}

.ghost-btn.full {
  width: 100%;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.list {
  display: grid;
  gap: 12px;
}

.list-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, background 0.3s ease;
}

.list-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.list-title {
  font-weight: 600;
}

.list-sub {
  font-size: 12px;
  color: var(--muted);
}

.list-amount {
  font-weight: 600;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.mood-track {
  position: relative;
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 148, 180, 0.15), rgba(140, 198, 255, 0.12));
  overflow: hidden;
}

.mood-line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.mood-dot {
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #ffb347);
  box-shadow: 0 0 20px rgba(255, 179, 71, 0.6);
  animation: moodPulse 6s ease-in-out infinite;
}

.mood-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--muted);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.muted {
  color: var(--muted);
  font-size: 12px;
}

.budget-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.budget-item {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 10px;
}

.budget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.danger-btn {
  border-color: rgba(255, 148, 180, 0.35);
  color: #ffd1dd;
}

.danger-btn:hover {
  border-color: rgba(255, 148, 180, 0.6);
  box-shadow: 0 8px 18px rgba(255, 148, 180, 0.18);
}

.budget-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.budget-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f6d79a, #ff94b4);
}

.ritual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  color: var(--muted);
}

.settings-grid {
  display: grid;
  gap: 10px;
}

.settings-grid .ghost-btn {
  justify-self: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.list-item.tight {
  grid-template-columns: 1.2fr auto;
}

.inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.account-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f6d79a, #ff94b4);
  color: #1b0f0b;
  font-weight: 600;
}

.account-name {
  font-weight: 600;
}

.account-email {
  font-size: 12px;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(28, 35, 50, 0.92), rgba(7, 11, 18, 0.98));
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}

.auth-overlay.show {
  display: flex;
}

.auth-card {
  width: min(420px, 90vw);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  text-align: left;
}

.auth-brand {
  font-family: var(--font-display);
  font-size: 28px;
}

.auth-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.auth-foot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 6px;
}


.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.toggle input {
  accent-color: #ffb347;
}

.view {
  display: none;
  animation: fadeInUp 0.6s ease;
}

.view.active {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 12, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: rgba(18, 24, 38, 0.95);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: min(360px, 90vw);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.policy-text p {
  margin: 0 0 8px;
}

.policy-text p:last-child {
  margin-bottom: 0;
}

.splash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(28, 35, 50, 0.9), rgba(7, 11, 18, 0.98));
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.splash.hide {
  opacity: 0;
  pointer-events: none;
}

.splash-card {
  text-align: center;
  padding: 28px 34px;
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.splash-title {
  font-family: var(--font-display);
  font-size: 32px;
}

.splash-subtitle {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}

.splash-bar {
  margin-top: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.splash-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, #f6d79a, #ff94b4);
  animation: splashLoad 1.6s ease-in-out infinite;
}

.tour-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 12, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 45;
}

.tour-highlight {
  position: relative;
  z-index: 46;
  box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.35), 0 0 0 200vmax rgba(0, 0, 0, 0.55);
  border-radius: 18px;
}

.tour-overlay.show {
  display: flex;
}

.tour-card {
  width: min(360px, 86vw);
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(18, 24, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.tour-title {
  font-family: var(--font-display);
  font-size: 20px;
}

.tour-text {
  color: var(--muted);
  margin: 10px 0 16px;
}

.tour-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes splashLoad {
  0% {
    transform: translateX(-60%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(180%);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  }
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 80;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(40px, -20px, 0);
  }
}

@keyframes moodPulse {
  0% {
    left: 12%;
  }
  50% {
    left: 72%;
  }
  100% {
    left: 12%;
  }
}


.native-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.custom-select {
  position: relative;
  min-width: 180px;
  width: 100%;
}

.topbar .custom-select {
  width: auto;
  min-width: 140px;
}

.custom-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  cursor: pointer;
}

.custom-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.custom-caret {
  opacity: 0.7;
}

.custom-select.open .custom-caret {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(10, 14, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: none;
  max-height: 280px;
  overflow: auto;
  z-index: 80;
  padding: 6px;
  box-shadow: var(--shadow);
}

.custom-select.open .custom-options {
  display: grid;
  gap: 4px;
}

.custom-option {
  border: none;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.custom-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.custom-option.active {
  background: rgba(255, 179, 71, 0.16);
  border: 1px solid rgba(255, 179, 71, 0.25);
}

.opt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #101318;
  background: linear-gradient(135deg, #f6d79a, #ffb347);
  box-shadow: 0 6px 14px rgba(255, 179, 71, 0.25);
}

.opt-food { background: linear-gradient(135deg, #ffd29d, #ff7a7a); }
.opt-transport { background: linear-gradient(135deg, #9fe0ff, #5daeff); }
.opt-shopping { background: linear-gradient(135deg, #ffe7a6, #ffd06b); }
.opt-rent { background: linear-gradient(135deg, #c4b5ff, #8b7bff); }
.opt-entertainment { background: linear-gradient(135deg, #ffb6d2, #ff7ab8); }
.opt-health { background: linear-gradient(135deg, #b9fbc0, #7ee081); }
.opt-education { background: linear-gradient(135deg, #c7e0ff, #82b1ff); }
.opt-salary { background: linear-gradient(135deg, #ffd6a5, #ffb55a); }
.opt-investment { background: linear-gradient(135deg, #b9fbc0, #57c785); }
.opt-other { background: linear-gradient(135deg, #f0f0f0, #cfcfcf); }
.opt-cash { background: linear-gradient(135deg, #ffd6a5, #ffb347); }
.opt-card { background: linear-gradient(135deg, #b8c0ff, #6a8dff); }
.opt-digital { background: linear-gradient(135deg, #9ef4ff, #4ecdc4); }

.code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .layout {
    padding: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 32px;
  }

}

@media (max-width: 720px) {
  .topbar {
    padding: 14px 18px;
    gap: 14px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 6px;
  }

  .nav-btn {
    white-space: nowrap;
    padding: 8px 12px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .layout {
    padding: 18px 16px 60px;
    gap: 28px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .view-title {
    font-size: 18px;
  }

  .card {
    padding: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .list-item {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .list-item.tight {
    grid-template-columns: 1fr;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar-left,
  .toolbar-right {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .account-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .auth-card {
    padding: 22px;
  }

  .modal-card {
    width: min(360px, 92vw);
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .budget-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .brand-title {
    font-size: 18px;
  }

  .primary-btn,
  .ghost-btn {
    padding: 10px 14px;
  }

  .hero-left h1 {
    font-size: 24px;
  }

  .stat-value {
    font-size: 20px;
  }

  .mouse-glow {
    width: 240px;
    height: 240px;
  }

  .splash-card {
    padding: 22px 24px;
  }
}
.payment-methods {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.payment-methods button.active {
  border-color: rgba(255, 179, 71, 0.55);
  background: rgba(255, 179, 71, 0.15);
}
