@charset "UTF-8";
/* Global UI tokens and utilities */

:root {
  /* Colors */
  --brand-orange: #ff7300;
  --text-900: #0f172a;
  --text-700: #334155;
  --text-500: #64748b;
  --bg: #ffffff;
  --border-color: #e6e6e6;
  --success: #209D54;
  --danger: #d33;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.14);
}

/* Base typography */
html, body {
  background: var(--bg);
  color: var(--text-900);
}
body {
  font-family: var(--font-body);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-900);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h1 { font-weight: 800; font-size: clamp(2rem, 3vw + 1rem, 3.5rem); }
h2 { font-weight: 800; font-size: clamp(1.6rem, 2.2vw + 0.6rem, 2.5rem); }
h3 { font-weight: 800; font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem); }

p { color: var(--text-700); }

/* Layout container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 2px; }

.btn-primary { background: var(--brand-orange); color: #fff; box-shadow: 0 6px 18px rgba(255,115,0,.25); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,115,0,.35); }

.btn-secondary { background: transparent; color: var(--text-900); border-color: var(--border-color); }
.btn-secondary:hover { background: #fafafa; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--border-color);
  color: var(--text-700);
  background: #f7f7f7;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Inputs */
input, select, textarea {
  font-family: var(--font-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Skeleton loader */
.skeleton { position: relative; overflow: hidden; background: #eee; }
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer { 100% { transform: translateX(100%); } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
