@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core Colors */
  --ink: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --bg: linear-gradient(135deg, #fdfdfd 0%, #f0f0f0 100%);
  --bg-tint: #EFF6FF;
  --surface: #FFFFFF;

  /* Brand Colors & Gradients */
  --brand: #2563EB;
  --brand-hover: #1D4ED8;
  --brand-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);

  /* Category Accents */
  --cat-creative: #8B5CF6;
  --cat-tech: #3B82F6;
  --cat-business: #F59E0B;
  --cat-service: #10B981;
  --cat-growth: #EC4899;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 8px 16px rgba(37, 99, 235, 0.25);

  /* Animations */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #F8FAFC;
    --muted: #94A3B8;
    --border: #334155;
    --bg: #0B1120;
    --bg-tint: #1E293B;
    --surface: #0F172A;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.6);
    --shadow-brand: 0 8px 16px rgba(37, 99, 235, 0.15);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  /*background: var(--surface);*/
  border-radius: 0.5rem;
  /*box-shadow: var(--shadow-md);
  border: 1px solid var(--border);*/
}
.site-brand {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 0.4rem;
  transition: all var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: var(--bg-tint);
}

.quote-banner {
  background: #111827;
  color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.95rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.with-ad {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 1.5rem;
  align-items: start;
}

.main-column {
  min-width: 0;
}

.ad-column {
  position: sticky;
  top: 1rem;
}

.ad-placeholder {
  min-height: 640px;
  border-radius: 0.5rem;
  background: #FACC15;
  border: 1px solid #EAB308;
  color: #713F12;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.hub-hero-image {
  min-height: 320px;
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.02)),
    url('banner.avif');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.hub-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.05rem;
  border-radius: 0.45rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-brand);
}

.button.secondary {
  background: var(--surface);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb a:hover {
  color: var(--ink);
}

/* Typography */
h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: 0;
  max-width: 800px;
  color: var(--ink);
}
h2 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4rem 0 1.5rem;
}
p.lead {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 2.5rem;
}

/* Category Badge */
.cat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

/* Cards & Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
a.card {
  display: block;
  background: var(--surface);
  /*border: 1px solid var(--border);*/
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
a.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}
a.row:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.row-name {
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.row-meta {
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: capitalize;
  font-weight: 500;
}

/* Interactive Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
a.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}
a.chip:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--bg-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* CTA Buttons */
.cta {
  background: var(--brand-gradient);
  color: #FFFFFF;
  border: none;
  border-radius: 99px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-brand);
  transition: all var(--transition-smooth);
}
.cta:hover {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px) scale(1.02);
}
.cta:active {
  transform: translateY(0) scale(0.98);
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 0;
}
.stat-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 6.5rem;
}
.stat-ring-label {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

/* Business Path */
.path {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 980px) {
  .with-ad {
    grid-template-columns: 1fr;
  }

  .ad-column {
    position: static;
  }

  .ad-placeholder {
    min-height: 120px;
    writing-mode: horizontal-tb;
  }
}

@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hub-hero {
    grid-template-columns: 1fr;
  }

  .hub-hero-image {
    min-height: 220px;
  }
}
.path .arrow {
  color: var(--muted);
  font-weight: 600;
}

/* Toggle Chips */
.chip-toggle {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  margin: 0 0.5rem 0.75rem 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.chip-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.chip-toggle.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-md);
}

/* Feature Checklist */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.text-muted {
  color: var(--muted);
}

.small-note {
  font-size: 0.8125rem;
  margin-top: 2rem;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.rich-text {
  max-width: 760px;
}

.rich-text p {
  margin: 0 0 1rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

/* =========================================
   Modern Form Elements (Select, Range, Checkbox)
   ========================================= */

/* --- Select Box --- */
select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

select:hover,
select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: var(--shadow-md);
}

/* --- Range Slider --- */
input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 0.5rem 0 1.5rem 0;
  cursor: pointer;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.375rem;
  background: var(--border);
  border-radius: 99px;
  transition: all var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background: var(--brand);
  margin-top: -0.5625rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--surface);
  transition: all var(--transition-fast);
}

input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  background: var(--brand-hover);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 0.375rem;
  background: var(--border);
  border-radius: 99px;
}

input[type="range"]::-moz-range-thumb {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  background: var(--brand-hover);
}

/* --- Custom Checkbox (.skill-check) --- */
.skill-check {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.skill-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--surface);
  transition: all var(--transition-fast);
  display: grid;
  place-content: center;
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.skill-check input[type="checkbox"]::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFFFFF;
  transform-origin: center;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.skill-check input[type="checkbox"]:checked {
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.skill-check input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.skill-check input[type="checkbox"]:hover {
  border-color: var(--brand);
}


.site-brand img {
  height: 3em;
  width: auto;
}

/* Update base card styling for flexbox layout and icons */
.grid a.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  /*border: 1px solid var(--border);*/
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.grid a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Base icon container setup via pseudo-element */
.grid a.card::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
  transition: all var(--transition-smooth);
}

/* =========================================
   1. Admin Grid (1st grid)
   ========================================= */
.grid:nth-of-type(1) a.card::before {
  background-color: rgba(236, 72, 153, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC4899' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}
.grid:nth-of-type(1) a.card:hover { border-color: var(--cat-growth); }
.grid:nth-of-type(1) a.card:hover::before {
  background-color: var(--cat-growth);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* =========================================
   2. Business Grid (2nd grid)
   ========================================= */
.grid:nth-of-type(2) a.card::before {
  background-color: rgba(245, 158, 11, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E");
}
.grid:nth-of-type(2) a.card:hover { border-color: var(--cat-business); }
.grid:nth-of-type(2) a.card:hover::before {
  background-color: var(--cat-business);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E");
}

/* =========================================
   3. Creative Grid (3rd grid)
   ========================================= */
.grid:nth-of-type(3) a.card::before {
  background-color: rgba(139, 92, 246, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
}
.grid:nth-of-type(3) a.card:hover { border-color: var(--cat-creative); }
.grid:nth-of-type(3) a.card:hover::before {
  background-color: var(--cat-creative);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E");
}

/* =========================================
   4. Education Grid (4th grid)
   ========================================= */
.grid:nth-of-type(4) a.card::before {
  background-color: rgba(59, 130, 246, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E");
}
.grid:nth-of-type(4) a.card:hover { border-color: var(--cat-tech); }
.grid:nth-of-type(4) a.card:hover::before {
  background-color: var(--cat-tech);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10v6M2 10l10-5 10 5-10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E");
}

/* =========================================
   5. Health Grid (5th grid)
   ========================================= */
.grid:nth-of-type(5) a.card::before {
  background-color: rgba(16, 185, 129, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}
.grid:nth-of-type(5) a.card:hover { border-color: var(--cat-service); }
.grid:nth-of-type(5) a.card:hover::before {
  background-color: var(--cat-service);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}

/* =========================================
   6. Legal Grid (6th grid)
   ========================================= */
.grid:nth-of-type(6) a.card::before {
  background-color: rgba(245, 158, 11, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='M7 21h10'/%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/%3E%3C/svg%3E");
}
.grid:nth-of-type(6) a.card:hover { border-color: var(--cat-business); }
.grid:nth-of-type(6) a.card:hover::before {
  background-color: var(--cat-business);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3E%3Cpath d='M7 21h10'/%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/%3E%3C/svg%3E");
}

/* =========================================
   7. Marketing Grid (7th grid)
   ========================================= */
.grid:nth-of-type(7) a.card::before {
  background-color: rgba(236, 72, 153, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC4899' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 18-5v12L3 14v-3z'/%3E%3Cpath d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/%3E%3C/svg%3E");
}
.grid:nth-of-type(7) a.card:hover { border-color: var(--cat-growth); }
.grid:nth-of-type(7) a.card:hover::before {
  background-color: var(--cat-growth);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 18-5v12L3 14v-3z'/%3E%3Cpath d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/%3E%3C/svg%3E");
}

/* =========================================
   8. Real Estate Grid (8th grid)
   ========================================= */
.grid:nth-of-type(8) a.card::before {
  background-color: rgba(16, 185, 129, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}
.grid:nth-of-type(8) a.card:hover { border-color: var(--cat-service); }
.grid:nth-of-type(8) a.card:hover::before {
  background-color: var(--cat-service);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

/* =========================================
   9. Science Grid (9th grid)
   ========================================= */
.grid:nth-of-type(9) a.card::before {
  background-color: rgba(139, 92, 246, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2'/%3E%3Cpath d='M8.5 2h7'/%3E%3Cpath d='M7 16h10'/%3E%3C/svg%3E");
}
.grid:nth-of-type(9) a.card:hover { border-color: var(--cat-creative); }
.grid:nth-of-type(9) a.card:hover::before {
  background-color: var(--cat-creative);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2'/%3E%3Cpath d='M8.5 2h7'/%3E%3Cpath d='M7 16h10'/%3E%3C/svg%3E");
}

/* =========================================
   10. Tech Grid (10th grid)
   ========================================= */
.grid:nth-of-type(10) a.card::before {
  background-color: rgba(59, 130, 246, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
}
.grid:nth-of-type(10) a.card:hover { border-color: var(--cat-tech); }
.grid:nth-of-type(10) a.card:hover::before {
  background-color: var(--cat-tech);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
}

/* =========================================
   11. Trades Grid (11th grid)
   ========================================= */
.grid:nth-of-type(11) a.card::before {
  background-color: rgba(16, 185, 129, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}
.grid:nth-of-type(11) a.card:hover { border-color: var(--cat-service); }
.grid:nth-of-type(11) a.card:hover::before {
  background-color: var(--cat-service);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

/* =========================================
   12. Monetization Models Grid (12th grid)
   Uses a distinct layout/icon (chart/coins theme)
   ========================================= */
.grid:nth-of-type(12) a.card::before {
  background-color: rgba(37, 99, 235, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}
.grid:nth-of-type(12) a.card:hover { border-color: var(--brand); }
.grid:nth-of-type(12) a.card:hover::before {
  background-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'/%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}


/* Calculator */
.calc-form { background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px; margin-bottom:24px; }
.field-label { font-size:12.5px; font-weight:600; color:var(--muted); margin: 18px 0 8px; }
.field-label:first-child { margin-top:0; }
select { width:100%; padding:10px 12px; border-radius:8px; border:1px solid var(--border); font-size:14px; }
input[type="range"] { width:100%; }
.cta { background: var(--brand); color:#fff; border:none; border-radius:6px; padding:12px 20px;
        font-size:14.5px; font-weight:600; cursor:pointer; margin-top:20px; font-family:'Inter',sans-serif; }
.stat-row { display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.stat-box { flex:1; min-width:120px; background:var(--bg); border-radius:8px; padding:12px 14px; }
.stat-box-label { font-size:11.5px; color:var(--muted); }
.stat-box-value { font-family:'Sora',sans-serif; font-weight:700; font-size:18px; margin-top:4px; }
.chart-card { background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px; }

/* Compare */
.compare-form { background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px; margin-bottom:24px; }
.cta { background: var(--brand); color:#fff; border:none; border-radius:6px; padding:12px 20px;
        font-size:14.5px; font-weight:600; cursor:pointer; margin-top:16px; font-family:'Inter',sans-serif; }
.chart-card { background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px; margin-bottom:24px; text-align:center; }
table { border-collapse:collapse; width:100%; background:#fff; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
th, td { text-align:left; padding:11px 14px; font-size:13.5px; border-bottom:1px solid #EEF0F6; }
th { color:var(--muted); font-size:12px; font-weight:600; background:var(--bg); }
td.label { color:var(--muted); font-size:12.5px; white-space:nowrap; }

/* Explorer */
.explorer-form { background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px; margin-bottom:24px; }
.field-label { font-size:12.5px; font-weight:600; color:var(--muted); margin: 18px 0 8px; }
.field-label:first-child { margin-top:0; }
select { width:100%; padding:10px 12px; border-radius:8px; border:1px solid var(--border); font-size:14px; }
.skill-check { margin: 0 14px 8px 0; font-size:13.5px; }
.slider-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:18px; }
input[type="range"] { width:100%; }
.cta { background: var(--brand); color:#fff; border:none; border-radius:6px; padding:12px 20px;
        font-size:14.5px; font-weight:600; cursor:pointer; margin-top:20px; font-family:'Inter',sans-serif; }
.reasons { list-style:none; margin:12px 0 0; padding:0; display:flex; flex-direction:column; gap:4px; }
.reasons li { font-size:12.5px; color:var(--muted); }
.result-card { background:#fff; border:1px solid var(--border); border-radius:8px; padding:16px 20px; margin-bottom:12px; }
.path { margin-top:12px; padding-top:12px; border-top:1px solid #EEF0F6; font-size:12.5px; color:var(--muted); }

/* footer */
.site-footer {
  margin-top: 56px;
  padding: 40px 0 28px;
  border-top: 1px solid var(--border, #E5E7EB);
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.footer-col {
  min-width: 140px;
}
.footer-col-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink, #111827);
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--muted, #6B7280);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--brand, #2563EB);
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #E5E7EB);
  font-size: 12px;
  color: var(--muted, #6B7280);
}
@media (max-width: 640px) {
  .footer-columns { gap: 24px 32px; }
  .footer-col { min-width: 45%; }
}
