/* ================================================================
   ACTURA BANQ — Design System v5
   Aesthetic : Luxury Dark Finance | Outfit + Playfair Display
   Palette : Obsidian · Champagne · Electric Blue
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --ink:         #0b0e14;
  --ink2:        #13181f;
  --ink3:        #1c2330;
  --surface:     #1a2030;
  --surface2:    #212a3a;
  --border:      rgba(255,255,255,.07);
  --border2:     rgba(255,255,255,.13);
  --gold:        #c8a96e;
  --gold2:       #e2c98a;
  --gold-dim:    rgba(200,169,110,.12);
  --gold-glow:   rgba(200,169,110,.28);
  --blue:        #4f8ef7;
  --blue2:       #6ba3ff;
  --blue-dim:    rgba(79,142,247,.12);
  --blue-glow:   rgba(79,142,247,.3);
  --ok:          #34d399;
  --ok-dim:      rgba(52,211,153,.12);
  --warn:        #fbbf24;
  --warn-dim:    rgba(251,191,36,.12);
  --err:         #f87171;
  --err-dim:     rgba(248,113,113,.12);
  --txt:         rgba(255,255,255,.92);
  --txt2:        rgba(255,255,255,.55);
  --txt3:        rgba(255,255,255,.28);
  --radius:      16px;
  --radius2:     10px;
  --radius3:     6px;
  --shadow:      0 4px 32px rgba(0,0,0,.35);
  --shadow2:     0 12px 60px rgba(0,0,0,.5);
  --sidebar-w:   272px;
  --t:           .2s cubic-bezier(.4,0,.2,1);
  --t-slow:      .4s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--txt);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.ehg-wrap { display: flex; min-height: 100vh; }

/* SIDEBAR */
.ehg-sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--ink2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  transition: transform var(--t-slow);
}
.ehg-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.ehg-sidebar-logo {
  padding: 28px 22px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.ehg-sidebar-logo img {
  width: 38px; height: 38px;
  border-radius: var(--radius3);
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ehg-sidebar-logo span {
  font-size: 15px;
  font-weight: 800;
  color: var(--txt);
  letter-spacing: .3px;
}
.ehg-sidebar-logo small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1px;
}
.ehg-nav {
  padding: 16px 12px;
  flex: 1;
  overflow-y: auto;
}
.ehg-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius2);
  color: var(--txt2);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 2px;
  transition: all var(--t);
  position: relative;
}
.ehg-nav a:hover { color: var(--txt); background: rgba(255,255,255,.05); }
.ehg-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dim), rgba(79,142,247,.06));
  border: 1px solid rgba(79,142,247,.2);
}
.ehg-nav a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--blue);
  border-radius: 0 3px 3px 0;
}
.ehg-nav a svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .7; transition: opacity var(--t); }
.ehg-nav a:hover svg, .ehg-nav a.active svg { opacity: 1; }
.ehg-sidebar-footer {
  padding: 14px 12px 22px;
  border-top: 1px solid var(--border);
}
.ehg-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius2);
  color: var(--txt3);
  font-size: 13px;
  transition: all var(--t);
}
.ehg-sidebar-footer a:hover { background: var(--err-dim); color: var(--err); }
.ehg-sidebar-footer a svg { width: 16px; height: 16px; }

/* MAIN */
.ehg-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 36px 36px 60px;
  min-height: 100vh;
}

/* TOPBAR */
.ehg-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.ehg-topbar h1 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -.3px;
}
.ehg-topbar-right { display: flex; align-items: center; gap: 12px; }
.ehg-notif-btn {
  position: relative;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--txt2);
  transition: all var(--t);
}
.ehg-notif-btn:hover { background: var(--blue-dim); border-color: rgba(79,142,247,.3); color: var(--blue); }
.ehg-notif-badge {
  position: absolute;
  top: -5px; right: -5px;
  width: 18px; height: 18px;
  background: var(--err);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}
.ehg-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 6px 16px 6px 6px;
  transition: border-color var(--t);
}
.ehg-user-pill:hover { border-color: var(--gold); }
.ehg-user-av {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #9a7a40);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}
.ehg-user-pill span { font-size: 13px; font-weight: 600; color: var(--txt); }

/* NOTIF PANEL */
.ehg-notif-panel {
  position: fixed;
  top: 0; right: -380px;
  width: 360px;
  height: 100vh;
  background: var(--ink2);
  border-left: 1px solid var(--border2);
  z-index: 300;
  transition: right var(--t-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow2);
}
.ehg-notif-panel.open { right: 0; }
.ehg-notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px 20px;
  border-bottom: 1px solid var(--border);
}
.ehg-notif-head h4 { font-size: 15px; font-weight: 700; color: var(--txt); display: flex; align-items: center; gap: 8px; }
.ehg-notif-list { flex: 1; overflow-y: auto; padding: 12px 0; }
.ehg-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 22px;
  transition: background var(--t);
}
.ehg-notif-item:hover { background: var(--surface); }
.ehg-notif-item.unread { background: rgba(79,142,247,.05); }
.ehg-notif-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ehg-notif-icon.ok   { background: var(--ok-dim);   color: var(--ok); }
.ehg-notif-icon.warn { background: var(--warn-dim);  color: var(--warn); }
.ehg-notif-icon.info { background: var(--blue-dim);  color: var(--blue); }
.ehg-notif-text p { font-size: 13px; color: var(--txt); line-height: 1.5; }
.ehg-notif-text small { font-size: 11px; color: var(--txt3); margin-top: 2px; display: block; }

/* CARDS */
.ehg-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color var(--t);
}
.ehg-card:hover { border-color: var(--border2); }
.ehg-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.ehg-card-head h3 { font-size: 14px; font-weight: 700; color: var(--txt); display: flex; align-items: center; gap: 8px; }
.ehg-card-body { padding: 22px; }

/* STATS */
.ehg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.ehg-stat {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
  animation: fadeUp .5s ease both;
}
.ehg-stat:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow); }
.ehg-stat-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--txt3); margin-bottom: 8px; }
.ehg-stat-value { font-size: 28px; font-weight: 800; color: var(--txt); line-height: 1; letter-spacing: -.5px; }
.ehg-stat-value span { font-size: 14px; font-weight: 500; color: var(--txt2); margin-left: 4px; }
.ehg-stat-sub { font-size: 11.5px; color: var(--txt3); margin-top: 6px; }
.ehg-stat::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; border-radius: 2px; }
.ehg-stat.blue::before  { background: var(--blue); }
.ehg-stat.green::before { background: var(--ok); }
.ehg-stat.gold::before  { background: var(--gold); }
.ehg-stat.red::before   { background: var(--err); }

/* IBAN CARD */
.ehg-iban-card {
  background: linear-gradient(135deg, #0e1420 0%, #1a2545 50%, #0e1420 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(200,169,110,.2);
}
.ehg-iban-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.12), transparent 70%);
}
.ehg-iban-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 20px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,.08), transparent 70%);
}
.ehg-iban-top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; margin-bottom: 28px; }
.ehg-iban-logo { font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.ehg-iban-chip {
  width: 46px; height: 34px;
  background: linear-gradient(135deg, var(--gold), #9a7a40);
  border-radius: 6px;
  opacity: .9;
}
.ehg-iban-number {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  font-family: 'JetBrains Mono', monospace;
  opacity: .9;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.ehg-iban-bottom { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
.ehg-iban-label { font-size: 8.5px; text-transform: uppercase; letter-spacing: 1.5px; opacity: .5; margin-bottom: 4px; }
.ehg-iban-val { font-size: 13px; font-weight: 600; }
.ehg-iban-copy {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: all var(--t);
}
.ehg-iban-copy:hover { background: rgba(200,169,110,.2); border-color: rgba(200,169,110,.4); color: var(--gold); }

/* TABLE */
.ehg-table-wrap { overflow-x: auto; }
.ehg-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ehg-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--txt3);
  border-bottom: 1px solid var(--border);
}
.ehg-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--txt2);
  transition: background var(--t);
}
.ehg-table tr:last-child td { border-bottom: none; }
.ehg-table tr:hover td { background: var(--surface2); color: var(--txt); }
.ehg-table .mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* BADGES */
.ehg-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.ehg-badge.ok   { background: var(--ok-dim);   color: var(--ok); }
.ehg-badge.warn { background: var(--warn-dim);  color: var(--warn); }
.ehg-badge.err  { background: var(--err-dim);   color: var(--err); }
.ehg-badge.info { background: var(--blue-dim);  color: var(--blue); }
.ehg-badge.gold { background: var(--gold-dim);  color: var(--gold); }

/* BUTTONS */
.ehg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius2);
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: .2px;
  text-decoration: none;
  white-space: nowrap;
}
.ehg-btn-primary { background: var(--blue); color: #fff; }
.ehg-btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }
.ehg-btn-gold { background: linear-gradient(135deg, var(--gold), #9a7a40); color: var(--ink); }
.ehg-btn-gold:hover { transform: translateY(-1px); opacity: .9; }
.ehg-btn-ghost { background: var(--surface2); color: var(--txt2); border: 1px solid var(--border2); }
.ehg-btn-ghost:hover { color: var(--txt); border-color: var(--gold); }
.ehg-btn-danger { background: var(--err-dim); color: var(--err); border: 1px solid rgba(248,113,113,.2); }
.ehg-btn-danger:hover { background: var(--err); color: #fff; }
.ehg-btn-sm { padding: 7px 14px; font-size: 12px; }
.ehg-btn-lg { padding: 14px 28px; font-size: 15px; }
.ehg-btn-full { width: 100%; justify-content: center; }

/* FORM */
.ehg-fg { margin-bottom: 20px; }
.ehg-fg label { display: block; font-size: 11px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ehg-fg input, .ehg-fg select, .ehg-fg textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--txt);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.ehg-fg input:focus, .ehg-fg select:focus, .ehg-fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79,142,247,.12);
}
.ehg-fg input::placeholder { color: var(--txt3); }

/* ALERTS */
.ehg-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius2);
  font-size: 13.5px;
  margin-bottom: 20px;
  border: 1px solid;
}
.ehg-alert.ok   { background: var(--ok-dim);   color: var(--ok);   border-color: rgba(52,211,153,.2); }
.ehg-alert.warn { background: var(--warn-dim);  color: var(--warn); border-color: rgba(251,191,36,.2); }
.ehg-alert.info { background: var(--blue-dim);  color: var(--blue); border-color: rgba(79,142,247,.2); }
.ehg-alert.err  { background: var(--err-dim);   color: var(--err);  border-color: rgba(248,113,113,.2); }

/* MOBILE */
.ehg-mobile-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  z-index: 150;
}
.ehg-burger {
  background: none;
  border: none;
  width: 36px; height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
.ehg-burger span { display: block; height: 2px; background: var(--txt2); border-radius: 2px; transition: all var(--t); }
.ehg-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 190; backdrop-filter: blur(4px); }
.ehg-overlay.show { display: block; }

.ehg-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.ehg-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* EMPTY STATE */
.ehg-empty { text-align: center; padding: 60px 24px; color: var(--txt3); }
.ehg-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: .4; }
.ehg-empty h3 { font-size: 16px; color: var(--txt2); margin-bottom: 8px; }
.ehg-empty p { font-size: 13px; }

/* ═══ LOGIN PAGE ═══════════════════════════════════════════ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(79,142,247,.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200,169,110,.1), transparent),
    var(--ink);
  position: relative;
}
.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--ink2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  position: relative;
  z-index: 1;
  animation: fadeUp .6s ease both;
}
.login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.login-head {
  padding: 44px 40px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.login-head-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.login-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}
.login-head p { font-size: 13px; color: var(--txt3); }
.login-body { padding: 36px 40px 40px; }
.login-err {
  background: var(--err-dim);
  border: 1px solid rgba(248,113,113,.2);
  border-radius: var(--radius2);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--err);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-label { display: block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--txt3); margin-bottom: 8px; }
.login-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--txt);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.login-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.login-input::placeholder { color: var(--txt3); }
.login-fg { margin-bottom: 18px; }
.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #9a7a40 100%);
  color: var(--ink);
  border: none;
  border-radius: var(--radius2);
  font-size: 14.5px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: .3px;
  margin-top: 8px;
}
.login-btn:hover { opacity: .88; transform: translateY(-1px); }
.login-links { text-align: center; margin-top: 22px; font-size: 13px; color: var(--txt3); }
.login-links a { color: var(--gold); font-weight: 600; }

/* Wait page */
.wait-card {
  width: 100%;
  max-width: 480px;
  background: var(--ink2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  position: relative;
  z-index: 1;
  animation: fadeUp .6s ease both;
}
.wait-head { background: linear-gradient(135deg, #0e1420, #1a2545); padding: 44px; text-align: center; border-bottom: 1px solid rgba(200,169,110,.15); }
.wait-head .icon { font-size: 56px; margin-bottom: 16px; }
.wait-head h1 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; }
.wait-head p { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 6px; }
.wait-body { padding: 36px 40px; }
.wait-body h2 { font-size: 17px; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.wait-body > p { font-size: 13.5px; color: var(--txt2); line-height: 1.7; }
.wait-steps { margin: 24px 0; }
.wait-step { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.wait-step:last-child { border: none; }
.wait-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.dot-done { background: var(--ok-dim); color: var(--ok); }
.dot-wait { background: var(--warn-dim); }
.wait-step-text strong { font-size: 13.5px; color: var(--txt); display: block; }
.wait-step-text small  { font-size: 11.5px; color: var(--txt3); }
.wait-email { font-size: 12.5px; color: var(--txt3); text-align: center; margin-top: 8px; }
.wait-email a { color: var(--gold); }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: var(--surface2);
  color: var(--txt2);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t);
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
  .ehg-mobile-topbar { display: flex; }
  .ehg-sidebar { transform: translateX(-100%); top: 60px; min-height: calc(100vh - 60px); }
  .ehg-sidebar.open { transform: translateX(0); }
  .ehg-main { margin-left: 0; padding: 80px 18px 40px; }
}
@media (max-width: 600px) {
  .ehg-stats { grid-template-columns: 1fr; }
  .ehg-topbar h1 { font-size: 20px; }
  .login-head, .login-body { padding-left: 24px; padding-right: 24px; }
  .wait-body { padding: 28px 24px; }
}
