/* ============================================
   JOBWALA365 - Premium Job Portal Design System
   ============================================ */

/* Font Awesome font-display override for better CLS */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette - Deep Indigo */
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;

  /* Accent - Warm Coral */
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;

  /* Success / Warning / Danger */
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;

  /* Warm Neutrals */
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #736e69;
  --gray-500: #6b6560;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 90px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 16px -6px rgba(0,0,0,0.05);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 48px rgba(79,70,229,0.12), 0 4px 16px rgba(0,0,0,0.06);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--gray-600); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-padding); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 24px auto 0;
  line-height: 1.7;
}

/* --- Grid System --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(79,70,229,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.45);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary-200);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}

.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-sm { padding: 12px 22px; font-size: 0.875rem; min-height: 48px; }

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: 0;
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.navbar-brand span { color: var(--primary); }
.navbar-brand .brand-dot { color: var(--accent); }

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

.nav-links a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition-base);
    align-items: stretch;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }

  .nav-cta { margin-left: 0; margin-top: 12px; }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 999;
    backdrop-filter: blur(4px);
  }

  .mobile-overlay.show { display: block; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, #eef2ff 0%, #f5f3ff 30%, #fff7ed 70%, #fef3c7 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 10s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroFloat 12s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(79,70,229,0.1);
  margin-bottom: 28px;
  border: 1px solid var(--primary-100);
  animation: fadeInUp 0.6s ease both;
}

.hero-badge i { color: var(--accent); }

.hero h1 {
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.75;
}

/* Search Box */
.hero-search {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  gap: 8px;
  animation: fadeInUp 0.6s ease 0.3s both;
  border: 1px solid var(--gray-200);
}

.hero-search .search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
}

.hero-search .search-field i { color: var(--gray-400); font-size: 1.1rem; }

.hero-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.hero-search input::placeholder { color: var(--gray-400); }

.hero-search .btn { min-width: 140px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat h3,
.hero-stat strong {
  font-size: 1.75rem;
  color: var(--primary);
  display: block;
  font-family: var(--font-heading);
}

.hero-stat p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--gray-500);
}

.hero-illustration {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.5s both;
}

@media (max-width: 768px) {
  .hero-search { flex-direction: column; }
  .hero-search .btn { width: 100%; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

/* Job Card */
.job-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.job-card-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.job-card-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}

.job-card:hover .job-card-info h4 { color: var(--primary); }

.job-card-company { font-size: 0.9rem; color: var(--gray-500); }

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  padding: 5px 13px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.job-tag.location { background: var(--primary-50); color: var(--primary); }
.job-tag.salary { background: #ecfdf5; color: #047857; font-weight: 600; }
.job-tag.type { background: #fff7ed; color: #c2410c; }

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.job-card-footer .time {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* Category Card */
.category-card {
  text-align: center;
  padding: 32px 24px;
  cursor: pointer;
}

.category-card .icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.category-card:hover .icon { transform: scale(1.1) rotate(-5deg); }

.category-card h3, .category-card h4 { margin-bottom: 8px; font-size: 1rem; }
.category-card p { font-size: 0.85rem; margin: 0; }

.category-card .count {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.category-card:hover .count {
  background: var(--primary);
  color: #fff;
}

/* --- Stats Section --- */
.stats-section {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.stat-item .label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* --- Testimonials --- */
.testimonial-card {
  padding: 32px;
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.testimonial-author h4, .testimonial-author h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #292524 50%, var(--gray-800) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79,70,229,0.25), transparent);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent);
  border-radius: 50%;
}

.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.1rem; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: #a8a29e;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .navbar-brand {
  margin-bottom: 16px;
  color: #fff;
}
.footer-about .navbar-brand span { color: #818cf8; }

.footer-about p { font-size: 0.9rem; line-height: 1.75; color: #a8a29e; }

.footer h3, .footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #a8a29e;
  transition: all var(--transition-fast);
}

.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Animations (Scroll Reveal) --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Progressive enhancement: content visible by default.
   JS adds .animate-ready to <html>, then reveal classes animate. */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only hide elements when JS has loaded and set up animations */
html.animate-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

html.animate-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html.animate-ready .reveal-left {
  opacity: 0;
  transform: translateX(-24px);
}

html.animate-ready .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

html.animate-ready .reveal-right {
  opacity: 0;
  transform: translateX(24px);
}

html.animate-ready .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

html.animate-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

html.animate-ready .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children - only animate when JS is ready */
html.animate-ready .stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.animate-ready .stagger-children > *:nth-child(1) { transition-delay: 0s; }
html.animate-ready .stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
html.animate-ready .stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
html.animate-ready .stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
html.animate-ready .stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
html.animate-ready .stagger-children > *:nth-child(6) { transition-delay: 0.4s; }
html.animate-ready .stagger-children > *:nth-child(7) { transition-delay: 0.48s; }
html.animate-ready .stagger-children > *:nth-child(8) { transition-delay: 0.56s; }

html.animate-ready .stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- Floating Shapes --- */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.shape-1 {
  width: 80px; height: 80px;
  background: var(--primary-200);
  top: 20%;
  right: 10%;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 50px; height: 50px;
  background: var(--accent-light);
  bottom: 20%;
  left: 5%;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 30px; height: 30px;
  background: var(--success);
  top: 40%;
  left: 15%;
  animation: float1 9s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(120deg); }
  66% { transform: translate(-10px, 10px) rotate(240deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.1); }
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--primary-50) 0%, #f5f3ff 40%, #fff7ed 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.06), transparent);
  border-radius: 50%;
}

.page-header h1 { margin-bottom: 12px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--gray-300); }

/* --- Filters Bar --- */
.filters-bar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.filter-group i { color: var(--gray-400); }

.filter-group select,
.filter-group input {
  border: 1px solid var(--gray-200);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--gray-700);
  background: var(--gray-50);
  outline: none;
  transition: border-color var(--transition-fast);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

/* --- Blog Cards --- */
.blog-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.blog-card-content { padding: 24px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-card-meta i { margin-right: 4px; }

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-content h3 { color: var(--primary); }

.blog-card-content p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.read-more:hover { gap: 10px; }

/* --- Comment System --- */
.comments-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
}

.comments-section h3 {
  margin-bottom: 24px;
}

.comment-form {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: #fff;
  outline: none;
  transition: border-color var(--transition-fast);
  font-size: 0.92rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 12px;
}

.comment-list { display: flex; flex-direction: column; gap: 20px; }

.comment-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.comment-item:hover { border-color: var(--primary-200); }

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.comment-body { flex: 1; }

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-header h5 { font-size: 0.92rem; }

.comment-header time {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.comment-body p { font-size: 0.9rem; margin: 0; color: var(--gray-600); }

.comment-actions {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.comment-actions button {
  font-size: 0.8rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.comment-actions button:hover { color: var(--primary); }

@media (max-width: 576px) {
  .comment-form .form-row { grid-template-columns: 1fr; }
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: #fff;
  outline: none;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.pagination .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* --- Tags --- */
.tag {
  display: inline-block;
  padding: 10px 16px;
  min-height: 40px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Toast Notifications --- */
.toast {
  position: fixed;
  bottom: 80px;
  right: 24px;
  padding: 16px 28px;
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(79,70,229,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 999;
  font-size: 1.1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* --- Loading Skeleton --- */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- About Author Widget --- */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 { margin-bottom: 4px; }
.author-info .role { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.author-info p { font-size: 0.9rem; margin: 0; }

/* --- Experience / Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-200), var(--accent-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.timeline-item:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-card);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 3px solid var(--primary-200);
  border-radius: 50%;
}

.timeline-item .date {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item h4 { margin-bottom: 4px; }
.timeline-item .company { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 8px; }

/* --- Cookie Consent --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 1px solid rgba(79,70,229,0.2);
}

.cookie-consent.show { transform: translateY(0); }

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent p { margin: 0; font-size: 0.9rem; color: var(--gray-300); }
.cookie-consent a { color: #a5b4fc; text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .cookie-consent .container { flex-direction: column; text-align: center; }
}

/* --- Alternating Section Backgrounds --- */
.section-alt {
  background: var(--gray-50);
}

.section-warm {
  background: linear-gradient(160deg, #fefce8 0%, #fff7ed 50%, #fef2f2 100%);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-500); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-full { width: 100%; }

/* --- Responsive: Tablets & Mobile (max 768px) --- */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.95rem; max-width: 100%; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 44px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.65rem, 6.5vw, 2.4rem); margin-bottom: 16px; }
  .hero p { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.65; }
  .hero-badge { margin-bottom: 20px; }
  .hero-stats { margin-top: 28px; }

  /* Cards */
  .card { padding: 20px; }
  .category-card { padding: 20px 14px; }
  .category-card .icon { width: 56px; height: 56px; margin-bottom: 12px; font-size: 1.25rem; }
  .category-card h3, .category-card h4 { font-size: 0.92rem; }
  .category-card p { font-size: 0.8rem; }
  .category-card .count { font-size: 0.75rem; padding: 4px 12px; margin-top: 10px; }

  /* Job Cards */
  .job-card-header { gap: 12px; }
  .job-card-logo { width: 44px; height: 44px; font-size: 1.1rem; }
  .job-card-info h4 { font-size: 0.98rem; }
  .job-card-tags { gap: 6px; }
  .job-card-footer { flex-wrap: wrap; gap: 8px; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }
  .testimonial-card blockquote { font-size: 0.92rem; line-height: 1.65; margin-bottom: 16px; }
  .testimonial-author { gap: 10px; }

  /* Stats */
  .stat-item .number { font-size: 2rem; }

  /* Page Headers */
  .page-header { padding: 100px 0 36px; }
  .page-header h1 { font-size: clamp(1.4rem, 6vw, 2.1rem); }
  .breadcrumb { font-size: 0.82rem; gap: 6px; flex-wrap: wrap; justify-content: center; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .cta-section p { font-size: 0.95rem; margin-bottom: 24px; }
  .cta-buttons { gap: 12px; }
  .cta-buttons .btn { width: 100%; }

  /* Blog */
  .author-box { flex-direction: column; text-align: center; gap: 14px; padding: 20px; }
  .author-avatar { width: 60px; height: 60px; font-size: 1.4rem; }
  .blog-card-content { padding: 16px; }
  .blog-card-image { height: 180px; }
  .blog-card-content h3 { font-size: 1rem; }

  /* Filters */
  .filters-bar { flex-direction: column; padding: 16px; gap: 10px; }
  .filter-group { min-width: 100%; }

  /* Comments */
  .comment-item { flex-direction: column; gap: 10px; padding: 16px; }
  .comment-avatar { width: 36px; height: 36px; font-size: 0.85rem; }

  /* Timeline */
  .timeline { padding-left: 28px; }
  .timeline-item { padding: 14px 16px; margin-bottom: 20px; }
  .timeline-item::before { left: -29px; width: 10px; height: 10px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-about p { font-size: 0.85rem; }
  .footer-social { gap: 10px; margin-top: 16px; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-bottom { font-size: 0.8rem; padding: 20px 0; margin-top: 28px; }

  /* Toast / Back to top */
  .toast { right: 16px; bottom: 70px; font-size: 0.85rem; padding: 12px 20px; }
  .back-to-top { width: 42px; height: 42px; right: 16px; bottom: 16px; }

  /* Cookie consent */
  .cookie-consent p { font-size: 0.82rem; }

  /* How it works steps */
  .steps .card { text-align: center; }
}

/* --- Small phones (max 375px) --- */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .hero { padding: 92px 0 36px; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-stats { gap: 14px; }
  .hero-stat h3, .hero-stat strong { font-size: 1.3rem; }
  .hero-stat p { font-size: 0.78rem; }
  .card { padding: 16px; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  .btn-lg { padding: 13px 26px; font-size: 0.95rem; }
  .stat-item .number { font-size: 1.6rem; }
  .stat-item .label { font-size: 0.82rem; }
  .testimonial-card blockquote { font-size: 0.88rem; }
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 24px; }
  .page-header { padding: 88px 0 28px; }
  .page-header h1 { font-size: 1.3rem; }
  .footer-grid { gap: 28px; }
  .navbar .container { height: 60px; }
  .navbar-brand { font-size: 1.3rem; }
}

/* --- Touch targets: min 48px — Google Lighthouse --- */
@media (max-width: 768px) {
  .footer-links a {
    padding: 10px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .job-tag {
    padding: 8px 14px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
  }
  .tag {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .read-more {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
  .comment-actions button {
    min-height: 44px;
    padding: 8px 4px;
  }
  .pagination a,
  .pagination span {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }
  /* Prevent iOS zoom on input focus (needs >= 16px) */
  .filter-group select,
  .filter-group input {
    padding: 12px 14px;
    min-height: 48px;
    font-size: 16px;
  }
  .hero-search input {
    font-size: 16px;
    min-height: 48px;
  }
  .form-control {
    min-height: 48px;
    font-size: 16px;
  }
  .comment-form input,
  .comment-form textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .cookie-buttons .btn {
    min-height: 48px;
    padding: 12px 20px;
  }
  /* Sort select on jobs page */
  select.sort-select {
    min-height: 48px;
    font-size: 16px;
    padding: 10px 14px;
  }
  /* Newsletter form */
  .newsletter-form input {
    font-size: 16px;
    min-height: 48px;
  }
  /* Share buttons */
  .share-links a,
  .social-share a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* FAQ accordion buttons */
  .faq-question {
    min-height: 48px;
    padding: 14px 16px;
  }
}

/* --- Safe area for notched phones (iPhone X+) --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .cookie-consent {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .footer-bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .back-to-top {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
  a, button, [role="button"], .card, .category-card {
    -webkit-tap-highlight-color: rgba(79, 70, 229, 0.1);
  }
  /* Disable hover transforms on touch to prevent sticky hover */
  .card:hover { transform: none; box-shadow: var(--shadow-card); }
  .btn-primary:hover { transform: none; }
  .btn-secondary:hover { transform: none; }
  .btn-accent:hover { transform: none; }
  .footer-social a:hover { transform: none; }
  .category-card:hover .icon { transform: none; }
  .category-card:hover .count { background: var(--gray-100); color: var(--gray-600); }
  .blog-card:hover .blog-card-image img { transform: none; }
  .read-more:hover { gap: 6px; }
  /* Active state for touch feedback */
  .card:active { transform: scale(0.98); transition-duration: 0.1s; }
  .btn:active { transform: scale(0.97); transition-duration: 0.1s; }
  .category-card:active { transform: scale(0.97); }
  .category-card:active .count { background: var(--primary); color: #fff; }
}

/* --- Print Styles --- */
@media print {
  .navbar, .footer, .back-to-top, .cookie-consent { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* --- Active States (tactile feedback) --- */
.btn:active, a:active { opacity: 0.85; transform: scale(0.98); }
.pagination a:active, .footer-social a:active { transform: scale(0.92); }

/* --- Table & Code Block Overflow --- */
table { width: 100%; border-collapse: collapse; overflow-x: auto; display: block; }
@media (min-width: 769px) { table { display: table; } }
pre, code { overflow-x: auto; max-width: 100%; }
pre { padding: 16px; border-radius: var(--radius-md); background: var(--gray-100); }

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
  :root {
    --gray-50: #1c1917;
    --gray-100: #292524;
    --gray-200: #44403c;
    --gray-300: #57534e;
    --gray-400: #a8a29e;
    --gray-500: #a8a29e;
    --gray-600: #d6d3d1;
    --gray-700: #e7e5e4;
    --gray-800: #f5f5f4;
    --gray-900: #fafaf9;
    --primary-50: #312e81;
    --primary-100: #3730a3;
    --primary-200: #4338ca;
  }
  body { background: #1c1917; }
  .card, .navbar, .footer { background: #292524; }
  .navbar { border-bottom-color: #44403c; }
}
