/* Netlifestyle AI — Agentic Institute design system */

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f35;
  --text-primary: #f0f4ff;
  --text-secondary: #94a3c4;
  --text-muted: #64748b;
  --accent-cyan: #22d3ee;
  --accent-violet: #a78bfa;
  --accent-gold: #fbbf24;
  --accent-green: #34d399;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --grad-accent: linear-gradient(135deg, #22d3ee, #a78bfa);
  --grad-hero: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f172a 100%);
}

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

html { scroll-padding-top: 90px; scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.7;
}

a, button, summary, label { -webkit-tap-highlight-color: transparent; }

a { color: var(--accent-cyan); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--accent-violet); }

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

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

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px env(safe-area-inset-right) 14px env(safe-area-inset-left);
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-burger { display: none; }
.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--accent-cyan); outline-offset: 2px; border-radius: 6px; }
.nav-links { margin-left: auto; }
.nav-inner > .nav-cta { flex-shrink: 0; }
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-primary);
  white-space: nowrap;
}
.wordmark:hover { color: var(--text-primary); }
.wordmark img { display: block; height: 28px; width: auto; }
.wordmark .grad {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-cyan);
}
.nav-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-cyan); }
.nav-links a.nav-cta {
  background: var(--grad-accent);
  color: var(--bg-primary);
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav-links a.nav-cta:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section.alt { background: var(--bg-secondary); }
.section.flush-bottom { padding: 0 0 100px; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}
.kicker.violet { color: var(--accent-violet); }
.section-head h2 { font-weight: 700; font-size: clamp(28px, 3.5vw, 40px); margin: 0 0 14px; }
.section-head .sub { font-size: 17px; color: var(--text-secondary); margin: 0; }

h2.section-title { font-weight: 700; font-size: clamp(26px, 3vw, 36px); margin: 0 0 16px; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-accent);
  color: var(--bg-primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover {
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(34, 211, 238, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--border-medium);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-cyan); font-weight: 600; font-size: 15px; }

/* ---------- Hero / page headers ---------- */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-cyan);
  font-weight: 500;
  margin-bottom: 26px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.grad-title {
  background: linear-gradient(135deg, #f0f4ff 0%, #22d3ee 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-home {
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-home .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-home h1 {
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero-home .lead { font-size: 18px; color: var(--text-secondary); margin: 0 0 28px; max-width: 520px; }
.hero-checks { display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.hero-checks div { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); }
.hero-checks svg { flex-shrink: 0; }

.page-hero {
  padding: 150px 0 80px;
  background: var(--grad-hero);
  position: relative;
}
.page-hero.centered { text-align: center; }
.page-hero .hero-overlay {
  background: radial-gradient(ellipse at 30% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-weight: 700; font-size: clamp(34px, 4.5vw, 50px); margin: 0 0 16px; }
.page-hero.centered h1 { margin: 0 auto 16px; max-width: 820px; }
.page-hero .lead { font-size: 18px; color: var(--text-secondary); max-width: 640px; margin: 0 0 30px; }
.page-hero.centered .lead { max-width: 680px; margin: 0 auto 30px; }
.page-hero .hero-pill { margin-bottom: 22px; }

/* ---------- Home hero layer stack ---------- */
.layer-wrap { display: flex; justify-content: center; }
.layer-stack { position: relative; width: 100%; max-width: 420px; }
.layer {
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.95), rgba(17, 24, 39, 0.9));
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 18px 26px;
  margin-bottom: 10px;
  transition: transform .3s ease;
}
.layer:last-child { margin-bottom: 0; }
.layer:hover { transform: translateX(8px); }
.layer.grad {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(26, 31, 53, 0.95), rgba(17, 24, 39, 0.9)) padding-box,
              var(--grad-accent) border-box;
}
.layer.gold { border-left-color: var(--accent-gold); }
.layer.violet { border-left-color: var(--accent-violet); }
.layer.cyan { border-left-color: var(--accent-cyan); }
.layer.green { border-left-color: var(--accent-green); }
.layer .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.layer .name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 16px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 28px; }
.card-grid.md { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.card-grid.four { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .card-grid.four { grid-template-columns: 1fr; } }

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.pillar-card:hover { border-color: var(--border-medium); transform: translateY(-4px); }
.pillar-card.featured { border-color: rgba(34, 211, 238, 0.25); }
.pillar-card.featured:hover { border-color: var(--accent-cyan); }
.pillar-card h3 { font-size: 22px; margin: 0 0 10px; }
.pillar-card > p { color: var(--text-secondary); font-size: 15px; margin: 0 0 14px; }

.card-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
}
.card-strip.cyan { background: var(--accent-cyan); }
.card-strip.violet { background: var(--accent-violet); }

.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icon-box.gold { background: rgba(251, 191, 36, 0.1); }
.icon-box.cyan { background: rgba(34, 211, 238, 0.1); }
.icon-box.violet { background: rgba(167, 139, 250, 0.1); }
.icon-box.green { background: rgba(52, 211, 153, 0.1); }

.check-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.check-list li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14.5px; }
.check-list li .tick { color: var(--accent-green); }

.badge-grad {
  font-size: 12px;
  font-weight: 500;
  color: var(--bg-primary);
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  border-radius: 100px;
  padding: 3px 10px;
  vertical-align: middle;
  margin-left: 6px;
}
.badge-outline {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  padding: 3px 10px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.footnote { color: var(--text-muted); font-size: 12.5px; margin: 16px 0 0; }
.footnote a { color: var(--text-secondary); }

/* ---------- Two-column copy + stats ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .copy p { color: var(--text-secondary); font-size: 16px; margin: 0 0 14px; }
.split .copy p:last-child { margin-bottom: 0; }

.stat-list { display: grid; gap: 16px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.stat-card .num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-cyan);
  min-width: 86px;
}
.stat-card .num.violet { color: var(--accent-violet); }
.stat-card .num.green { color: var(--accent-green); }
.stat-card .desc { color: var(--text-secondary); font-size: 15px; }
.stat-list.compact { gap: 14px; }
.stat-list.compact .stat-card { border-radius: 14px; padding: 20px 24px; gap: 16px; }
.stat-list.compact .stat-card .num { font-size: 24px; min-width: 72px; }
.stat-list.compact .stat-card .desc { font-size: 14.5px; }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: linear-gradient(135deg, #1a1f35, rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 24px;
  padding: 56px;
}
.cta-panel.split-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.cta-panel.centered { text-align: center; }
.cta-panel h2 { font-weight: 700; font-size: clamp(26px, 3vw, 34px); margin: 0 0 12px; }
.cta-panel.centered h2 { font-size: clamp(24px, 3vw, 32px); }
.cta-panel p { color: var(--text-secondary); font-size: 16px; margin: 0 0 26px; max-width: 520px; }
.cta-panel.centered p { max-width: 560px; margin: 0 auto 28px; }

.price-row {
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.price-row .name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 16px; }
.price-row .meta { color: var(--text-muted); font-size: 13px; }
.price-row .amount {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent-cyan);
  white-space: nowrap;
}
.price-row .amount.violet { color: var(--accent-violet); }
.price-row .amount .per { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ---------- Experience section ---------- */
.exp-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.portrait { width: 100%; height: auto; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); display: block; }
.portrait-caption { color: var(--text-muted); font-size: 14px; margin: 12px 0 0; text-align: center; }
.mini-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 20px;
}
.mini-card .title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.mini-card .desc { color: var(--text-secondary); font-size: 13.5px; }

/* ---------- News cards ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 26px; }
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  color: var(--text-primary);
  display: block;
  transition: transform .3s ease, border-color .3s ease;
}
.news-card:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateY(-4px); color: var(--text-primary); }
.news-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.news-card .body { padding: 22px 24px; }
.news-card .title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 17px; line-height: 1.4; }

/* ---------- Feature rows (icon + text) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 32px; }
.feature-row { display: flex; gap: 16px; }
.feature-row .icon-box { margin-bottom: 0; }
.feature-row h4 { font-size: 17px; margin: 0 0 6px; }
.feature-row p { color: var(--text-secondary); font-size: 14.5px; margin: 0; }

/* ---------- Program / principle / module cards ---------- */
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 34px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.program-card:hover { border-color: var(--border-medium); transform: translateY(-4px); }
.program-card.featured { border-color: rgba(34, 211, 238, 0.25); }
.program-card.featured:hover { border-color: var(--accent-cyan); }
.program-card .tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.program-card .tag.cyan { color: var(--accent-cyan); }
.program-card .tag.violet { color: var(--accent-violet); }
.program-card .tag.gold { color: var(--accent-gold); }
.program-card h3 { font-size: 21px; margin: 0 0 10px; }
.program-card p { color: var(--text-secondary); font-size: 14.5px; margin: 0 0 18px; }
.program-card .arrow-link { font-size: 15px; }

.principle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px; }
.principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.principle-card:hover { border-color: rgba(167, 139, 250, 0.4); transform: translateY(-4px); }
.principle-card .num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-violet);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.principle-card h3 { font-size: 17.5px; margin: 0 0 8px; }
.principle-card p { color: var(--text-secondary); font-size: 14.5px; margin: 0; }

.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.module-grid.units { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px;
  transition: border-color .3s ease;
}
.module-card:hover { border-color: rgba(34, 211, 238, 0.4); }
.module-card.violet:hover { border-color: rgba(167, 139, 250, 0.4); }
.module-card .num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-cyan);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.module-card.violet .num { color: var(--accent-violet); }
.module-card h4 { font-size: 16.5px; margin: 0 0 6px; }
.module-card p { color: var(--text-secondary); font-size: 14px; margin: 0; }
.curriculum-subhead { font-size: 20px; margin: 0 0 22px; color: var(--accent-cyan); }
.curriculum-subhead.violet { color: var(--accent-violet); }

/* ---------- Trust pills ---------- */
.trust-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-pills .tick { color: var(--accent-green); }

/* ---------- Pricing cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.price-card.cyan { border: 1px solid rgba(34, 211, 238, 0.3); }
.price-card.cyan:hover { transform: translateY(-6px); border-color: var(--accent-cyan); }
.price-card.violet { border: 1px solid rgba(167, 139, 250, 0.3); }
.price-card.violet:hover { transform: translateY(-6px); border-color: var(--accent-violet); }
.price-card .tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.price-card.cyan .tier { color: var(--accent-cyan); }
.price-card.violet .tier { color: var(--accent-violet); }
.price-card h3 { font-size: 23px; margin: 0 0 6px; }
.price-card .blurb { color: var(--text-secondary); font-size: 14.5px; margin: 0 0 22px; }
.price-card .big-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 40px; margin-bottom: 2px; }
.price-card .big-price .per { font-size: 16px; font-weight: 400; color: var(--text-muted); font-family: 'IBM Plex Sans', sans-serif; }
.price-card .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-card .check-list { margin-bottom: 28px; gap: 11px; }
.price-card .check-list li { gap: 11px; }
.btn-card-primary {
  display: block;
  text-align: center;
  background: var(--grad-accent);
  color: var(--bg-primary);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-card-primary:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.35);
}
.btn-card-violet {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-primary);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.btn-card-violet:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: var(--accent-violet);
  color: var(--accent-violet);
}

/* ---------- Credential / certificate ---------- */
.flow-steps { display: flex; flex-direction: column; gap: 10px; }
.flow-steps div { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 15px; }
.flow-steps .step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.cert-wrap { display: flex; justify-content: center; }
.cert-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, #f8fafc, #e6ecf5);
  border-radius: 14px;
  padding: 34px 36px;
  color: #111827;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.cert-card .cert-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cert-card .cert-mark { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 1px; }
.cert-card .cert-mark span { color: #0891b2; }
.cert-card .cert-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #0891b2;
  border: 1.5px solid #0891b2;
  border-radius: 100px;
  padding: 3px 10px;
}
.cert-card .cert-label { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: #64748b; margin-bottom: 4px; }
.cert-card .cert-course { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 2px; }
.cert-card .cert-holder { font-size: 13px; color: #475569; margin-bottom: 20px; }
.cert-card .cert-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.cert-card .cert-fields { font-size: 11.5px; color: #64748b; line-height: 1.6; }
.cert-card .cert-qr {
  width: 64px; height: 64px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, #111827 0 4px, #f8fafc 4px 8px),
    repeating-linear-gradient(90deg, #111827 0 4px, #f8fafc 4px 8px);
  background-blend-mode: screen;
  border: 4px solid #111827;
  flex-shrink: 0;
}

/* ---------- Timeline ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline-row { display: grid; grid-template-columns: 150px 30px 1fr; gap: 18px; align-items: start; }
.timeline-row .date {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: right;
  padding-top: 2px;
}
.timeline-row .track { display: flex; flex-direction: column; align-items: center; align-self: stretch; }
.timeline-row .dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.timeline-row .line { width: 2px; flex: 1; background: rgba(255, 255, 255, 0.1); }
.timeline-row .entry { padding-bottom: 36px; }
.timeline-row .entry h3 { font-weight: 600; font-size: 17px; margin: 0 0 4px; }
.timeline-row .entry p { color: var(--text-secondary); font-size: 14.5px; margin: 0; max-width: 560px; }
.badge-inforce {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--bg-primary);
  background: var(--accent-green);
  border-radius: 100px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border-subtle); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 720px; }
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 14.5px;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr.hl-cyan { background: rgba(34, 211, 238, 0.08); }
.compare-table tr.hl-violet { background: rgba(167, 139, 250, 0.08); }
.compare-table td.provider-us { font-weight: 600; font-size: 15px; }
.compare-table tr.hl-cyan td.provider-us { color: var(--accent-cyan); }
.compare-table tr.hl-violet td.provider-us { color: var(--accent-violet); }
.compare-table td.acc-yes { color: var(--accent-green); }
.compare-table td.acc-none { color: var(--text-muted); }
.compare-table td.price-strong { font-weight: 700; color: var(--text-primary); font-size: 15px; }
.table-footnote { color: var(--text-muted); font-size: 13px; text-align: center; margin: 18px 0 0; }
.table-scroll-hint { display: none; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0 26px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .toggle { color: var(--accent-cyan); font-size: 20px; flex-shrink: 0; }
.faq-list details[open] summary .toggle { transform: rotate(45deg); }
.faq-list details p { color: var(--text-secondary); font-size: 15px; margin: 0; padding: 0 0 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 56px env(safe-area-inset-right) calc(40px + env(safe-area-inset-bottom)) env(safe-area-inset-left);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-mark { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 1px; }
.footer-mark span { color: var(--accent-cyan); }
.footer-mark img { display: block; height: 28px; width: auto; max-width: 100%; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-size: 14px; }
.footer-copy { color: var(--text-muted); font-size: 13px; }
.footer-copy a { color: var(--text-secondary); }

/* ---------- Legacy page support (blog, meetup, experience, workshops) ---------- */
.nav-spacer { height: 70px; }

.hero {
  text-align: center;
  padding: 160px 24px 80px;
  background: var(--grad-hero);
}
.hero h1 { font-size: clamp(32px, 4vw, 46px); line-height: 1.2; margin-bottom: 18px; font-weight: 700; }
.hero p.lead { font-size: 18px; color: var(--text-secondary); max-width: 760px; margin: 0 auto 28px; }

section { padding: 64px 24px; }
section.alt { background: var(--bg-secondary); }
.hero + section, .section { padding-left: 0; padding-right: 0; }
section > .container { padding: 0 24px; }
h2 { font-size: 30px; margin-bottom: 20px; }
h3 { font-size: 21px; margin-bottom: 12px; }
section p { margin-bottom: 16px; }
section ul { margin: 0 0 16px 24px; }
section li { margin-bottom: 10px; }
section p, section li { color: var(--text-secondary); }
section h2, section h3 { color: var(--text-primary); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-accent);
  color: var(--bg-primary);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.button:hover { color: var(--bg-primary); transform: translateY(-3px); box-shadow: 0 15px 50px rgba(34, 211, 238, 0.4); }
.button.secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }

.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover { border-color: var(--border-medium); transform: translateY(-4px); }
.card img.thumb { width: 100%; height: 200px; object-fit: cover; margin-bottom: 16px; border-radius: 10px; }
.card h3 a { color: var(--text-primary); }
.card h3 a:hover { color: var(--accent-cyan); }
.card .blog-post-meta { margin-bottom: 12px; }

.price { color: var(--accent-cyan); font-weight: bold; }

.media-frame { max-width: 860px; margin: 0 auto; }
.media-frame video { width: 100%; display: block; border-radius: 16px; border: 1px solid var(--border-subtle); }

.stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; text-align: center; color: var(--text-secondary); }
.stats .stat b { display: block; font-size: 34px; color: var(--accent-cyan); font-family: 'Syne', sans-serif; }

.schedule-item { border-left: 3px solid var(--accent-cyan); padding-left: 18px; margin-bottom: 22px; }
.schedule-item .time { color: var(--accent-violet); font-weight: bold; }

.btn, .btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.btn:hover, .btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* Blog */
.blog-post-hero { background: var(--grad-hero); padding: 140px 24px 32px; }
.blog-post-back { display: inline-block; margin-bottom: 18px; color: var(--accent-cyan); }
.blog-post-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; color: var(--text-muted); font-size: 14px; }
.blog-card-tag {
  background: var(--grad-accent);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-date, .blog-card-author { color: var(--text-muted); }
.section-divider { border: 0; border-top: 1px solid var(--border-subtle); margin: 0; }
.blog-post-image-container { max-width: 760px; margin: 32px auto 0; padding: 0 24px; }
.blog-post-image { width: 100%; display: block; border-radius: 16px; }
.blog-post-content { max-width: 760px; margin: 0 auto; padding: 40px 24px; }
.blog-post-content p { margin-bottom: 16px; color: var(--text-secondary); }
.blog-post-content ul { margin: 0 0 16px 24px; }
.blog-nav-section { max-width: 760px; margin: 0 auto; padding: 0 24px 48px; }
.blog-nav-divider { border: 0; border-top: 1px solid var(--border-subtle); margin-bottom: 24px; }

/* ---------- Touch devices: mirror hover feedback with :active ---------- */
@media (hover: none) {
  .layer:hover,
  .pillar-card:hover, .program-card:hover, .principle-card:hover,
  .news-card:hover, .card:hover,
  .price-card.cyan:hover, .price-card.violet:hover,
  .btn-primary:hover, .btn-outline:hover, .btn-card-primary:hover,
  .nav-links a.nav-cta:hover, .button:hover { transform: none; box-shadow: none; }
}
.btn-primary:active, .btn-card-primary:active, .button:active,
.nav-links a.nav-cta:active, .nav-inner > .nav-cta:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 30px rgba(34, 211, 238, 0.3);
}
.btn-outline:active, .btn-card-violet:active {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.pillar-card:active, .program-card:active, .principle-card:active,
.news-card:active, .card:active, .layer:active { border-color: var(--border-medium); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-home .container,
  .split,
  .cta-panel.split-panel,
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-home { min-height: 0; }
  .exp-grid > div:first-child { max-width: 340px; }
  .timeline-row { grid-template-columns: 84px 30px 1fr; gap: 12px; }
  .timeline-row .date { font-size: 14px; }
  .cta-panel { padding: 40px 28px; }
}

/* Collapsible nav: same links and order as desktop, hamburger below 840px */
@media (max-width: 840px) {
  .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 14, 26, 0.97);
  }
  .nav-inner { gap: 14px; }
  .nav-inner > .nav-cta { margin-left: auto; font-size: 13px; padding: 10px 14px; }
  .wordmark img { height: 24px; }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 12px 10px;
    margin: -8px -6px -8px 0;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { display: none; }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 6px 0 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-links a { padding: 13px 4px; font-size: 15px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; gap: 8px; }
  .wordmark { font-size: 13px; letter-spacing: .4px; }
  .wordmark img { height: 18px; }
  .nav-inner > .nav-cta { font-size: 11.5px; padding: 8px 9px; }
  .nav-burger { padding: 10px 6px; }
}

/* Very narrow phones: CTA moves into the opened menu as a full-width button */
@media (max-width: 380px) {
  .nav-inner > .nav-cta { display: none; }
  .nav-toggle:checked ~ .nav-cta {
    display: block;
    order: 6;
    width: 100%;
    text-align: center;
    margin: 8px 0 4px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .mini-card-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 18px 24px; }
  .footer-links a { padding: 6px 0; display: inline-block; }
  .btn-row .btn-primary, .btn-row .btn-outline { flex: 1 1 auto; justify-content: center; }
  .cta-panel { padding: 36px 22px; }
  .price-card { padding: 32px 24px; }
  .pillar-card { padding: 30px 24px; }
}

@media (max-width: 760px) {
  .table-scroll-hint {
    display: block;
    color: var(--text-muted);
    font-size: 12.5px;
    text-align: center;
    margin: 10px 0 0;
  }
}

/* Timeline stacks on small phones: date above entry, rail on the left */
@media (max-width: 480px) {
  .timeline-row { grid-template-columns: 26px 1fr; }
  .timeline-row .date { grid-column: 2; grid-row: 1; text-align: left; padding-top: 0; }
  .timeline-row .track { grid-column: 1; grid-row: 1 / span 2; }
  .timeline-row .entry { grid-column: 2; grid-row: 2; padding-bottom: 30px; }
  .timeline-row .dot { margin-top: 4px; }
}

/* ---------- Enquiry form ---------- */
.enquiry-form { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.form-grid .field.wide { grid-column: 1 / -1; }
.form-grid .field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; letter-spacing: 0.2px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3c4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(34, 211, 238, 0.6); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.enquiry-form .btn-row { margin-top: 26px; }
.enquiry-form .btn-primary { border: none; cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; }
.form-note { color: var(--text-muted); font-size: 13px; margin: 18px 0 0; }
.form-error { color: #f87171; font-size: 14px; margin: 16px 0 0; }
.form-error a { color: inherit; }
@media (max-width: 700px) {
  .enquiry-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Digital credentials page ---------- */
.cred-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cred-features { display: grid; gap: 16px; margin-top: 26px; }
.cred-feature { display: flex; align-items: center; gap: 12px; }
.cred-feature svg { width: 22px; height: 22px; color: var(--accent-green); flex-shrink: 0; }
.cred-feature span { color: var(--text-secondary); font-size: 15.5px; }
.cred-feature strong { color: var(--text-primary); }

.cred-visual { display: flex; justify-content: center; }
.cred-showcase { position: relative; width: 300px; height: 300px; }
.cred-badge-main {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 170px; height: 170px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center;
  background: linear-gradient(135deg, #fbbf24, #d97706); color: #1a1205;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45); z-index: 3;
}
.cred-badge-main svg { width: 48px; height: 48px; margin-bottom: 8px; }
.cred-badge-main span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.cred-badge-orbit {
  position: absolute; width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 9.5px; line-height: 1.25; text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); padding: 6px;
}
.cred-badge-orbit.cyan { top: 0; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #22d3ee, #0e7490); color: #06222b; }
.cred-badge-orbit.violet { bottom: 18px; left: 6px; background: linear-gradient(135deg, #a78bfa, #6d28d9); color: #17102b; }
.cred-badge-orbit.green { bottom: 18px; right: 6px; background: linear-gradient(135deg, #34d399, #059669); color: #06231a; }

.cred-flow { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 48px; }
.cred-flow h3 { text-align: center; font-size: 24px; margin-bottom: 40px; }
.cred-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.cred-steps::before {
  content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet), var(--accent-gold), var(--accent-green));
  opacity: 0.4;
}
.cred-step { text-align: center; position: relative; }
.cred-step-num {
  width: 80px; height: 80px; margin: 0 auto 18px;
  background: var(--bg-secondary); border: 2px solid var(--border-medium); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.cred-step-num svg { width: 32px; height: 32px; }
.cred-step:nth-child(1) .cred-step-num { border-color: var(--accent-cyan); } .cred-step:nth-child(1) .cred-step-num svg { color: var(--accent-cyan); }
.cred-step:nth-child(2) .cred-step-num { border-color: var(--accent-violet); } .cred-step:nth-child(2) .cred-step-num svg { color: var(--accent-violet); }
.cred-step:nth-child(3) .cred-step-num { border-color: var(--accent-gold); } .cred-step:nth-child(3) .cred-step-num svg { color: var(--accent-gold); }
.cred-step:nth-child(4) .cred-step-num { border-color: var(--accent-green); } .cred-step:nth-child(4) .cred-step-num svg { color: var(--accent-green); }
.cred-step h4 { font-size: 16px; margin-bottom: 8px; }
.cred-step p { color: var(--text-secondary); font-size: 14px; }

.cred-catalogue { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cred-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px;
  padding: 24px; display: flex; gap: 20px; align-items: center; transition: border-color .3s ease, transform .3s ease;
}
.cred-item:hover { border-color: var(--border-medium); transform: translateX(6px); }
.cred-item-icon {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 9px; line-height: 1.25; text-transform: uppercase; padding: 5px;
}
.cred-item-icon.cyan { background: linear-gradient(135deg, #22d3ee, #0e7490); color: #06222b; }
.cred-item-icon.violet { background: linear-gradient(135deg, #a78bfa, #6d28d9); color: #17102b; }
.cred-item-icon.gold { background: linear-gradient(135deg, #fbbf24, #d97706); color: #1a1205; }
.cred-item-icon.green { background: linear-gradient(135deg, #34d399, #059669); color: #06231a; }
.cred-item-content h4 { font-size: 16px; margin-bottom: 4px; }
.cred-item-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; }
.cred-tag { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600; margin-right: 6px; }
.cred-tag.cpd { background: rgba(34, 211, 238, 0.15); color: var(--accent-cyan); }
.cred-tag.permanent { background: rgba(52, 211, 153, 0.15); color: var(--accent-green); }

.cred-employer { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 20px; overflow: hidden; }
.cred-employer-head { background: #0a66c2; padding: 16px 24px; display: flex; align-items: center; gap: 12px; }
.cred-employer-head svg { width: 26px; height: 26px; color: #fff; flex-shrink: 0; }
.cred-employer-head span { color: #fff; font-weight: 600; font-size: 15px; }
.cred-employer-body { padding: 30px; }
.cred-employer-body h4 { font-size: 18px; margin-bottom: 4px; }
.cred-verify-list { display: grid; gap: 14px; margin-top: 26px; }
.cred-verify-item { display: flex; align-items: center; gap: 12px; }
.cred-verify-item svg { width: 20px; height: 20px; color: var(--accent-green); flex-shrink: 0; }
.cred-verify-item span { color: var(--text-secondary); font-size: 15px; }
.cred-note { margin-top: 22px; padding: 16px; background: rgba(10, 102, 194, 0.12); border-radius: 10px; border-left: 3px solid #0a66c2; }
.cred-note p { color: var(--text-secondary); font-size: 14px; margin: 0; }
.cred-note strong { color: var(--text-primary); }

@media (max-width: 1024px) {
  .cred-split { grid-template-columns: 1fr; gap: 40px; }
  .cred-visual { order: -1; }
  .cred-steps { grid-template-columns: repeat(2, 1fr); }
  .cred-steps::before { display: none; }
}
@media (max-width: 768px) {
  .cred-steps { grid-template-columns: 1fr; }
  .cred-catalogue { grid-template-columns: 1fr; }
  .cred-flow { padding: 32px 20px; }
  .cred-item { flex-direction: column; text-align: center; }
}

/* ---------- genAI Meetup branding ---------- */
.page-hero.meetup-hero {
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.82) 0%, rgba(10, 14, 26, 0.45) 45%, rgba(10, 14, 26, 0.9) 100%),
    url("assets/img/genai-meetup-banner.jpg") center 30% / cover no-repeat;
}
.page-hero.meetup-hero .hero-overlay {
  background: radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.06) 0%, transparent 55%);
}
.page-hero.meetup-hero .lead {
  color: #b6c3de;
  text-shadow: 0 1px 4px rgba(10, 14, 26, 0.9), 0 4px 24px rgba(10, 14, 26, 0.8);
}
.meetup-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-medium);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color .3s ease, transform .3s ease;
}
.meetup-badge:hover { border-color: #f64060; color: var(--text-primary); transform: translateY(-2px); }
.meetup-badge img { width: 24px; height: 24px; display: block; }
.cta-panel .meetup-mark { display: block; width: 44px; height: 44px; margin: 0 auto 16px; }

/* ---------- Blog listing: category filters + LinkedIn cards ---------- */
.bf-radio { position: absolute; opacity: 0; pointer-events: none; }
.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.blog-filter label {
  cursor: pointer;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.blog-filter label:hover { border-color: var(--accent-cyan); color: var(--text-primary); }
#bf-all:checked ~ .blog-filter label[for="bf-all"],
#bf-meetup:checked ~ .blog-filter label[for="bf-meetup"],
#bf-strategy:checked ~ .blog-filter label[for="bf-strategy"],
#bf-insights:checked ~ .blog-filter label[for="bf-insights"] {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
#bf-meetup:checked ~ .news-grid > :not(.cat-meetup),
#bf-strategy:checked ~ .news-grid > :not(.cat-strategy),
#bf-insights:checked ~ .news-grid > :not(.cat-insights) { display: none; }

.li-card { position: relative; border-left: 3px solid #0a66c2; }
.li-card:hover { border-left-color: #0a66c2; }
.li-card::after {
  content: "in";
  position: absolute; top: 16px; right: 16px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px; line-height: 1;
  color: #fff; background: #0a66c2; border-radius: 6px; padding: 5px 6px 6px;
}
.li-card .body { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.li-card .blog-post-meta { padding-right: 40px; }
.li-blurb { color: var(--text-secondary); font-size: 14px; line-height: 1.55; margin: 0; }
.li-link { margin-top: auto; color: var(--accent-cyan); font-size: 14px; font-weight: 500; }
.li-card:hover .li-link { color: var(--accent-violet); }
