/* ============================================================
   EMERALD PROTOCOL — Light Theme
   Pure white. Deep forest emerald. Inter standard fonts.
   Animated dot-grid hero. Floating particles. Service chips.
   Loads last — overrides all previous themes.
   ============================================================ */

/* ── Design tokens ── */
:root {
  --primary:        #052e16;
  --accent:         #10b981;
  --accent-hover:   #059669;
  --accent-deep:    #065f46;
  --accent-light:   rgba(16, 185, 129, 0.09);
  --accent-vivid:   #34d399;
  --accent-glow:    rgba(16, 185, 129, 0.25);
  --text:           #1f2937;
  --muted:          #6b7280;
  --bg:             #ffffff;
  --bg-alt:         #f9fafb;
  --border:         #e5e7eb;
  --success:        #10b981;
  --error:          #ef4444;
  --shadow-sm:  0 1px 3px rgba(5,46,22,0.06);
  --shadow:     0 4px 14px rgba(5,46,22,0.08);
  --shadow-lg:  0 12px 36px rgba(5,46,22,0.1);
  --shadow-xl:  0 24px 64px rgba(5,46,22,0.13);
  --radius:     0.5rem;
  --radius-lg:  1rem;
  --transition: 0.22s ease;
  --transition-slow: 0.42s ease;
}

/* ── Global base ── */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  background-color: #ffffff !important;
  color: #1f2937 !important;
}

/* Remove grain overlay */
body::after { display: none !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif !important;
  color: #111827 !important;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; }
h2 { color: #111827 !important; }
h3 { color: #1f2937 !important; }
h4 { color: #374151 !important; font-weight: 600; }
p  { color: #6b7280 !important; }
a  { color: var(--accent-deep) !important; }
a:hover { color: var(--accent) !important; }

/* ============================================================
   HERO — Animated Dot Grid
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
}

/* Kill previous theme decorations */
.hero::before,
.hero::after { display: none !important; }
.hero-orb,
.hero-sparks,
.spark { display: none !important; }

/* ── Animated dot grid ── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(16, 185, 129, 0.18) 1.5px, transparent 1.5px);
  background-size: 38px 38px;
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 38px 38px; }
}

/* ── Floating emerald particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  animation: particleRise var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

.p1 { width: 4px; height: 4px; left: 8%;  bottom: -8px; --dur: 7s;  --delay: 0s;    background: var(--accent-vivid); }
.p2 { width: 3px; height: 3px; left: 18%; bottom: -8px; --dur: 9s;  --delay: 1.5s;  border-radius: 50%; }
.p3 { width: 5px; height: 5px; left: 30%; bottom: -8px; --dur: 6.5s;--delay: 0.8s;  background: rgba(16,185,129,0.5); border-radius: 50%; }
.p4 { width: 3px; height: 3px; left: 52%; bottom: -8px; --dur: 10s; --delay: 2.2s;  background: var(--accent-vivid); }
.p5 { width: 4px; height: 4px; left: 65%; bottom: -8px; --dur: 7.5s;--delay: 0.3s;  border-radius: 50%; }
.p6 { width: 3px; height: 3px; left: 75%; bottom: -8px; --dur: 8.5s;--delay: 3s;    background: rgba(16,185,129,0.4); }
.p7 { width: 5px; height: 5px; left: 85%; bottom: -8px; --dur: 6s;  --delay: 1.2s;  border-radius: 50%; background: var(--accent-vivid); }
.p8 { width: 3px; height: 3px; left: 42%; bottom: -8px; --dur: 11s; --delay: 4s;    border-radius: 2px; }

@keyframes particleRise {
  0%   { opacity: 0;   transform: translateY(0)    scale(0.5) rotate(0deg); }
  10%  { opacity: 0.7; transform: translateY(-30px) scale(1)   rotate(45deg); }
  80%  { opacity: 0.4; transform: translateY(-220px) scale(0.8) rotate(180deg); }
  100% { opacity: 0;   transform: translateY(-280px) scale(0.3) rotate(270deg); }
}

/* ── Hero content sits above grid ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* ── Badge: animated live dot ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(16, 185, 129, 0.08) !important;
  color: #065f46 !important;
  border: 1.5px solid rgba(16, 185, 129, 0.22) !important;
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dotLive 1.8s ease-in-out infinite;
}

@keyframes dotLive {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* ── Hero h1 ── */
.hero h1 {
  color: #111827 !important;
  font-size: clamp(2.75rem, 7vw, 5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* Remove em italic from previous dark theme */
.hero h1 em { font-style: normal; }

/* Emerald accented span in h1 */
.hero-accent {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
  background: none !important;
  position: relative;
  display: inline;
}

/* Animated underline on accented phrase */
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-vivid));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes drawLine {
  to { transform: scaleX(1); }
}

/* ── Hero subtitle ── */
.hero-subtitle {
  color: #6b7280 !important;
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  font-weight: 400;
  margin-bottom: 2.25rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Hero actions (button area) ── */
.hero-actions {
  margin-bottom: 0;
}

/* ── Service chips ── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.07);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #065f46;
  white-space: nowrap;
  cursor: default;
  opacity: 0;
  animation: chipReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-chip svg { color: var(--accent); flex-shrink: 0; }

.hero-chip:hover {
  background: rgba(16, 185, 129, 0.13);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.hero-chip:nth-child(1) { animation-delay: 0.5s; }
.hero-chip:nth-child(2) { animation-delay: 0.65s; }
.hero-chip:nth-child(3) { animation-delay: 0.8s; }
.hero-chip:nth-child(4) { animation-delay: 0.95s; }

@keyframes chipReveal {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* ── Hero metrics ── */
.hero-metrics {
  border-top: 1px solid #e5e7eb !important;
  margin-top: 0 !important;
}

.metric-value {
  color: #111827 !important;
  font-family: 'Inter', system-ui !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: #111827 !important;
}

.metric-label {
  color: #9ca3af !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* CTA primary glow pulse */
@keyframes emeraldPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(16,185,129,0.28); }
  50%       { box-shadow: 0 4px 32px rgba(16,185,129,0.55); }
}

.hero-actions .btn-primary {
  animation: emeraldPulse 2.8s ease-in-out infinite !important;
}

.hero-actions .btn-primary:hover {
  animation: none !important;
}

/* ============================================================
   NAVBAR — Frosted white glass
   ============================================================ */
.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9) !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 0 #e5e7eb, 0 4px 20px rgba(5,46,22,0.06) !important;
}

.navbar-brand {
  color: #111827 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-brand span {
  color: var(--accent) !important;
  font-weight: 500;
  font-style: normal !important;
  font-size: inherit;
  opacity: 1;
}

.navbar-brand .brand-name {
  color: rgba(100, 116, 139, 0.6) !important;
  font-weight: 400 !important;
}

.navbar-nav a {
  color: #4b5563 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--accent-deep) !important;
  background-color: rgba(16, 185, 129, 0.07) !important;
}

.mobile-menu {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.mobile-menu ul li a {
  color: #374151 !important;
  font-family: 'Inter', sans-serif !important;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--accent-deep) !important;
  background: rgba(16, 185, 129, 0.07) !important;
}

.mobile-menu-divider { background: #e5e7eb !important; }
.hamburger span { background: #374151 !important; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-alt {
  background-color: #f9fafb !important;
}

.section-heading h2 {
  color: #111827 !important;
  font-family: 'Inter', sans-serif !important;
}

.section-heading p {
  color: #6b7280 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Animated emerald line decoration on section headings */
.section-heading::before {
  content: '' !important;
  display: block;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-vivid));
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  animation: lineBreath 3.5s ease-in-out infinite alternate;
}

@keyframes lineBreath {
  from { width: 30px; opacity: 0.65; }
  to   { width: 60px; opacity: 1; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: #f9fafb !important;
  position: relative;
}

#about::before { display: none !important; }

.about-avatar {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(5,150,105,0.08)) !important;
  border: 2px solid rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 0 0 6px rgba(16,185,129,0.06), 0 12px 40px rgba(5,46,22,0.1) !important;
  animation: avatarGlow 5s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(16,185,129,0.06),  0 12px 40px rgba(5,46,22,0.10); }
  50%       { box-shadow: 0 0 0 14px rgba(16,185,129,0.03), 0 16px 52px rgba(5,46,22,0.14); }
}

.expertise-tag {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #065f46 !important;
  border: 1.5px solid rgba(16, 185, 129, 0.18) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.expertise-tag:hover {
  background: rgba(16, 185, 129, 0.14) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.15);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 12px rgba(5,46,22,0.06) !important;
  position: relative;
  overflow: hidden;
}

/* Numbered corner decoration */
.service-card:first-child::after,
.service-card:last-child::after {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(16, 185, 129, 0.06);
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  z-index: 0;
}

.service-card:first-child::after { content: '01'; }
.service-card:last-child::after  { content: '02'; }

/* Override blog-card::after from radiant motion */
.blog-card::after { display: none !important; }
.service-card::after { display: block !important; }

.service-card::before {
  background: linear-gradient(90deg, #10b981, #34d399, #059669) !important;
}

.service-card:hover {
  border-color: rgba(16, 185, 129, 0.28) !important;
  box-shadow:
    0 16px 48px rgba(5,46,22,0.12),
    0 0 0 1px rgba(16, 185, 129, 0.1) !important;
}

.service-card h3 { color: #111827 !important; font-family: 'Inter', sans-serif !important; }
.service-card p  { color: #6b7280 !important; }

.service-card .service-icon {
  background: rgba(16, 185, 129, 0.09) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  color: var(--accent) !important;
}

/* Override icon wiggle from radiant motion with emerald version */
.service-card:hover .service-icon {
  background: rgba(16, 185, 129, 0.15) !important;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.06);
  animation: iconPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.2) rotate(-5deg); }
  70%  { transform: scale(1.1) rotate(3deg); }
  100% { transform: scale(1.08); }
}

.service-features li { color: #6b7280 !important; }
.service-features li::before { color: var(--accent) !important; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 8px rgba(5,46,22,0.05) !important;
}

.blog-card:hover {
  border-color: rgba(16, 185, 129, 0.22) !important;
  box-shadow: 0 10px 36px rgba(5,46,22,0.1) !important;
}

.blog-card h3    { color: #111827 !important; font-family: 'Inter', sans-serif !important; }
.blog-card:hover h3 { color: var(--accent-deep) !important; }
.blog-card p     { color: #6b7280 !important; }
.blog-card-date  { color: #9ca3af !important; }
.blog-card-image { background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important; }
.blog-card-link  { color: var(--accent-deep) !important; }

/* Category badges */
.category-badge.blog       { background: #dbeafe !important; color: #1d4ed8 !important; border: none !important; }
.category-badge.case-study { background: #d1fae5 !important; color: #065f46 !important; border: none !important; }
.category-badge.automation { background: #fce7f3 !important; color: #9d174d !important; border: none !important; }
.category-badge.audit      { background: #fef3c7 !important; color: #92400e !important; border: none !important; }
.category-badge.insights   { background: #ede9fe !important; color: #5b21b6 !important; border: none !important; }

/* ============================================================
   CONTACT CTA
   ============================================================ */
#contact-cta {
  background: linear-gradient(135deg, #052e16 0%, #064e3b 50%, #022c22 100%) !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}

#contact-cta::before {
  display: block !important;
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(52, 211, 153, 0.12) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridDrift 30s linear infinite;
}

#contact-cta h2 { color: #ffffff !important; font-family: 'Inter', sans-serif !important; }
#contact-cta p  { color: rgba(167, 243, 208, 0.75) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { font-family: 'Inter', sans-serif !important; }

.btn-primary {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3) !important;
}

.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(16,185,129,0.45) !important;
  animation: none !important;
}

.btn-outline {
  color: var(--accent-deep) !important;
  border-color: rgba(16,185,129,0.4) !important;
  background: transparent !important;
}

.btn-outline:hover {
  background: rgba(16,185,129,0.08) !important;
  border-color: var(--accent) !important;
  color: var(--accent-deep) !important;
}

.btn-outline-white {
  color: rgba(255,255,255,0.9) !important;
  border-color: rgba(167,243,208,0.4) !important;
}

.btn-outline-white:hover {
  background: rgba(167,243,208,0.1) !important;
  border-color: rgba(167,243,208,0.7) !important;
  color: #fff !important;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
}

.lang-switcher a {
  color: #6b7280 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.lang-switcher a:hover:not(.active) {
  color: #111827 !important;
  background: rgba(0,0,0,0.05) !important;
}

.lang-switcher a.active {
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form-wrapper {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 40px rgba(5,46,22,0.08) !important;
}

.form-label { color: #111827 !important; font-family: 'Inter', sans-serif !important; font-weight: 600; }

.form-control {
  background: #ffffff !important;
  border: 1.5px solid #d1d5db !important;
  color: #0f172a !important;
  font-family: 'Inter', sans-serif !important;
}

.form-control::placeholder { color: #9ca3af !important; }

.form-control:focus {
  background: #ffffff !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #052e16 !important;
  border-top: none !important;
}

.site-footer .footer-bottom {
  border-top-color: rgba(255,255,255,0.1) !important;
}

/* Footer animated line */
.footer-brand::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-vivid));
  margin-top: 1rem;
  border-radius: 1px;
  animation: footerLine 4s ease-in-out infinite alternate;
}

@keyframes footerLine {
  from { width: 24px; opacity: 0.5; }
  to   { width: 52px; opacity: 1; }
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-success { background: #d1fae5 !important; color: #065f46 !important; border: 1px solid #6ee7b7 !important; }
.alert-error   { background: #fee2e2 !important; color: #991b1b !important; border: 1px solid #fca5a5 !important; }
.alert-warning { background: #fef3c7 !important; color: #92400e !important; border: 1px solid #fde68a !important; }

/* ============================================================
   PAGINATION & FILTERS
   ============================================================ */
.page-link {
  background: #ffffff !important;
  border-color: #e5e7eb !important;
  color: #6b7280 !important;
  font-family: 'Inter', sans-serif !important;
}

.page-link:hover {
  border-color: var(--accent) !important;
  color: var(--accent-deep) !important;
  background: rgba(16,185,129,0.07) !important;
}

.page-link.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

.filter-tab {
  background: #ffffff !important;
  border-color: #e5e7eb !important;
  color: #6b7280 !important;
  font-family: 'Inter', sans-serif !important;
}

.filter-tab:hover { border-color: rgba(16,185,129,0.35) !important; color: var(--accent-deep) !important; }
.filter-tab.active { background: var(--accent) !important; border-color: var(--accent) !important; color: #ffffff !important; font-weight: 600; }

/* ============================================================
   PROSE
   ============================================================ */
.prose { color: #374151 !important; }
.prose h1, .prose h2, .prose h3, .prose h4 { color: #111827 !important; font-family: 'Inter', sans-serif !important; }
.prose p, .prose li { color: #374151 !important; }
.prose code { background: #f0fdf4 !important; border-color: #bbf7d0 !important; color: #065f46 !important; }
.prose pre  { background: #052e16 !important; border: none !important; }
.prose blockquote { border-left-color: var(--accent) !important; background: rgba(16,185,129,0.05) !important; }
.prose blockquote p { color: #374151 !important; }
.prose th { background: #f9fafb !important; color: #111827 !important; }
.prose th, .prose td { border-color: #e5e7eb !important; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
  background: #ffffff !important;
  border-color: #e5e7eb !important;
  box-shadow: 0 2px 10px rgba(5,46,22,0.06) !important;
}

.card:hover {
  box-shadow: 0 10px 32px rgba(5,46,22,0.1) !important;
}

/* ============================================================
   SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f9fafb; }
::-webkit-scrollbar-thumb { background: rgba(16,185,129,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(16,185,129,0.45); }
::selection { background: rgba(16,185,129,0.15); color: #052e16; }

/* ============================================================
   MISC
   ============================================================ */
.skip-link { background: var(--accent) !important; color: #ffffff !important; }
.breadcrumb, .breadcrumb a { color: #6b7280 !important; }
.breadcrumb a:hover { color: var(--accent-deep) !important; }
.breadcrumb-sep { color: #d1d5db !important; }

/* ── Responsive: mobile hero chips ── */
@media (max-width: 640px) {
  .hero-chips { gap: 0.5rem; }
  .hero-chip { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
  .hero-grid { background-size: 28px 28px; }
}
