/* ============================================================
   OB Members — Design System
   Tema: Dark Finance — elegante, profissional, moderno
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

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

:root {
  /* Palette */
  --bg-base:     #080C14;
  --bg-surface:  #0E1520;
  --bg-card:     #131C2B;
  --bg-elevated: #1A2540;
  --border:      rgba(255,255,255,0.07);
  --border-glow: rgba(0,210,120,0.3);

  /* Accent: verde neon trading */
  --green:       #00D278;
  --green-dim:   #00A860;
  --green-glow:  rgba(0,210,120,0.15);
  --red:         #FF4560;
  --red-dim:     #CC2040;
  --red-glow:    rgba(255,69,96,0.15);
  --gold:        #F5C842;
  --blue:        #3B82F6;
  --purple:      #8B5CF6;

  /* Text */
  --text-primary:   #F0F4FF;
  --text-secondary: #8A9BBF;
  --text-muted:     #4A5A7A;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 32px rgba(0,210,120,0.12);
  --shadow-green: 0 0 20px rgba(0,210,120,0.3);

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

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.8rem,4vw,2.6rem); }
h2 { font-size: clamp(1.4rem,3vw,1.9rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--text-secondary); }
a  { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-primary); }
small { font-size: 0.8rem; }

/* ── Layout App (sidebar + main) ─────────────────────────── */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}
.sidebar-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}
.sidebar-logo .app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}
.sidebar-logo .app-name span {
  color: var(--green);
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
}
.nav-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 8px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-item:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.nav-item.active {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(0,210,120,0.2);
}
.nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-info .user-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-info .user-plan {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Main Content ─────────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar .page-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 4px;
}

.page-body {
  flex: 1;
  padding: 28px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.card:hover { border-color: rgba(255,255,255,0.12); }
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.card-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Stat cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-card:hover::before { opacity: 1; }
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  margin-top: 8px;
}
.stat-badge.green { background: var(--green-glow); color: var(--green); }
.stat-badge.red   { background: var(--red-glow);   color: var(--red);   }
.stat-badge.gold  { background: rgba(245,200,66,.12); color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover {
  background: var(--green-dim);
  box-shadow: var(--shadow-green);
  color: #000;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-elevated);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
}
.btn-danger {
  background: var(--red);
  color: #fff;
}
.btn-danger:hover { background: var(--red-dim); transform: translateY(-1px); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(245,200,66,.3); color: #000; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238A9BBF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 0.77rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 0.77rem; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.alert-success { background: var(--green-glow); border: 1px solid rgba(0,210,120,.25); color: var(--green); }
.alert-error   { background: var(--red-glow);   border: 1px solid rgba(255,69,96,.25);  color: var(--red); }
.alert-warn    { background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.25); color: var(--gold); }
.alert-info    { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25); color: var(--blue); }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; }
thead tr { border-bottom: 1px solid var(--border); }
th {
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
}
td {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
tbody tr { transition: var(--transition); }
tbody tr:hover { background: var(--bg-elevated); }
tbody tr:last-child td { border-bottom: none; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-green  { background: var(--green-glow);         color: var(--green);  border: 1px solid rgba(0,210,120,.2); }
.badge-red    { background: var(--red-glow);           color: var(--red);    border: 1px solid rgba(255,69,96,.2); }
.badge-gold   { background: rgba(245,200,66,.12);      color: var(--gold);   border: 1px solid rgba(245,200,66,.25); }
.badge-blue   { background: rgba(59,130,246,.12);      color: var(--blue);   border: 1px solid rgba(59,130,246,.25); }
.badge-muted  { background: rgba(255,255,255,.05);     color: var(--text-muted); border: 1px solid var(--border); }

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  background: rgba(245,200,66,.06);
  border: 1px solid rgba(245,200,66,.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: rgba(245,200,66,.85);
  margin-bottom: 24px;
  line-height: 1.5;
}
.disclaimer strong { color: var(--gold); }

/* ── Auth Layout ─────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-left {
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0,210,120,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.auth-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: var(--bg-base);
}
.auth-box {
  width: 100%;
  max-width: 400px;
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.auth-logo img { width: 44px; border-radius: var(--radius-sm); }
.auth-logo .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.auth-logo .name span { color: var(--green); }
.auth-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  text-align: center;
}
.auth-tagline .accent { color: var(--green); }
.auth-features {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.auth-feature-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid rgba(0,210,120,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Grid Helpers ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; }  .mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; } .mt-6 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 32px; }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.fw-bold { font-weight: 700; }
.font-display { font-family: var(--font-display); }

/* ── Signal Box ─────────────────────────────────────────────── */
.signal-loading {
  text-align: center;
  padding: 40px;
  display: none;
}
.signal-loading.active { display: block; }
.signal-spinner {
  width: 52px; height: 52px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.signal-result { display: none; }
.signal-result.active { display: block; }
.signal-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0;
}
.signal-badge-big.call {
  background: var(--green-glow);
  border: 2px solid var(--green);
  color: var(--green);
  box-shadow: var(--shadow-green);
}
.signal-badge-big.put {
  background: var(--red-glow);
  border: 2px solid var(--red);
  color: var(--red);
  box-shadow: 0 0 20px rgba(255,69,96,.3);
}
.signal-badge-big.wait {
  background: rgba(245,200,66,.1);
  border: 2px solid var(--gold);
  color: var(--gold);
}
.confidence-bar {
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0;
}
.confidence-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  transition: width 0.8s ease;
}
.indicator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.indicator-chip {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
}
.indicator-chip .i-name {
  color: var(--text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.indicator-chip .i-value { font-weight: 700; color: var(--text-primary); }
.indicator-chip .i-signal { font-size: 0.72rem; }
.indicator-chip .i-signal.bull { color: var(--green); }
.indicator-chip .i-signal.bear { color: var(--red); }
.indicator-chip .i-signal.neut { color: var(--text-muted); }

/* ── Broker Banner ─────────────────────────────────────────── */
.broker-banner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(0,210,120,0.08) 100%);
  border: 1px solid rgba(0,210,120,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: var(--transition);
}
.broker-banner:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.broker-banner img { width: 56px; border-radius: var(--radius-sm); }
.broker-banner .bb-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}
.broker-banner .bb-sub { font-size: 0.82rem; color: var(--text-secondary); }

/* ── Admin Layout ─────────────────────────────────────────────── */
.admin-badge {
  background: rgba(245,200,66,.12);
  border: 1px solid rgba(245,200,66,.25);
  color: var(--gold);
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 99px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.5);
  }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .page-body { padding: 16px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { padding: 12px 16px; }
  .stat-value { font-size: 1.4rem; }
}

/* ── Overlay (mobile sidebar) ─────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99;
}
.sidebar-overlay.active { display: block; }

/* ── Misc ─────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}
.empty-state svg {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  opacity: 0.4;
}
.quick-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.quick-link-card:hover {
  border-color: var(--green);
  background: var(--green-glow);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.quick-link-card svg { width: 32px; height: 32px; }
.quick-link-card span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.4s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
