/* ============================================================
   FinTrack — Public Website Stylesheet
   Dark Mode Design System
   Fonts: Space Grotesk (headings) + Inter (body)
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --bg-base:     #070B15;
  --bg-surface:  #0D1628;
  --bg-card:     #111E36;
  --bg-elevated: #152340;

  --border-dim:    rgba(99, 142, 210, 0.09);
  --border-subtle: rgba(99, 142, 210, 0.16);
  --border-muted:  rgba(99, 142, 210, 0.26);
  --border-accent: rgba(34, 211, 238, 0.36);

  --cyan:    #22D3EE;
  --teal:    #0E7490;
  --emerald: #22C55E;
  --violet:  #8B5CF6;
  --rose:    #F43F5E;
  --amber:   #F59E0B;
  --navy:    #0B2A4A;

  --text-primary:   #E2EAF7;
  --text-secondary: #8FA5C3;
  --text-muted:     #506080;
  --text-accent:    #22D3EE;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.40);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.50);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.60);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.72);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Bootstrap Dark Theme Overrides ────────────────────── */
[data-bs-theme="dark"] {
  --bs-body-bg:            var(--bg-base);
  --bs-body-bg-rgb:        7, 11, 21;
  --bs-body-color:         var(--text-primary);
  --bs-border-color:       var(--border-subtle);
  --bs-link-color:         var(--cyan);
  --bs-link-hover-color:   #38E1FF;
  --bs-card-bg:            var(--bg-card);
  --bs-emphasis-color:     var(--text-primary);
  --bs-secondary-color:    var(--text-secondary);
  --bs-tertiary-color:     var(--text-muted);
  --bs-tertiary-bg:        var(--bg-elevated);
  --bs-secondary-bg:       var(--bg-surface);
}

/* ── 3. Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; }
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: #38E1FF; }

/* ── 4. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #60A5FA 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--emerald), #86EFAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Utilities ─────────────────────────────────────────── */
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 100px;
  padding: 5px 13px;
  font-family: 'Space Grotesk', sans-serif;
}
.section-title {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 560px;
}

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(34,211,238,0.22); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(34,211,238,0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0A8EAA, #2AE1FF);
  box-shadow: 0 6px 26px rgba(34,211,238,0.34);
  transform: translateY(-1px);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary) !important;
  border-color: var(--border-muted);
}
.btn-outline:hover {
  background: rgba(99,142,210,0.07);
  border-color: var(--border-accent);
  color: var(--cyan) !important;
}

.btn-ghost {
  background: rgba(99,142,210,0.07);
  color: var(--text-secondary) !important;
  border-color: var(--border-dim);
}
.btn-ghost:hover {
  background: rgba(99,142,210,0.13);
  color: var(--text-primary) !important;
  border-color: var(--border-subtle);
}

.btn-lg {
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 12px;
}
.btn-sm {
  font-size: 12.5px;
  padding: 7px 15px;
  border-radius: var(--r-sm);
}

/* ── 7. Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(7, 11, 21, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  box-shadow: 0 4px 28px rgba(0,0,0,0.42);
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img { height: 30px; width: auto; }
.nav-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: all 0.18s;
  text-decoration: none;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(99,142,210,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.28s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.open {
  visibility: visible;
  pointer-events: all;
}
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  padding: 76px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.34s var(--ease);
}
.nav-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  text-decoration: none;
}
.drawer-link i { width: 18px; color: var(--cyan); font-size: 13px; }
.drawer-link:hover { background: rgba(99,142,210,0.1); color: var(--text-primary); }

.drawer-sep { height: 1px; background: var(--border-dim); margin: 10px 0; }
.drawer-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.drawer-actions .btn { justify-content: center; }

/* ── 8. Hero Section ──────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34,211,238,0.11) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 70% 70% at 58% 38%, black 15%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 58% 38%, black 15%, transparent 100%);
}
.hero-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.055) 0%, transparent 70%);
  right: -100px; top: -200px;
}
.hero-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
  left: -80px; bottom: -60px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  background: rgba(34,211,238,0.07);
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 26px;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 490px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(99,142,210,0.05);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  padding: 4px 12px;
}
.trust-pill i { font-size: 9px; color: var(--emerald); }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  padding: 16px 0 16px 16px;
}
.hero-shot-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-subtle),
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 100px rgba(34, 211, 238, 0.07);
}
.hero-shot-wrap img { width: 100%; display: block; border-radius: 14px; }

.hero-float {
  position: absolute;
  background: rgba(17, 30, 56, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  min-width: 148px;
}
.hero-float-a { bottom: 32px; left: -18px; animation: float1 3.2s ease-in-out infinite; }
.hero-float-b { top: 28px; right: -12px;   animation: float2 3.8s ease-in-out infinite; }

.float-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.float-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.float-val i { font-size: 11px; }
.float-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 6px;
}
.float-tag.green { background: rgba(34,197,94,0.12);  color: var(--emerald); }
.float-tag.blue  { background: rgba(34,211,238,0.12); color: var(--cyan);    }

/* ── 9. Marquee Strip ─────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-surface);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 36px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border-dim);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-item i { color: var(--cyan); font-size: 12px; }

/* ── 10. Why FinTrack Cards ───────────────────────────────── */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(34,211,238,0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.why-card:hover {
  border-color: rgba(34,211,238,0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 28px rgba(34,211,238,0.05);
}
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.wi-rose    { background: rgba(244, 63,  94,  0.12); color: var(--rose);    }
.wi-amber   { background: rgba(245, 158, 11,  0.12); color: var(--amber);   }
.wi-violet  { background: rgba(139, 92,  246, 0.12); color: var(--violet);  }
.wi-cyan    { background: rgba(34,  211, 238, 0.12); color: var(--cyan);    }
.wi-emerald { background: rgba(34,  197, 94,  0.12); color: var(--emerald); }
.wi-teal    { background: rgba(14,  116, 144, 0.18); color: #2DD4EA;        }
.why-card h4 {
  font-size: 15.5px; font-weight: 700;
  margin-bottom: 9px; color: var(--text-primary);
  position: relative; z-index: 1;
}
.why-card p {
  font-size: 13.5px; color: var(--text-secondary);
  line-height: 1.65; margin: 0;
  position: relative; z-index: 1;
}

/* ── 11. Features Grid ────────────────────────────────────── */
.ft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  overflow: hidden;
  gap: 1px;
  background: var(--border-dim);
}
.ft-cell {
  background: var(--bg-card);
  padding: 32px 26px;
  transition: background 0.25s;
}
.ft-cell:hover { background: var(--bg-elevated); }
.ft-cell:hover .ft-icon { transform: scale(1.12); }
.ft-num {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
}
.ft-icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s var(--ease);
}
.ft-cell h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.ft-cell p  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.62; margin: 0; }

.fc-emerald .ft-icon { color: var(--emerald); }
.fc-cyan    .ft-icon { color: var(--cyan);    }
.fc-rose    .ft-icon { color: var(--rose);    }
.fc-violet  .ft-icon { color: var(--violet);  }
.fc-amber   .ft-icon { color: var(--amber);   }
.fc-blue    .ft-icon { color: #60A5FA;        }
.fc-teal    .ft-icon { color: #2DD4EA;        }
.fc-pink    .ft-icon { color: #F472B6;        }
.fc-indigo  .ft-icon { color: #A78BFA;        }

/* ── 12. Screenshots Section ──────────────────────────────── */
.ss-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ss-tab {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  background: transparent;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.ss-tab:hover,
.ss-tab.active {
  background: rgba(34,211,238,0.09);
  border-color: rgba(34,211,238,0.35);
  color: var(--cyan);
}
.ss-display {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.ss-pane { display: none; }
.ss-pane.active { display: block; }
.ss-pane img { width: 100%; display: block; }

/* ── 13. How It Works ─────────────────────────────────────── */
.step-row {
  display: flex;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: all 0.25s;
}
.step-row:last-child { border-bottom: none; }
.step-row:hover .step-circle { border-color: var(--cyan); color: var(--cyan); }
.step-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-body h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 7px;
  padding-top: 11px;
  color: var(--text-primary);
}
.step-body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── 14. CTA Section ──────────────────────────────────────── */
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34,211,238,0.055), transparent);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-box p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 34px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative; z-index: 1;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── 15. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-dim);
  padding: 64px 0 0;
}
.footer-brand img { height: 30px; }
.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-top: 14px;
  max-width: 260px;
}
.footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 13.5px; color: var(--text-secondary); transition: color 0.18s; }
.footer-list a:hover { color: var(--text-primary); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-row { display: flex; gap: 11px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.footer-contact-row i { color: var(--cyan); width: 16px; margin-top: 2px; flex-shrink: 0; }

.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-dim);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--border-accent);
  color: var(--cyan);
  background: rgba(34,211,238,0.07);
}
.footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ── 16. Auth Pages ───────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 40px;
  position: relative;
}
.auth-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34,211,238,0.075) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}
.auth-card {
  position: relative;
  width: 100%;
  max-width: 428px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.auth-logo-wrap { text-align: center; margin-bottom: 30px; }
.auth-logo-wrap img { height: 34px; margin: 0 auto; }
.auth-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-top: 10px;
  letter-spacing: -0.02em;
}
.auth-head { text-align: center; margin-bottom: 28px; }
.auth-head h2 { font-size: 21px; font-weight: 700; margin-bottom: 5px; }
.auth-head p  { font-size: 13.5px; color: var(--text-secondary); margin: 0; }

/* Dark form controls */
.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-control,
.form-select {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--r-md) !important;
  color: var(--text-primary) !important;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.2s;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.1) !important;
  background: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
}
.form-control::placeholder { color: var(--text-muted) !important; }
.form-control.is-invalid   { border-color: var(--rose) !important; }
.invalid-feedback          { font-size: 12px; color: var(--rose); }

/* Input group (password toggle) */
.input-group .form-control {
  border-right: none !important;
  border-radius: var(--r-md) 0 0 var(--r-md) !important;
}
.input-group .btn-outline-secondary {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  border-left: none !important;
  color: var(--text-muted) !important;
  border-radius: 0 var(--r-md) var(--r-md) 0 !important;
}
.input-group .btn-outline-secondary:hover { color: var(--text-secondary) !important; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-dim); }

.btn-google {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-muted);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-google:hover {
  background: rgba(99,142,210,0.1);
  color: var(--text-primary);
}
.btn-google img { width: 18px; height: 18px; }

.auth-footer-link { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 18px; }
.auth-footer-link a { color: var(--cyan); font-weight: 600; }
.auth-footer-link a:hover { text-decoration: underline; }

.auth-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.form-check-input:checked { background-color: var(--teal); border-color: var(--teal); }
.form-check-label { font-size: 13px; color: var(--text-secondary); }

/* ── 17. Two-Factor OTP ───────────────────────────────────── */
.tf-shield {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(139,92,246,0.12));
  border: 1px solid rgba(34,211,238,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  margin: 0 auto 18px;
}
.otp-inputs { display: flex; gap: 9px; justify-content: center; margin: 22px 0; }
.otp-digit {
  width: 48px; height: 56px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-size: 22px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  color: var(--text-primary);
  transition: all 0.2s;
}
.otp-digit:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
  background: var(--bg-elevated);
}
.otp-digit.has-value { border-color: rgba(34,211,238,0.4); }
.tf-bar { height: 3px; background: var(--border-dim); border-radius: 2px; overflow: hidden; margin: 14px 0; }
.tf-bar-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--cyan)); border-radius: 2px; transition: width 1s linear; }
.tf-timer-text { font-size: 12.5px; color: var(--text-muted); text-align: center; }
.tf-timer-text strong { color: var(--text-secondary); }
.tf-resend-btn {
  background: none; border: none;
  color: var(--cyan); font-size: 13px; font-weight: 600;
  cursor: pointer; padding: 0;
  font-family: 'Inter', sans-serif;
}
.tf-resend-btn:disabled { color: var(--text-muted); cursor: not-allowed; }

@keyframes tf-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-4px); }
  40%, 80%  { transform: translateX(4px); }
}
.tf-shake { animation: tf-shake 0.4s ease; }

/* ── 18. Alerts ───────────────────────────────────────────── */
.alert { font-size: 13.5px; border-radius: var(--r-md); border-width: 1px; }
.alert-danger  { background: rgba(244,63,94,0.09);  border-color: rgba(244,63,94,0.25);  color: #FCA5A5; }
.alert-success { background: rgba(34,197,94,0.09);  border-color: rgba(34,197,94,0.25);  color: #86EFAC; }
.alert-warning { background: rgba(245,158,11,0.09); border-color: rgba(245,158,11,0.25); color: #FCD34D; }
.alert-info    { background: rgba(34,211,238,0.08); border-color: rgba(34,211,238,0.22); color: #67E8F9; }

/* ── 19. Animations ───────────────────────────────────────── */
@keyframes blink  {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-9px) rotate(-1.5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%       { transform: translateY(-7px) rotate(1.5deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-fade-up { animation: fadeUp 0.65s var(--ease) both; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.20s; }
.delay-3 { animation-delay: 0.30s; }
.delay-4 { animation-delay: 0.40s; }
.delay-5 { animation-delay: 0.50s; }
.delay-6 { animation-delay: 0.60s; }

/* ── 20. Responsive ───────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-links,
  .nav-actions { display: none !important; }
  .nav-toggle  { display: flex !important; }

  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-visual  { margin-top: 50px; padding: 0; }
  .hero-float-a,
  .hero-float-b { display: none; }

  .ft-grid  { grid-template-columns: repeat(2, 1fr); }
  .cta-box  { padding: 52px 32px; }
}

@media (max-width: 767px) {
  .section, .section-sm { padding: 64px 0; }
  .hero-title { font-size: 32px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .step-row { gap: 16px; }
  .step-circle { width: 40px; height: 40px; font-size: 15px; }
  .step-body h4 { padding-top: 6px; font-size: 15px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { gap: 14px; }
}

@media (max-width: 480px) {
  .ft-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cta-box { padding: 36px 20px; }
  .auth-card { padding: 30px 22px; }
  .otp-inputs { gap: 6px; }
  .otp-digit { width: 42px; height: 50px; font-size: 19px; }
  .ss-tab { font-size: 12px; padding: 6px 14px; }
}

/* ── Auth pages (login / register / etc.) ─────────────────── */
.auth-page {
  min-height: 100vh;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 16px 20px;
  position: relative;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34,211,238,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 0%, black, transparent);
  pointer-events: none;
}

/* Card */
.auth-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Header */
.auth-card-header {
  padding: 14px 24px 11px;
  text-align: center;
  border-bottom: 1px solid var(--border-dim);
}
.auth-card-header .brand img {
  height: 22px;
  margin: 0 auto 7px;
}
.auth-card-header h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.auth-card-header p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Body */
.auth-card-body { padding: 12px 24px 16px; }
.auth-form .form-group { margin-bottom: 9px; }
.auth-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

/* Compact inputs */
.auth-form .form-control,
.auth-form .form-select {
  padding: 6px 11px !important;
  font-size: 13px;
}
.auth-form .input-icon-wrapper .form-control {
  padding-left: 34px !important;
}

/* Input with icon */
.input-icon-wrapper { position: relative; }
.input-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12px;
  z-index: 2;
  pointer-events: none;
}
.password-toggle {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 5px;
  font-size: 12px;
  z-index: 2;
}
.password-toggle:hover { color: var(--text-secondary); }

/* Password hint */
.password-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

/* Remember me + forgot row */
.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.form-check-label { font-size: 12.5px; }
.forgot-link { font-size: 12.5px; color: var(--cyan); font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

/* Submit button */
.auth-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  font-family: 'Inter', sans-serif;
}
.auth-btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #fff !important;
  box-shadow: 0 3px 14px rgba(34,211,238,0.2);
}
.auth-btn-primary:hover {
  background: linear-gradient(135deg, #0A8EAA, #2AE1FF);
  box-shadow: 0 5px 20px rgba(34,211,238,0.32);
  transform: translateY(-1px);
}

/* Social divider */
.social-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  font-size: 11.5px;
  color: var(--text-muted);
}
.social-divider::before,
.social-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-dim); }

/* Google button */
.google-btn {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-muted);
  color: var(--text-secondary) !important;
  padding: 6px 12px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.google-btn:hover {
  background: rgba(99,142,210,0.1);
  color: var(--text-primary) !important;
}

/* Footer link */
.auth-footer {
  text-align: center;
  margin-top: 10px;
}
.auth-footer p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.auth-footer a { color: var(--cyan); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* ===== Auth Alert Popup ===== */
@keyframes authOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes authPopupIn {
  from { opacity: 0; transform: scale(0.82) translateY(-22px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.auth-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.74);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: authOverlayIn 0.22s ease;
}
.auth-popup {
  background: #0d1423;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 40px 30px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  animation: authPopupIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.auth-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: rgba(255,255,255,0.4);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.auth-popup-close:hover { background: rgba(255,255,255,0.13); color: #fff; }

.auth-popup-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}
/* Variants */
.auth-popup--error     { border-color: rgba(244,63,94,0.2); }
.auth-popup--error     .auth-popup-icon-wrap { background: rgba(244,63,94,0.13); color: #F43F5E; }
.auth-popup--suspended { border-color: rgba(245,158,11,0.2); }
.auth-popup--suspended .auth-popup-icon-wrap { background: rgba(245,158,11,0.13); color: #F59E0B; }
.auth-popup--warning   { border-color: rgba(245,158,11,0.2); }
.auth-popup--warning   .auth-popup-icon-wrap { background: rgba(245,158,11,0.13); color: #F59E0B; }
.auth-popup--success   { border-color: rgba(34,197,94,0.2); }
.auth-popup--success   .auth-popup-icon-wrap { background: rgba(34,197,94,0.13); color: #22C55E; }
.auth-popup--info      { border-color: rgba(34,211,238,0.2); }
.auth-popup--info      .auth-popup-icon-wrap { background: rgba(34,211,238,0.13); color: #22D3EE; }

.auth-popup-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}
.auth-popup-message {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 24px;
}
.auth-popup-message strong { color: rgba(255,255,255,0.88); }

.auth-popup-actions { display: flex; flex-direction: column; gap: 8px; }

.auth-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s;
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
}
.auth-popup-btn-secondary {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7) !important;
}
.auth-popup-btn-secondary:hover { background: rgba(255,255,255,0.13); color: #fff !important; }

.auth-popup--error     .auth-popup-btn-primary { background: #F43F5E; color: #fff !important; }
.auth-popup--error     .auth-popup-btn-primary:hover { background: #e11d48; color: #fff !important; }
.auth-popup--suspended .auth-popup-btn-primary { background: #F59E0B; color: #000 !important; }
.auth-popup--suspended .auth-popup-btn-primary:hover { background: #d97706; color: #000 !important; }
.auth-popup--warning   .auth-popup-btn-primary { background: #F59E0B; color: #000 !important; }
.auth-popup--warning   .auth-popup-btn-primary:hover { background: #d97706; color: #000 !important; }
.auth-popup--success   .auth-popup-btn-primary { background: #22C55E; color: #fff !important; }
.auth-popup--success   .auth-popup-btn-primary:hover { background: #16a34a; color: #fff !important; }
.auth-popup--info      .auth-popup-btn-primary { background: #0E7490; color: #fff !important; }
.auth-popup--info      .auth-popup-btn-primary:hover { background: #0c6681; color: #fff !important; }

/* Two-factor specific overrides */
.two-factor-card .tf-shield-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(139,92,246,0.12));
  border: 1px solid rgba(34,211,238,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--cyan);
  margin: 8px auto 10px;
}
.tf-otp-inputs { display: flex; gap: 7px; justify-content: center; margin: 14px 0; }
.tf-otp-digit {
  width: 40px; height: 46px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-size: 18px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center; color: var(--text-primary);
  transition: all 0.2s;
}
.tf-otp-digit:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(34,211,238,0.12);
  background: var(--bg-elevated);
}
.tf-otp-digit--filled   { border-color: rgba(34,211,238,0.4); }
.tf-otp-digit--error    { border-color: var(--rose); }

.tf-alert {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  font-size: 12.5px; line-height: 1.5;
  margin-bottom: 12px;
}
.tf-alert-danger  { background: rgba(244,63,94,0.09);  border: 1px solid rgba(244,63,94,0.22);  color: #FCA5A5; }
.tf-alert-success { background: rgba(34,197,94,0.09);  border: 1px solid rgba(34,197,94,0.22);  color: #86EFAC; }

.tf-timer-section { margin-bottom: 12px; }
.tf-timer-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 5px;
}
.tf-timer-value { font-weight: 700; color: var(--text-secondary); }
.tf-timer-value--warning { color: var(--amber); }
.tf-timer-value--danger  { color: var(--rose); }
.tf-timer-bar { height: 3px; background: var(--border-dim); border-radius: 2px; overflow: hidden; }
.tf-timer-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--cyan)); border-radius: 2px; transition: width 1s linear; }
.tf-timer-fill--warning { background: linear-gradient(90deg, #D97706, var(--amber)); }
.tf-timer-fill--danger  { background: linear-gradient(90deg, #BE123C, var(--rose)); }

.tf-otp-label { font-size: 11.5px; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.tf-otp-error { font-size: 11.5px; color: var(--rose); margin-top: 5px; display: flex; align-items: center; gap: 5px; }

.tf-verify-btn { margin-top: 4px; }
.tf-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tf-resend-section {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px; font-size: 12px; color: var(--text-muted);
}
.tf-resend-btn {
  background: none; border: none;
  color: var(--cyan); font-size: 12px; font-weight: 600;
  cursor: pointer; padding: 0; font-family: 'Inter', sans-serif;
}
.tf-resend-btn:disabled { color: var(--text-muted); cursor: not-allowed; }
.tf-countdown { color: var(--text-muted); font-weight: 400; }

.tf-security-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted);
  margin-top: 10px; text-align: center; justify-content: center;
}
.tf-security-note i { color: var(--emerald); font-size: 10px; }

.tf-back-link { text-align: center; margin-top: 10px; }
.tf-back-link a { font-size: 12.5px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px; }
.tf-back-link a:hover { color: var(--text-secondary); }

.tf-toast {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.tf-toast--visible { opacity: 1; transform: translateY(0); }
.tf-toast--success { background: var(--bg-elevated); border: 1px solid rgba(34,197,94,0.25); color: #86EFAC; }
.tf-toast--error   { background: var(--bg-elevated); border: 1px solid rgba(244,63,94,0.25);  color: #FCA5A5; }
