/* ── MayaV — Vedic Cyberpunk CSS ─────────────────────────────────────────── */
:root {
  --void:      #000008;
  --deep:      #040412;
  --surface:   #080818;
  --panel:     #0d0d22;
  --border:    rgba(0, 212, 255, 0.15);
  --border-hi: rgba(0, 212, 255, 0.4);
  --cyan:      #00D4FF;
  --cyan-dim:  rgba(0, 212, 255, 0.15);
  --cyan-glow: rgba(0, 212, 255, 0.3);
  --gold:      #FFB800;
  --gold-dim:  rgba(255, 184, 0, 0.15);
  --violet:    #7B61FF;
  --text:      #E8E8F0;
  --text-dim:  #8888AA;
  --text-hi:   #FFFFFF;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius:    8px;
  --radius-lg: 16px;
  --glow:      0 0 20px rgba(0,212,255,0.2), 0 0 60px rgba(0,212,255,0.08);
  --glow-hi:   0 0 30px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.mayav-body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── COSMIC CANVAS ────────────────────────────────────────────────────────── */
#cosmicCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.nav-helix {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(0,0,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg { width: 40px; height: 40px; filter: drop-shadow(0 0 8px var(--cyan)); }

.logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: 0.05em;
}
.logo-v { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover, .nav-link:focus { color: var(--cyan); background: var(--cyan-dim); }

.nav-btn-primary {
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.nav-btn-primary:hover { box-shadow: var(--glow-hi); transform: translateY(-1px); }

.nav-btn-ghost {
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-btn-ghost:hover { border-color: var(--border-hi); color: var(--cyan); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-sigil {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 45vw);
  opacity: 0.35;
  animation: sigilRotate 40s linear infinite;
}

@keyframes sigilRotate { to { transform: translateY(-50%) rotate(360deg); } }

.sigil-svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: heroEntrance 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  display: inline-block;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.title-line { display: block; color: var(--text-hi); }
.title-accent { color: var(--cyan); text-shadow: 0 0 30px rgba(0,212,255,0.5); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

.btn-primary {
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { box-shadow: var(--glow-hi); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-hi);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}
.btn-ghost:hover { background: var(--cyan-dim); box-shadow: var(--glow); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.meta-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
}
.meta-sep { color: var(--border); }

/* ── SECTIONS ─────────────────────────────────────────────────────────────── */
.section-types,
.section-phases,
.section-lore,
.section-shuka,
.section-plans {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-hi);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}

.section-sub {
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ── PRODUCTION TYPES ─────────────────────────────────────────────────────── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.type-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cyan-glow), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.type-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: var(--glow); }
.type-card:hover::before { opacity: 1; }

.type-icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.type-label { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text-hi); margin-bottom: 4px; }
.type-desc  { font-size: 0.8rem; color: var(--text-dim); }
.type-arrow { position: absolute; top: 16px; right: 16px; color: var(--cyan); opacity: 0; transition: var(--transition); }
.type-card:hover .type-arrow { opacity: 1; transform: translateX(3px); }

/* ── PHASES ───────────────────────────────────────────────────────────────── */
.section-phases { background: linear-gradient(180deg, transparent, rgba(0,212,255,0.03), transparent); }

.phases-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.phases-flow::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.3;
}

.phase-node {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.phase-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.phase-node::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 12px var(--cyan);
}
.phase-label { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-hi); margin-bottom: 4px; }
.phase-sub   { font-size: 0.75rem; color: var(--text-dim); }

/* ── LORE ─────────────────────────────────────────────────────────────────── */
.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.lore-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.lore-card:hover { border-color: var(--border-hi); box-shadow: var(--glow); }

.lore-layer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lore-cat   { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 12px; }
.lore-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.lore-title a { color: var(--text-hi); text-decoration: none; }
.lore-title a:hover { color: var(--cyan); }
.lore-excerpt { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── SHUKA ────────────────────────────────────────────────────────────────── */
.shuka-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.shuka-info .section-title { text-align: left; }
.shuka-info p { color: var(--text-dim); margin-bottom: 24px; }

.shuka-features { list-style: none; }
.shuka-features li {
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.shuka-features li::before { content: '◈  '; color: var(--cyan); }

.shuka-demo {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.chat-bubble.shuka {
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border);
  color: var(--text);
}
.chat-bubble.error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff8080; }
.shuka-thinking { opacity: 0.6; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

.chat-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.chat-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--border-hi); box-shadow: 0 0 0 3px var(--cyan-dim); }

.chat-send {
  background: var(--cyan);
  color: var(--void);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.chat-send:hover { box-shadow: var(--glow); }

/* ── PLANS ────────────────────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.plan-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }

.plan-featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--panel), rgba(0,212,255,0.05));
  box-shadow: var(--glow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--void);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name  { font-family: var(--font-head); font-size: 1.1rem; color: var(--text-dim); margin-bottom: 12px; font-weight: 500; }
.plan-price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--text-hi); margin-bottom: 24px; }
.plan-period { font-size: 1rem; font-weight: 400; color: var(--text-dim); }

.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.plan-features li::before { content: '✦  '; color: var(--cyan); font-size: 0.7rem; }

.plans-note { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 24px; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p { color: var(--text-dim); font-size: 0.85rem; margin-top: 6px; }
.footer-link { color: var(--cyan); text-decoration: none; }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--cyan); }

.footer-copy { color: var(--text-dim); font-size: 0.75rem; font-family: var(--font-mono); }

/* ── DASHBOARD ────────────────────────────────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.sidebar {
  background: var(--panel);
  border-right: 1px solid var(--border);
  padding: 32px 16px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-avatar { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-hi); }
.sidebar-name { font-weight: 600; font-size: 0.9rem; color: var(--text-hi); }
.sidebar-arch { font-size: 0.75rem; color: var(--cyan); font-family: var(--font-mono); }

.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 4px;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active { background: var(--cyan-dim); color: var(--cyan); }

.main-content { padding: 32px; overflow-y: auto; }

/* ── CARD ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-hi); }
.card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text-hi); margin-bottom: 16px; }

/* ── FORM ELEMENTS ────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.05em; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--border-hi); box-shadow: 0 0 0 3px var(--cyan-dim); }

.form-select { appearance: none; }
.form-textarea { min-height: 100px; resize: vertical; }

/* ── BADGE / TAG ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.badge-cyan   { background: var(--cyan-dim); color: var(--cyan); border: 1px solid var(--border); }
.badge-gold   { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(255,184,0,0.3); }
.badge-violet { background: rgba(123,97,255,0.15); color: var(--violet); border: 1px solid rgba(123,97,255,0.3); }

/* ── LIPO ENGINE PAGE ─────────────────────────────────────────────────────── */
.lipo-layout { padding-top: 100px; min-height: 100vh; }
.lipo-container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
.lipo-glyph-display {
  background: var(--panel);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--glow);
}
.lipo-glyph-display svg { max-width: 200px; filter: drop-shadow(0 0 20px var(--cyan)); }
.glyph-meta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 20px; }

/* ── ADMIN PANEL ──────────────────────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
  padding-top: 72px;
}
.admin-sidebar {
  background: var(--deep);
  border-right: 1px solid var(--border);
  padding: 24px 12px;
}
.admin-main { padding: 32px; }
.admin-section-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── TABLE ────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); letter-spacing: 0.1em; text-transform: uppercase; }
td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ── UPLOAD ZONE ──────────────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.upload-zone:hover,
.upload-zone.drag-over { border-color: var(--border-hi); background: var(--cyan-dim); }
.upload-zone-icon { font-size: 3rem; margin-bottom: 12px; }
.upload-zone-text { color: var(--text-dim); font-size: 0.9rem; }

/* ── NOTIFICATIONS ────────────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.toast {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 8px;
  max-width: 320px;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: toastIn 0.3s ease forwards;
}
.toast.success { border-color: rgba(0,212,255,0.5); }
.toast.error   { border-color: rgba(255,80,80,0.5); color: #ff8080; }
@keyframes toastIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .types-grid   { grid-template-columns: repeat(3, 1fr); }
  .lore-grid    { grid-template-columns: 1fr 1fr; }
  .shuka-container { grid-template-columns: 1fr; gap: 40px; }
  .dashboard-layout { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(0,0,8,0.98); padding: 24px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }
  .types-grid  { grid-template-columns: repeat(2, 1fr); }
  .lore-grid   { grid-template-columns: 1fr; }
  .plans-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 0; }
  .phases-flow { flex-direction: column; }
  .hero-sigil  { opacity: 0.15; width: 80vw; right: -20%; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.text-cyan   { color: var(--cyan); }
.text-gold   { color: var(--gold); }
.text-dim    { color: var(--text-dim); }
.text-hi     { color: var(--text-hi); }
.text-mono   { font-family: var(--font-mono); }
.text-head   { font-family: var(--font-head); }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.gap-8 { gap: 2rem; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
