/* =====================================================
   CyberMap — Global Stylesheet
   Dark cyber theme: #0a0e1a background, #00ff88 accent
   ===================================================== */

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

:root {
  --bg-primary:    #0a0e1a;
  --bg-secondary:  #0f1628;
  --bg-card:       #131929;
  --bg-card-hover: #1a2235;
  --border:        #1e2d45;
  --border-bright: #2a3f5f;
  --accent:        #00ff88;
  --accent-dim:    #00cc6a;
  --accent-glow:   rgba(0,255,136,.18);
  --accent2:       #00b4ff;
  --accent2-dim:   #0090cc;
  --accent3:       #ff6b35;
  --text-primary:  #e8edf5;
  --text-secondary:#8899aa;
  --text-muted:    #556677;
  --font-mono:     'JetBrains Mono', 'Fira Code', monospace;
  --font-sans:     'Inter', system-ui, sans-serif;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 4px 24px rgba(0,0,0,.5);
  --shadow-glow:   0 0 32px rgba(0,255,136,.12);
  --transition:    .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled { background: rgba(10,14,26,.97); box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.nav-brand { display: flex; align-items: center; gap: .6rem; }
.nav-logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem; color: #0a0e1a;
}
.nav-name { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--text-primary); letter-spacing: .04em; }
.nav-name span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  padding: .45rem .85rem; border-radius: 6px;
  font-size: .875rem; color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: var(--border); }
.nav-links a.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-ghost {
  padding: .45rem 1rem; border-radius: 6px; font-size: .875rem;
  color: var(--text-secondary); border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-bright); }
.btn-primary {
  padding: .5rem 1.2rem; border-radius: 6px; font-size: .875rem; font-weight: 600;
  background: var(--accent); color: #0a0e1a;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--accent-dim); box-shadow: var(--shadow-glow); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-secondary); border-radius: 1px; transition: var(--transition); }

/* ── Nav Dropdown ─────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: .25rem;
  padding: .45rem .85rem; border-radius: 6px;
  font-size: .875rem; color: var(--text-secondary);
  cursor: pointer; transition: color var(--transition), background var(--transition);
  user-select: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--text-primary); background: var(--border); }
.nav-dropdown-trigger.active { color: var(--accent); }
.nav-dropdown-caret { font-size: .6rem; transition: transform .2s; display: inline-block; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.open   .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: .4rem;
  min-width: 200px; z-index: 1100;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open   .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .85rem; border-radius: 7px;
  font-size: .85rem; color: var(--text-secondary);
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--border); color: var(--text-primary); }
.nav-dropdown-menu a.active { color: var(--accent); }
.nav-dropdown-menu-icon { font-size: 1rem; flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: .35rem .5rem; }
.nav-dropdown-label {
  font-size: .62rem; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted); padding: .4rem .85rem .15rem;
}

/* ── User Chip ──────────────────────────────── */
.user-menu-wrap { position: relative; }
.user-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: .35rem .75rem .35rem .35rem;
  cursor: pointer; transition: border-color .18s;
}
.user-chip:hover { border-color: var(--border-bright); }
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #0a0e1a;
  font-family: var(--font-mono); flex-shrink: 0;
}
.user-chip-name { font-size: .82rem; font-weight: 600; color: var(--text-primary); max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-chip-caret { font-size: .6rem; color: var(--text-muted); }

.user-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: .4rem; min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  z-index: 1100;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.user-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.user-dropdown-header {
  padding: .6rem .85rem .75rem; border-bottom: 1px solid var(--border); margin-bottom: .35rem;
}
.user-dropdown-name  { font-weight: 700; font-size: .9rem; color: var(--text-primary); display: block; }
.user-dropdown-email { font-size: .72rem; color: var(--text-muted); display: block; margin-top: .1rem; word-break: break-all; }
.user-dropdown-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .85rem; border-radius: 7px;
  font-size: .84rem; color: var(--text-secondary);
  transition: background .15s, color .15s; width: 100%; text-align: left; cursor: pointer;
  border: none; background: none; font-family: inherit;
}
.user-dropdown-item:hover { background: var(--border); color: var(--text-primary); }
.user-dropdown-divider { height: 1px; background: var(--border); margin: .35rem .5rem; }
.user-dropdown-logout { color: #ff5252 !important; }

/* ── Auth Modal ─────────────────────────────── */
.auth-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 1200; opacity: 0; pointer-events: none;
  transition: opacity .25s; backdrop-filter: blur(4px);
}
.auth-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -44%);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  width: min(440px, calc(100vw - 2rem));
  z-index: 1300;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.auth-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }

.auth-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-muted);
  padding: .3rem .55rem; font-size: .85rem; cursor: pointer;
  transition: all .15s;
}
.auth-modal-close:hover { color: var(--text-primary); border-color: var(--border-bright); }

.auth-tabs {
  display: flex; gap: .4rem; margin-bottom: 1.5rem;
  background: var(--bg-secondary); border-radius: 8px; padding: .3rem;
}
.auth-tab {
  flex: 1; padding: .5rem; border-radius: 6px;
  font-size: .85rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all .18s; border: none; background: none; font-family: inherit;
}
.auth-tab.active { background: var(--bg-card); color: var(--text-primary); box-shadow: 0 1px 4px rgba(0,0,0,.3); }

.auth-logo-row { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.5rem; }
.auth-logo {
  width: 42px; height: 42px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; font-size: .9rem; color: #0a0e1a;
}
.auth-form-title { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.auth-form-sub   { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

.auth-field { margin-bottom: .9rem; }
.auth-field label {
  display: block; font-size: .78rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: .35rem;
}
.auth-field input {
  width: 100%; box-sizing: border-box;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); font-family: var(--font-sans);
  font-size: .9rem; padding: .65rem .85rem; border-radius: 8px;
  outline: none; transition: border-color .18s;
}
.auth-field input:focus { border-color: rgba(0,255,136,.5); }
.auth-hint { font-weight: 400; color: var(--text-muted); font-size: .72rem; }

.auth-error {
  font-size: .8rem; color: #ff5252; min-height: 1.1rem;
  margin-bottom: .6rem; line-height: 1.4;
}
.auth-submit {
  width: 100%; padding: .8rem;
  background: var(--accent); color: #0a0e1a;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: opacity .18s, transform .15s; font-family: inherit;
}
.auth-submit:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.auth-submit:disabled { opacity: .45; cursor: not-allowed; }

.auth-form.hidden { display: none; }

.auth-switch {
  text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .9rem;
}
.auth-switch-btn {
  color: var(--accent); font-weight: 600; background: none; border: none;
  cursor: pointer; font-size: inherit; font-family: inherit; padding: 0;
}
.auth-switch-btn:hover { text-decoration: underline; }

/* ── Blog Card ────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.blog-card:hover { border-color: rgba(0,255,136,.3); transform: translateY(-3px); }
.blog-card-cover {
  height: 120px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.blog-card-cat {
  font-size: .65rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.2);
  border-radius: 4px; padding: .15rem .5rem; width: fit-content;
}
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
.blog-card-excerpt { font-size: .82rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .72rem; color: var(--text-muted); margin-top: auto; padding-top: .6rem; border-top: 1px solid var(--border); }

/* ── Study Guide Card ─────────────────────── */
.guides-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.guide-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .2s, transform .2s; position: relative; overflow: hidden;
}
.guide-card:hover { border-color: rgba(0,255,136,.3); transform: translateY(-2px); }
.guide-card.featured { border-color: rgba(255,200,0,.35); }
.guide-card.featured::before {
  content: '★ Featured'; position: absolute; top: .75rem; right: .75rem;
  font-size: .62rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em;
  padding: .18rem .5rem; border-radius: 4px;
  background: rgba(255,200,0,.12); border: 1px solid rgba(255,200,0,.3); color: #ffc800;
}
.guide-cover { font-size: 3rem; text-align: center; margin-bottom: .25rem; }
.guide-title  { font-size: 1rem; font-weight: 800; color: var(--text-primary); line-height: 1.3; }
.guide-sub    { font-size: .78rem; color: var(--text-secondary); line-height: 1.55; }
.guide-meta   { display: flex; gap: .5rem; flex-wrap: wrap; }
.guide-badge  {
  font-size: .62rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .07em;
  padding: .18rem .5rem; border-radius: 4px; border: 1px solid var(--border);
  color: var(--text-muted); background: var(--bg-secondary);
}
.guide-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border); }
.guide-price { font-size: 1.4rem; font-weight: 800; color: var(--accent); font-family: var(--font-mono); }
.guide-price-note { font-size: .7rem; color: var(--text-muted); }
.guide-btn {
  display: block; text-align: center; padding: .7rem;
  background: var(--accent); color: #0a0e1a;
  border-radius: 8px; font-weight: 700; font-size: .85rem;
  transition: opacity .18s; border: none; cursor: pointer; font-family: inherit; width: 100%;
}
.guide-btn:hover { opacity: .85; }
.guide-btn.coming-soon {
  background: var(--bg-secondary); color: var(--text-muted);
  border: 1px solid var(--border); cursor: default;
}
.guide-btn.coming-soon:hover { opacity: 1; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 1rem; gap: .25rem; z-index: 999; }
  .nav-links.mobile-open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
  .nav-dropdown-trigger { width: 100%; }
  .user-chip-name { display: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,255,136,.07), transparent),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0,180,255,.05), transparent);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,255,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.25);
  border-radius: 100px; padding: .35rem 1rem; font-size: .78rem;
  font-family: var(--font-mono); color: var(--accent); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent2 { color: var(--accent2); }

.hero-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-lg { padding: .8rem 2rem; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: all .2s; }
.btn-accent { background: var(--accent); color: #0a0e1a; }
.btn-accent:hover { background: var(--accent-dim); box-shadow: 0 0 40px rgba(0,255,136,.3); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border-bright); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

.hero-stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--accent); display: block; }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* =====================================================
   SECTION UTILITIES
   ===================================================== */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem;
}
.section-label::before { content: '//'; opacity: .5; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -.02em; }
.section-title span { color: var(--accent); }
.section-desc { color: var(--text-secondary); font-size: 1rem; max-width: 540px; line-height: 1.7; }

.center { text-align: center; }
.center .section-label, .center .section-desc { margin-left: auto; margin-right: auto; }

/* =====================================================
   RESOURCE PROVIDERS SECTION
   ===================================================== */
.providers-section { padding: 5rem 2rem; background: var(--bg-secondary); }

.provider-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin: 2.5rem 0 3rem;
}
.provider-tab {
  padding: .5rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-secondary); font-size: .875rem; font-family: inherit;
  cursor: pointer; transition: all var(--transition);
}
.provider-tab:hover { border-color: var(--border-bright); color: var(--text-primary); }
.provider-tab.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }

.providers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.provider-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); cursor: pointer; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1rem;
}
.provider-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.provider-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.provider-card:hover::before { opacity: 1; }

.provider-header { display: flex; align-items: flex-start; gap: 1rem; position: relative; }
.provider-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.provider-icon.letsdefend  { background: rgba(0,255,136,.15); }
.provider-icon.btlo        { background: rgba(0,180,255,.15); }
.provider-icon.detstream   { background: rgba(255,107,53,.15); }
.provider-icon.leveleffect { background: rgba(168,85,247,.15); }
.provider-icon.scrimba     { background: rgba(255,200,0,.12); }
.provider-icon.tryhackme   { background: rgba(200,50,50,.15); }
.provider-icon.hackthebox  { background: rgba(0,255,136,.1); }

.provider-meta { flex: 1; }
.provider-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
.provider-tagline { font-size: .82rem; color: var(--text-muted); font-family: var(--font-mono); }

.provider-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.badge {
  font-size: .7rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .55rem; border-radius: 4px; border: 1px solid;
}
.badge-blue   { background: rgba(0,180,255,.1); border-color: rgba(0,180,255,.3); color: var(--accent2); }
.badge-green  { background: rgba(0,255,136,.08); border-color: rgba(0,255,136,.25); color: var(--accent); }
.badge-orange { background: rgba(255,107,53,.1); border-color: rgba(255,107,53,.3); color: var(--accent3); }
.badge-purple { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.3); color: #a855f7; }
.badge-yellow { background: rgba(255,200,0,.1); border-color: rgba(255,200,0,.3); color: #ffc800; }
.badge-red    { background: rgba(255,50,50,.1); border-color: rgba(255,50,50,.3); color: #ff5252; }

.provider-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }

.provider-roles { display: flex; flex-wrap: wrap; gap: .35rem; }
.role-pill {
  font-size: .72rem; padding: .2rem .6rem; border-radius: 4px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-muted);
}

.provider-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border); }
.provider-pricing { font-size: .82rem; color: var(--text-muted); }
.provider-pricing strong { color: var(--accent); }
.provider-link {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--accent);
  padding: .35rem .75rem; border: 1px solid var(--accent);
  border-radius: 6px; transition: all var(--transition);
}
.provider-link:hover { background: var(--accent); color: #0a0e1a; }

/* Provider detail panel */
.provider-detail {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem;
  display: none; animation: fadeSlideIn .25s ease;
}
.provider-detail.visible { display: block; }
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.provider-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.provider-detail-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.provider-detail-title h3 { font-size: 1.3rem; font-weight: 700; }
.provider-detail-title p { color: var(--text-secondary); font-size: .9rem; margin-top: .15rem; }

.provider-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.provider-detail-section h4 { font-size: .8rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .75rem; }
.provider-detail-section ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.provider-detail-section ul li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--text-secondary); }
.provider-detail-section ul li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-family: var(--font-mono); }

.provider-close {
  margin-left: auto; padding: .3rem .6rem; border-radius: 4px;
  border: 1px solid var(--border); font-size: .8rem; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.provider-close:hover { border-color: var(--accent3); color: var(--accent3); }

/* =====================================================
   ROLES GRID
   ===================================================== */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }

.role-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: all var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: .75rem;
}
.role-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); opacity: 0; transition: opacity var(--transition);
}
.role-card:hover { border-color: var(--border-bright); transform: translateY(-2px); box-shadow: var(--shadow); }
.role-card:hover::after { opacity: 1; }
.role-card.featured { border-color: rgba(0,255,136,.3); }
.role-card.featured::after { opacity: 1; }

.role-icon { font-size: 2rem; }
.role-name { font-weight: 700; font-size: 1.05rem; }
.role-team { font-size: .75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.role-team.blue { color: var(--accent2); }
.role-team.red  { color: var(--accent3); }
.role-team.both { color: var(--accent); }
.role-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.role-meta { display: flex; gap: .75rem; font-size: .78rem; color: var(--text-muted); font-family: var(--font-mono); }
.role-meta span { display: flex; align-items: center; gap: .25rem; }

.role-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--border); }
.role-salary { font-size: .8rem; }
.role-salary strong { color: var(--accent); }
.btn-role {
  font-size: .78rem; font-weight: 600; padding: .35rem .8rem;
  border-radius: 6px; border: 1px solid var(--accent);
  color: var(--accent); transition: all var(--transition);
}
.btn-role:hover { background: var(--accent); color: #0a0e1a; }

/* =====================================================
   FEATURES GRID
   ===================================================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.feature-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }

/* =====================================================
   ROADMAP INTERACTIVE (roadmap-detail.html)
   ===================================================== */
.roadmap-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 0; min-height: calc(100vh - 64px); margin-top: 64px;
}

.roadmap-sidebar {
  background: var(--bg-secondary); border-right: 1px solid var(--border);
  padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto;
}

.sidebar-section-label {
  font-size: .65rem; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-muted); padding: 0 .5rem;
  margin-bottom: .25rem;
}

.progress-ring-wrap { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: .5rem; }
.progress-ring-wrap svg { transform: rotate(-90deg); }
.progress-ring-bg { stroke: var(--border); fill: none; }
.progress-ring-fill { stroke: var(--accent); fill: none; stroke-linecap: round; transition: stroke-dashoffset .6s ease; }
.progress-pct { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.progress-label { font-size: .75rem; color: var(--text-muted); text-align: center; }

.progress-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .35rem; }
.pstat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: .5rem; text-align: center; }
.pstat-num { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; }
.pstat-num.done { color: var(--accent); }
.pstat-num.learning { color: var(--accent2); }
.pstat-num.skipped { color: var(--text-muted); }
.pstat-lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: .15rem; }

.sidebar-nav { display: flex; flex-direction: column; gap: .15rem; }
.sidebar-nav a {
  display: flex; align-items: center; gap: .6rem; padding: .55rem .75rem;
  border-radius: 6px; font-size: .85rem; color: var(--text-secondary);
  transition: all var(--transition); text-decoration: none;
}
.sidebar-nav a:hover { background: var(--border); color: var(--text-primary); }
.sidebar-nav a.active { background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(0,255,136,.2); }
.sidebar-nav a .phase-num {
  width: 20px; height: 20px; border-radius: 4px;
  background: var(--border); font-size: .65rem; font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sidebar-nav a.active .phase-num { background: var(--accent); color: #0a0e1a; }

.cert-filter { display: flex; flex-direction: column; gap: .35rem; }
.cert-filter select {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: .5rem .75rem; color: var(--text-primary);
  font-size: .85rem; font-family: inherit; outline: none;
  transition: border-color var(--transition);
}
.cert-filter select:focus { border-color: var(--accent); }

/* Provider filter in sidebar */
.provider-filter { display: flex; flex-direction: column; gap: .35rem; }
.provider-filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.pfilt-btn {
  padding: .4rem .35rem; border-radius: 5px; font-size: .72rem; font-family: var(--font-mono);
  border: 1px solid var(--border); background: var(--bg-card); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.pfilt-btn:hover { border-color: var(--border-bright); color: var(--text-secondary); }
.pfilt-btn.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }

/* Roadmap main content */
.roadmap-main { padding: 2rem; overflow-y: auto; }

.roadmap-header { margin-bottom: 2rem; }
.roadmap-header h1 { font-size: 1.6rem; font-weight: 700; margin-bottom: .35rem; }
.roadmap-header p { color: var(--text-secondary); font-size: .9rem; }

.role-selector { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.role-btn {
  padding: .4rem 1rem; border-radius: 100px; font-size: .82rem;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-secondary); cursor: pointer; transition: all var(--transition);
}
.role-btn:hover { border-color: var(--border-bright); color: var(--text-primary); }
.role-btn.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }

/* Phase groups */
.phase-group { margin-bottom: 2.5rem; }
.phase-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
  padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.phase-number {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); color: #0a0e1a;
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.phase-title { font-weight: 700; font-size: 1rem; }
.phase-subtitle { font-size: .8rem; color: var(--text-muted); }
.phase-est { margin-left: auto; font-size: .75rem; font-family: var(--font-mono); color: var(--text-muted); }

.nodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }

.node-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; cursor: pointer;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.node-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.node-card.done { border-color: rgba(0,255,136,.4); background: rgba(0,255,136,.04); }
.node-card.learning { border-color: rgba(0,180,255,.4); background: rgba(0,180,255,.04); }
.node-card.skipped { opacity: .45; }

.node-status {
  position: absolute; top: .6rem; right: .6rem;
  width: 20px; height: 20px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}
.node-status.done    { background: rgba(0,255,136,.2); color: var(--accent); }
.node-status.learning{ background: rgba(0,180,255,.2); color: var(--accent2); }
.node-status.skipped { background: rgba(100,100,100,.2); color: var(--text-muted); }

.node-icon { font-size: 1.4rem; margin-bottom: .6rem; }
.node-title { font-weight: 600; font-size: .9rem; margin-bottom: .35rem; padding-right: 1.5rem; }
.node-meta { display: flex; gap: .6rem; font-size: .72rem; color: var(--text-muted); font-family: var(--font-mono); }
.node-resource-count { font-size: .7rem; color: var(--text-muted); margin-top: .5rem; display: flex; align-items: center; gap: .3rem; }
.node-resource-count::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Node cert tags */
.node-cert-tags { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: .5rem; }
.cert-tag { font-size: .62rem; font-family: var(--font-mono); padding: .15rem .4rem; border-radius: 3px; background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.2); color: var(--accent); }

/* Provider highlight on node */
.node-providers { display: flex; gap: .25rem; margin-top: .5rem; flex-wrap: wrap; }
.node-provider-dot {
  width: 18px; height: 18px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; cursor: default;
  transition: transform var(--transition);
}
.node-provider-dot:hover { transform: scale(1.2); }

/* =====================================================
   NODE MODAL
   ===================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,14,26,.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-secondary); border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg); width: 100%; max-width: 680px;
  max-height: 85vh; overflow: hidden; display: flex; flex-direction: column;
  animation: modalIn .2s ease; box-shadow: 0 24px 80px rgba(0,0,0,.7);
}
@keyframes modalIn { from { opacity:0; transform: scale(.95) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); } }

.modal-header {
  padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem;
}
.modal-icon { font-size: 2rem; flex-shrink: 0; }
.modal-title-wrap { flex: 1; }
.modal-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.modal-subtitle { font-size: .85rem; color: var(--text-secondary); }
.modal-close {
  width: 30px; height: 30px; border-radius: 6px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  transition: all var(--transition);
}
.modal-close:hover { border-color: var(--accent3); color: var(--accent3); }

.modal-body { overflow-y: auto; flex: 1; }

/* Modal tabs */
.modal-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  padding: 0 1.75rem; gap: 0;
}
.modal-tab {
  padding: .75rem 1.1rem; font-size: .85rem; color: var(--text-muted);
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); margin-bottom: -1px;
}
.modal-tab:hover { color: var(--text-primary); }
.modal-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.modal-tab-content { display: none; padding: 1.5rem 1.75rem; }
.modal-tab-content.active { display: block; }

/* Overview tab */
.modal-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.modal-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.25rem; }
.meta-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: .75rem; }
.meta-item-label { font-size: .65rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .3rem; }
.meta-item-value { font-size: .9rem; font-weight: 600; color: var(--text-primary); }

/* Status buttons */
.status-buttons { display: flex; gap: .5rem; margin-top: 1rem; }
.status-btn {
  flex: 1; padding: .55rem; border-radius: 6px; font-size: .82rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-muted); cursor: pointer;
  transition: all var(--transition); text-align: center;
}
.status-btn:hover { border-color: var(--border-bright); color: var(--text-primary); }
.status-btn.done    { border-color: var(--accent); background: rgba(0,255,136,.1); color: var(--accent); }
.status-btn.learning{ border-color: var(--accent2); background: rgba(0,180,255,.1); color: var(--accent2); }
.status-btn.skipped { border-color: var(--text-muted); background: rgba(100,100,100,.1); color: var(--text-muted); }

/* Resources tab */
.resource-provider-tabs { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.rp-tab {
  padding: .35rem .75rem; border-radius: 6px; font-size: .78rem; font-family: var(--font-mono);
  border: 1px solid var(--border); background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.rp-tab:hover { border-color: var(--border-bright); color: var(--text-secondary); }
.rp-tab.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }

.resource-list { display: flex; flex-direction: column; gap: .6rem; }
.resource-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1rem;
  display: flex; align-items: flex-start; gap: .85rem;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.resource-item:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.resource-item-icon {
  width: 36px; height: 36px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.resource-item-body { flex: 1; min-width: 0; }
.resource-item-title { font-size: .875rem; font-weight: 600; margin-bottom: .2rem; }
.resource-item-provider { font-size: .72rem; font-family: var(--font-mono); color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.resource-item-type { margin-left: auto; font-size: .7rem; font-family: var(--font-mono); color: var(--text-muted); padding: .15rem .4rem; border: 1px solid var(--border); border-radius: 4px; flex-shrink: 0; }

/* =====================================================
   RESOURCES PAGE
   ===================================================== */
.resources-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: .875rem;
}
.compare-table th {
  padding: .85rem 1rem; text-align: left;
  background: var(--bg-secondary); border: 1px solid var(--border);
  font-size: .75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
}
.compare-table td {
  padding: .85rem 1rem; border: 1px solid var(--border);
  color: var(--text-secondary); vertical-align: middle;
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.015); }
.compare-table tr:hover td { background: var(--bg-card); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }
.check { color: var(--accent); font-size: 1rem; }
.cross { color: var(--text-muted); }

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: all var(--transition);
}
.pricing-card.featured { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.pricing-card:hover { transform: translateY(-2px); }

.pricing-tier { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.pricing-name { font-size: 1.3rem; font-weight: 700; }
.pricing-price { display: flex; align-items: baseline; gap: .3rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; font-family: var(--font-mono); }
.pricing-amount.free-color { color: var(--accent); }
.pricing-amount.pro-color { color: var(--accent); }
.pricing-period { font-size: .85rem; color: var(--text-muted); }

.pricing-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.pricing-features li { font-size: .875rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: .6rem; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-features li.muted::before { content: '○'; color: var(--text-muted); }
.pricing-features li.muted { color: var(--text-muted); }

.btn-full { width: 100%; padding: .75rem; border-radius: 8px; font-size: .95rem; font-weight: 600; text-align: center; transition: all .2s; display: block; }

/* =====================================================
   FAQ / ACCORDION
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 680px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; padding: 1.1rem 1.25rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .95rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon { font-size: 1.2rem; color: var(--text-muted); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono); font-size: 3rem; font-weight: 800;
  color: rgba(0,255,136,.08); display: block; line-height: 1; margin-bottom: .5rem;
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step h3 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }

/* =====================================================
   EMAIL CAPTURE
   ===================================================== */
.email-form { display: flex; gap: .75rem; max-width: 440px; margin: 1.5rem auto 0; }
.email-form input {
  flex: 1; padding: .7rem 1rem; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: .9rem; font-family: inherit;
  outline: none; transition: border-color var(--transition);
}
.email-form input:focus { border-color: var(--accent); }
.email-form input::placeholder { color: var(--text-muted); }
.email-note { font-size: .78rem; color: var(--text-muted); margin-top: .75rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.65; }
.footer-col h4 { font-size: .8rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .875rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-bottom span { color: var(--accent); }

/* =====================================================
   UTILITY / MISC
   ===================================================== */
.divider { height: 1px; background: var(--border); margin: 0; }
.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.text-muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }
.hidden { display: none !important; }

.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .55rem; border-radius: 4px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted);
}

/* Glow text */
.glow { text-shadow: 0 0 30px rgba(0,255,136,.4); }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .roadmap-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .provider-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: center; }

  .roadmap-layout { grid-template-columns: 1fr; }
  .roadmap-sidebar { position: static; height: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .modal-meta-grid { grid-template-columns: 1fr 1fr; }
  .providers-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  .container { padding: 0; }
  .modal { max-height: 95vh; }
  .modal-tabs { padding: 0 1rem; }
  .modal-tab-content { padding: 1.25rem 1rem; }
  .modal-header { padding: 1.25rem 1rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
}
