:root {
  --ink: #f8fafc;
  --muted: #a8b3c7;
  --faint: #75829b;
  --paper: #07111f;
  --surface: rgba(15, 25, 42, 0.78);
  --surface-strong: rgba(22, 34, 56, 0.92);
  --surface-hover: rgba(32, 48, 78, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.3);
  --teal: #2dd4bf;
  --teal-dark: #5eead4;
  --coral: #8b5cf6;
  --amber: #f59e0b;
  --blue: #38bdf8;
  --glow: rgba(45, 212, 191, 0.35);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(45, 212, 191, 0.2), transparent 28%),
    radial-gradient(circle at 85% 2%, rgba(139, 92, 246, 0.22), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #0a1220 46%, #07111f 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 64px);
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(7, 17, 31, 0.84);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.inner-header {
  position: sticky;
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 174px;
  object-fit: contain;
}

.site-nav {
  gap: 20px;
  font-weight: 800;
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: rgba(15, 25, 42, 0.7);
  color: inherit;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 64px) 76px;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 212, 191, 0.32), transparent 32%),
    radial-gradient(circle at 35% 10%, rgba(139, 92, 246, 0.26), transparent 30%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.72) 48%, rgba(7, 17, 31, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.24) 0%, rgba(7, 17, 31, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  width: min(680px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: #04111f;
  box-shadow: 0 0 26px -5px var(--glow);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(15, 25, 42, 0.64);
  color: #ffffff;
}

.button-light {
  margin-top: 12px;
  background: #ffffff;
  color: #07111f;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 150px;
  padding: 28px clamp(20px, 4vw, 44px);
  background: rgba(11, 20, 36, 0.92);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.audience-grid,
.solution-columns,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article,
.solution-column,
.insights-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.audience-grid article {
  min-height: 270px;
  padding: 26px;
}

.audience-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 800;
}

.audience-grid a,
.solution-column a,
.insights-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.solutions-section {
  background: rgba(5, 12, 24, 0.68);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-column {
  padding: 26px;
}

.solution-column a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.solution-column a::after {
  content: ">";
}

.section-block,
.audience-section,
.solutions-section,
.courses-section,
.catalogue-section,
.metrics-section,
.quote-section,
.insights-section,
.section-band,
.cta-section,
.site-footer {
  padding-right: clamp(20px, 5vw, 64px);
  padding-left: clamp(20px, 5vw, 64px);
}

.section-block {
  padding-top: 92px;
  padding-bottom: 92px;
}

.audience-section,
.solutions-section,
.courses-section,
.catalogue-section,
.insights-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.page-hero {
  padding: 150px clamp(20px, 5vw, 64px) 84px;
  background:
    radial-gradient(circle at 16% 12%, rgba(45, 212, 191, 0.2), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(139, 92, 246, 0.22), transparent 32%),
    #07111f;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  width: min(920px, 100%);
  margin-bottom: 22px;
}

.page-hero p:last-child {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.split-layout > div:first-child {
  position: sticky;
  top: 110px;
}

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

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

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

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

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

.feature-card,
.programme-card,
.course-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.programme-card,
.course-card {
  min-height: 220px;
}

.course-card {
  display: flex;
  flex-direction: column;
}

.course-card p:not(.role-label) {
  flex: 1;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.course-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-button {
  margin-top: 24px;
}

.catalogue-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(180px, 0.7fr));
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.catalogue-controls label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.catalogue-controls input,
.catalogue-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
}

.results-summary {
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.about-story p {
  font-size: 1.03rem;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.about-panel,
.team-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-panel {
  padding: 28px;
}

.about-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.about-panel li + li {
  margin-top: 10px;
}

.card-icon,
.consulting-list span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card:nth-child(2) .card-icon {
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue);
}

.feature-card:nth-child(3) .card-icon {
  background: rgba(245, 158, 11, 0.16);
  color: var(--amber);
}

.feature-card:nth-child(4) .card-icon {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 88px);
  padding-top: 90px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 212, 191, 0.16), transparent 28%),
    rgba(4, 12, 24, 0.92);
  color: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-band p {
  color: rgba(255, 255, 255, 0.7);
}

.consulting-list {
  display: grid;
  gap: 16px;
}

.consulting-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.consulting-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.consulting-list p {
  grid-column: 2;
  margin-bottom: 0;
}

.consulting-list span {
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.metrics-section div {
  min-height: 170px;
  padding: 30px;
  background: rgba(11, 20, 36, 0.92);
}

.metrics-section strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.metrics-section span {
  color: var(--muted);
  font-weight: 700;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 88px);
  padding: 88px clamp(20px, 5vw, 64px);
  background: transparent;
}

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

.trust-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 42px;
}

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

.process-grid article {
  padding-top: 24px;
  border-top: 3px solid var(--line);
}

.process-grid span {
  background: var(--teal);
  color: #07111f;
}

.team-section {
  padding: 88px clamp(20px, 5vw, 64px);
  background: rgba(5, 12, 24, 0.72);
}

.page-team {
  background: var(--paper);
}

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

.team-card {
  min-height: 330px;
  padding: 24px;
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  margin-bottom: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(139, 92, 246, 0.2)),
    rgba(255, 255, 255, 0.04);
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 800;
}

.role-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.long-copy p {
  font-size: 1.04rem;
}

.quote-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 88px;
  padding-bottom: 88px;
  background: rgba(5, 12, 24, 0.68);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-card {
  min-height: 360px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.quote-card-dark {
  background: var(--surface-strong);
  color: #ffffff;
}

.quote-card-dark cite {
  color: rgba(255, 255, 255, 0.72);
}

blockquote {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.insights-section {
  background: transparent;
}

.insights-grid article {
  min-height: 250px;
  padding: 26px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 30px;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 80% 14%, rgba(45, 212, 191, 0.18), transparent 34%),
    rgba(5, 12, 24, 0.78);
  border-top: 1px solid var(--line);
}

.cta-section > div {
  width: min(760px, 100%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
  color: var(--muted);
  background: rgba(5, 12, 24, 0.94);
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 142px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(251, 250, 246, 0.98);
    color: var(--ink);
    box-shadow: 0 20px 35px rgba(17, 24, 39, 0.12);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-section {
    min-height: 88vh;
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .proof-strip,
  .split-layout,
  .about-section,
  .section-band,
  .audience-grid,
  .solution-columns,
  .metrics-section,
  .quote-section,
  .process-grid,
  .team-grid,
  .course-grid,
  .catalogue-grid,
  .catalogue-controls,
  .programme-grid,
  .trust-section,
  .trust-grid,
  .insights-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .split-layout > div:first-child {
    position: static;
  }

  .section-block,
  .audience-section,
  .solutions-section,
  .courses-section,
  .catalogue-section,
  .section-band,
  .quote-section,
  .team-section,
  .trust-section,
  .insights-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand-logo {
    height: 34px;
    max-width: 134px;
  }

  .site-nav {
    top: 68px;
  }

  .hero-section {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 13, 24, 0.9), rgba(8, 13, 24, 0.64)),
      linear-gradient(180deg, rgba(8, 13, 24, 0.22), rgba(8, 13, 24, 0.78));
  }

  .hero-actions,
  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip div {
    min-height: auto;
  }

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

  .feature-card,
  .programme-card,
  .course-card {
    min-height: 0;
  }

  .consulting-list div {
    grid-template-columns: 1fr;
  }

  .consulting-list p {
    grid-column: 1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
