/* ============================================================
   MORVO TempMail Express — CYBERPUNK THEME
   Neon Cyan · Magenta · Glitch · Scanlines
   ============================================================ */

/* ── Google Fonts loaded via <link> in HTML ── */

/* ── CSS Custom Properties ── */
:root {
  /* Background */
  --bg:             #080812;
  --bg-card:        rgba(0,255,255,0.02);
  --bg-card-hover:  rgba(0,255,255,0.05);
  --bg-overlay:     rgba(0,0,0,0.75);

  /* Borders */
  --border:         rgba(0,255,255,0.08);
  --border-hover:   rgba(0,255,255,0.18);
  --border-focus:   rgba(0,255,255,0.5);

  /* Text */
  --text:           #e8e8f8;
  --text-secondary: #7888a8;
  --text-muted:     #445570;

  /* Accent — Cyberpunk Neon */
  --accent:         #00ffff;
  --accent-hover:   #00ddee;
  --accent-soft:    rgba(0,255,255,0.1);
  --magenta:        #ff00ff;
  --magenta-soft:   rgba(255,0,255,0.1);
  --neon:           #39ff14;
  --neon-soft:      rgba(57,255,20,0.1);
  --yellow:         #ffe600;

  /* Semantic */
  --success:        #39ff14;
  --warning:        #ffe600;
  --danger:         #ff3344;

  /* Spacing */
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      16px;

  /* Sidebar */
  --sidebar-w:      260px;

  /* Topbar */
  --topbar-h:       64px;

  /* Transitions */
  --ease:           cubic-bezier(.16,1,.3,1);
  --speed:          0.25s;

  /* Glows */
  --glow-cyan:      0 0 10px rgba(0,255,255,0.3), 0 0 30px rgba(0,255,255,0.1);
  --glow-magenta:   0 0 10px rgba(255,0,255,0.3), 0 0 30px rgba(255,0,255,0.1);
  --glow-neon:      0 0 10px rgba(57,255,20,0.3), 0 0 30px rgba(57,255,20,0.1);

  /* Font */
  --cyber:          'Orbitron', 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CRT Scanlines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,255,0.008) 2px,
    rgba(0,255,255,0.008) 4px
  );
  pointer-events: none;
  z-index: 99999;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0,255,255,0.15);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0,255,255,0.3);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,255,255,0.15) transparent;
}

/* ── Selection ── */
::selection {
  background: rgba(0,255,255,0.3);
  color: #fff;
}

/* ============================================================
   ANIMATED BACKGROUND GRID
   ============================================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes gridShift {
  0% { transform: perspective(500px) rotateX(1deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(1deg) translateY(-60px); }
}

/* ============================================================
   GLASS CARD — reusable component
   ============================================================ */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.glass-card:hover {
  border-color: var(--border-hover);
}

/* Neon top-line on hover */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}

.glass-card:hover::before {
  opacity: 1;
}

/* ============================================================
   PAGE VISIBILITY
   ============================================================ */
.page {
  display: none;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.page-active {
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Primary */
.btn-primary {
  background: rgba(0,255,255,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,255,255,0.25);
  box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

.btn-primary:hover {
  background: rgba(0,255,255,0.2);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(0,255,255,0.2), inset 0 0 15px rgba(0,255,255,0.05);
  transform: translateY(-1px);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.97) translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(0,255,255,0.08);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--accent);
  background: rgba(0,255,255,0.04);
}

/* Block */
.btn-block {
  width: 100%;
}

/* Sizes */
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 7px;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* Icon button */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--speed) var(--ease);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-icon:hover {
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

/* ============================================================
   LANDING PAGE — Navigation
   ============================================================ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--cyber);
  letter-spacing: 2px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(0,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 9px;
  color: var(--accent);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(0,255,255,0.5);
}

.brand-text {
  color: var(--accent);
  text-shadow: var(--glow-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--speed) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--speed) var(--ease);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  font-size: 1.2rem;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all var(--speed) var(--ease);
}

.nav-mobile-toggle:hover {
  background: var(--accent-soft);
}

/* Mobile nav open state */
.nav-links-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8,8,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
  animation: fadeSlideDown 0.3s var(--ease);
}

/* ============================================================
   LANDING PAGE — Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Neon radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background:
    radial-gradient(circle, rgba(0,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 30% 50%, rgba(255,0,255,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-container {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.6s var(--ease) both;
  position: relative;
  overflow: hidden;
}

/* Badge shine effect */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.15), transparent);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% { left: -100%; }
  50% { left: 200%; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  animation: fadeSlideDown 0.6s var(--ease) 0.1s both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  text-shadow: none;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeSlideDown 0.6s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideDown 0.6s var(--ease) 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  animation: fadeSlideDown 0.6s var(--ease) 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-family: var(--cyber);
  text-shadow: 0 0 12px rgba(0,255,255,0.3);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--cyber);
  font-size: 0.65rem;
}

/* ============================================================
   LANDING PAGE — Features & Pricing
   ============================================================ */
.features-section,
.pricing-section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-family: var(--cyber);
  color: var(--accent);
  text-shadow: 0 0 15px rgba(0,255,255,0.2);
  letter-spacing: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  padding: 1.8rem;
  transition: all var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,255,0.03), transparent);
  transition: left 0.5s;
}

.feature-card:hover::after {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,255,255,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(0,255,255,0.15);
  text-shadow: 0 0 8px rgba(0,255,255,0.4);
  transition: all var(--speed) var(--ease);
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2rem;
  text-align: center;
  transition: all var(--speed) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--magenta);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,0,255,0.08);
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--accent), var(--magenta));
  background-size: 200% 100%;
  animation: rainbowBorder 3s linear infinite;
}

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

.pricing-featured-badge {
  position: absolute;
  top: 16px; right: -28px;
  background: linear-gradient(135deg, var(--magenta), #cc44cc);
  color: #fff;
  font-family: var(--cyber);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(0,255,255,0.15);
  margin-bottom: 0.8rem;
}

.pricing-badge-premium {
  background: var(--magenta-soft);
  color: var(--magenta);
  border-color: rgba(255,0,255,0.2);
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-family: var(--cyber);
  letter-spacing: 1px;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', var(--mono, monospace);
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li i {
  font-size: 0.75rem;
  width: 18px;
  text-align: center;
  color: var(--neon);
}

.pricing-feature-disabled i {
  color: var(--danger);
}

.pricing-header {
  margin-bottom: 1rem;
}

/* ============================================================
   LANDING FOOTER
   ============================================================ */
.landing-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cyber);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  position: relative;
}

.auth-back {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--speed) var(--ease);
}

.auth-back:hover {
  color: var(--accent);
}

.auth-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  padding: 0.55rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.auth-tab-active {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-form-hidden {
  display: none;
}

.auth-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--cyber);
  font-size: 0.7rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color var(--speed) var(--ease);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  transition: all var(--speed) var(--ease);
}

.input-wrapper .form-input,
.input-wrapper .form-select {
  padding-left: 2.5rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,255,0.1), 0 0 15px rgba(0,255,255,0.05);
}

.input-wrapper:focus-within .input-icon {
  color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237888a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.form-select-sm {
  padding: 0.4rem 2rem 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   DASHBOARD — Sidebar
   ============================================================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) var(--ease);
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: rgba(8,8,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition: transform 0.4s var(--ease);
}

/* Mobile: sidebar hidden by default */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
}

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

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cyber);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
}

.sidebar-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.sidebar-close:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.sidebar-menu {
  flex: 1;
  padding: 0.8rem 0;
  overflow-y: auto;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--speed) var(--ease);
  position: relative;
  cursor: pointer;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(0,255,255,0.06), transparent);
  transition: width var(--speed) var(--ease);
}

.sidebar-link:hover::before {
  width: 100%;
}

.sidebar-link:hover {
  color: var(--accent);
  border-left-color: rgba(0,255,255,0.3);
}

.sidebar-link-active {
  color: var(--accent) !important;
  border-left-color: var(--accent) !important;
  background: rgba(0,255,255,0.04);
  text-shadow: 0 0 8px rgba(0,255,255,0.3);
}

.sidebar-link i {
  width: 20px;
  text-align: center;
  font-size: 0.85rem;
}

.sidebar-link-sub {
  padding-left: 2.8rem;
  font-size: 0.85rem;
}

.sidebar-badge {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--magenta-soft);
  color: var(--magenta);
  border: 1px solid rgba(255,0,255,0.15);
  font-family: var(--cyber);
  letter-spacing: 0.5px;
}

.sidebar-submenu-toggle {
  width: 100%;
}

.sidebar-submenu-arrow {
  margin-left: auto;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.sidebar-submenu-collapsed {
  display: none;
}

.sidebar-submenu-expanded .sidebar-submenu-arrow {
  transform: rotate(180deg);
}

.sidebar-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
}

.sidebar-logout {
  font-size: 0.85rem;
}

/* ============================================================
   DASHBOARD — Top Bar
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: rgba(8,8,18,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 150;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  gap: 1rem;
  animation: topbarSlide 0.5s var(--ease) both;
}

@keyframes topbarSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.topbar-hamburger {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  font-size: 1.1rem;
}

.topbar-hamburger:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cyber);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-credits {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  background: var(--accent-soft);
  border: 1px solid rgba(0,255,255,0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--speed) var(--ease);
}

.topbar-credits.pulse {
  animation: creditPulse 0.4s ease;
}

@keyframes creditPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 15px rgba(0,255,255,0.3); }
}

.topbar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(0,255,255,0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.topbar-avatar:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

/* ── Email Dropdown ── */
.topbar-email-dropdown-wrap {
  position: relative;
}

.topbar-email-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  max-height: 400px;
  background: rgba(8,8,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 300;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 15px rgba(0,255,255,0.05);
  animation: dropdownSlide 0.25s var(--ease);
}

.topbar-email-dropdown.open {
  display: flex;
}

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

.topbar-email-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--magenta), var(--accent));
  background-size: 200% 100%;
  animation: rainbowBorder 3s linear infinite;
}

.topbar-email-header {
  padding: 12px 16px;
  font-family: var(--cyber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-email-list {
  overflow-y: auto;
  max-height: 340px;
  padding: 6px;
}

.topbar-email-empty {
  text-align: center;
  padding: 24px 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.topbar-email-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  border-left: 3px solid transparent;
  position: relative;
}

.topbar-email-item:hover {
  background: rgba(0,255,255,0.04);
  border-left-color: rgba(0,255,255,0.3);
  transform: translateX(2px);
}

.topbar-email-item.active {
  border-left-color: var(--accent);
  background: rgba(0,255,255,0.04);
}

.topbar-email-item.expired {
  opacity: 0.45;
  border-left-color: var(--danger);
}

.topbar-email-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--neon);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-email-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.topbar-email-plan {
  font-family: var(--cyber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1px 6px;
  border-radius: 4px;
}

.topbar-email-plan.plan-free {
  background: rgba(120,136,168,0.12);
  color: var(--text2);
  border: 1px solid rgba(120,136,168,0.15);
}

.topbar-email-plan.plan-unlimited {
  background: var(--magenta-soft);
  color: var(--magenta);
  border: 1px solid rgba(255,0,255,0.15);
}

.topbar-email-timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-email-timer.timer-ok {
  color: var(--neon);
}

.topbar-email-timer.timer-warn {
  color: var(--yellow);
}

.topbar-email-timer.timer-expired {
  color: var(--danger);
}

.topbar-email-timer i {
  font-size: 10px;
}

/* ============================================================
   DASHBOARD — Main Content
   ============================================================ */
.dashboard-main {
  padding-top: calc(var(--topbar-h) + 1.5rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.view-section {
  display: none;
  animation: viewFadeIn 0.4s var(--ease);
}

.view-active {
  display: block;
}

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

.view-header {
  margin-bottom: 1.5rem;
}

.view-title {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--cyber);
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(0,255,255,0.15);
}

.view-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--speed) var(--ease);
  animation: statPopIn 0.5s var(--ease) both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.25s; }

@keyframes statPopIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,255,255,0.06);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-icon-credits { background: var(--accent-soft); color: var(--accent); }
.stat-icon-plan { background: var(--magenta-soft); color: var(--magenta); }
.stat-icon-mailboxes { background: var(--neon-soft); color: var(--neon); }
.stat-icon-messages { background: rgba(255,230,0,0.1); color: var(--yellow); }

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--cyber);
  letter-spacing: 1px;
  transition: all 0.4s;
}

.stat-value.flash {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,255,255,0.5);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--cyber);
  font-size: 0.65rem;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* ============================================================
   DASHBOARD — Plan View
   ============================================================ */
.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.plan-card {
  padding: 1.8rem;
  text-align: center;
  transition: all var(--speed) var(--ease);
}

.plan-card:hover {
  transform: translateY(-3px);
}

.plan-card-featured {
  border-color: var(--magenta);
  position: relative;
  overflow: hidden;
}

.plan-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--accent), var(--magenta));
  background-size: 200% 100%;
  animation: rainbowBorder 3s linear infinite;
}

.plan-featured-tag {
  position: absolute;
  top: 12px; right: -26px;
  background: linear-gradient(135deg, var(--magenta), #aa44aa);
  color: #fff;
  font-family: var(--cyber);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 32px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.plan-card-header {
  margin-bottom: 1rem;
}

.plan-card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.plan-card-icon-gold {
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(255,0,255,0.4);
}

.plan-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--cyber);
  letter-spacing: 1px;
}

.plan-card-price {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.3rem;
}

.plan-price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.plan-card-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.plan-card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-card-features li i {
  font-size: 0.7rem;
  width: 16px;
  text-align: center;
}

.plan-card-features li .fa-check {
  color: var(--neon);
}

.plan-card-features li .fa-times {
  color: var(--danger);
}

.plan-card-action {
  margin-top: auto;
}

.plan-current-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(0,255,255,0.15);
}

/* ============================================================
   DASHBOARD — Inbox View
   ============================================================ */
.inbox-mailbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.inbox-mailbox-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.inbox-mailbox-info i {
  color: var(--accent);
}

.inbox-mailbox-addr {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--neon);
}

.inbox-mailbox-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inbox-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  min-height: 400px;
}

.inbox-list {
  display: flex;
  flex-direction: column;
}

.inbox-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}

.inbox-list-title {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--cyber);
  letter-spacing: 1px;
  color: var(--accent);
}

.inbox-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}

.inbox-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  gap: 0.8rem;
}

.inbox-empty i {
  font-size: 2rem;
  opacity: 0.4;
  animation: emptyFloat 3s ease-in-out infinite;
}

@keyframes emptyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.inbox-reader {
  display: flex;
  flex-direction: column;
}

.inbox-reader-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Mail item */
.mail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  border-left: 3px solid transparent;
  position: relative;
}

.mail-item:hover {
  background: rgba(0,255,255,0.03);
  transform: translateX(3px);
}

.mail-item-unread {
  border-left-color: var(--accent);
}

.mail-item-unread::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0,255,255,0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mail-item-from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.mail-item-subject {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-item-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ============================================================
   DASHBOARD — Compose View
   ============================================================ */
.compose-card {
  padding: 1.5rem;
}

.compose-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compose-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

/* ============================================================
   DASHBOARD — API Key View
   ============================================================ */
.apikey-notice {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border-color: rgba(255,0,255,0.15);
  background: var(--magenta-soft);
}

.apikey-notice i {
  color: var(--magenta);
  font-size: 1.2rem;
}

.apikey-notice p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.apikey-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.apikey-display {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.apikey-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apikey-value {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon);
  word-break: break-all;
}

.apikey-docs {
  padding: 1.5rem;
}

.apikey-docs-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.apikey-docs-title i {
  margin-right: 0.5rem;
}

.apikey-docs-code {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
}

.apikey-docs-code pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay:not(.modal-hidden) {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
  animation: modalEnter 0.35s var(--ease);
}

@keyframes modalEnter {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-overlay:not(.modal-hidden) .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.modal-close:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.modal-icon-warning {
  background: rgba(255,51,68,0.1);
  color: var(--danger);
  border: 1px solid rgba(255,51,68,0.2);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,51,68,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(255,51,68,0); }
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--cyber);
  letter-spacing: 1px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.modal-form {
  text-align: left;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: rgba(8,8,18,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(16px);
  max-width: 320px;
}

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

.toast-success {
  border-left: 3px solid var(--neon);
  box-shadow: 0 0 15px rgba(57,255,20,0.1);
}

.toast-error {
  border-left: 3px solid var(--danger);
  box-shadow: 0 0 15px rgba(255,51,68,0.1);
}

.toast-info {
  border-left: 3px solid var(--accent);
  box-shadow: 0 0 15px rgba(0,255,255,0.1);
}

/* ============================================================
   ANIMATIONS — Global
   ============================================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================================
   DASHBOARD ANIMATED GRAPHICS
   ============================================================ */
.dashboard-ring-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* ── Credit Ring ── */
.credit-ring-card {
  padding: 24px;
  text-align: center;
}
.credit-ring-card .card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  text-align: left;
  font-family: var(--cyber);
  letter-spacing: 1px;
}
.credit-ring-card .card-title i {
  color: var(--accent);
  margin-right: 8px;
}
.ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}
.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(0,255,255,0.06);
  stroke-width: 8;
}
.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1), stroke 0.5s;
  filter: drop-shadow(0 0 8px rgba(0,255,255,0.5));
}
.ring-fill.warn { stroke: var(--warning); filter: drop-shadow(0 0 8px rgba(255,230,0,0.5)); }
.ring-fill.danger { stroke: var(--danger); filter: drop-shadow(0 0 8px rgba(255,51,68,0.5)); }
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  transition: all 0.5s var(--ease);
  font-family: var(--cyber);
}
.ring-value.pulse {
  transform: scale(1.15);
  color: var(--accent);
  text-shadow: 0 0 15px rgba(0,255,255,0.5);
}
.ring-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.ring-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Usage Bars ── */
.usage-bars-card {
  padding: 24px;
}
.usage-bars-card .card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--cyber);
  letter-spacing: 1px;
}
.usage-bars-card .card-title i {
  color: var(--accent);
  margin-right: 8px;
}
.bar-group {
  margin-bottom: 18px;
}
.bar-group:last-child {
  margin-bottom: 0;
}
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.bar-label span:last-child {
  font-weight: 600;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}
.bar-track {
  width: 100%;
  height: 8px;
  background: rgba(0,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.bar-fill-mb {
  background: linear-gradient(90deg, var(--accent), #00aacc);
  box-shadow: 0 0 8px rgba(0,255,255,0.3);
}
.bar-fill-msg {
  background: linear-gradient(90deg, var(--neon), #00ff66);
  box-shadow: 0 0 8px rgba(57,255,20,0.3);
}
.bar-fill-cr {
  background: linear-gradient(90deg, var(--magenta), #cc44cc);
  box-shadow: 0 0 8px rgba(255,0,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .dashboard-ring-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .topbar-hamburger {
    display: flex;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inbox-layout {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ── Credits Slide Panel ── */
.credits-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.credits-panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.credits-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: rgba(8,8,18,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
}

.credits-panel.open {
  transform: translateX(0);
}

.credits-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.credits-panel-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--magenta), var(--accent));
  background-size: 200% 100%;
  animation: rainbowBorder 3s linear infinite;
}

.credits-panel-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cyber);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.credits-panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.credits-panel-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.credits-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credits-panel-balance {
  text-align: center;
  padding: 1.2rem;
  background: rgba(0,255,255,0.04);
  border: 1px solid rgba(0,255,255,0.1);
  border-radius: var(--radius);
}

.credits-panel-balance-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.credits-panel-balance-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--cyber);
}

.credits-panel-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credits-panel-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.credits-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.credits-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  outline: none;
}

.credits-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,255,255,0.4);
  transition: box-shadow 0.2s;
}

.credits-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}

.credits-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(0,255,255,0.4);
}

.credits-slider-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.credits-slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
}

.credits-slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.credits-slider-input {
  width: 70px;
  height: 36px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  -moz-appearance: textfield;
}

.credits-slider-input::-webkit-outer-spin-button,
.credits-slider-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.credits-slider-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,255,255,0.15);
}

.credits-panel-presets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.credits-preset {
  padding: 0.5rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.credits-preset:hover,
.credits-preset.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.credits-panel-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credits-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.credits-summary-total {
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.credits-summary-total span:last-child {
  color: var(--accent);
}

.credits-panel-buy {
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--magenta));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--speed) var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.credits-panel-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,255,255,0.3);
}

.credits-panel-buy:active {
  transform: translateY(0);
}

.credits-panel-buy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.credits-panel-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .credits-panel {
    width: 100vw;
  }
  .credits-panel-presets {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Credits Panel: Crypto Payment ── */
.credits-payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.credits-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.credits-method:hover,
.credits-method.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.credits-crypto-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credits-networks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.credits-network {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.7rem 0.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
}

.credits-network:hover,
.credits-network.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.net-icon { font-size: 1.2rem; }
.net-name { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.net-tag { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.5px; }

.credits-network.active .net-name { color: var(--accent); }

.crypto-rate-box,
.crypto-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.crypto-usdt-amount {
  font-weight: 800;
  font-size: 1.1rem;
  color: #26a17b;
  font-family: var(--cyber);
}

.crypto-payment-result {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(38,161,123,0.06);
  border: 1px solid rgba(38,161,123,0.2);
  border-radius: var(--radius);
}

.crypto-payment-result.visible {
  display: flex !important;
}

.crypto-result-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #26a17b;
  font-size: 0.9rem;
}

.crypto-wallet-display {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.crypto-wallet-display label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crypto-wallet-network {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.crypto-wallet-addr-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crypto-wallet-addr {
  flex: 1;
  padding: 0.5rem 0.6rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  word-break: break-all;
  user-select: all;
}

.crypto-copy-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) var(--ease);
  flex-shrink: 0;
}

.crypto-copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.crypto-tx-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.crypto-tx-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  outline: none;
  box-sizing: border-box;
}

.crypto-tx-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,255,255,0.15);
}

.crypto-submit-tx {
  background: linear-gradient(135deg, #26a17b, #1a8c6a) !important;
}

.crypto-submit-tx:hover {
  box-shadow: 0 6px 20px rgba(38,161,123,0.3) !important;
}

.crypto-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--speed) var(--ease);
}

.crypto-back-btn:hover {
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .credits-networks {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
}

/* ── Crypto Payment Flow ── */
.credits-payment-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.credits-pay-tab {
  flex: 1;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--speed) var(--ease);
}

.credits-pay-tab:hover,
.credits-pay-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.crypto-network-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.crypto-network-btn {
  flex: 1;
  padding: 0.6rem 0.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--speed) var(--ease);
}

.crypto-network-btn:hover,
.crypto-network-btn.active {
  border-color: #26a17b;
  color: #26a17b;
  background: rgba(38,161,123,0.08);
}

.crypto-network-btn .net-chain {
  font-size: 0.65rem;
  opacity: 0.7;
}

.crypto-details {
  background: rgba(38,161,123,0.05);
  border: 1px solid rgba(38,161,123,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.crypto-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.crypto-detail-row span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

.crypto-detail-total {
  font-size: 1.1rem;
  color: #26a17b;
  font-weight: 800;
  font-family: var(--cyber);
}

.crypto-wallet-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.crypto-wallet-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.crypto-wallet-addr-text {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  word-break: break-all;
  line-height: 1.4;
}

.crypto-wallet-copy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  align-self: flex-start;
}

.crypto-wallet-copy:hover {
  border-color: #26a17b;
  color: #26a17b;
}

.crypto-tx-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.crypto-tx-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.crypto-tx-input-field {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--speed) var(--ease);
}

.crypto-tx-input-field:focus {
  border-color: #26a17b;
}

.crypto-submit-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(135deg, #26a17b, #1a8c6a);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--speed) var(--ease);
  margin-bottom: 0.5rem;
}

.crypto-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(38,161,123,0.3);
}

.crypto-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.crypto-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.crypto-step {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.crypto-step.active { color: #26a17b; font-weight: 700; }
.crypto-step.done { color: var(--accent); }
.crypto-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.crypto-step.active .crypto-step-dot {
  border-color: #26a17b;
  background: rgba(38,161,123,0.15);
  color: #26a17b;
}

.crypto-step.done .crypto-step-dot {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.crypto-step-line {
  width: 30px;
  height: 2px;
  background: var(--border);
}

.crypto-step.done + .crypto-step-line,
.crypto-step.active + .crypto-step-line {
  background: #26a17b;
}

