/* =====================================================================
   DEVCAMP — Premium Multi-Page Coding-Bootcamp Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Edit the CSS variables in :root below. Swap --accent /
   --accent2 for your primary colors, adjust --bg / --surface to match,
   and update the font variables plus the Google Fonts <link> in each
   HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #0d1117;   /* page background (dark)               */
  --surface:   #161b22;   /* card / elevated surface              */
  --surface-2: #1c232d;   /* deeper alt surface                   */
  --ink:       #e6edf3;   /* primary text                         */
  --muted:     #8b949e;   /* secondary / muted text               */
  --accent:    #39d353;   /* terminal green (primary accent)      */
  --accent2:   #58a6ff;   /* blue (secondary accent)              */
  --accent-d:  #2ea043;   /* darker green for hovers              */
  --line:      rgba(255,255,255,.09);  /* borders / dividers      */
  --line-2:    rgba(255,255,255,.16);

  /* --- Fonts --- */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* --- Shape & motion --- */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 12px 34px rgba(0,0,0,.45);
  --shadow-lg: 0 28px 64px rgba(0,0,0,.55);
  --glow:      0 0 0 1px rgba(57,211,83,.35), 0 10px 30px rgba(57,211,83,.18);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.13;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent2); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(57,211,83,.3); color: #fff; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: var(--surface); border-block: 1px solid var(--line); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(57,211,83,.1);
  border: 1px solid rgba(57,211,83,.25);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "// "; opacity: .7; }

.lead { font-size: 1.12rem; color: var(--ink); }
.muted { color: var(--muted); }
.accent-text { color: var(--accent); }
.accent2-text { color: var(--accent2); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #07140b;
  box-shadow: 0 8px 22px rgba(57,211,83,.28);
}
.btn-primary:hover { background: var(--accent-d); color: #07140b; box-shadow: 0 12px 30px rgba(57,211,83,.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-blue {
  background: var(--accent2);
  color: #06121f;
  box-shadow: 0 8px 22px rgba(88,166,255,.26);
}
.btn-blue:hover { background: #4493f8; color: #06121f; }

.btn-light {
  background: rgba(255,255,255,.08);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-light:hover { background: #fff; color: var(--bg); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(57,211,83,.35);
  font-family: var(--font-mono);
  font-weight: 700;
  color: #07140b;
}
.brand b { color: var(--accent); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 9px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(88,166,255,.16), transparent 60%),
    radial-gradient(700px 520px at -5% 110%, rgba(57,211,83,.14), transparent 55%),
    var(--bg);
  padding: 92px 0 96px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 500px at 50% 30%, #000, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { max-width: 540px; margin-bottom: 30px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.85rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero visual — pure CSS terminal / code block */
.terminal {
  position: relative;
  background: #0b0f14;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-mono);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: #11161d;
  border-bottom: 1px solid var(--line);
}
.terminal-dots { display: flex; gap: 7px; }
.terminal-dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.terminal-dots i:nth-child(1) { background: #ff5f56; }
.terminal-dots i:nth-child(2) { background: #ffbd2e; }
.terminal-dots i:nth-child(3) { background: #27c93f; }
.terminal-title { font-size: .8rem; color: var(--muted); }
.terminal-body { padding: 20px 22px; font-size: .9rem; line-height: 1.85; }
.terminal-body .line { white-space: pre-wrap; }
.t-prompt { color: var(--accent); }
.t-kw  { color: #ff7b72; }
.t-fn  { color: var(--accent2); }
.t-str { color: #a5d6ff; }
.t-com { color: var(--muted); }
.t-num { color: #79c0ff; }
.t-out { color: var(--muted); }
.t-ok  { color: var(--accent); }
.cursor {
  display: inline-block;
  width: 9px; height: 1.05em;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1.05s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------------------------------------------------------------------
   PARTNER / LOGO STRIP
   --------------------------------------------------------------------- */
.partners { padding: 40px 0; border-bottom: 1px solid var(--line); }
.partners p { text-align: center; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 44px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent2); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(57,211,83,.4); box-shadow: var(--shadow); }

.card .icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: rgba(57,211,83,.1);
  border: 1px solid rgba(57,211,83,.22);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--accent);
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Program card */
.program-card { position: relative; overflow: hidden; }
.program-card .p-emoji {
  width: 54px; height: 54px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent2)));
  color: #06121f;
}
.program-card h3 { margin-bottom: 6px; }
.program-card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
}
.chip.green { color: var(--accent); border-color: rgba(57,211,83,.3); background: rgba(57,211,83,.08); }
.chip.blue  { color: var(--accent2); border-color: rgba(88,166,255,.3); background: rgba(88,166,255,.08); }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06121f;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-mono);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 18px;
  min-height: 360px;
  background:
    radial-gradient(420px 300px at 80% 15%, rgba(88,166,255,.25), transparent 60%),
    linear-gradient(150deg, #11161d, #0b0f14);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  padding: 32px;
}
.split-media .codeblock { width: 100%; }

/* Inline code block (reusable visual) */
.codeblock {
  font-family: var(--font-mono);
  font-size: .86rem;
  line-height: 1.9;
  background: #0b0f14;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--ink);
  overflow-x: auto;
}
.codeblock .ln { display: block; white-space: pre; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(600px 380px at 12% 0%, rgba(57,211,83,.12), transparent 60%),
    radial-gradient(600px 380px at 88% 100%, rgba(88,166,255,.12), transparent 60%),
    var(--surface);
  border-block: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.4vw, 3.1rem);
  display: block;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }
.stat .stat-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  transition: border-color var(--ease), transform var(--ease);
}
.stat .stat-card:hover { border-color: rgba(57,211,83,.4); transform: translateY(-4px); }

/* ---------------------------------------------------------------------
   STEPS (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06121f;
  font-family: var(--font-mono);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.quote-card .stars { color: #f1c40f; margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.55;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #06121f;
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent2)));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 88% 12%, rgba(88,166,255,.22), transparent 60%),
    radial-gradient(500px 360px at 8% 100%, rgba(57,211,83,.2), transparent 60%),
    linear-gradient(150deg, #11161d, #0b0f14);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 85% -20%, rgba(88,166,255,.16), transparent 60%),
    radial-gradient(500px 320px at 0% 120%, rgba(57,211,83,.12), transparent 60%),
    var(--bg);
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(600px 300px at 30% 50%, #000, transparent 80%);
  pointer-events: none;
}
.page-banner .container { position: relative; }
.page-banner h1 { margin-bottom: 10px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* ---------------------------------------------------------------------
   FILTER BAR (programs page)
   --------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--line-2); }
.filter-btn.active { background: var(--accent); color: #06121f; border-color: var(--accent); }

/* ---------------------------------------------------------------------
   CURRICULUM (programs page)
   --------------------------------------------------------------------- */
.curriculum {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: mod;
}
.mod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px 22px 22px 24px;
}
.mod .wk { font-family: var(--font-mono); font-size: .76rem; color: var(--accent2); }
.mod h3 { font-size: 1.08rem; margin: 6px 0 6px; }
.mod p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------------------------------------------------------------------
   OUTCOMES — salary / role breakdown
   --------------------------------------------------------------------- */
.role-row {
  display: grid;
  grid-template-columns: 200px 1fr 110px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.role-row:last-child { border-bottom: none; }
.role-row .role-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.role-row .bar-track { height: 10px; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; }
.role-row .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.role-row .role-sal { font-family: var(--font-mono); color: var(--accent); text-align: right; font-size: .95rem; }

/* Big outcome stat tiles */
.outcome-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.outcome-tile {
  background:
    radial-gradient(300px 200px at 80% 0%, rgba(57,211,83,.12), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.outcome-tile strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.outcome-tile span { color: var(--muted); }

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.value-card .icon { background: linear-gradient(135deg, rgba(57,211,83,.14), rgba(88,166,255,.18)); border-color: var(--line); }

.team-card { text-align: center; }
.team-card .team-photo {
  width: 104px; height: 104px;
  border-radius: 22px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.9rem;
  color: #06121f;
  background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent2)));
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent2); font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-card p { font-size: .92rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: #0b0f14;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5b6470; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57,211,83,.18);
}
.field select { color: var(--ink); }
.field select option { background: #0b0f14; color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b6b; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b6b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(57,211,83,.1);
  border: 1px solid rgba(57,211,83,.4);
  color: var(--accent);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 11px; background: rgba(57,211,83,.1);
  border: 1px solid rgba(57,211,83,.22);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(57,211,83,.05), rgba(88,166,255,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #0a0e13;
  color: var(--muted);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: var(--ink); margin-bottom: 14px; }
.site-footer .brand:hover { color: var(--ink); }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: var(--ink); font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: var(--accent); color: #06121f; border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .curriculum { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .terminal { max-width: 520px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .curriculum, .outcome-tiles { grid-template-columns: 1fr; }
  .role-row { grid-template-columns: 130px 1fr 80px; gap: 12px; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 460px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .role-row { grid-template-columns: 1fr; gap: 6px; }
  .role-row .bar-track { order: 3; }
  .role-row .role-sal { text-align: left; }
}
