:root {
  --ink: #0b1220;
  --muted: #5d6472;
  --paper: #f7f3ec;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 24px 70px rgba(28, 25, 23, 0.14);
  --radius: 8px;
  --brand: #1e4f6a;
  --brand-deep: #102f3f;
  --accent: #c9923f;
  --accent-soft: #efe5d4;
  --warm: #efe3d1;
  --sage: #6f7f68;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "IBM Plex Serif", Georgia, serif;
}

.theme-innovate {
  --brand: #2454b8;
  --brand-deep: #0b255f;
  --accent: #35a6b8;
  --accent-soft: #dff4f7;
}

.theme-innovate .hero {
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.88) 44%, rgba(247, 243, 236, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(223, 244, 247, 0.36)),
    url("dashboard.png") center right / cover,
    linear-gradient(135deg, #fffaf2 0%, #e7f4f7 100%);
}

.theme-training {
  --brand: #315fa8;
  --brand-deep: #122d63;
  --accent: #56a878;
  --accent-soft: #e0f0e7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.theme-main .site-header {
  color: var(--ink);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 1px 20px rgba(28, 25, 23, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  place-items: center;
  border-radius: 18px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.is-scrolled .brand-mark {
  background: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-badge {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--ink);
  transition: transform 180ms ease, filter 180ms ease;
  will-change: transform;
}

.header-badge img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
  transform-origin: center;
}

.header-badge span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 18px rgba(29, 78, 216, 0.14));
}

.header-badge:hover img {
  transform: translateY(-1px) scale(1.04) rotate(-3deg);
}

.header-badge:nth-child(2):hover img {
  transform: translateY(-1px) scale(1.04) rotate(3deg);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(30, 79, 106, 0.24);
  border-radius: 999px;
}

.is-scrolled .nav-cta {
  border-color: rgba(30, 79, 106, 0.25);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 28px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.88) 42%, rgba(247, 243, 236, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(239, 227, 209, 0.42)),
    url("esra-hero-new-web.jpg") center right / cover,
    linear-gradient(135deg, #fffaf2 0%, #f1e5d4 100%);
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -16% -34% auto;
  width: min(780px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 63, 0.18), rgba(30, 79, 106, 0.08) 42%, transparent 70%);
  filter: blur(10px);
}

.hero-home {
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: 128px clamp(20px, 4vw, 56px) 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section .eyebrow,
.contact-section .eyebrow {
  color: var(--brand);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(30, 79, 106, 0.22);
}

.hero .button-primary {
  color: var(--white);
  background: var(--brand);
}

.button-secondary {
  border: 1px solid rgba(30, 79, 106, 0.22);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.72);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  padding: 10px 13px;
  border: 1px solid rgba(30, 79, 106, 0.14);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-resource-link {
  display: grid;
  max-width: 640px;
  gap: 6px;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 146, 63, 0.34);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(28, 25, 23, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-resource-link:hover {
  border-color: rgba(201, 146, 63, 0.62);
  box-shadow: 0 20px 46px rgba(28, 25, 23, 0.12);
  transform: translateY(-2px);
}

.hero-resource-link span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-resource-link strong {
  color: var(--brand-deep);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  align-self: center;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.hero-object {
  display: grid;
  place-items: center;
}

.hero-object::before {
  content: "";
  position: absolute;
  inset: 10% 4% 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.14), rgba(255, 255, 255, 0.52) 42%, transparent 72%);
  filter: blur(28px);
}

.hero-object img {
  position: relative;
  z-index: 1;
  width: min(780px, 118%);
  max-width: none;
  filter: drop-shadow(0 34px 72px rgba(29, 78, 216, 0.18));
}

.sub-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 28, 84, 0.42), transparent 48%),
    linear-gradient(180deg, transparent 56%, rgba(4, 11, 36, 0.48));
}

.sub-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-panel,
.learning-card,
.innovation-panel {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  max-width: 280px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 28, 84, 0.72);
  backdrop-filter: blur(14px);
}

.signal-panel span,
.learning-card span,
.innovation-panel span,
.venture-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-panel strong,
.learning-card strong,
.innovation-panel strong {
  display: block;
  line-height: 1.25;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.intro-grid > p {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.2;
}

.intro-stat {
  border-left: 4px solid var(--accent);
  padding-left: 22px;
}

.intro-stat strong,
.intro-stat span {
  display: block;
}

.intro-stat strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.intro-stat span,
.section-copy,
.service-card p,
.process-list p,
.venture-tile p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.reality-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("background3-web.jpg") center / cover;
}

.reality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.reality-grid blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.reality-copy {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(10px);
}

.reality-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.reality-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.streams-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.94), rgba(239, 227, 209, 0.86)),
    url("background1-web.jpg") center / cover,
    var(--paper);
}

.streams-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 146, 63, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%);
}

.streams-section .section-inner {
  position: relative;
  z-index: 1;
}

.streams-section .section-heading {
  max-width: 860px;
}

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

.stream-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid rgba(201, 146, 63, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 244, 0.78)),
    var(--paper);
  box-shadow: 0 20px 58px rgba(28, 25, 23, 0.1);
}

.stream-mark {
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.stream-mark img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.stream-card span {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stream-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.stream-card p {
  color: var(--muted);
  line-height: 1.72;
}

.stream-card strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--brand-deep);
  line-height: 1.48;
}

.promise-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 47, 63, 0.94), rgba(16, 47, 63, 0.86)),
    url("background5-web.jpg") center / cover;
  color: var(--white);
}

.promise-section .eyebrow {
  color: #e7bd65;
}

.promise-section .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.promise-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.65;
}

.promise-list strong {
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr) minmax(320px, 0.68fr);
  gap: 28px;
  align-items: stretch;
}

.profile-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.78));
}

.profile-card div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--white);
}

.profile-card span {
  display: block;
  margin-bottom: 6px;
  color: #f0c85b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.split-section {
  color: var(--white);
  background: var(--brand-deep);
}

.split-section .section-copy,
.split-section .process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-weight: 800;
}

.process-list p {
  margin-bottom: 0;
}

.venture-band {
  background: #eef3fb;
}

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

.venture-tile {
  min-height: 380px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #0b255f, #2454b8);
  box-shadow: var(--shadow);
}

.venture-tile h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.venture-tile p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.training-tile {
  background: linear-gradient(135deg, #122d63, #315fa8 56%, #3d7457);
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  gap: 58px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-tile {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 239, 255, 0.58)),
    var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-tile:hover {
  border-color: rgba(29, 78, 216, 0.32);
  box-shadow: 0 18px 42px rgba(29, 78, 216, 0.12);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.contact-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-tile strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.contact-tile small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #040b24;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.focus-page {
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.98), rgba(239, 227, 209, 0.78)),
    var(--paper);
}

.focus-header {
  position: sticky;
  background: rgba(255, 251, 244, 0.9);
  box-shadow: 0 1px 20px rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(16px);
}

.focus-nav {
  margin-left: auto;
}

.focus-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - clamp(40px, 8vw, 112px)));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 0 clamp(44px, 7vw, 78px);
}

.focus-hero-copy {
  max-width: 760px;
}

.focus-hero-copy h1 {
  margin-bottom: 22px;
}

.focus-hero-copy > p:not(.eyebrow):not(.hero-lede) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.focus-download-panel {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(30, 79, 106, 0.14);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 244, 0.78)),
    var(--white);
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.12);
}

.focus-download-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.focus-download-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.focus-download-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.focus-download-panel .button {
  margin-top: 8px;
}

.focus-framework {
  padding: 0 clamp(20px, 4vw, 56px) clamp(72px, 9vw, 110px);
}

.focus-sheet {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 2px solid rgba(93, 86, 73, 0.2);
  background: #f8f2e8;
  box-shadow: 0 30px 80px rgba(28, 25, 23, 0.12);
}

.focus-sheet-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(93, 86, 73, 0.16);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.focus-sheet-top span:last-child {
  color: var(--accent);
  text-align: right;
}

.focus-sheet-heading {
  max-width: 860px;
  padding: clamp(34px, 6vw, 58px) 0 28px;
}

.focus-sheet-heading h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4.8vw, 4.45rem);
}

.focus-sheet-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.focus-steps {
  border-top: 2px solid rgba(93, 86, 73, 0.16);
}

.focus-step {
  display: grid;
  grid-template-columns: minmax(96px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(20px, 4vw, 42px);
  padding: clamp(26px, 4vw, 38px) 0;
  border-bottom: 2px solid rgba(93, 86, 73, 0.13);
}

.focus-step:last-child {
  border-bottom: 0;
}

.focus-letter {
  display: grid;
  min-height: 120px;
  align-items: center;
  border-right: 2px solid rgba(93, 86, 73, 0.13);
  color: #c86f26;
  font-family: var(--font-body);
  font-size: clamp(4.4rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
}

.focus-step-copy {
  align-self: center;
}

.focus-step-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.focus-step-copy h3 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
}

.focus-step-copy p {
  max-width: 820px;
  margin-bottom: 0;
  color: #5f5b51;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.55;
}

.focus-support {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 47, 63, 0.96), rgba(16, 47, 63, 0.88)),
    url("background5-web.jpg") center / cover;
}

.focus-support .eyebrow {
  color: #e7bd65;
}

.focus-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 70px);
}

.focus-support-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.focus-support-copy p:last-child {
  margin-bottom: 0;
}

.focus-footer a {
  font-weight: 800;
}

.sub-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
}

.sub-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.theme-innovate .sub-visual img {
  filter: saturate(0.8) hue-rotate(340deg);
}

.theme-training .sub-visual img {
  filter: saturate(0.78) hue-rotate(22deg);
}

.innovation-panel {
  left: 26px;
  right: auto;
  bottom: 26px;
  border-left: 4px solid var(--accent);
}

.training-page {
  background: #f8f6f1;
}

.training-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 18px rgba(18, 45, 99, 0.08);
  backdrop-filter: blur(16px);
}

.training-page .brand-mark {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}

.training-page .site-nav {
  gap: 28px;
}

.training-page .nav-cta {
  border-color: transparent;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(49, 95, 168, 0.2);
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: stretch;
  min-height: 100svh;
  padding: 82px 0 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.training-hero-copy {
  align-self: center;
  max-width: 780px;
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 66px);
}

.training-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: clamp(3rem, 5.2vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
}

.training-hero .hero-lede {
  max-width: 630px;
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
}

.solepreneur-callout {
  display: grid;
  max-width: 660px;
  gap: 8px;
  margin: 0 0 26px;
  padding: 20px 22px;
  border: 1px solid rgba(86, 168, 120, 0.36);
  border-left: 4px solid var(--accent);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solepreneur-callout:hover {
  border-color: rgba(86, 168, 120, 0.62);
  box-shadow: 0 16px 36px rgba(18, 45, 99, 0.08);
  transform: translateY(-2px);
}

.solepreneur-callout span,
.segment-card span,
.solepreneur-list span,
.method-steps span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solepreneur-callout strong {
  color: var(--brand-deep);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.38;
}

.training-visual {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background: var(--brand-deep);
}

.training-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 45, 99, 0.18), rgba(49, 95, 168, 0.54)),
    rgba(49, 95, 168, 0.28);
  mix-blend-mode: multiply;
}

.training-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(1.05);
}

.training-intro {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: var(--white);
}

.training-intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.92fr) minmax(280px, 0.52fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.training-intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.training-intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.segment-section {
  background: #f8f6f1;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(18, 45, 99, 0.16);
  border-left: 1px solid rgba(18, 45, 99, 0.16);
}

.segment-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid rgba(18, 45, 99, 0.16);
  border-bottom: 1px solid rgba(18, 45, 99, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.segment-card h3 {
  margin: 18px 0 14px;
  font-family: var(--font-body);
  font-size: clamp(1.34rem, 2.2vw, 1.74rem);
  font-weight: 800;
  line-height: 1.18;
}

.segment-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.solepreneur-section {
  color: var(--white);
  background: #122d63;
}

.solepreneur-section .eyebrow {
  color: #a7e0bc;
}

.solepreneur-section .section-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.solepreneur-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.solepreneur-list {
  display: grid;
  gap: 12px;
}

.solepreneur-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.solepreneur-list span {
  display: block;
  margin-bottom: 10px;
  color: #a7e0bc;
}

.solepreneur-list strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.38;
}

.method-section {
  background: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
}

.method-grid .section-heading {
  margin-bottom: 0;
}

.method-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.method-steps div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps span {
  display: block;
  margin-bottom: 8px;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.training-cta {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(224, 240, 231, 0.72), rgba(248, 246, 241, 0.94)),
    #f8f6f1;
}

.training-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.training-cta-inner h2 {
  margin-right: auto;
  margin-left: auto;
}

.training-cta-inner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-home,
  .sub-hero,
  .focus-hero,
  .intro-grid,
  .split-grid,
  .contact-grid,
  .reality-grid,
  .promise-grid,
  .final-cta-grid,
  .focus-support-grid {
    grid-template-columns: 1fr;
  }

  .hero-home,
  .sub-hero {
    padding-top: 112px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 243, 236, 0.97) 0%, rgba(247, 243, 236, 0.9) 56%, rgba(247, 243, 236, 0.68) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(239, 227, 209, 0.48)),
      url("esra-hero-new-web.jpg") center / cover,
      linear-gradient(135deg, #fffaf2 0%, #f1e5d4 100%);
  }

  .hero-visual,
  .sub-visual {
    min-height: 430px;
  }

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

  .stream-card {
    min-height: auto;
  }

  .profile-card {
    min-height: 520px;
  }

  .training-intro-grid,
  .solepreneur-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .training-hero {
    padding-top: 82px;
  }

  .training-visual {
    min-height: 460px;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(16, 32, 51, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .training-page .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .training-page .nav-cta {
    display: inline-flex;
    margin-top: 6px;
  }

  .training-hero-copy {
    padding: 44px 20px 36px;
  }

  .training-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .training-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.55rem);
  }

  .header-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px 0;
  }

  .header-badge img {
    width: 48px;
    height: 48px;
  }

  .nav-cta {
    border-color: rgba(29, 78, 216, 0.25);
  }

  .focus-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .focus-nav a {
    padding: 11px 14px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .stream-grid,
  .service-grid,
  .venture-grid,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .reality-grid blockquote {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .stream-card {
    min-height: auto;
  }

  .stream-mark {
    width: 88px;
    height: 88px;
    margin-bottom: 26px;
  }

  .stream-mark img {
    width: 70px;
    height: 70px;
  }

  .profile-card {
    min-height: 420px;
  }

  .hero-visual,
  .sub-visual {
    min-height: 340px;
  }

  .hero-object img {
    width: min(560px, 122%);
  }

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

  .focus-hero {
    width: min(100% - 36px, 1180px);
  }

  .focus-sheet {
    padding: 24px 20px;
  }

  .focus-sheet-top {
    display: grid;
    gap: 8px;
  }

  .focus-sheet-top span:last-child {
    text-align: left;
  }

  .focus-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .focus-letter {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid rgba(93, 86, 73, 0.13);
    padding-bottom: 12px;
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .hero-home,
  .sub-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-panel,
  .learning-card,
  .innovation-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-trust {
    display: grid;
  }

  .training-hero {
    padding-top: 76px;
  }

  .training-visual {
    min-height: 360px;
  }

  .segment-card {
    min-height: auto;
  }
}
