@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --green: #A6CC3B;
  --teal: #44BBB9;
  --teal-deep: #349291;
  --orange: #E9642F;
  --charcoal: #333C46;
  --slate: #545B5D;
  --mist: #D7D6D8;
  --sand: #D1C7B9;
  --paper: #F5F5F5;
  --white: #FFFFFF;
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-soft: 0 8px 24px rgba(51, 60, 70, 0.06);
  --border-soft: 1px solid #D7D6D8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(51, 60, 70, 0.08);
}

.masthead {
  background: var(--green);
  border-bottom: 0;
}

.masthead-inner,
.primary-nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 72px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(51, 60, 70, 0.76);
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}

.brand-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.button-teal {
  background: var(--teal);
  color: var(--white);
}

.button-orange {
  background: var(--orange);
  color: var(--white);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
}

.button-outline {
  background: var(--white);
  border-color: transparent;
  color: var(--charcoal);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--paper);
  border-color: transparent;
}

.button-light {
  background: var(--white);
  border-color: var(--mist);
  color: var(--charcoal);
}

.primary-nav {
  background: linear-gradient(90deg, #349291 0%, #44BBB9 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  height: 2px;
  background: transparent;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(51, 60, 70, 0.1);
}

.nav-links a.active::after {
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  background: var(--white);
  display: block;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  background: linear-gradient(135deg, #349291 0%, #333C46 100%);
  color: var(--white);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero-pillar-1::after,
.hero-pillar-2::after,
.hero-project::after,
.hero-pillar-4::after,
.hero-pillar-5::after {
  content: none;
}

.hero-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: 420px;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-home .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 34px;
  align-items: center;
}

.hero-project .hero-inner {
  min-height: 420px;
  padding: 56px 0;
}

.hero-home {
  background: linear-gradient(135deg, #349291 0%, #333C46 100%);
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 60, 70, 0.88) 0%, rgba(52, 146, 145, 0.72) 52%, rgba(51, 60, 70, 0.62) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-home .hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero {
  color: var(--white);
}

.page-hero .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 920px;
}

.hero-pillar-1 {
  background: linear-gradient(135deg, #349291 0%, #333C46 100%);
}

.hero-pillar-2 {
  background: linear-gradient(135deg, rgba(52, 146, 145, 0.8) 0%, rgba(51, 60, 70, 0.96) 60%);
}

.hero-project {
  background:
    linear-gradient(135deg, rgba(52, 146, 145, 0.8) 0%, rgba(51, 60, 70, 0.96) 60%);
}

.hero-pillar-4 {
  background: linear-gradient(135deg, rgba(52, 146, 145, 0.8) 0%, rgba(51, 60, 70, 0.96) 60%);
}

.hero-pillar-5 {
  background: linear-gradient(135deg, rgba(52, 146, 145, 0.8) 0%, rgba(51, 60, 70, 0.96) 60%);
}

.eyebrow,
.section-label,
.card-kicker,
.eyeline {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: none;
  border: 0;
  padding: 0;
}

.eyebrow::before {
  content: none;
}

.hero h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-home h1 {
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  line-height: 1.12;
}

.hero-project h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.hero h1 .accent {
  color: var(--white);
}

.hero p.lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  align-self: center;
  justify-self: end;
  width: min(100%, 340px);
}

.hero-card h2 {
  margin: 0 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
}

.hero-card p,
.hero-card li {
  color: var(--white);
  line-height: 1.7;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  padding-left: 16px;
  position: relative;
}

.hero-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 56px 0;
  background: var(--white);
}

.section-tint,
.section-deep {
  background: var(--paper);
  color: var(--charcoal);
}

.section-deep .section-title,
.section-deep .section-copy,
.section-deep p,
.section-deep li {
  color: var(--slate);
}

.section-inner {
  display: grid;
  gap: 28px;
}

.section-header {
  max-width: 760px;
}

.section-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--charcoal);
}

.section-copy {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-4 {
  align-items: stretch;
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.panel,
.card,
.placeholder,
.stat,
.pillar-card,
.roadmap,
.table-wrap,
.quote-panel,
.band {
  border-radius: var(--radius-md);
}

.panel,
.card,
.placeholder,
.stat,
.pillar-card,
.table-wrap,
.quote-panel {
  background: var(--white);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.panel,
.card,
.placeholder {
  padding: 28px;
}

.card {
  transition: border-color 0.2s ease;
}

.grid-4 > .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-accent-green {
  border-top: 3px solid var(--teal);
}

.card-accent-teal {
  border-top: 3px solid var(--teal);
}

.card-accent-orange {
  border-top: 3px solid var(--teal);
}

.card-accent-dark {
  border-top: 3px solid var(--teal);
}

.card h3,
.panel h3,
.placeholder h3 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.module-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.module-layout {
  display: grid;
  gap: 24px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.module-card-full {
  padding: 24px;
}

[id] {
  scroll-margin-top: 160px;
}

.module-card-body {
  display: grid;
  gap: 12px;
  width: 100%;
}

.module-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  width: 100%;
  margin: 18px 0;
}

.module-stat-grid .stat {
  min-width: 0;
}

.module-stat-grid .stat-number {
  font-size: 30px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.module-stat-grid .stat-label {
  overflow-wrap: normal;
  white-space: normal;
}

.module-card-detail {
  display: grid;
  gap: 12px;
  width: 100%;
}

.module-card-body .module-sequencing,
.module-card-detail .module-sequencing {
  margin-top: 0 !important;
}

.status-badge {
  position: static;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
  margin: -2px 0 12px;
}

.module-sequencing {
  margin-top: auto !important;
  padding-top: 12px;
  border-top: 1px solid #E8E8E8;
  font-size: 12px !important;
  color: var(--slate) !important;
  line-height: 1.5 !important;
}

.card p,
.panel p,
.placeholder p,
.card li,
.panel li {
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
  text-align: left;
}

.card-stack,
.checklist,
.timeline {
  display: grid;
  gap: 16px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 18px;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats {
  gap: 18px;
}

.stat {
  padding: 24px;
}

.stats-strip-section {
  padding: 40px 0 0;
  background: var(--paper);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  height: 112px;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 16px;
  text-align: center;
  position: relative;
  min-width: 0;
}

.stat-item + .stat-item {
  border-left: 0;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--mist);
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.05em;
  color: var(--teal);
  white-space: nowrap;
}

.stat-label {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.3;
  max-width: 100%;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 320px;
  padding: 26px 22px;
  text-align: center;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(51, 60, 70, 0.12);
}

.eyeline {
  margin-bottom: 4px;
  flex: 0 0 auto;
}

.pillar-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--teal);
}

.pillar-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.14rem;
  line-height: 1.2;
  min-height: 3.6em;
  display: flex;
  align-items: flex-start;
}

.pillar-description {
  margin-bottom: 0;
  flex: 1;
}

.pillar-link {
  margin-top: auto;
  padding-top: 16px;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-soft);
}

.roadmap-stage {
  padding: 26px 22px;
  background: var(--white);
  border-right: 1px solid #E8E8E8;
}

.roadmap-stage:last-child {
  border-right: 0;
}

.roadmap-stage h3 {
  margin: 0 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--charcoal);
}

.roadmap-stage p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.roadmap-stage ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.roadmap-stage li {
  padding-left: 14px;
  position: relative;
  color: var(--slate);
  line-height: 1.65;
}

.roadmap-stage li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.roadmap-stage:nth-child(1),
.roadmap-stage:nth-child(2),
.roadmap-stage:nth-child(3),
.roadmap-stage:nth-child(4),
.roadmap-stage:nth-child(5) {
  border-top: 3px solid var(--teal);
}

.placeholder {
  padding: 24px 24px 24px 20px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 3px solid var(--teal);
  box-shadow: none;
}

.placeholder-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.placeholder-note {
  margin-top: 12px;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--mist);
}

.timeline-item {
  position: relative;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(51, 60, 70, 0.08);
  vertical-align: top;
}

th {
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal);
}

td {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--slate);
}

.quote-panel {
  padding: 28px 32px;
  border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0;
  background: rgba(68, 187, 185, 0.06);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}

.quote-panel .section-label {
  margin-bottom: 10px;
}

.quote-panel p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  color: var(--charcoal);
}

.quote-panel .section-label + p {
  margin-top: 0;
}

.raid-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  flex: 1;
}

.raid-card-risk,
.raid-card-issue {
  border-top-color: var(--orange);
}

.raid-item {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
}

.raid-item::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.vendor-status {
  margin-top: 18px;
  border: 1px solid var(--mist);
  background: var(--paper);
}

.vendor-status-header,
.vendor-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr) minmax(0, 1.35fr);
  gap: 16px;
  padding: 12px 16px;
}

.vendor-status-header {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vendor-status-row {
  border-top: 1px solid #E8E8E8;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Week-based Gantt */
.gantt-section {
  background: var(--white);
}

.gantt-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gantt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.gantt-actions .button {
  border: 0;
  cursor: pointer;
}

.gantt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 700;
}

.gantt-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gantt-swatch {
  width: 18px;
  height: 12px;
  border-radius: var(--radius-sm);
  background: var(--teal);
}

.gantt-swatch-process {
  background: var(--teal);
}

.gantt-swatch-technology {
  background: var(--teal-deep);
}

.gantt-swatch-change {
  background: var(--green);
}

.gantt-swatch-process-technology {
  background: var(--slate);
}

.gantt-swatch-milestone {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}

.gantt-shell {
  border: var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--white);
  overflow: hidden;
}

.gantt-scroll {
  --gantt-phase-width: 44px;
  --gantt-activity-width: 300px;
  --gantt-workstream-width: 120px;
  --gantt-left-width: calc(var(--gantt-phase-width) + var(--gantt-activity-width) + var(--gantt-workstream-width));
  --gantt-week-width: 48px;
  overflow-x: auto;
  max-width: 100%;
}

.gantt-grid {
  min-width: calc(var(--gantt-left-width) + var(--gantt-total-week-width));
}

.gantt-row {
  display: grid;
  grid-template-columns: var(--gantt-activity-width) var(--gantt-workstream-width) minmax(var(--gantt-total-week-width), 1fr);
  min-height: 32px;
}

.gantt-week-row {
  position: sticky;
  top: 0;
  z-index: 5;
  grid-template-columns: var(--gantt-phase-width) var(--gantt-activity-width) var(--gantt-workstream-width) minmax(var(--gantt-total-week-width), 1fr);
  min-height: 46px;
}

.gantt-label {
  position: sticky;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  background: var(--white);
  color: var(--charcoal);
}

.gantt-corner {
  z-index: 7;
  justify-content: center;
  padding: 0 8px;
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gantt-phase-header {
  left: 0;
}

.gantt-activity-header {
  left: var(--gantt-phase-width);
}

.gantt-workstream-header {
  left: calc(var(--gantt-phase-width) + var(--gantt-activity-width));
}

.gantt-phase-group {
  display: grid;
  grid-template-columns: var(--gantt-phase-width) minmax(calc(var(--gantt-activity-width) + var(--gantt-workstream-width) + var(--gantt-total-week-width)), 1fr);
  min-height: 0;
}

.gantt-phase-tasks {
  min-width: 0;
  min-height: 0;
  overflow: visible;
}

.gantt-task-label {
  left: var(--gantt-phase-width);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}

.gantt-task-label-milestone {
  font-weight: 700;
  font-style: italic;
}

.gantt-workstream-label {
  left: calc(var(--gantt-phase-width) + var(--gantt-activity-width));
  justify-content: center;
  padding: 0 8px;
  font-size: 0.74rem;
  text-align: center;
}

.gantt-phase-label {
  position: sticky;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid #E8E8E8;
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  height: 100%;
  contain: size;
}

.gantt-phase-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

.gantt-phase-discovery .gantt-phase-label,
.gantt-phase-data-migration .gantt-phase-label {
  background: var(--charcoal);
}

.gantt-phase-configuration .gantt-phase-label,
.gantt-phase-testing-training .gantt-phase-label {
  background: var(--teal-deep);
}

.gantt-phase-go-live-hypercare .gantt-phase-label {
  background: var(--teal);
}

.gantt-week-track,
.gantt-track {
  display: grid;
  grid-template-columns: var(--gantt-week-columns);
}

.gantt-week-track {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--paper);
}

.gantt-week-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.gantt-track {
  position: relative;
  align-items: center;
  min-height: 32px;
  border-bottom: 1px solid #E8E8E8;
  overflow: visible;
}

.gantt-gridlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: var(--gantt-week-columns);
  pointer-events: none;
}

.gantt-gridline {
  border-right: 1px solid #E8E8E8;
}

.gantt-item {
  font: inherit;
}

.gantt-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 14px;
  margin: 0 2px;
  padding: 0;
  border-radius: 2px;
  box-shadow: none;
}

.gantt-milestone-slot {
  position: relative;
  z-index: 3;
  min-width: 0;
  overflow: visible;
}

.gantt-milestone {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  width: 14px;
  height: 14px;
  padding: 0;
  background: var(--orange);
  transform: translate(50%, -50%) rotate(45deg);
  box-shadow: none;
  visibility: visible;
}

.gantt-category-process {
  background: var(--teal);
}

.gantt-category-technology {
  background: var(--teal-deep);
}

.gantt-category-change-mgmt {
  background: var(--green);
  color: var(--charcoal);
}

.gantt-category-process-technology {
  background: var(--slate);
}

.gantt-category-milestone {
  background: var(--orange);
}

.leadership-title {
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.15;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

.vendor-split {
  align-items: flex-start;
}

.vendor-split > .panel {
  height: fit-content;
  padding: 28px;
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.vendor-split > .panel:first-child {
  border-left: 4px solid var(--teal);
}

.paired-cards {
  align-items: stretch;
}

.paired-cards > * {
  height: 100%;
}

.paired-cards > .panel:first-child,
.paired-cards > .card:first-child,
.paired-cards > .placeholder:first-child {
  border-left: 4px solid var(--teal);
}

.paired-cards > .panel:last-child,
.paired-cards > .card:last-child,
.paired-cards > .placeholder:last-child {
  border-left: 4px solid var(--teal);
}

.band {
  padding: 22px 24px;
  background: var(--paper);
  border: var(--border-soft);
  box-shadow: none;
}

.band h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.band p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: var(--border-soft);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--slate);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar .team-photo-barb {
  object-position: center top;
  transform: scale(1.9);
  transform-origin: 55% 22%;
}

.team-group + .team-group {
  margin-top: 54px;
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.newsletter-feed {
  display: grid;
  gap: 20px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  background: var(--white);
  border: var(--border-soft);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.newsletter-thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
}

.newsletter-thumb > img,
.newsletter-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter-thumb > img {
  object-fit: cover;
}

.newsletter-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  padding: 28px;
}

.newsletter-placeholder img {
  width: 86px;
}

.newsletter-card h2,
.updates-panel h2,
.newsletter-article h2 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
}

.newsletter-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.updates-sidebar {
  display: grid;
  gap: 18px;
}

.updates-panel {
  padding: 22px;
}

.sidebar-link-list {
  display: grid;
  gap: 10px;
}

.sidebar-link-list a {
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--charcoal);
}

.form-control {
  width: 100%;
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 12px 13px;
  color: var(--charcoal);
}

.form-control:focus {
  outline: 3px solid rgba(68, 187, 185, 0.28);
  border-color: var(--teal);
}

.feedback-form {
  display: grid;
  gap: 22px;
}

.feedback-form .button {
  border: 0;
  justify-self: start;
}

.hidden-field {
  display: none;
}

.team-card h3 {
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.team-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.training-hero .hero-inner {
  position: relative;
  z-index: 2;
}

.training-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(51, 60, 70, 0.88) 0%, rgba(52, 146, 145, 0.72) 52%, rgba(51, 60, 70, 0.62) 100%);
}

@media (min-width: 721px) {
  .training-hero .hero-inner,
  .home-hero .hero-inner {
    min-height: 512px;
    padding: 68px 0 56px;
    align-items: start;
  }
}

.training-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #D7D6D8;
  border-top: 3px solid var(--teal);
  border-radius: 4px;
}

.training-card h2 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.training-duration {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(68, 187, 185, 0.08);
  color: #349291;
  font-size: 12px;
  font-weight: 700;
}

.training-description {
  flex: 1;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.training-card a {
  margin-top: auto;
  padding-top: 16px;
  color: var(--teal-deep);
  font-weight: 700;
}

.training-callout-section {
  padding-top: 0;
}

.training-callout {
  padding: 32px;
  background: var(--white);
  border: 1px solid #D7D6D8;
  border-left: 4px solid var(--teal);
  border-radius: 4px;
}

.training-callout h2 {
  margin: 0 0 12px;
  color: var(--charcoal);
}

.training-callout > p:not(.section-label) {
  margin: 0 0 24px;
  color: var(--slate);
  line-height: 1.7;
}

.feedback-contact {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.feedback-email {
  color: var(--teal-deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.feedback-note {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
  font-style: italic;
}

.program-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.program-identity-grid .card {
  height: 100%;
}

.section-closing {
  padding: 48px 0;
  background: rgba(68, 187, 185, 0.06);
}

.footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
}

.footer-copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  font-weight: 700;
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats,
  .grid-4,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-home .hero-inner,
  .split,
  .updates-layout,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .masthead-inner,
  .primary-nav-inner,
  .footer-inner {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero-card {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav-inner {
    min-height: 58px;
    padding: 6px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 10px;
    background: var(--teal);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    min-height: 50px;
    border-radius: var(--radius-sm);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vendor-status-header,
  .vendor-status-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gantt-header {
    display: grid;
  }

  .gantt-scroll {
    --gantt-activity-width: 260px;
    --gantt-workstream-width: 110px;
    --gantt-week-width: 58px;
  }

  .updates-sidebar {
    order: 2;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    min-height: 420px;
    padding: 44px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .section {
    padding: 52px 0;
  }

  .grid-5,
  .grid-4,
  .stats,
  .pillars-grid,
  .roadmap,
  .team-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    height: auto;
  }

  .stats-strip .stat-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .stat-item {
    padding: 18px 14px;
    min-height: 0;
  }

  .stat-item + .stat-item {
    border-left: 0;
  }

  .stat-item + .stat-item::before {
    content: none;
  }

  .gantt-scroll {
    --gantt-activity-width: 220px;
    --gantt-workstream-width: 100px;
    --gantt-week-width: 54px;
  }

  .gantt-label {
    padding: 0 12px;
  }

  .gantt-task-label {
    font-size: 0.82rem;
  }

  .newsletter-card,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .card,
  .placeholder,
  .quote-panel,
  .team-card {
    padding: 22px;
  }

  .masthead-inner {
    padding: 18px 0;
  }

  .brand-title {
    font-size: 1.16rem;
  }

  .brand-subtitle {
    font-size: 0.85rem;
  }
}
