/* ============================================================
   Integration Collective (IC)
   Southern California's Skilled Trades Community

   Palette:
     --black:        #0a0a0a
     --steel-dark:   #111418
     --steel:        #1c2128
     --steel-mid:    #252d38
     --steel-light:  #2e3a47
     --yellow:       #ffd200
     --yellow-dim:   #c9a800
     --orange:       #ff6b00
     --orange-dim:   #cc5500
     --blue:         #00aaff
     --blue-dim:     #0077cc
     --white:        #ffffff
     --off-white:    #f0f2f5
     --text:         #e8eaed
     --text-mid:     #9aa3b0
     --text-dim:     #5c6472
     --border:       #2a3340
     --border-light: #3a4555
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --steel-dark:  #111418;
  --steel:       #1c2128;
  --steel-mid:   #252d38;
  --steel-light: #2e3a47;
  --yellow:      #ffd200;
  --yellow-dim:  #c9a800;
  --orange:      #ff6b00;
  --orange-dim:  #cc5500;
  --blue:        #00aaff;
  --blue-dim:    #0077cc;
  --white:       #ffffff;
  --off-white:   #f0f2f5;
  --text:        #e8eaed;
  --text-mid:    #9aa3b0;
  --text-dim:    #5c6472;
  --border:      #2a3340;
  --border-light:#3a4555;
  --green:       #00c97a;
  --radius:      8px;
  --shadow:      0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.6);
  --glow-yellow: 0 0 20px rgba(255,210,0,0.25);
  --glow-orange: 0 0 20px rgba(255,107,0,0.25);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--steel-dark);
  color: var(--text);
  line-height: 1.6;
}


a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-yellow  { background: var(--yellow); color: var(--black); }
.tag-orange  { background: var(--orange); color: var(--white); }
.tag-blue    { background: var(--blue); color: var(--black); }
.tag-steel   { background: var(--steel-light); color: var(--text-mid); border: 1px solid var(--border-light); }
.tag-green   { background: var(--green); color: var(--black); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: #ffe033; box-shadow: var(--glow-yellow); transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #ff8533; box-shadow: var(--glow-orange); transform: translateY(-1px); }

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-outline-yellow:hover { background: var(--yellow); color: var(--black); box-shadow: var(--glow-yellow); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-steel {
  background: var(--steel-light);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-steel:hover { background: var(--steel-mid); border-color: var(--yellow); color: var(--yellow); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ── TOP BANNER ── */
.top-banner {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 200;
  overflow: hidden;
  white-space: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
.top-banner-wrap {
  background: var(--yellow);
}
.top-banner a { color: var(--black); text-decoration: underline; }
.top-banner-scroll {
  display: inline-block;
  animation: banner-scroll 20s linear infinite;
}
@keyframes banner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* IC LOGO */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 92px; width: auto; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-name span, .brand-c { color: var(--yellow); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin-left: 12px;
}
.header-nav a,
.header-nav .nav-drop > a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--steel-mid);
  border: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav .nav-drop > a:hover { color: var(--white); background: var(--steel-light); border-color: var(--border-light); }
.header-nav a.nav-pill-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-weight: 700;
}
.header-nav a.nav-pill-yellow:hover {
  background: #e6be00;
  border-color: #e6be00;
  color: var(--black);
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav a.nav-mobile-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius);
  border-bottom: none;
  text-align: center;
}
.mobile-nav a.nav-mobile-cta:hover { color: var(--black); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 16px 24px 18px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.hero-text .section-label { margin-bottom: 16px; }
.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-text h1 span { color: var(--yellow); }
.hero-tagline {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-video-card {
  display: flex;
  flex-direction: column;
}
/* Phone-shaped video container (portrait 9:16) */
.phone-video-wrap {
  border: 2px solid var(--yellow);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: #000;
  position: relative;
}
/* ── SECTION CARDS (Homepage) ── */
.services-section {
  padding: 80px 0;
  background: var(--steel-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border-light);
  background: var(--steel-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card.orange-accent::before { background: var(--orange); }
.service-card.blue-accent::before { background: var(--blue); }
.service-card.green-accent::before { background: var(--green); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .btn { align-self: flex-start; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--steel-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-grid .stat {
  text-align: center;
  padding: 8px;
  border-right: 1px solid var(--border);
}
.stats-grid .stat:last-child { border-right: none; }
.stats-grid .stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-grid .stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── MEMBERSHIP SECTION ── */
.membership-section {
  padding: 80px 0;
  background: var(--steel);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.plan-card {
  background: var(--steel-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  position: relative;
}
.plan-card.featured {
  border-color: var(--yellow);
  box-shadow: var(--glow-yellow);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.plan-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-mid); }
.plan-billing { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 10px; }
.plan-features {
  list-style: none;
  margin-bottom: 10px;
  text-align: left;
}
.plan-features li {
  padding: 3px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li.disabled { color: var(--text-dim); }
.plan-features li.disabled::before { content: '–'; color: var(--text-dim); }

/* ── DIRECTORY / FINDER ── */
.finder-hero {
  background: var(--steel-dark);
  padding: 56px 0 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.finder-hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.finder-hero p { color: var(--text-mid); font-size: 1rem; margin-bottom: 32px; }

.search-panel {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: start;
}
.search-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.search-field input,
.search-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--steel-dark);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.search-field input:focus,
.search-field select:focus { border-color: var(--yellow); }
.search-field select option { background: var(--steel-dark); }

/* ── Trade Grid Dropdown ── */
.trade-trigger {
  width: 100%;
  padding: 12px 16px;
  background: var(--steel-dark);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.93rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
}
.trade-trigger:hover,
.trade-trigger:focus { border-color: var(--yellow); outline: none; }

.trade-grid-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 680px;
  background: var(--steel);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 28px;
  gap: 28px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6px;
}
.trade-grid-panel.open { display: grid; }

.trade-grid-col h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.trade-grid-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 3px 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  background: none;
  border: none;
  border-radius: 0;
}
.trade-grid-col a:hover { color: var(--yellow); background: none; border: none; }
.trade-grid-col a.selected { color: var(--yellow); font-weight: 700; }

@media (max-width: 768px) {
  .trade-grid-panel { min-width: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trade-grid-panel { grid-template-columns: 1fr; }
}

/* ── TRAINING CALENDAR ── */
.training-grid { display: flex; flex-direction: column; gap: 10px; }
.training-card {
  display: flex;
  gap: 16px;
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  align-items: flex-start;
}
.training-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  background: var(--steel-mid);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 8px;
  flex-shrink: 0;
}
.training-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.training-day {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.training-details { flex: 1; }
.training-details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.training-details p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 10px;
}
.training-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}
@media (max-width: 640px) {
  .training-card { flex-direction: column; }
}

/* ── ELECTRICIAN PROFILE CARD ── */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 40px 0;
}
.profile-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.profile-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.profile-card-header {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.profile-avatar {
  width: 56px; height: 56px;
  background: var(--steel-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}
.profile-name-row h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.profile-name-row .stars {
  color: var(--yellow);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.profile-name-row .location {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.profile-card-body { padding: 16px 20px; }
.profile-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.profile-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.profile-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

/* ── BOARD (GIG / LICENSE) ── */
.board-hero {
  background: var(--steel-dark);
  padding: 56px 0 16px;
}
.board-hero h1 { font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.board-hero p { color: var(--text-mid); max-width: 680px; line-height: 1.7; margin-bottom: 8px; }
.disclaimer-box {
  background: rgba(255,210,0,0.08);
  border: 1px solid rgba(255,210,0,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 780px;
}
.disclaimer-box .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.board-tabs {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 0;
}
.board-tab {
  padding: 10px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--steel);
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
}
.board-tab.active {
  background: var(--steel-mid);
  color: var(--yellow);
  border-color: var(--border-light);
}

.board-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--steel-mid);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.board-filters {
  background: var(--steel);
  border-right: 1px solid var(--border);
  padding: 24px;
}
.board-filters h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.filter-group { margin-bottom: 24px; }
.filter-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-option input[type="checkbox"] { accent-color: var(--yellow); }
.filter-option label { font-size: 0.85rem; color: var(--text-mid); cursor: pointer; }

.board-listings { padding: 24px; }
.board-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.board-toolbar span { font-size: 0.85rem; color: var(--text-dim); }
.board-toolbar select {
  background: var(--steel);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: inherit;
}

.listing-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: all 0.2s;
  cursor: pointer;
}
.listing-card:hover {
  border-color: var(--yellow);
  background: var(--steel-light);
}
.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.listing-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.listing-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.listing-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  white-space: nowrap;
}
.listing-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.listing-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── EDUCATION / C-10 ── */
.edu-hero {
  background: var(--black);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.edu-hero::after {
  content: 'C-10';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16rem;
  font-weight: 900;
  color: rgba(255,210,0,0.04);
  line-height: 1;
  pointer-events: none;
}
.edu-hero h1 { font-size: 2.6rem; font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.edu-hero h1 span { color: var(--yellow); }
.edu-hero p { color: var(--text-mid); max-width: 640px; line-height: 1.7; font-size: 1rem; }

.pathway-section { padding: 72px 0; background: var(--steel-dark); }
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
.pathway-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  z-index: 0;
}
.pathway-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--steel-mid);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
  position: relative;
  z-index: 2;
  box-shadow: var(--glow-yellow);
}
.pathway-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pathway-step p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.resource-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}
.resource-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.resource-card .resource-icon { font-size: 2rem; margin-bottom: 14px; }
.resource-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.resource-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.resource-card .resource-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

/* ── MEMBERSHIP PAGE ── */
.membership-hero {
  background: var(--black);
  padding: 10px 0 8px;
  text-align: center;
}
.membership-hero h1 { font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 2px; }
.membership-hero p { color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.3; font-size: 0.82rem; }

/* ── ABOUT / CONTACT ── */
.page-hero {
  background: var(--black);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 2.6rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); max-width: 640px; font-size: 1rem; line-height: 1.7; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.about-text h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-img {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.contact-form {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--steel-dark);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.93rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group select option { background: var(--steel-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { font-size: 1.3rem; color: white; font-weight: 800; margin-bottom: 12px; }
.footer-brand .logo-name span { color: var(--yellow); }
.footer-brand p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-mid); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.footer-bottom a { color: var(--text-mid); }
.footer-bottom a:hover { color: var(--yellow); }

/* ── RESPONSIVE ── */
/* ── Mike Rowe / Partners Section ────────────────────── */
.partners-section { background: var(--steel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.partner-quote {
  background: var(--steel-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.partner-quote blockquote { font-size: 0.95rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.partner-quote cite { font-size: 0.8rem; color: var(--text-dim); font-style: normal; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .hero-video-card { max-width: 560px; }
  .services-grid { grid-template-columns: 1fr; }
  .pathway-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pathway-steps::before { display: none; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-number { font-size: 1.6rem; }
  .stats-grid .stat-label { font-size: 0.7rem; }
  .board-layout { grid-template-columns: 1fr; }
  .board-filters { border-right: none; border-bottom: 1px solid var(--border); max-height: 200px; overflow-y: auto; }
  .phone-video-wrap { max-height: 400px; }
  .search-panel { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; order: -1; }
  .nav-drop-menu { min-width: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .nav-drop-menu { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-number { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .search-panel { grid-template-columns: 1fr; }
  .phone-video-wrap { max-height: 340px; }
}

/* Scroll-margin so #signin / #signup-form clear the sticky header */
#signin { scroll-margin-top: 140px; }
#signup-form { scroll-margin-top: 140px; }
