/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* === VARIABLES === */
:root {
  --bg: #111;
  --bg-card: #1a1a1a;
  --bg-input: #1a1a1a;
  --fg: #f5f5f5;
  --fg-muted: #999;
  --border: #333;
  --primary: #b5451b;
  --primary-hover: #9a3a16;
  --secondary: #f5a623;
  --secondary-hover: #d89520;
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.08);
  --red: #ef4444;
  --red-bg: rgba(239,68,68,0.08);
  --radius: 0;
  --max-w: 1200px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* === TYPOGRAPHY === */
.font-display { font-family: var(--font-display); }
.font-condensed { font-family: var(--font-condensed); }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51,51,51,0.4);
}
.site-header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.site-logo svg { width: 24px; height: 24px; color: var(--primary); }
.site-nav { display: none; gap: 2rem; font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.1rem; }
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--primary); }
@media (min-width: 768px) { .site-nav { display: flex; } }

/* === HAMBURGER === */
.hamburger { display: flex; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .hamburger { display: none; } }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 4rem;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  animation: slideDown 0.3s ease;
}
.mobile-nav.open { display: flex; flex-direction: column; padding: 2rem; }
.mobile-nav a {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(51,51,51,0.3);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === HERO === */
.hero {
  padding: 6rem 0 8rem;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(51,51,51,0.4);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542013936693-884638332954?q=80&w=2400&auto=format&fit=crop') center/cover;
  opacity: 0.03;
  filter: grayscale(1);
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* === MARQUEE === */
.marquee-wrap {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(181,69,27,0.3);
  border-bottom: 1px solid rgba(181,69,27,0.3);
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.marquee-inner span { margin: 0 1.5rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTIONS === */
section { padding: 5rem 0; }
section.alt { background: var(--bg-card); border-top: 1px solid rgba(51,51,51,0.4); border-bottom: 1px solid rgba(51,51,51,0.4); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 3rem;
}
.section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }

/* === ABOUT === */
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.about-feature svg { width: 2rem; height: 2rem; color: var(--secondary); margin-bottom: 0.75rem; }
.about-feature h4 {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.about-feature p { color: var(--fg-muted); font-size: 0.95rem; }
.about-image-wrap { position: relative; }
.about-image-offset {
  position: absolute;
  inset: 0;
  background: rgba(181,69,27,0.2);
  transform: translate(1rem, 1rem);
  z-index: 0;
}
.about-image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  padding: 0.5rem;
  background: var(--bg-card);
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.25);
}

/* === RENTAL CARDS === */
.rental-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(51,51,51,0.5);
  background: var(--bg);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.rental-card:hover { border-color: rgba(181,69,27,0.5); }
.rental-card h3 {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.rental-card:hover h3 { color: var(--primary); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: var(--secondary); color: #111; }
.btn-secondary:hover { background: var(--secondary-hover); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-green { background: #16a34a; color: #fff; }
.btn-green:hover { background: #15803d; }
.btn-danger { background: transparent; border: 1px solid var(--border); color: var(--red); }
.btn-danger:hover { background: rgba(239,68,68,0.1); border-color: var(--red); }
.btn-ghost { background: transparent; border: none; color: var(--fg-muted); }
.btn-ghost:hover { color: var(--fg); }
.btn-sm { font-size: 0.9rem; padding: 0.5rem 1rem; }
.btn-lg { font-size: 1.5rem; padding: 1rem 2.5rem; }
.btn-icon { padding: 0.5rem; width: 2.5rem; height: 2.5rem; }
.btn-full { width: 100%; }

/* === FORMS === */
.form-section {
  background: var(--bg);
  border: 1px solid rgba(51,51,51,0.5);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.form-section.alt-bg { background: var(--bg-card); }
.form-section .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.form-section .accent-bar.primary { background: var(--primary); }
.form-section .accent-bar.secondary { background: var(--secondary); }
.form-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.form-desc { color: var(--fg-muted); font-size: 1.1rem; font-weight: 300; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  color: var(--fg-muted);
}
.form-input, .form-textarea, .form-select {
  background: var(--bg-input);
  border: 1px solid rgba(51,51,51,0.5);
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* === ALERTS === */
.alert {
  padding: 1.25rem 1.5rem;
  border: 1px solid;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.alert svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.alert-success { background: var(--green-bg); border-color: rgba(34,197,94,0.3); color: #86efac; }
.alert-success svg { color: var(--green); }
.alert-error { background: var(--red-bg); border-color: rgba(239,68,68,0.3); color: #fca5a5; }
.alert-error svg { color: var(--red); }
.alert-amber { background: rgba(245,166,35,0.08); border-color: rgba(245,166,35,0.3); color: var(--secondary); }
.alert-amber svg { color: var(--secondary); }
.alert-title {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.alert-desc { font-size: 1rem; }

/* === CONTACT === */
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg);
  border: 1px solid rgba(51,51,51,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--primary); }
.contact-label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.contact-value { color: var(--fg-muted); font-size: 1.1rem; }
.map-frame {
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(51,51,51,0.5);
  overflow: hidden;
  background: var(--bg);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.8);
}

/* === FOOTER === */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(51,51,51,0.4);
  padding: 4rem 0;
  text-align: center;
}
.footer-logo svg { width: 2.5rem; height: 2.5rem; color: var(--primary); margin: 0 auto 1.5rem; }
.footer-name {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-copy { font-size: 0.85rem; color: var(--fg-muted); font-weight: 300; }
.footer-vibe { font-size: 0.8rem; color: var(--fg-muted); font-weight: 300; margin-top: 0.5rem; letter-spacing: 0.03em; }
.footer-vibe a { color: var(--amber); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-vibe a:hover { color: var(--rust); }
.footer-admin { margin-top: 2.5rem; }
.footer-admin a {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border: 1px solid rgba(51,51,51,0.5);
  padding: 0.5rem 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.footer-admin a:hover { color: var(--primary); border-color: var(--primary); }

/* === ADMIN === */
.admin-header {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(51,51,51,0.4);
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}
.admin-logo svg { width: 2rem; height: 2rem; color: var(--primary); }
.login-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(51,51,51,0.5);
  padding: 3rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.login-card .accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); }
.admin-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; max-width: 400px; border: 1px solid rgba(51,51,51,0.5); }
.admin-tab {
  flex: 1;
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  background: var(--bg-card);
  color: var(--fg-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.admin-tab.active-orders { background: var(--primary); color: #fff; }
.admin-tab.active-trade { background: var(--secondary); color: #111; }
.admin-tab:hover:not(.active-orders):not(.active-trade) { background: rgba(255,255,255,0.05); color: var(--fg); }

/* === TABLES === */
.table-wrap {
  border: 1px solid rgba(51,51,51,0.5);
  background: var(--bg-card);
  overflow-x: auto;
}
table { width: 100%; border-collapse: collapse; }
thead { background: rgba(17,17,17,0.5); }
th {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  font-weight: 500;
  padding: 1rem;
  text-align: left;
  white-space: nowrap;
}
td { padding: 1rem; border-top: 1px solid rgba(51,51,51,0.5); vertical-align: top; }
tr:hover td { background: rgba(255,255,255,0.01); }
.empty-state { text-align: center; padding: 3rem; color: var(--fg-muted); }

/* === BADGES === */
.badge {
  display: inline-block;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid;
  white-space: nowrap;
}
.badge-new { background: var(--primary); border-color: var(--primary); color: #fff; }
.badge-ready { background: var(--green); border-color: var(--green); color: #fff; }
.badge-archived { background: transparent; border-color: var(--border); color: var(--fg-muted); }
.badge-pickup { background: transparent; border-color: var(--border); color: var(--fg); }
.badge-delivery { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.3); color: var(--secondary); }
.badge-pending { background: var(--primary); border-color: var(--primary); color: #fff; }
.badge-inactive { background: transparent; border-color: var(--fg-muted); color: var(--fg-muted); }

/* === APPLICATION CARDS === */
.app-card {
  background: var(--bg-card);
  border: 1px solid rgba(181,69,27,0.5);
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.app-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
}
.app-card h3 {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  font-size: 1.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.app-card-contact { color: var(--fg-muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.app-card-info { border-top: 1px solid rgba(51,51,51,0.3); border-bottom: 1px solid rgba(51,51,51,0.3); padding: 1rem 0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.app-card-info-row { display: flex; align-items: center; gap: 0.75rem; }
.app-card-info-row svg { width: 20px; height: 20px; color: var(--fg-muted); }
.app-card-workers-label { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.app-card-workers {
  font-size: 0.9rem;
  font-family: monospace;
  background: var(--bg);
  border: 1px solid rgba(51,51,51,0.5);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}
.app-card-actions { display: flex; gap: 1rem; }

/* === ARCHIVED === */
.archived-section { padding-top: 2rem; border-top: 1px solid rgba(51,51,51,0.4); margin-top: 2rem; }
.archived-label {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.archived-row {
  border: 1px solid rgba(51,51,51,0.5);
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.inactive-row { opacity: 0.5; background: rgba(0,0,0,0.2); }
.line-through { text-decoration: line-through; }

/* === WORKERS INLINE EDIT === */
.workers-display {
  font-size: 0.85rem;
  font-family: monospace;
  background: var(--bg);
  border: 1px solid rgba(51,51,51,0.5);
  padding: 0.4rem 0.75rem;
  display: inline-block;
  color: var(--fg-muted);
}
.workers-edit { display: flex; flex-direction: column; gap: 0.5rem; }
.workers-edit textarea { min-height: 60px; font-family: monospace; font-size: 0.85rem; }
.workers-edit-actions { display: flex; gap: 0.5rem; }

/* === ACCOUNT NUMBER === */
.account-num { font-family: monospace; color: var(--secondary); font-size: 1.1rem; }

/* === FILTER BUTTONS === */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg-muted);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.05); color: var(--fg); }
.filter-btn.active { background: rgba(181,69,27,0.1); border-color: rgba(181,69,27,0.5); color: var(--primary); }

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .hero h1 { font-size: 3.5rem; }
  .form-section { padding: 1.5rem; }
  section { padding: 3rem 0; }
  .about-features { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  table { font-size: 0.9rem; }
  th, td { padding: 0.75rem 0.5rem; }
}
@media (min-width: 1024px) {
  .form-section { padding: 3rem; }
}

/* === MISC === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-1 { padding-top: 0.25rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-muted { color: var(--fg-muted); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.font-mono { font-family: monospace; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.nowrap { white-space: nowrap; }
.truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
