/* ═══════════════════════════════════════════════════
   GetNextRole — Premium Design System
   Bootstrap 5 + Custom layer
   Font: Sora (headings) + DM Sans (body)
═══════════════════════════════════════════════════ */

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

/* ── CSS Variables ───────────────────────────────── */
:root {
  --gnr-bg:         #080c14;
  --gnr-surface:    #0d1220;
  --gnr-card:       #111827;
  --gnr-card2:      #141e2e;
  --gnr-border:     rgba(255,255,255,0.07);
  --gnr-border2:    rgba(255,255,255,0.12);

  --gnr-teal:       #00d4c8;
  --gnr-teal-dark:  #00a89e;
  --gnr-blue:       #3b82f6;
  --gnr-indigo:     #6366f1;
  --gnr-amber:      #f59e0b;
  --gnr-emerald:    #10b981;
  --gnr-rose:       #f43f5e;

  --gnr-text:       #f1f5f9;
  --gnr-muted:      #94a3b8;
  --gnr-faint:      #475569;

  --gnr-grad:       linear-gradient(135deg, #00d4c8 0%, #3b82f6 50%, #6366f1 100%);
  --gnr-grad-warm:  linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gnr-glow-teal:  0 0 40px rgba(0,212,200,0.25);
  --gnr-glow-blue:  0 0 40px rgba(59,130,246,0.2);

  --gnr-radius:     14px;
  --gnr-radius-lg:  20px;
  --gnr-radius-sm:  8px;

  --gnr-shadow:     0 4px 24px rgba(0,0,0,0.4);
  --gnr-shadow-lg:  0 20px 60px rgba(0,0,0,0.5);

  --gnr-transition: all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Base Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--gnr-bg);
  color: var(--gnr-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gnr-text);
}

a { color: var(--gnr-teal); text-decoration: none; transition: var(--gnr-transition); }
a:hover { color: #4dfaf4; }

/* ── Bootstrap overrides ─────────────────────────── */
.btn { font-family: 'DM Sans', sans-serif; font-weight: 500; border-radius: 10px; padding: 0.55rem 1.4rem; transition: var(--gnr-transition); }
.btn:focus { box-shadow: none; }

.btn-primary {
  background: var(--gnr-grad);
  border: none;
  color: #fff;
  font-weight: 600;
}
.btn-primary:hover { opacity: 0.88; background: var(--gnr-grad); color: #fff; transform: translateY(-1px); box-shadow: var(--gnr-glow-teal); }

.btn-outline-primary {
  border: 1.5px solid var(--gnr-teal);
  color: var(--gnr-teal);
  background: transparent;
}
.btn-outline-primary:hover { background: rgba(0,212,200,0.1); border-color: var(--gnr-teal); color: var(--gnr-teal); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gnr-border2);
  color: var(--gnr-text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--gnr-text); }

.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.35rem 0.9rem; font-size: 0.85rem; border-radius: 8px; }

.form-control, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--gnr-border2);
  border-radius: var(--gnr-radius-sm);
  color: var(--gnr-text);
  padding: 0.65rem 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--gnr-transition);
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--gnr-teal);
  color: var(--gnr-text);
  box-shadow: 0 0 0 3px rgba(0,212,200,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--gnr-faint); }
.form-control.is-invalid { border-color: var(--gnr-rose); }
.form-select option { background: var(--gnr-card); color: var(--gnr-text); }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gnr-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.invalid-feedback { font-size: 0.8rem; color: var(--gnr-rose); }

/* ── Card ────────────────────────────────────────── */
.gnr-card {
  background: var(--gnr-card);
  border: 1px solid var(--gnr-border);
  border-radius: var(--gnr-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.gnr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,212,200,0.2), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Navbar ──────────────────────────────────────── */
.gnr-navbar {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gnr-border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.gnr-navbar .navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gnr-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-icon {
  width: 32px; height: 32px;
  background: var(--gnr-grad);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #fff;
  box-shadow: var(--gnr-glow-teal);
}
.gnr-navbar .nav-link {
  color: var(--gnr-muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.3rem 0.8rem !important;
  border-radius: 8px;
  transition: var(--gnr-transition);
}
.gnr-navbar .nav-link:hover { color: var(--gnr-text) !important; background: rgba(255,255,255,0.05); }

/* ── Hero Section ────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gnr-teal);
  margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gnr-teal);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,200,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(0,212,200,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,200,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.text-gradient {
  background: var(--gnr-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gnr-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
}
.stat-item {}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gnr-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.78rem; color: var(--gnr-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Mock UI Card (hero right) ───────────────────── */
.hero-visual { position: relative; }

.mock-card {
  background: var(--gnr-card);
  border: 1px solid var(--gnr-border2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--gnr-shadow-lg);
  position: relative;
  overflow: hidden;
}
.mock-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,200,0.5), transparent);
}

.mock-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.mock-avatar {
  width: 40px; height: 40px;
  background: var(--gnr-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.mock-label {
  background: rgba(0,212,200,0.12);
  color: var(--gnr-teal);
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.score-bar { margin: 0.5rem 0; }
.score-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 4px; color: var(--gnr-muted); }
.score-bar-label span:last-child { color: var(--gnr-teal); font-weight: 600; }
.score-bar-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; }
.score-bar-fill {
  height: 100%;
  background: var(--gnr-grad);
  border-radius: 999px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1) 0.4s;
}

.float-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gnr-card2);
  border: 1px solid var(--gnr-border2);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.8rem;
  box-shadow: var(--gnr-shadow);
  max-width: 200px;
}
.float-badge-dot { width: 8px; height: 8px; background: var(--gnr-emerald); border-radius: 50%; display: inline-block; margin-right: 6px; }

/* ── Section ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-head { max-width: 560px; margin: 0 auto 3.5rem; text-align: center; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gnr-teal); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.section-desc { color: var(--gnr-muted); font-size: 1rem; line-height: 1.7; }

/* ── Feature Cards ───────────────────────────────── */
.feature-card {
  background: var(--gnr-card);
  border: 1px solid var(--gnr-border);
  border-radius: var(--gnr-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--gnr-transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(0,212,200,0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,212,200,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.feature-icon.blue  { background: rgba(59,130,246,0.12); }
.feature-icon.indigo{ background: rgba(99,102,241,0.12); }
.feature-icon.amber { background: rgba(245,158,11,0.12); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gnr-text); }
.feature-desc  { font-size: 0.9rem; color: var(--gnr-muted); line-height: 1.6; }

/* ── Auth Pages ──────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth-left {
  flex: 0 0 480px;
  background: var(--gnr-surface);
  border-right: 1px solid var(--gnr-border);
  display: flex;
  flex-direction: column;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,212,200,0.06), transparent 70%);
  pointer-events: none;
}
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.auth-right-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,212,200,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(99,102,241,0.06) 0%, transparent 60%);
}
@media (max-width: 768px) {
  .auth-page { flex-direction: column; }
  .auth-left  { flex: none; border-right: none; border-bottom: 1px solid var(--gnr-border); padding: 2rem; }
  .auth-right { padding: 2rem; }
}

.auth-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--gnr-text); margin-bottom: 3rem;
}
.auth-heading { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.auth-sub { color: var(--gnr-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.auth-form-wrap { max-width: 400px; width: 100%; }

/* ── Stepper ──────────────────────────────────────── */
.gnr-stepper {
  display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem;
}
.step-item {
  display: flex; align-items: center;
  flex: 1;
}
.step-item:last-child { flex: none; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--gnr-border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--gnr-faint);
  background: var(--gnr-surface);
  flex-shrink: 0;
  transition: var(--gnr-transition);
  position: relative; z-index: 1;
}
.step-dot.active {
  border-color: var(--gnr-teal);
  background: rgba(0,212,200,0.12);
  color: var(--gnr-teal);
  box-shadow: 0 0 0 4px rgba(0,212,200,0.1);
}
.step-dot.done {
  border-color: var(--gnr-teal);
  background: var(--gnr-teal);
  color: #fff;
}
.step-line {
  flex: 1; height: 2px;
  background: var(--gnr-border2);
  margin: 0 4px;
  transition: background 0.4s;
}
.step-line.done { background: var(--gnr-teal); }

.step-pane { display: none; }
.step-pane.active { display: block; animation: fadeSlide 0.3s ease; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-label {
  font-size: 0.72rem; font-weight: 600; color: var(--gnr-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center; margin-top: 0.25rem;
}
.step-title {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem;
}
.step-sub { font-size: 0.88rem; color: var(--gnr-muted); margin-bottom: 1.5rem; }

/* ── Role grid ────────────────────────────────────── */
.role-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.role-card {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--gnr-border2);
  border-radius: var(--gnr-radius-sm);
  padding: 1rem;
  cursor: pointer;
  text-align: left;
  transition: var(--gnr-transition);
  width: 100%;
}
.role-card:hover { border-color: rgba(0,212,200,0.3); background: rgba(0,212,200,0.05); }
.role-card.selected { border-color: var(--gnr-teal); background: rgba(0,212,200,0.08); }
.role-card h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--gnr-text); }
.role-card p  { font-size: 0.78rem; color: var(--gnr-muted); margin: 0; }

/* ── Password toggle ────────────────────────────── */
.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 3rem; }
.pw-toggle {
  position: absolute; right: 0.8rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--gnr-faint); padding: 0;
  transition: color 0.2s;
}
.pw-toggle:hover { color: var(--gnr-muted); }

/* ── Alert ────────────────────────────────────────── */
.gnr-alert {
  border-radius: var(--gnr-radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  display: none;
}
.gnr-alert.show { display: block; }
.gnr-alert-danger  { background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.25); color: #fca5a5; }
.gnr-alert-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }

/* ── Divider ─────────────────────────────────────── */
.divider-or {
  display: flex; align-items: center; gap: 1rem; color: var(--gnr-faint);
  font-size: 0.8rem; margin: 1.25rem 0; text-transform: uppercase; letter-spacing: 0.1em;
}
.divider-or::before, .divider-or::after {
  content: ''; flex: 1; height: 1px; background: var(--gnr-border2);
}

/* ── Footer ──────────────────────────────────────── */
.gnr-footer {
  border-top: 1px solid var(--gnr-border);
  padding: 3rem 0;
  text-align: center;
  color: var(--gnr-faint);
  font-size: 0.85rem;
  background: var(--gnr-surface);
}
.gnr-footer .brand-name {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem;
  background: var(--gnr-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gnr-footer-links a { color: var(--gnr-faint); margin: 0 0.75rem; font-size: 0.82rem; }
.gnr-footer-links a:hover { color: var(--gnr-teal); }

/* ── Loading spinner ─────────────────────────────── */
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Dashboard ───────────────────────────────────── */
.dashboard-page {
  display: flex; min-height: 100vh;
}
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--gnr-surface);
  border-right: 1px solid var(--gnr-border);
  padding: 1.5rem 0;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--gnr-border);
  margin-bottom: 1rem;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  color: var(--gnr-muted); font-size: 0.9rem; font-weight: 500;
  border-radius: 0; border-left: 3px solid transparent;
  transition: var(--gnr-transition);
}
.sidebar-nav a:hover { color: var(--gnr-text); background: rgba(255,255,255,0.04); }
.sidebar-nav a.active { color: var(--gnr-teal); border-left-color: var(--gnr-teal); background: rgba(0,212,200,0.06); }
.sidebar-section { font-size: 0.68rem; font-weight: 700; color: var(--gnr-faint); letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 1.5rem 0.4rem; }
.main-content { flex: 1; overflow-y: auto; padding: 2.5rem; }
.page-title   { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.page-sub     { color: var(--gnr-muted); font-size: 0.92rem; margin-bottom: 2rem; }

/* Profile setup wizard ──────────────────────────── */
.setup-card {
  background: var(--gnr-card);
  border: 1px solid var(--gnr-border);
  border-radius: var(--gnr-radius-lg);
  overflow: hidden;
}
.setup-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--gnr-border);
  background: linear-gradient(135deg, rgba(0,212,200,0.04), transparent);
}
.setup-body { padding: 2rem; }

/* Skills ────────────────────────────────────────── */
.skill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,200,0.1); border: 1px solid rgba(0,212,200,0.2);
  color: var(--gnr-teal); border-radius: 999px;
  padding: 4px 12px; font-size: 0.8rem; font-weight: 600;
}
.skill-tag .remove {
  cursor: pointer; opacity: 0.6;
  background: none; border: none; color: inherit; padding: 0; line-height: 1;
}
.skill-tag .remove:hover { opacity: 1; }

.proficiency-badge {
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.prof-B { background: rgba(148,163,184,0.12); color: var(--gnr-muted); }
.prof-I { background: rgba(59,130,246,0.12);  color: #93c5fd; }
.prof-A { background: rgba(245,158,11,0.12);  color: #fcd34d; }
.prof-E { background: rgba(16,185,129,0.12);  color: #6ee7b7; }

/* Experience cards ──────────────────────────────── */
.exp-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gnr-border);
  border-radius: var(--gnr-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  transition: var(--gnr-transition);
}
.exp-card:hover { border-color: var(--gnr-border2); background: rgba(255,255,255,0.03); }
.exp-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.exp-company    { color: var(--gnr-teal); font-size: 0.88rem; font-weight: 600; }
.exp-meta       { color: var(--gnr-faint); font-size: 0.8rem; }

/* Misc ───────────────────────────────────────────── */
.text-teal   { color: var(--gnr-teal); }
.text-muted-custom { color: var(--gnr-muted); }
.border-gnr  { border-color: var(--gnr-border2) !important; }
.bg-gnr-card { background: var(--gnr-card) !important; }

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { padding: 4rem 0; }
  .hero-visual  { margin-top: 2.5rem; }
  .dashboard-page { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; }
}
