/* ============================================================
   FlashHost — Purple Dark Theme (Tajawal + Rajdhani)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-deep:       #080B10;
  --bg-base:       #0D1117;
  --bg-card:       #0F1520;
  --bg-elevated:   #141C2A;
  --bg-hover:      #1A2535;

  --border:        #1A2535;
  --border-bright: #243040;
  --border-accent: rgba(123,63,142,0.35);

  --text-primary:  #E8E8E8;
  --text-secondary:#8A95A3;
  --text-muted:    #4A5568;

  --accent:        #7B3F8E;
  --accent-bright: #A06BB5;
  --accent-glow:   rgba(123,63,142,0.25);
  --accent-dim:    rgba(123,63,142,0.10);

  --green:         #38A169;
  --green-dim:     rgba(56,161,105,0.12);
  --red:           #E53E3E;
  --red-dim:       rgba(229,62,62,0.12);
  --yellow:        #D69E2E;
  --yellow-dim:    rgba(214,158,46,0.12);
  --orange:        #DD6B20;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-card: 0 1px 3px rgba(0,0,0,.6), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --font-display: 'Tajawal', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-mono:    'Rajdhani', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle purple ambient glow */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(123,63,142,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(123,63,142,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent-bright); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-display); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; opacity: .5; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.page-wrap { display: flex; flex-direction: column; min-height: 100vh; }
.main-content { flex: 1; padding: 48px 0; position: relative; z-index: 1; }

/* ── Header / Nav ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-bright);
  background: var(--accent-dim);
}
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #542A63) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  box-shadow: 0 4px 15px rgba(123,63,142,0.4);
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(123,63,142,0.5) !important;
}
.nav-user {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
}
.nav-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), #542A63);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px; color: #fff; font-weight: 700;
  box-shadow: 0 0 12px rgba(123,63,142,0.4);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover { border-color: rgba(123,63,142,0.3); background: var(--bg-elevated); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.card:hover::before { opacity: 1; }
.card--glow:hover { box-shadow: var(--shadow-glow); }
.card--accent {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, #0c0c1a 100%);
}
.card__corner {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--accent-dim), transparent 70%);
}

/* ── Stat Boxes ────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
  transition: all .3s;
}
.stat-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0; transition: opacity .3s;
}
.stat-box:hover { border-color: rgba(123,63,142,0.3); background: var(--bg-elevated); }
.stat-box:hover::before { opacity: 1; }
.stat-box__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.stat-box__value {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 700;
  color: var(--text-primary); line-height: 1;
}
.stat-box__sub {
  font-size: 12px; color: var(--text-secondary);
  margin-top: 6px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #542A63);
  color: #fff;
  box-shadow: 0 4px 15px rgba(123,63,142,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(123,63,142,0.5); color: #fff; }
.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-hover); border-color: var(--accent); color: var(--accent-bright); }
.btn-danger {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid rgba(229,62,62,.2);
}
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-success {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(56,161,105,.2);
}
.btn-success:hover { background: var(--green); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123,63,142,0.2);
}
.form-control::placeholder { color: var(--text-muted); }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: 13px 18px;
  border-radius: var(--radius-md);
  font-size: 14px; margin-bottom: 20px;
  border-left: 3px solid;
}
.alert-danger  { background: var(--red-dim);    border-color: var(--red);    color: #FC8181; }
.alert-success { background: var(--green-dim);  border-color: var(--green);  color: #68D391; }
.alert-warning { background: var(--yellow-dim); border-color: var(--yellow); color: var(--yellow); }
.alert-info    { background: var(--accent-dim); border-color: var(--accent); color: var(--accent-bright); }

/* ── Tables ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg-elevated); color: var(--text-primary); }
.table .mono { font-family: var(--font-heading); font-size: 13px; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.badge-green  { background: var(--green-dim);  color: #68D391; border: 1px solid rgba(56,161,105,.3); }
.badge-red    { background: var(--red-dim);    color: #FC8181; border: 1px solid rgba(229,62,62,.3); }
.badge-yellow { background: var(--yellow-dim); color: var(--yellow); border: 1px solid rgba(214,158,46,.3); }
.badge-blue   { background: var(--accent-dim); color: var(--accent-bright); border: 1px solid rgba(123,63,142,.3); }
.badge-muted  { background: rgba(255,255,255,.05); color: var(--text-secondary); }

/* ── Page Header ───────────────────────────────────────────── */
.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.page-header__title {
  font-size: 26px; font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-primary);
  letter-spacing: 1px;
}
.page-header__sub { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

/* ── Section heading ───────────────────────────────────────── */
.section-title {
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Server Card ───────────────────────────────────────────── */
.server-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px; transition: all .3s;
  position: relative; overflow: hidden;
}
.server-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  opacity: 0; transition: opacity .3s;
}
.server-card:hover { border-color: rgba(123,63,142,0.3); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.server-card:hover::before { opacity: 1; }
.server-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.server-card__name { font-size: 16px; font-weight: 700; color: var(--text-primary); font-family: var(--font-heading); letter-spacing: .5px; }
.server-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
.server-card__meta-item { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; }
.server-card__meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 2px; }
.server-card__meta-value { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text-primary); }
.server-card__renewal { background: var(--yellow-dim); border: 1px solid rgba(214,158,46,.2); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 13px; color: var(--yellow); margin-bottom: 14px; }
.server-card__renewal-urgent { background: var(--red-dim); border-color: rgba(229,62,62,.2); color: #FC8181; }
.server-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.server-progress { margin-top: 12px; }
.server-progress__label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.progress-bar { height: 4px; background: var(--bg-elevated); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.progress-bar__fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); transition: width .4s ease; }
.progress-bar__fill--warn   { background: var(--yellow); }
.progress-bar__fill--danger { background: var(--red); }
.progress-bar__fill--green  { background: var(--green); }

/* ── Sidebar Layout ────────────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.dash-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky; top: 80px;
}
.dash-sidebar__section { padding: 8px 0; border-bottom: 1px solid var(--border); }
.dash-sidebar__section:last-child { border-bottom: none; }
.dash-sidebar__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-bright); padding: 12px 18px 6px;
}
.dash-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  transition: all .15s;
  border-left: 2px solid transparent;
}
.dash-nav-link:hover { color: var(--text-primary); background: var(--accent-dim); }
.dash-nav-link.active { color: var(--accent-bright); background: var(--accent-dim); border-left-color: var(--accent); }
.dash-nav-link svg { opacity: .6; flex-shrink: 0; }
.dash-nav-link.active svg { opacity: 1; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 85vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(123,63,142,0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(123,63,142,0.05) 0%, transparent 100%);
  z-index: 0;
}
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(123,63,142,0.3);
  border-radius: 50px; padding: 5px 16px;
  font-size: 12px; font-weight: 700;
  color: var(--accent-bright); letter-spacing: .06em; margin-bottom: 28px;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--accent-bright); border-radius: 50%; animation: pulse 2s infinite; }
.hero__title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; font-family: var(--font-heading);
  letter-spacing: 3px; line-height: 1.05;
  color: var(--text-primary); margin-bottom: 22px;
}
.hero__title span { color: var(--accent-bright); text-shadow: 0 0 20px rgba(123,63,142,0.5); }
.hero__sub { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
.hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Plans ─────────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.plan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; position: relative; transition: all .3s; }
.plan-card--featured { border-color: var(--accent); background: linear-gradient(135deg, var(--bg-card), #0c0c20); box-shadow: 0 0 40px var(--accent-glow); }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); border-color: rgba(123,63,142,0.4); }
.plan-card__tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), #542A63); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 4px 12px rgba(123,63,142,.4); }
.plan-card__name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 8px; }
.plan-card__price { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.plan-card__price span { font-size: 16px; color: var(--text-muted); }
.plan-card__desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }
.plan-card__features { margin-bottom: 28px; }
.plan-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); padding: 7px 0; border-bottom: 1px solid var(--border); }
.plan-card__feature:last-child { border-bottom: none; }
.plan-card__feature .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); flex-shrink: 0; }
.plan-card__feature span { font-family: var(--font-heading); font-size: 13px; }

/* ── Auth ──────────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse 50% 50% at 25% 40%, rgba(123,63,142,0.08) 0%, transparent 70%), var(--bg-base);
}
.auth-box {
  width: 100%; max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px; position: relative;
}
.auth-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.auth-box__logo { text-align: center; margin-bottom: 28px; font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--accent-bright); letter-spacing: 2px; }
.auth-box__logo span { color: var(--text-primary); }
.auth-box__title { font-size: 22px; font-weight: 900; font-family: var(--font-heading); color: var(--text-primary); margin-bottom: 6px; letter-spacing: .5px; }
.auth-box__sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.auth-divider { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.auth-divider a { color: var(--accent-bright); font-weight: 600; }

/* ── Invoice ───────────────────────────────────────────────── */
.invoice-badge-paid    { background: var(--green-dim);  color: #68D391; }
.invoice-badge-unpaid  { background: var(--yellow-dim); color: var(--yellow); }
.invoice-badge-overdue { background: var(--red-dim);    color: #FC8181; }

/* ── Balance ───────────────────────────────────────────────── */
.balance-display { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--text-primary); line-height: 1; }
.balance-display span { font-size: 22px; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 28px 0; background: var(--bg-deep); position: relative; z-index: 1; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-bright); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 32px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .auth-box { padding: 28px 20px; }
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-mono   { font-family: var(--font-heading); }
.text-muted  { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-green  { color: #68D391; }
.text-red    { color: #FC8181; }
.text-yellow { color: var(--yellow); }
.text-accent { color: var(--accent-bright); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex  { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(20px);  } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeUp .4s ease forwards; }
.animate-in--delay1 { animation-delay: .1s; opacity: 0; }
.animate-in--delay2 { animation-delay: .2s; opacity: 0; }
.animate-in--delay3 { animation-delay: .3s; opacity: 0; }
.pulsing { animation: pulse 2s infinite; }