@font-face {
  font-family: 'Plex Mono';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/plex-mono-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Plex Mono';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/plex-mono-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Plex Sans';
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/plex-sans.woff2) format('woff2');
}
@font-face {
  font-family: 'Plex Cond';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/plex-cond-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Plex Cond';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/plex-cond-700.woff2) format('woff2');
}

:root {
  --bg: #F5F6F1;
  --surface: #FFFFFF;
  --surface-2: #EBEEE3;
  --ink: #10192B;
  --ink-soft: #48546A;
  --ink-faint: #7C8798;
  --line: #DBDECF;
  --navy: #0F2440;
  --navy-2: #16324F;
  --navy-ink: #EAF0EC;
  --navy-ink-soft: #AEC0D6;
  --navy-line: #2A4665;
  --green: #4E9F3E;
  --green-strong: #35762A;
  --green-bright: #6DC24D;
  --green-soft: #E1F0DA;
  --shadow: 0 1px 2px rgba(16, 25, 43, 0.04), 0 8px 24px -12px rgba(16, 25, 43, 0.18);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A1524;
    --surface: #101E33;
    --surface-2: #15263F;
    --ink: #EAEFE9;
    --ink-soft: #A9B8CC;
    --ink-faint: #7C8CA2;
    --line: #233551;
    --navy: #060F1C;
    --navy-2: #0E1F35;
    --navy-ink: #EAF0EC;
    --navy-ink-soft: #9FB3CC;
    --navy-line: #1E3452;
    --green: #6DC24D;
    --green-strong: #86D967;
    --green-bright: #7FDD5E;
    --green-soft: rgba(109, 194, 77, 0.14);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 28px -14px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg: #0A1524; --surface: #101E33; --surface-2: #15263F; --ink: #EAEFE9;
  --ink-soft: #A9B8CC; --ink-faint: #7C8CA2; --line: #233551; --navy: #060F1C;
  --navy-2: #0E1F35; --navy-ink: #EAF0EC; --navy-ink-soft: #9FB3CC; --navy-line: #1E3452;
  --green: #6DC24D; --green-strong: #86D967; --green-bright: #7FDD5E;
  --green-soft: rgba(109, 194, 77, 0.14);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 28px -14px rgba(0, 0, 0, 0.55);
}
:root[data-theme="light"] {
  --bg: #F5F6F1; --surface: #FFFFFF; --surface-2: #EBEEE3; --ink: #10192B;
  --ink-soft: #48546A; --ink-faint: #7C8798; --line: #DBDECF; --navy: #0F2440;
  --navy-2: #16324F; --navy-ink: #EAF0EC; --navy-ink-soft: #AEC0D6; --navy-line: #2A4665;
  --green: #4E9F3E; --green-strong: #35762A; --green-bright: #6DC24D; --green-soft: #E1F0DA;
  --shadow: 0 1px 2px rgba(16, 25, 43, 0.04), 0 8px 24px -12px rgba(16, 25, 43, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plex Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Plex Cond', 'Plex Sans', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; }

.eyebrow {
  font-family: 'Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-strong);
  font-weight: 500;
}
.eyebrow.on-dark { color: var(--green-bright); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1140px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.brand img { width: 36px; height: 28px; object-fit: contain; border-radius: 4px; display: block; }
.brand span { font-family: 'Plex Cond', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand span em { font-style: normal; color: var(--green-strong); }
nav.links { display: flex; gap: 1.65rem; font-size: 0.88rem; font-weight: 500; }
nav.links a {
  text-decoration: none; color: var(--ink-soft); padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
nav.links a:hover { color: var(--ink); border-color: var(--green); }
nav.links a[aria-current="page"] { color: var(--ink); border-color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 5px;
  width: 38px; height: 34px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: 'Plex Sans', sans-serif; font-weight: 600; font-size: 0.86rem;
  padding: 0.55rem 1.05rem; border-radius: 5px; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
}
.btn-primary { background: var(--green); color: #08210A; }
.btn-primary:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--navy-line); color: var(--navy-ink); }
.btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }
.btn-ghost.on-light { border-color: var(--line); color: var(--ink); }
.btn-ghost.on-light:hover { border-color: var(--green); color: var(--green-strong); }

@media (max-width: 780px) {
  nav.links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
    display: none;
  }
  nav.links.open { display: flex; }
  nav.links a { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-primary.desktop-only { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 88% -10%, color-mix(in srgb, var(--green) 32%, transparent), transparent),
    radial-gradient(ellipse 55% 70% at 5% 110%, color-mix(in srgb, #2E6BD9 22%, transparent), transparent),
    var(--navy);
  color: var(--navy-ink);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--green-bright) 55%, transparent) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 82% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 75% 90% at 82% 0%, #000 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; padding: clamp(2.75rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.25rem, 5vw, 3.25rem); max-width: 1140px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 2.4vw + 1rem, 3.1rem); max-width: 20ch; margin: 0.7rem 0 1rem; color: var(--navy-ink); }
.page-hero h1 em { font-style: normal; color: var(--green-bright); }
.page-hero p.lead { max-width: 58ch; font-size: clamp(1rem, 0.3vw + 0.95rem, 1.12rem); color: var(--navy-ink-soft); }

/* ---------- Home hero (bigger) ---------- */
.hero.page-hero .page-hero-inner { padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4rem); }
.hero h1 { font-size: clamp(2.35rem, 3.4vw + 1.2rem, 3.85rem); max-width: 15ch; }
.hero-cta { display: flex; gap: 0.9rem; margin-top: 2rem; flex-wrap: wrap; }
.ead-banner {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1.1rem;
  background: color-mix(in srgb, var(--green) 16%, transparent); border: 1px solid color-mix(in srgb, var(--green-bright) 45%, transparent);
  color: var(--navy-ink); font-size: 0.85rem; padding: 0.45rem 0.9rem 0.45rem 0.7rem; border-radius: 999px;
}
.ead-banner .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); flex: none; box-shadow: 0 0 6px var(--green-bright); }
.ead-banner strong { color: var(--green-bright); }

.kpi-row {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--navy-line); border: 1px solid var(--navy-line);
}
.kpi-tile { background: color-mix(in srgb, var(--navy) 92%, black 8%); padding: 1.1rem 1.2rem 1.25rem; }
.kpi-num { font-family: 'Plex Mono', monospace; font-variant-numeric: tabular-nums; font-size: clamp(1.4rem, 1.6vw + 1rem, 1.85rem); color: var(--green-bright); font-weight: 500; }
.kpi-label { margin-top: 0.35rem; font-size: 0.78rem; color: var(--navy-ink-soft); line-height: 1.35; }
@media (max-width: 700px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
section { padding: clamp(3rem, 6.5vw, 5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.6rem, 1.5vw + 1.05rem, 2.35rem); margin-top: 0.6rem; }
.section-head p { color: var(--ink-soft); margin-top: 0.85rem; font-size: 1.02rem; max-width: 56ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-foot { margin-top: clamp(1.75rem, 3vw, 2.5rem); }

/* ---------- About / MVV ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.about-text p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 1rem; }
.about-text strong { color: var(--ink); font-weight: 600; }
.mvv { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mvv-item { background: var(--surface); padding: 1.25rem 1.4rem; }
.mvv-item h3 { font-family: 'Plex Mono', monospace; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-strong); font-weight: 500; margin-bottom: 0.5rem; }
.mvv-item p { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 780px; }
.faq-item { background: var(--surface); padding: 1.1rem 1.3rem; }
.faq-item h3 { font-family: 'Plex Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.faq-item p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card { background: var(--surface); padding: 1.6rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; }
.svc-num { font-family: 'Plex Mono', monospace; font-size: 0.78rem; color: var(--ink-faint); }
.svc-card h3 { font-size: 1.12rem; font-weight: 600; font-family: 'Plex Sans', sans-serif; letter-spacing: 0; }
.svc-card p { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps (real sequence) ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.process-step { position: relative; padding-top: 2.6rem; }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: 'Plex Mono', monospace; font-size: 0.82rem; color: var(--green-strong);
  position: absolute; top: 0; left: 0; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green); width: 2.4rem;
}
.process-step h3 { font-size: 1.02rem; font-weight: 700; font-family: 'Plex Sans', sans-serif; margin-bottom: 0.4rem; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }
@media (max-width: 860px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ---------- Training formats & curriculum ---------- */
.format-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .format-row { grid-template-columns: 1fr; } }
.format-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 1.5rem; }
.format-card .eyebrow { display: block; margin-bottom: 0.5rem; }
.format-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-family: 'Plex Sans', sans-serif; }
.format-card p { color: var(--ink-soft); font-size: 0.92rem; }

.curriculum { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 860px) { .curriculum { grid-template-columns: 1fr; } }
.curriculum-block h3 {
  font-family: 'Plex Mono', monospace; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-strong); font-weight: 500; margin-bottom: 0.9rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.curriculum-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.curriculum-block li {
  font-size: 0.95rem; color: var(--ink); padding-left: 1.1rem; position: relative;
}
.curriculum-block li::before {
  content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--green); border-radius: 1px;
}

/* ---------- Projects ---------- */
.proj-lead-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (max-width: 860px) { .proj-lead-grid { grid-template-columns: 1fr; } }
.proj-row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .proj-row3 { grid-template-columns: 1fr; } }
.proj-row2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .proj-row2 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); transition: border-color 0.2s ease, transform 0.2s ease; }
.card:hover { border-color: var(--green); transform: translateY(-2px); }
.card .frame { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-2); }
.proj-lead-grid .frame, .proj-row2 .frame { aspect-ratio: 16 / 11; }
.card .frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.card:hover .frame img { transform: scale(1.035); }
.tag {
  position: absolute; top: 0.7rem; left: 0.7rem;
  font-family: 'Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: color-mix(in srgb, var(--navy) 85%, transparent); color: var(--green-bright);
  padding: 0.3rem 0.55rem; border-radius: 3px; border: 1px solid var(--navy-line);
}
.card .body { padding: 1.15rem 1.25rem 1.35rem; }
.card h3 { font-family: 'Plex Sans', sans-serif; font-weight: 700; font-size: 1.08rem; margin-bottom: 0.4rem; }
.card p.desc { color: var(--ink-soft); font-size: 0.92rem; }
.card .meta { margin-top: 0.75rem; font-family: 'Plex Mono', monospace; font-size: 0.72rem; color: var(--ink-faint); }

/* ---------- Live mini-dashboards (project cards) ---------- */
.frame.dash {
  background: linear-gradient(175deg, #16294A 0%, #0D1B33 100%);
  padding: 1.15rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  aspect-ratio: auto;
}
.frame.dash .tag { position: static; align-self: flex-start; }
.dash-head { display: flex; align-items: center; justify-content: space-between; }
.dash-head .dash-title {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: 'Plex Mono', monospace; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #7FA0C4;
}
.dash-head .dash-title .dot { width: 7px; height: 7px; border-radius: 50%; background: #6DC24D; box-shadow: 0 0 6px rgba(109,194,77,.7); flex: none; }
.dash-kpis { display: flex; gap: clamp(1rem, 3vw, 1.6rem); flex-wrap: wrap; }
.dash-kpi .num { font-family: 'Plex Mono', monospace; font-variant-numeric: tabular-nums; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #8FE070; font-weight: 500; line-height: 1; }
.dash-kpi .lbl { margin-top: 0.3rem; font-size: 0.66rem; color: #90A4C0; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-chart { flex: 1; min-height: 0; }
.dash-chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dash-chart .bar { fill: #55B23F; transition: opacity 0.15s ease; }
.dash-chart .bar:hover { opacity: 0.78; }
.dash-chart .bar.now { fill: #8FE070; }
.dash-chart .axis-label { font-family: 'Plex Mono', monospace; font-size: 6.5px; fill: #7488A6; }
.dash-chart .val-label { font-family: 'Plex Mono', monospace; font-size: 7px; fill: #C4D6EC; }
.dash-chart .baseline { stroke: #24395C; stroke-width: 1; }
.dash-chart .trend-area { fill: url(#techsantosAreaFill); opacity: 0.55; }
.dash-chart .trend-line { fill: none; stroke: #6DC24D; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.dash-chart .trend-point { fill: #8FE070; }
.dash-progress { display: flex; flex-direction: column; gap: 0.35rem; }
.dash-progress .row { display: flex; justify-content: space-between; font-family: 'Plex Mono', monospace; font-size: 0.68rem; color: #90A4C0; }
.dash-progress .row b { color: #8FE070; font-weight: 500; }
.dash-progress .track { height: 7px; border-radius: 4px; background: #1E3452; overflow: hidden; }
.dash-progress .track > span { display: block; height: 100%; background: linear-gradient(90deg, #4E9F3E, #8FE070); border-radius: 4px; }
.status-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.status-chip { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.status-chip .led { width: 9px; height: 9px; border-radius: 50%; }
.status-chip .led.good { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,.7); }
.status-chip .led.warn { background: #FBBF24; box-shadow: 0 0 6px rgba(251,191,36,.7); }
.status-chip .led.crit { background: #EF5350; box-shadow: 0 0 6px rgba(239,83,80,.6); }
.status-chip .lc { font-family: 'Plex Mono', monospace; font-size: 0.58rem; color: #7488A6; }
.status-legend { display: flex; gap: 0.9rem; font-family: 'Plex Mono', monospace; font-size: 0.62rem; color: #7488A6; }
.status-legend span { display: inline-flex; align-items: center; gap: 0.3rem; }
.status-legend i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status-legend i.good { background: #22C55E; }
.status-legend i.warn { background: #FBBF24; }
.status-legend i.crit { background: #EF5350; }

/* ---------- Course: pillars, curriculum accordion, instructor ---------- */
.pillar-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .pillar-row { grid-template-columns: 1fr; } }
.pillar-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 1.6rem 1.5rem 1.75rem; }
.pillar-icon { width: 42px; height: 42px; max-width: 42px; max-height: 42px; flex-shrink: 0; display: block; margin-bottom: 1rem; color: var(--green-strong); }
.pillar-card h3 { font-size: 1.12rem; font-weight: 700; font-family: 'Plex Sans', sans-serif; margin-bottom: 0.6rem; }
.pillar-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.pillar-card li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 1rem; position: relative; }
.pillar-card li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; background: var(--green); border-radius: 1px; }

/* ---------- Course journey ---------- */
.journey { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 0.5rem; padding-top: 0.5rem; }
.journey-track { display: none; }
.journey-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; width: 108px; text-align: center;
  padding: 0.5rem 0.25rem 1.25rem; position: relative;
}
.journey-step::after {
  content: ''; position: absolute; top: 22px; left: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0;
}
.journey-step:last-child::after { display: none; }
.journey-step .n {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center; font-family: 'Plex Mono', monospace; font-weight: 500;
  color: var(--green-strong); font-size: 0.95rem; position: relative; z-index: 1;
}
.journey-step .t { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; line-height: 1.25; }
.journey-step.final .n { background: var(--green); color: #08210A; font-size: 1.1rem; }
.journey-step.final .t { color: var(--ink); }
@media (max-width: 700px) {
  .journey { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .journey-step { flex-direction: row; width: auto; text-align: left; padding: 0.6rem 0; gap: 0.85rem; }
  .journey-step::after { top: 0; left: 22px; width: 2px; height: 100%; }
  .journey-step .t { font-size: 0.88rem; }
}

/* ---------- Persona cards (quem é este curso pra você) ---------- */
.persona-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: clamp(1.5rem, 3vw, 2.25rem); }
@media (max-width: 980px) { .persona-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .persona-row { grid-template-columns: 1fr; } }
.persona-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 1.5rem 1.4rem; transition: border-color 0.2s ease, transform 0.2s ease; }
.persona-card:hover { border-color: var(--green); transform: translateY(-2px); }
.persona-icon {
  width: 42px; height: 42px; min-width: 42px; min-height: 42px; max-width: 42px; max-height: 42px;
  flex-shrink: 0; overflow: hidden; border-radius: 50%;
  background: var(--green-soft); color: var(--green-strong);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.persona-icon svg { width: 20px; height: 20px; max-width: 20px; max-height: 20px; flex-shrink: 0; display: block; }
.persona-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Plex Sans', sans-serif; }
.persona-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Pricing CTA (final push before checkout) ---------- */
.pricing-cta {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse 65% 80% at 50% -15%, color-mix(in srgb, var(--green) 30%, transparent), transparent),
    var(--navy);
  color: var(--navy-ink); border-radius: 8px; padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1.5rem, 5vw, 3rem);
}
.pricing-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.pricing-cta h2 { color: var(--navy-ink); font-size: clamp(1.5rem, 1.4vw + 1rem, 2.1rem); }
.pricing-cta p.lead { color: var(--navy-ink-soft); margin: 0.9rem auto 0; max-width: 50ch; }
.pricing-cta .price { font-family: 'Plex Cond', sans-serif; font-weight: 700; font-size: clamp(2.4rem, 3.2vw + 1rem, 3.4rem); color: var(--green-bright); margin: 1.5rem 0 0.2rem; }
.pricing-cta .price small { display: block; font-family: 'Plex Sans', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--navy-ink-soft); margin-top: 0.4rem; }
.pricing-cta .hero-cta { justify-content: center; margin-top: 1.75rem; }

.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1rem; }
@media (max-width: 900px) { .proof-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proof-row { grid-template-columns: 1fr; } }
.proof-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 1.4rem 1.4rem 1.5rem; }
.proof-num { font-family: 'Plex Cond', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--green-strong); margin: 0 0 0.5rem; }
.proof-t { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.curriculum-modules { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.module { background: var(--surface); }
.module > summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.module > summary::-webkit-details-marker { display: none; }
.module-title { display: flex; align-items: baseline; gap: 0.8rem; }
.module-num { font-family: 'Plex Mono', monospace; font-size: 0.78rem; color: var(--green-strong); }
.module-title h3 { font-size: 1.05rem; font-weight: 700; font-family: 'Plex Sans', sans-serif; }
.module-meta { display: flex; align-items: center; gap: 0.9rem; font-family: 'Plex Mono', monospace; font-size: 0.74rem; color: var(--ink-faint); white-space: nowrap; }
.module-chevron { width: 16px; height: 16px; color: var(--ink-faint); transition: transform 0.2s ease; flex: none; }
.module[open] .module-chevron { transform: rotate(180deg); }
.module-body { padding: 0 1.4rem 1.4rem; }
.module-body p.module-desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1rem; max-width: 68ch; }
.lesson-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.lesson-list li { background: var(--surface); padding: 0.65rem 0.9rem; display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: var(--ink); }
.lesson-list .play {
  flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--green-soft); color: var(--green-strong);
  display: flex; align-items: center; justify-content: center;
}
.lesson-list .play svg { width: 8px; height: 8px; }
.topic-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }
@media (max-width: 640px) { .topic-list { grid-template-columns: 1fr; } }
.topic-list li { font-size: 0.9rem; color: var(--ink); padding-left: 1.05rem; position: relative; }
.topic-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; background: var(--green); border-radius: 1px; }

.instructor-panel { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.5rem, 4vw, 2.25rem); }
@media (max-width: 700px) { .instructor-panel { grid-template-columns: 1fr; } }
.instructor-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--green-bright); display: flex; align-items: center; justify-content: center; font-family: 'Plex Cond', sans-serif; font-weight: 700; font-size: 1.4rem; }
.instructor-panel p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Testimonials ---------- */
.testimonial-stat { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.testimonial-stat.yt { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem); border-bottom: 1px solid var(--line); }
.testimonial-stat:not(.yt) { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.testimonial-stat .stars { color: #E3A008; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-stat .num { font-weight: 700; color: var(--ink); }
.testimonial-stat a { font-size: 0.85rem; color: var(--green-strong); text-decoration: none; font-weight: 600; }
.testimonial-stat a:hover { text-decoration: underline; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--surface); padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.testimonial-card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; font-style: italic; }
.testimonial-card .who { font-size: 0.85rem; font-weight: 700; color: var(--ink); font-style: normal; }

/* ---------- Clients strip ---------- */
.clients-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2rem, 4vw, 2.75rem) 0; }
.clients-list { display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem; }
.chip { font-family: 'Plex Mono', monospace; font-size: 0.82rem; padding: 0.45rem 0.85rem; border: 1px solid var(--line); border-radius: 3px; color: var(--ink-soft); background: var(--surface); }

/* ---------- Microsoft partner ---------- */
.ms-panel {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: clamp(1.5rem, 4vw, 2.5rem);
}
.ms-badge {
  font-family: 'Plex Mono', monospace; font-size: 0.78rem; color: var(--green-strong);
  border: 1px dashed var(--green); border-radius: 6px; padding: 1rem 1.15rem; text-align: center; line-height: 1.5; white-space: nowrap;
}
.ms-badge b { display: block; font-size: 0.95rem; color: var(--ink); font-family: 'Plex Sans', sans-serif; font-weight: 700; margin-bottom: 0.2rem; }
.ms-panel p { color: var(--ink-soft); font-size: 0.98rem; }
.ms-panel p + p { margin-top: 0.6rem; }
@media (max-width: 700px) { .ms-panel { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-panel {
  background: var(--navy); color: var(--navy-ink); border-radius: 8px; padding: clamp(2rem, 5vw, 3.25rem);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 800px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-panel h2 { color: var(--navy-ink); font-size: clamp(1.6rem, 1.4vw + 1rem, 2.2rem); }
.contact-panel p.lead { color: var(--navy-ink-soft); margin-top: 0.9rem; max-width: 46ch; }
.contact-list { display: grid; gap: 0.9rem; align-content: start; }
.contact-item { display: flex; flex-direction: column; gap: 0.15rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--navy-line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .k { font-family: 'Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-bright); }
.contact-item .v { font-size: 1rem; color: var(--navy-ink); }
.contact-item a.v { text-decoration: none; }
.contact-item a.v:hover { color: var(--green-bright); }

/* ---------- Featured course callout ---------- */
.course-feature {
  position: relative; overflow: hidden; color: var(--navy-ink);
  background:
    radial-gradient(ellipse 60% 80% at 95% 20%, color-mix(in srgb, var(--green) 30%, transparent), transparent),
    radial-gradient(ellipse 50% 60% at 0% 100%, color-mix(in srgb, #2E6BD9 20%, transparent), transparent),
    var(--navy);
}
.course-feature-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 800px) { .course-feature-inner { grid-template-columns: 1fr; } }
.course-feature-text h2 { color: var(--navy-ink); font-size: clamp(1.6rem, 1.6vw + 1rem, 2.3rem); margin: 0.6rem 0 1rem; max-width: 20ch; }
.course-feature-text p { color: var(--navy-ink-soft); max-width: 52ch; font-size: 1rem; }
.course-feature-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--navy-line); border: 1px solid var(--navy-line); border-radius: 6px; overflow: hidden; }
.mini-num {
  background: color-mix(in srgb, var(--navy) 88%, black 12%); padding: 1.1rem 1rem; font-family: 'Plex Mono', monospace;
  font-size: 1.15rem; color: var(--green-bright); font-weight: 500; display: flex; flex-direction: column; gap: 0.4rem;
}
.mini-num span { font-family: 'Plex Sans', sans-serif; font-size: 0.72rem; color: var(--navy-ink-soft); font-weight: 400; }

footer.site { padding: 1.75rem 0 2.25rem; font-family: 'Plex Mono', monospace; font-size: 0.76rem; color: var(--ink-faint); border-top: 1px solid var(--line); margin-top: 1rem; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--ink-faint); }
.footer-links a:hover { color: var(--green-strong); }
.footer-social { display: flex; gap: 1.4rem; margin-bottom: 1.4rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--ink-faint); text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { color: #2F6F27; transform: translateY(-2px); }
.footer-social svg { width: 26px; height: 26px; max-width: 26px; max-height: 26px; flex-shrink: 0; display: block; }

/* ---------- Wide footer (multi-column, full site chrome pages) ---------- */
footer.site.footer-wide { padding-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 0.1rem; }
.footer-brand p { font-family: 'Plex Sans', sans-serif; font-size: 0.86rem; color: var(--ink-faint); margin: 0.9rem 0 1.3rem; max-width: 34ch; line-height: 1.55; }
.footer-col h4 { font-family: 'Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 500; margin: 0 0 0.9rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col span { font-family: 'Plex Sans', sans-serif; font-size: 0.88rem; color: var(--ink-faint); text-decoration: none; }
.footer-col a:hover { color: #2F6F27; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.footer-bottom a { color: var(--ink-faint); text-decoration: none; }
.footer-bottom a:hover { color: #2F6F27; }

/* ---------- Compact footer (chromeless conversion pages: comprar.php, aula-gratis.php) ---------- */
footer.site.footer-compact { text-align: center; padding: 2rem 0 2.5rem; }
footer.site.footer-compact .footer-social { justify-content: center; margin-bottom: 1rem; }
footer.site.footer-compact .footer-bottom { justify-content: center; border-top: none; padding-top: 0; }

/* ---------- Blog ---------- */
.blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease; }
.blog-card:hover { border-color: var(--green); transform: translateY(-2px); }
.blog-card .blog-card-eyebrow { font-family: 'Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-strong); }
.blog-card h3 { font-family: 'Plex Sans', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); line-height: 1.3; }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.blog-card .blog-card-meta { font-family: 'Plex Mono', monospace; font-size: 0.72rem; color: var(--ink-faint); margin-top: auto; }

.blog-article { max-width: 720px; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem) 4rem; }
.blog-article .blog-meta { font-family: 'Plex Mono', monospace; font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 0.6rem; }
.blog-article h1 { font-size: clamp(1.8rem, 1.6vw + 1.2rem, 2.6rem); line-height: 1.2; margin-bottom: 1.25rem; }
.blog-article h2 { font-family: 'Plex Sans', sans-serif; font-weight: 700; font-size: 1.4rem; margin: 2.25rem 0 0.9rem; color: var(--ink); }
.blog-article p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.1rem; }
.blog-article p strong { color: var(--ink); }
.blog-article a { color: var(--green-strong); }
.blog-article ul, .blog-article ol { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin: 0 0 1.1rem 1.3rem; }
.blog-article li { margin-bottom: 0.4rem; }
.blog-article video { width: 100%; max-width: 320px; display: block; margin: 1.5rem auto; border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

.key-takeaways { background: var(--surface-2); border-left: 3px solid var(--green); border-radius: 6px; padding: 1.1rem 1.4rem; margin: 1.5rem 0 2rem; }
.key-takeaways .kt-label { font-family: 'Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-strong); margin-bottom: 0.6rem; display: block; }
.key-takeaways ul { margin: 0 0 0 1.1rem; }
.key-takeaways li { color: var(--ink); font-size: 0.94rem; line-height: 1.55; margin-bottom: 0.4rem; }

.blog-faq-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 1.5rem; }
.blog-cta { background: var(--navy); color: var(--navy-ink); border-radius: 10px; padding: clamp(1.75rem, 5vw, 2.5rem); text-align: center; margin: 2.5rem 0; }
.blog-cta h2 { color: var(--navy-ink); margin-top: 0 !important; }
.blog-cta p { color: var(--navy-ink-soft) !important; max-width: 50ch; margin-left: auto; margin-right: auto; }
.blog-cta .hero-cta { justify-content: center; margin-top: 1.2rem; }
