/* ══════════════════════════════════════════════════════
   HIUSH — Master Design System v4
   Single CSS file. No external dependencies except fonts.
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --coral:        #E8526A;
  --coral-deep:   #C93F57;
  --coral-light:  #FFF1F3;
  --coral-mid:    #FCCCD4;
  --navy:         #1B4D8E;
  --navy-deep:    #0F3166;
  --navy-light:   #EEF4FC;
  --navy-mid:     #BED0EC;
  --dark:         #0D1B2A;
  --text:         #2D3748;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --bg:           #F8FAFC;
  --white:        #FFFFFF;
  --green:        #22C55E;
  --green-light:  #DCFCE7;
  --amber:        #F59E0B;
  --amber-light:  #FEF3C7;

  --ff-display:  'Bricolage Grotesque', Georgia, serif;
  --ff-body:     'DM Sans', -apple-system, sans-serif;
  --ff-he:       'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-pill: 100px;

  --sh-xs:    0 1px 4px rgba(13,27,42,.06);
  --sh-sm:    0 2px 12px rgba(13,27,42,.08);
  --sh-md:    0 8px 32px rgba(13,27,42,.11);
  --sh-lg:    0 20px 60px rgba(13,27,42,.14);
  --sh-coral: 0 8px 28px rgba(232,82,106,.28);
  --sh-navy:  0 8px 28px rgba(27,77,142,.22);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul  { list-style: none; }

/* ── HEBREW MODE ─────────────────────────────────────── */
html[lang="he"] body,
html[dir="rtl"] body {
  font-family: var(--ff-he);
}
html[lang="he"] .display,
html[lang="he"] h1, html[lang="he"] h2, html[lang="he"] h3,
html[lang="he"] .hero-title, html[lang="he"] .section-title,
html[lang="he"] .stat-val, html[lang="he"] .price-num,
html[lang="he"] .p-num, html[lang="he"] .inv-big {
  font-family: var(--ff-he);
  letter-spacing: 0 !important;
}
html[lang="he"] .hero-title { font-size: clamp(38px, 5.5vw, 64px); }
html[lang="he"] .section-title { font-size: clamp(28px, 3.8vw, 48px); }

/* RTL layout flips */
html[dir="rtl"] .nav-inner        { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links        { flex-direction: row-reverse; }
html[dir="rtl"] .nav-actions      { flex-direction: row-reverse; }
html[dir="rtl"] .hero-inner       { direction: rtl; }
html[dir="rtl"] .hero-actions     { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust       { flex-direction: row-reverse; }
html[dir="rtl"] .section-header   { direction: rtl; }
html[dir="rtl"] .section-header.centered { text-align: center; direction: rtl; }
html[dir="rtl"] .footer-inner     { direction: rtl; }
html[dir="rtl"] .footer-bottom    { flex-direction: row-reverse; }
html[dir="rtl"] .footer-brand p   { text-align: right; }
html[dir="rtl"] .footer-col       { text-align: right; }
html[dir="rtl"] .footer-links     { align-items: flex-end; }
html[dir="rtl"] .mobile-menu a    { text-align: right; }
html[dir="rtl"] .problem-card     { text-align: right; }
html[dir="rtl"] .gap-box          { flex-direction: row-reverse; }
html[dir="rtl"] .step-card        { direction: rtl; }
html[dir="rtl"] .feat-card        { direction: rtl; }
html[dir="rtl"] .feat-tags        { flex-direction: row-reverse; }
html[dir="rtl"] .feat-card.full   { direction: rtl; }
html[dir="rtl"] .uc-card          { direction: rtl; }
html[dir="rtl"] .p-card           { direction: rtl; }
html[dir="rtl"] .p-features li    { flex-direction: row-reverse; }
html[dir="rtl"] .cta-inner        { direction: rtl; }
html[dir="rtl"] .cta-actions      { flex-direction: row-reverse; }
html[dir="rtl"] .page-header      { direction: rtl; }
html[dir="rtl"] .privacy-note     { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .form-label       { text-align: right; }
html[dir="rtl"] .form-input       { text-align: right; direction: rtl; }
html[dir="rtl"] .auth-card        { direction: rtl; }
html[dir="rtl"] .auth-footer      { direction: rtl; }
html[dir="rtl"] .contact-layout   { direction: rtl; }
html[dir="rtl"] .imet             { direction: rtl; }
html[dir="rtl"] .tech-card        { direction: rtl; }
html[dir="rtl"] .team-card        { direction: rtl; }
html[dir="rtl"] .fin-table th,
html[dir="rtl"] .fin-table td     { text-align: right; }
html[dir="rtl"] .mock-row         { flex-direction: row-reverse; }
html[dir="rtl"] .steps-conn::before { display: none; }
html[dir="rtl"] .pf-li            { flex-direction: row-reverse; }

/* ── LAYOUT UTILS ────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── TYPOGRAPHY UTILS ────────────────────────────────── */
.display {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--coral);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -1.5px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header          { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,82,106,.38); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh-navy);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-mid);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy-light); }

.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover { background: rgba(255,255,255,.24); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-xs { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; }

/* ── LANGUAGE DROPDOWN ───────────────────────────────── */
.lang-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-drop {
  -webkit-appearance: none;
  appearance: none;
  background: var(--navy-light);
  border: 1.5px solid var(--navy-mid);
  border-radius: var(--r-md);
  padding: 6px 28px 6px 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--ff-he), var(--ff-body);
  transition: all 0.2s;
  min-width: 88px;
}
.lang-drop:hover  { background: var(--navy); color: #fff; border-color: var(--navy); }
.lang-drop:focus  { outline: none; }
.lang-wrap::after {
  content: '▾';
  position: absolute;
  right: 9px;
  font-size: 10px;
  color: var(--navy);
  pointer-events: none;
  transition: color 0.2s;
}
.lang-wrap:hover::after { color: #fff; }
/* legacy toggle button — kept for other pages */
.lang-btn {
  padding: 6px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  background: var(--navy-light);
  color: var(--navy);
  border: 1.5px solid var(--navy-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--ff-he);
  min-width: 44px;
  text-align: center;
  letter-spacing: 0;
}
.lang-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: var(--sh-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 8px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--coral);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.nav-logo-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  color: var(--dark);
}
.nav-logo-text em { font-style: normal; color: var(--coral); }
html[lang="he"] .nav-logo-text { font-family: var(--ff-display); } /* keep EN logo */
/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .18s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--coral-light);
  color: var(--coral);
}
/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
  transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0 28px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s;
}
.nav-mobile.open { max-height: 540px; padding: 16px 28px 24px; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--coral); }
.nav-mobile .mob-btns { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── FOOTER ──────────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 64px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand-name em { font-style: normal; color: var(--coral); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5);
  transition: all .2s;
  text-decoration: none;
}
.footer-socials a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .18s; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BADGES ──────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; }
.badge-coral  { background: var(--coral-light); color: var(--coral-deep); }
.badge-navy   { background: var(--navy-light);  color: var(--navy-deep); }
.badge-green  { background: var(--green-light); color: #15803D; }
.badge-amber  { background: var(--amber-light); color: #92400E; }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  padding: 32px;
  transition: all .25s;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

/* ── FORMS ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-input {
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-light); }
.form-input::placeholder { color: #9BB3C6; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-hint  { font-size: 12px; color: var(--muted); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--coral); margin-top: 5px; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar { background: var(--dark); padding: 32px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-val span { color: var(--coral); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ── PAGE HEADER ─────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(155deg, var(--navy-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -2px;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 16px;
}
html[lang="he"] .page-hero h1 {
  font-family: var(--ff-he);
  letter-spacing: 0;
  font-size: clamp(34px, 5vw, 56px);
}
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.65; }

/* ── AUTH ────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--navy-light) 0%, #fff 100%);
  padding: 80px 24px;
}
.auth-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
}
.auth-logo    { text-align: center; margin-bottom: 30px; }
.auth-title   { font-family: var(--ff-display); font-weight: 800; font-size: 28px; letter-spacing: -1px; color: var(--dark); text-align: center; margin-bottom: 8px; }
.auth-sub     { font-size: 15px; color: var(--muted); text-align: center; margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 12px; color: var(--muted); white-space: nowrap; }
.auth-footer  { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-footer a { color: var(--coral); font-weight: 600; }

html[lang="he"] .auth-card { direction: rtl; }
html[lang="he"] .auth-title { font-family: var(--ff-he); }

/* ── DASHBOARD ───────────────────────────────────────── */
.dash-wrap { display: flex; min-height: 100vh; padding-top: 68px; }
.dash-sidebar {
  width: 256px; flex-shrink: 0;
  background: var(--dark);
  position: fixed; top: 68px; left: 0; bottom: 0;
  overflow-y: auto;
  padding: 24px 0;
}
.dash-main { margin-left: 256px; flex: 1; padding: 40px; background: var(--bg); min-height: calc(100vh - 68px); }
.sidebar-group-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.25); padding: 16px 20px 6px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; border-radius: 0;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: all .18s;
}
.sidebar-link:hover, .sidebar-link.active { background: rgba(255,255,255,.07); color: #fff; }
.sidebar-link.active { background: rgba(232,82,106,.14); color: var(--coral); border-right: 3px solid var(--coral); }
.sidebar-icon { font-size: 17px; width: 20px; text-align: center; }
.dash-title { font-family: var(--ff-display); font-weight: 800; font-size: 28px; letter-spacing: -1px; color: var(--dark); }
.dash-sub   { font-size: 14px; color: var(--muted); margin-top: 4px; }
.metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.metric-card { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border); padding: 24px; }
.metric-lbl  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.metric-val  { font-family: var(--ff-display); font-weight: 800; font-size: 34px; letter-spacing: -1.5px; color: var(--dark); line-height: 1; }
.metric-delta { font-size: 12px; color: var(--green); margin-top: 6px; font-weight: 600; }
.table-wrap  { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; }
.table-head  { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.table-lbl   { font-size: 14px; font-weight: 700; color: var(--dark); }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 11px 20px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); background: var(--bg); border-bottom: 1px solid var(--border); }
tbody td  { padding: 15px 20px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg); }

/* ── SCAN PAGE ───────────────────────────────────────── */
.scan-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-light) 0%, #fff 65%);
  padding: 40px 24px;
}

/* ── REGISTER STEPS ──────────────────────────────────── */
.reg-page {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy-light) 0%, #fff 100%);
  padding: 100px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reg-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 52px 48px;
  width: 100%;
  max-width: 520px;
}
.steps-bar { display: flex; align-items: center; justify-content: center; margin-bottom: 44px; }
.sb-dot { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sb-circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: all .3s;
}
.sb-circle.done    { background: var(--green);   color: #fff; }
.sb-circle.active  { background: var(--coral);   color: #fff; box-shadow: 0 0 0 4px var(--coral-light); }
.sb-circle.pending { background: var(--border);  color: var(--muted); }
.sb-label { font-size: 10px; color: var(--muted); }
.sb-line  { width: 56px; height: 2px; background: var(--border); margin-bottom: 22px; }
.sb-line.done { background: var(--green); }
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:.45} }
@keyframes spin    { to{transform:rotate(360deg)} }
@keyframes ripple  { 0%{transform:scale(.85);opacity:.75} 100%{transform:scale(2.6);opacity:0} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes notifIn { 0%{opacity:0;transform:translateY(-12px)} 15%{opacity:1;transform:translateY(0)} 80%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(-12px)} }
@keyframes counter { from{opacity:0} to{opacity:1} }
@keyframes glowPulse { 0%,100%{box-shadow:0 0 0 0 rgba(232,82,106,0)} 50%{box-shadow:0 0 0 8px rgba(232,82,106,.15)} }

/* ── REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn-outline { display: none !important; }
  .nav-ham { display: flex !important; }
  .nav-mobile { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .stat-item   { border-bottom: 1px solid rgba(255,255,255,.07); border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .dash-sidebar { display: none; }
  .dash-main    { margin-left: 0; }
  .metrics-row  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .auth-card { padding: 36px 28px; }
  .reg-card  { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container  { padding: 0 18px; }
  .btn-lg     { padding: 14px 24px; font-size: 15px; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
}
