/*
Theme Name: e-Work Learning
Theme URI: https://www.e-work.com
Author: e-Work.com
Author URI: https://www.e-work.com
Description: A custom WordPress theme focused on e-Work.com's e-learning development expertise.
Version: 2.2.1
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: ework-learning
*/

:root {
  --ink: #102c38;
  --muted: #536a73;
  --paper: #f7f5ef;
  --white: #ffffff;
  --blue: #1e9fd3;
  --blue-dark: #087aa9;
  --green: #86bf3f;
  --teal: #0f5f6b;
  --line: rgba(16, 44, 56, 0.14);
}

.no-wrap {
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 26px 5vw;
}

.brand img,
.brand .custom-logo {
  display: block;
  height: 44px;
  width: auto;
}

nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

nav a:not(.nav-cta) {
  position: relative;
}

nav a:not(.nav-cta)::after {
  background: var(--blue);
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  gap: clamp(34px, 4vw, 64px) clamp(40px, 5vw, 78px);
  grid-template-columns: minmax(310px, 0.68fr) minmax(620px, 1.32fr);
  margin: 0 auto;
  max-width: 1440px;
  overflow: hidden;
  padding: 58px 5vw 105px;
}

.hero-heading {
  grid-column: 1 / -1;
  max-width: 1320px;
}

.hero-copy {
  align-self: start;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--blue-dark);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.2vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
  margin: 0;
  max-width: 1320px;
}

.hero h1 span {
  color: var(--blue);
  display: inline;
  font-style: italic;
  margin-left: 0.08em;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 640px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 14px;
  justify-content: center;
  padding: 18px 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 28px rgba(16, 44, 56, 0.2);
  transform: translateY(-2px);
}

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

.button-primary span,
.button-light span {
  font-size: 19px;
}

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 800;
  padding-bottom: 5px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 58px;
}

.proof-row span {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-row span::before {
  color: var(--green);
  content: "◆";
  font-size: 10px;
}

.hero-showcase {
  align-self: center;
  background: var(--ink);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(16, 44, 56, 0.24);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.hero-showcase > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 48% center;
  position: absolute;
  width: 100%;
}

.hero-showcase-shade {
  background:
    linear-gradient(180deg, rgba(16, 44, 56, 0.04) 18%, rgba(16, 44, 56, 0.92) 100%),
    linear-gradient(90deg, rgba(16, 44, 56, 0.34), transparent 62%);
  inset: 0;
  position: absolute;
}

.hero-showcase-copy {
  bottom: 82px;
  color: white;
  left: 38px;
  position: absolute;
  right: 38px;
}

.hero-showcase-copy span {
  color: #c9f08e;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.hero-showcase-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-showcase-tags {
  bottom: 28px;
  display: flex;
  gap: 9px;
  left: 38px;
  position: absolute;
}

.hero-showcase-tags span {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero-stage {
  align-self: center;
  aspect-ratio: 0.95;
  background:
    radial-gradient(circle at 70% 25%, rgba(134, 191, 63, 0.28), transparent 25%),
    radial-gradient(circle at 25% 65%, rgba(30, 159, 211, 0.25), transparent 36%),
    linear-gradient(145deg, #e6f1ed, #dcebf1);
  border-radius: 48% 52% 46% 54% / 42% 44% 56% 58%;
  max-width: 610px;
  position: relative;
}

.stage-orbit {
  border: 1px solid rgba(16, 44, 56, 0.18);
  border-radius: 50%;
  height: 80%;
  left: 10%;
  position: absolute;
  top: 10%;
  transform: rotate(-18deg);
  width: 80%;
}

.orbit-two {
  height: 64%;
  left: 18%;
  top: 18%;
  transform: rotate(27deg);
  width: 64%;
}

.course-card {
  background: white;
  border: 1px solid rgba(16, 44, 56, 0.12);
  border-radius: 18px;
  box-shadow: 0 34px 70px rgba(16, 44, 56, 0.18);
  overflow: hidden;
  position: absolute;
}

.course-card-main {
  left: 9%;
  top: 15%;
  transform: rotate(-2deg);
  width: 78%;
}

.course-topbar {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.11em;
  padding: 15px 18px;
}

.course-brand {
  color: white;
  font-weight: 800;
}

.course-body {
  padding: 28px 30px 32px;
}

.course-kicker {
  color: var(--blue-dark) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-body h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 5px 0 8px;
}

.course-body p {
  color: var(--muted);
  font-size: 11px;
  margin: 0 0 19px;
}

.course-body button {
  background: white;
  border: 1px solid rgba(16, 44, 56, 0.18);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font-family: inherit;
  font-size: 10px;
  margin: 8px 0;
  padding: 11px 13px;
  text-align: left;
  width: 100%;
}

.course-body button.selected {
  background: #e8f5fa;
  border-color: var(--blue);
  box-shadow: inset 3px 0 var(--blue);
  font-weight: 800;
}

.course-progress {
  background: #eef2f3;
  height: 5px;
}

.course-progress span {
  background: linear-gradient(90deg, var(--blue), var(--green));
  display: block;
  height: 100%;
  width: 62%;
}

.insight-card,
.media-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 44, 56, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16, 44, 56, 0.16);
  display: flex;
  position: absolute;
}

.insight-card {
  bottom: 11%;
  gap: 12px;
  left: -1%;
  padding: 15px 18px;
}

.insight-icon {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 12px;
  height: 29px;
  justify-content: center;
  width: 29px;
}

.insight-card strong,
.insight-card small {
  display: block;
}

.insight-card strong {
  font-size: 11px;
}

.insight-card small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 2px;
}

.media-card {
  bottom: 3%;
  gap: 10px;
  padding: 12px 15px;
  right: 5%;
}

.media-card .play {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 9px;
  height: 30px;
  justify-content: center;
  padding-left: 2px;
  width: 30px;
}

.media-card span {
  font-size: 10px;
  font-weight: 800;
}

.media-card small {
  color: var(--muted);
  font-size: 9px;
}

.intro-band {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.6fr 1.4fr;
  padding: 100px max(5vw, calc((100vw - 1440px) / 2 + 5vw));
}

.intro-band p {
  color: #9fc9d5;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.5;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.intro-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.section {
  margin: 0 auto;
  max-width: 1440px;
  padding: 120px 5vw;
}

.section-heading {
  max-width: 850px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
}

.studio-heading {
  display: grid;
  gap: 0 56px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  max-width: none;
}

.studio-heading .eyebrow {
  grid-column: 1 / -1;
}

.studio-heading > p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 7px;
}

.capability-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
}

.capability {
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  display: grid;
  gap: 16px;
  grid-template-columns: 38px 1fr 24px;
  min-height: 260px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability:hover {
  border-color: rgba(46, 159, 218, 0.46);
  box-shadow: 0 18px 40px rgba(16, 44, 56, 0.09);
  transform: translateY(-3px);
}

.capability > span:first-child {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.capability h3 {
  font-size: clamp(20px, 1.7vw, 27px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.capability p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 690px;
}

.capability:nth-child(2),
.capability:nth-child(4) {
  border-top-color: var(--green);
}

.capability:nth-child(3),
.capability:nth-child(6) {
  border-top-color: var(--blue-dark);
}

.capability-arrow {
  color: var(--green);
  font-size: 22px;
}

.rapid-development {
  align-items: center;
  background: var(--blue);
  color: white;
  display: grid;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  margin-top: 64px;
  padding: clamp(34px, 5vw, 64px);
}

.rapid-development-lead > span,
.customization-panel > div:first-child > span {
  color: #dff6ff;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.rapid-development h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.7vw, 50px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0;
}

.rapid-development-lead > p {
  color: white;
  font-size: 16px;
  line-height: 1.75;
  margin: 24px 0 0;
}

.rapid-development-details ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rapid-development-details li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  padding: 0 0 13px 24px;
  position: relative;
}

.rapid-development-details li::before {
  color: #c9f08e;
  content: "◆";
  font-size: 8px;
  left: 0;
  position: absolute;
  top: 5px;
}

.rapid-proof {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.rapid-proof div {
  background: rgba(16, 44, 56, 0.22);
  padding: 18px;
}

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

.rapid-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
}

.rapid-proof span {
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.customization-panel {
  background: var(--ink);
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin: 12px -64px -64px;
  padding: clamp(34px, 5vw, 64px);
}

.customization-panel h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.customization-panel > div:first-child > p {
  color: #c3d5da;
  font-size: 14px;
  line-height: 1.72;
  margin: 22px 0 0;
}

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

.customization-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 185px;
  padding: 24px;
}

.customization-grid article:nth-child(odd) {
  border-left: 0;
}

.customization-grid strong {
  color: #c9f08e;
  display: block;
  font-size: 15px;
}

.customization-grid p {
  color: #c3d5da;
  font-size: 13px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.work {
  max-width: none;
  background: #e9efed;
}

.work-heading {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.4fr 0.6fr;
  margin: 0 auto;
  max-width: 1296px;
}

.work-heading > p {
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.project-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
  margin: 72px auto 0;
  max-width: 1296px;
}

.project {
  background: white;
  border-radius: 22px;
  overflow: hidden;
}

.project:last-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 0.8fr;
}

.project-visual {
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.project-copy {
  padding: 34px 36px 40px;
}

.project-type {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-copy h3 {
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.14;
  margin: 12px 0 14px;
}

.project-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.project-enterprise .project-visual {
  align-items: center;
  background: linear-gradient(135deg, #153947, #0d5867);
  display: flex;
  justify-content: center;
  padding: 45px;
}

.enterprise-shell {
  background: white;
  border-radius: 7px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 240px;
  overflow: hidden;
  transform: rotate(-2deg);
  width: 100%;
}

.enterprise-copy {
  padding: 28px 24px;
}

.enterprise-copy span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
}

.enterprise-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  margin: 8px 0 22px;
}

.enterprise-copy i {
  background: #e5e9ea;
  display: block;
  height: 5px;
  margin: 8px 0;
  width: 88%;
}

.enterprise-media {
  background: linear-gradient(160deg, #8bc5d3, #47737d);
  position: relative;
}

.presenter {
  background: linear-gradient(#353e53 0 35%, #4168b2 35% 72%, #1f2735 72%);
  border-radius: 46% 46% 10% 10%;
  height: 72%;
  left: 35%;
  position: absolute;
  top: 12%;
  width: 30%;
}

.presenter::before {
  background: #9f6f5b;
  border-radius: 48%;
  content: "";
  height: 24%;
  left: 25%;
  position: absolute;
  top: 8%;
  width: 50%;
}

.media-controls {
  background: rgba(18, 27, 30, 0.76);
  bottom: 0;
  color: white;
  font-size: 8px;
  left: 0;
  padding: 8px 10px;
  position: absolute;
  right: 0;
}

.project-health .project-visual {
  align-items: center;
  background: #f5f0e4;
  display: flex;
  justify-content: center;
}

.health-glow {
  background: radial-gradient(circle, rgba(134, 191, 63, 0.35), transparent 65%);
  border: 1px solid rgba(134, 191, 63, 0.4);
  border-radius: 50%;
  height: 300px;
  position: absolute;
  width: 300px;
}

.goat-mark {
  align-items: center;
  background: var(--ink);
  border: 5px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  height: 118px;
  justify-content: center;
  left: 12%;
  position: absolute;
  top: 21%;
  width: 118px;
  z-index: 2;
}

.goat-mark::after {
  border: 2px solid var(--green);
  border-radius: 50%;
  content: "";
  inset: -10px;
  position: absolute;
}

.health-title {
  margin-left: 110px;
  position: relative;
  z-index: 2;
}

.health-title span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.health-title strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  margin-top: 10px;
}

.project-workplace .project-visual {
  min-height: 330px;
}

.workplace-grid {
  background: #d8e8ee;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  min-height: 330px;
  position: relative;
}

.workplace-grid > span {
  background:
    linear-gradient(rgba(16, 44, 56, 0.08), rgba(16, 44, 56, 0.08)),
    linear-gradient(145deg, #e8f1f2, #97bdc7);
}

.workplace-grid > span:nth-child(2) {
  background: linear-gradient(145deg, #bfd593, #658d57);
}

.workplace-grid > span:nth-child(3) {
  background: linear-gradient(145deg, #e7cf9d, #b17d44);
}

.workplace-grid > span:nth-child(4) {
  background: linear-gradient(145deg, #aecbd3, #6d8199);
}

.workplace-label {
  background: white;
  bottom: 35px;
  box-shadow: 0 16px 40px rgba(16, 44, 56, 0.18);
  left: 35px;
  padding: 22px 26px;
  position: absolute;
}

.workplace-label small,
.workplace-label strong {
  display: block;
}

.workplace-label small {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workplace-label strong {
  font-size: 19px;
  margin-top: 4px;
}

.project-workplace .project-copy {
  align-self: center;
}

/* Version 1.2 sample, customer, and Course Studio sections. */
.project-grid {
  grid-template-columns: 1fr;
}

.project,
.project:last-child {
  display: grid;
  grid-column: auto;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.project:nth-child(even) .project-visual {
  order: 2;
}

.project:nth-child(even) .project-copy {
  order: 1;
}

.project-copy {
  align-self: center;
  padding: clamp(38px, 5vw, 78px);
}

.course-screenshot {
  display: block;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.project-enterprise .project-visual,
.project-health .project-visual {
  background: #f4f5f2;
  display: block;
  padding: 0;
}

/* Version 1.3: clear, real examples replace decorative mockups. */
.project {
  border-radius: 0;
  border-top: 1px solid var(--line);
}

.project-visual,
.course-screenshot {
  min-height: 430px;
}

.course-screenshot {
  object-fit: contain;
  padding: 20px;
}

.project-workplace .project-visual {
  background: white;
  min-height: 430px;
}

.project-workplace .course-screenshot {
  object-fit: cover;
  padding: 0;
}

.customer-proof {
  align-items: start;
  display: grid;
  gap: clamp(42px, 6vw, 78px);
  grid-template-columns: minmax(0, 1fr);
}

.customer-proof-copy {
  display: block;
}

.customer-proof-copy h2 {
  font-size: clamp(44px, 5.2vw, 76px);
  max-width: none;
}

.customer-proof-copy h2,
.studio-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
}

.customer-proof-copy > p:not(.eyebrow),
.studio-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 30px 0 0;
}

.customer-proof-copy > p:not(.eyebrow) {
  max-width: 980px;
}

.adobe-proof {
  border-left: 4px solid var(--green);
  margin-top: 38px;
  padding: 4px 0 4px 20px;
}

.adobe-proof strong {
  color: var(--blue-dark);
  display: block;
  font-size: 18px;
}

.adobe-proof p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.customer-chart {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16, 44, 56, 0.12);
  margin: 0;
  justify-self: center;
  max-width: 1254px;
  padding: 22px;
  width: 100%;
}

.customer-chart img {
  display: block;
  height: auto;
  width: 100%;
}

.customer-chart figcaption {
  color: var(--muted);
  font-size: 11px;
  padding: 13px 3px 2px;
}

.studio-section {
  background: var(--ink);
  color: white;
  padding: 120px max(5vw, calc((100vw - 1440px) / 2 + 5vw));
}

.studio-section .eyebrow {
  color: #9fd9eb;
}

.studio-intro {
  display: grid;
  gap: clamp(45px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin: 0 auto;
  max-width: 1296px;
}

.studio-intro > p {
  align-self: end;
  color: #b8ccd2;
  margin: 0;
}

.studio-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 76px auto 0;
  max-width: 1296px;
}

.studio-benefit-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  min-height: 285px;
  padding: 30px;
}

.studio-benefit-grid article:nth-child(3n + 1) {
  border-left: 0;
}

.studio-benefit-grid article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.studio-benefit-grid h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 46px 0 13px;
}

.studio-benefit-grid p {
  color: #b8ccd2;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.studio-outcome {
  align-items: center;
  background: var(--blue);
  display: grid;
  gap: 25px;
  grid-template-columns: auto 1fr;
  margin: 45px auto 0;
  max-width: 1296px;
  padding: 28px 32px;
}

.studio-outcome strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-outcome p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  margin: 0;
}

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

.process-grid article {
  border-left: 1px solid var(--line);
  min-height: 260px;
  padding: 10px 28px 30px;
}

.process-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-grid article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.process-grid h3 {
  font-size: 27px;
  letter-spacing: -0.03em;
  margin: 65px 0 12px;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.partnership-note {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 38px 0;
}

.partnership-note p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
  margin: 0;
  max-width: 1080px;
}

.cta {
  align-items: end;
  background: var(--blue);
  color: white;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr auto;
  padding: 100px max(5vw, calc((100vw - 1440px) / 2 + 5vw));
}

.cta .eyebrow {
  color: white !important;
}

.cta .eyebrow::before {
  background: white;
}

.cta h2 {
  color: white !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0 0 22px;
}

.cta p:not(.eyebrow) {
  color: white !important;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}

.button-light {
  background: white;
  color: var(--ink) !important;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  white-space: nowrap;
  z-index: 5;
}

.cta-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 5;
}

.cta-email {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 4px;
}

footer {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1440px;
  padding: 48px 5vw;
}

footer img {
  height: 36px;
  width: auto;
}

footer p,
footer div {
  color: var(--muted);
  font-size: 12px;
}

footer div {
  display: flex;
  gap: 24px;
}

footer a {
  color: var(--blue-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 55px;
  }

  .hero-stage {
    justify-self: center;
    margin-top: 25px;
    width: min(92vw, 600px);
  }

  .hero-showcase {
    justify-self: center;
    margin-top: 25px;
    min-height: 560px;
    width: min(92vw, 680px);
  }

  .intro-band,
  .work-heading {
    gap: 35px;
    grid-template-columns: 1fr;
  }

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

  .project,
  .project:last-child {
    grid-template-columns: 1fr;
  }

  .project:nth-child(even) .project-visual,
  .project:nth-child(even) .project-copy {
    order: initial;
  }

  .customer-proof,
  .studio-intro,
  .rapid-development,
  .customization-panel {
    grid-template-columns: 1fr;
  }

  .customization-panel {
    margin-left: -64px;
    margin-right: -64px;
  }

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

  .studio-benefit-grid article:nth-child(3n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.17);
  }

  .studio-benefit-grid article:nth-child(2n + 1) {
    border-left: 0;
  }

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

  .process-grid article:nth-child(3) {
    border-left: 0;
  }

  .cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 20px 20px;
  }

  .brand img {
    height: 34px;
  }

  .nav-cta {
    font-size: 11px;
    padding: 9px 12px;
  }

  .hero,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero h1 span {
    margin-left: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stage {
    border-radius: 35px;
    width: 100%;
  }

  .hero-showcase {
    border-radius: 22px;
    min-height: 470px;
    width: 100%;
  }

  .hero-showcase-copy,
  .hero-showcase-tags {
    left: 24px;
    right: 24px;
  }

  .course-card-main {
    left: 6%;
    width: 86%;
  }

  .insight-card {
    left: 2%;
  }

  .intro-band,
  .cta {
    padding: 78px 20px;
  }

  .project-visual {
    min-height: 310px;
  }

  .course-screenshot {
    min-height: 310px;
  }

  .project-enterprise .project-visual {
    padding: 0;
  }

  .rapid-development {
    padding: 34px 24px;
  }

  .customization-panel {
    margin: 8px -24px -34px;
    padding: 34px 24px;
  }

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

  .customization-grid article,
  .customization-grid article:nth-child(odd) {
    border-left: 0;
    min-height: 0;
  }

  .enterprise-shell {
    min-height: 215px;
  }

  .enterprise-copy {
    padding: 20px 14px;
  }

  .health-glow {
    height: 240px;
    width: 240px;
  }

  .goat-mark {
    height: 90px;
    left: 8%;
    width: 90px;
  }

  .health-title {
    margin-left: 82px;
  }

  .health-title strong {
    font-size: 25px;
  }

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

  .studio-benefit-grid {
    grid-template-columns: 1fr;
  }

  .studio-benefit-grid article,
  .studio-benefit-grid article:nth-child(3n + 1) {
    border-left: 0;
    min-height: 0;
  }

  .studio-outcome {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 28px 0 35px;
  }

  .process-grid h3 {
    margin: 24px 0 10px;
  }

  footer div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Bright hero gallery using actual course examples. */
.hero-course-gallery {
  background:
    radial-gradient(circle at 88% 10%, rgba(134, 191, 63, 0.22), transparent 29%),
    linear-gradient(145deg, #edf8fb 0%, #ffffff 58%, #f2f7eb 100%);
  border: 1px solid rgba(16, 44, 56, 0.12);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(16, 44, 56, 0.13);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.3fr) minmax(210px, 0.7fr);
  min-height: 0;
  overflow: hidden;
  padding: 26px;
}

.hero-gallery-heading {
  align-items: end;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding: 4px 3px 8px;
}

.hero-gallery-heading span {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-gallery-heading strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.hero-course-card {
  background: var(--white);
  border: 1px solid rgba(16, 44, 56, 0.12);
  border-radius: 15px;
  display: grid;
  grid-template-rows: 126px auto;
  margin: 0;
  overflow: hidden;
}

.hero-health-column,
.hero-course-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.hero-health-column {
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero-course-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-health-activity-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-course-card-large {
  grid-template-rows: 238px auto;
}

.hero-course-card img {
  background: #f4f7f7;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

.hero-course-card-large img {
  object-fit: cover;
  padding: 0;
}

.hero-course-card-health.hero-course-card-large img {
  object-fit: contain;
  padding: 12px;
}

.hero-course-card-activity {
  grid-template-rows: 96px auto;
}

.hero-course-card-activity img {
  object-fit: contain;
  padding: 5px;
}

.hero-course-card-workplace img {
  object-fit: cover;
  padding: 0;
}

.bmi-calculator-preview {
  align-content: center;
  background: linear-gradient(150deg, #f4faf8, #eaf5f9);
  display: grid;
  gap: 5px;
  padding: 9px;
}

.bmi-calculator-preview > span {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bmi-calculator-preview div {
  align-items: center;
  background: white;
  border: 1px solid rgba(16, 44, 56, 0.14);
  border-radius: 5px;
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr auto auto;
  padding: 4px 6px;
}

.bmi-calculator-preview i,
.bmi-calculator-preview em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
}

.bmi-calculator-preview b {
  color: var(--ink);
  font-size: 10px;
}

.bmi-calculator-preview > strong {
  background: var(--green);
  border-radius: 999px;
  color: white;
  font-size: 8px;
  justify-self: start;
  padding: 4px 8px;
}

.hero-course-card figcaption {
  border-top: 1px solid rgba(16, 44, 56, 0.1);
  padding: 12px 14px 14px;
}

.hero-course-card figcaption span,
.hero-course-card figcaption strong {
  display: block;
}

.hero-course-card figcaption span {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-course-card figcaption strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.hero-gallery-note {
  color: var(--muted);
  font-size: 11px;
  grid-column: 1 / -1;
  line-height: 1.45;
  margin: 3px 4px 0;
}

@media (max-width: 620px) {
  .hero-course-gallery {
    display: grid;
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .hero-gallery-heading,
  .hero-gallery-note {
    grid-column: 1;
  }

  .hero-gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-course-card,
  .hero-course-card-large {
    grid-row: auto;
    grid-template-rows: 155px auto;
  }

  .hero-health-activity-grid,
  .hero-course-stack {
    grid-template-columns: 1fr;
  }
}

/* Version 1.3.1: expanded rapid-development and customization story. */
.rapid-development {
  background: var(--ink);
  color: var(--white);
  display: block;
  margin-top: 64px;
  padding: 0;
}

.rapid-development-lead {
  align-items: end;
  display: grid;
  gap: clamp(32px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  padding: clamp(42px, 6vw, 82px);
}

.rapid-development-lead > div > span {
  color: #c9f08e;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.rapid-development-lead > p {
  color: #d5e3e6;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
  margin: 0;
}

.rapid-innovation-grid {
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rapid-innovation-grid article {
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: clamp(28px, 4vw, 50px);
}

.rapid-innovation-grid article:last-child {
  border-right: 0;
}

.rapid-innovation-grid span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.rapid-innovation-grid h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.3vw, 33px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 34px 0 16px;
}

.rapid-innovation-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.rapid-proof {
  background: var(--blue);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.rapid-proof div {
  background: rgba(16, 44, 56, 0.16);
  min-height: 170px;
  padding: clamp(28px, 4vw, 48px);
}

.rapid-proof strong {
  color: var(--white);
  font-size: clamp(30px, 3.5vw, 48px);
}

.rapid-proof span {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 310px;
}

.rapid-lifecycle {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  padding: clamp(48px, 7vw, 96px);
}

.rapid-lifecycle > div:first-child {
  align-self: start;
  position: static;
}

.rapid-lifecycle h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3.5vw, 47px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 14px 0 24px;
}

.rapid-lifecycle > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.studio-toolkit {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-column: 1 / -1;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  margin-top: 8px;
  padding-top: clamp(42px, 6vw, 72px);
}

.studio-toolkit-heading h4 {
  margin-bottom: 20px;
}

.studio-toolkit-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

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

.studio-tool-grid article {
  background: #f7fbfc;
  border: 1px solid #dce9ec;
  border-radius: 2px;
  padding: 25px;
}

.studio-tool-grid article > span {
  color: var(--blue-dark);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.studio-tool-grid h5 {
  font-size: 21px;
  line-height: 1.22;
  margin: 0 0 12px;
}

.studio-tool-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

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

.rapid-pillar-grid article {
  background: var(--white);
  border-top: 4px solid var(--green);
  padding: 32px;
}

.rapid-pillar-grid h5 {
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 15px;
}

.rapid-pillar-grid p,
.rapid-pillar-grid li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.rapid-pillar-grid p {
  margin: 0 0 24px;
}

.rapid-pillar-grid ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
}

.rapid-pillar-grid li {
  padding: 7px 0 7px 20px;
  position: relative;
}

.rapid-pillar-grid li::before {
  color: var(--green);
  content: "+";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.customization-panel {
  background: #0c252f;
  color: var(--white);
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin: 0;
  padding: clamp(48px, 7vw, 96px);
}

.customization-intro > span {
  color: #c9f08e;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.customization-intro h4 {
  font-size: clamp(36px, 3.8vw, 54px);
}

.customization-panel .customization-intro p {
  color: #c3d5da;
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.62;
  margin: 26px 0 0;
}

.customization-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.customization-steps article {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 20px;
  grid-template-columns: 38px 1fr;
  gap: 24px;
  grid-template-columns: 46px 1fr;
  padding: 28px 0;
}

.customization-steps article > span {
  color: #c9f08e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.customization-steps h5 {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 10px;
}

.customization-steps p {
  color: #c3d5da;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.customization-panel .customization-intro p,
.customization-panel .customization-steps p {
  font-size: 20px;
  line-height: 1.65;
}

.customization-grid {
  grid-column: 1 / -1;
}

.customization-grid article {
  min-height: 220px;
  padding: 36px;
}

.customization-grid strong {
  font-size: 20px;
}

.customization-grid p {
  font-size: 18px;
  line-height: 1.65;
  margin-top: 16px;
}

.capability-arrow {
  text-decoration: none;
}

@media (max-width: 900px) {
  .studio-heading,
  .studio-toolkit {
    grid-template-columns: 1fr;
  }

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

  .rapid-development-lead,
  .rapid-lifecycle,
  .customization-panel {
    grid-template-columns: 1fr;
  }

  .rapid-lifecycle > div:first-child {
    position: static;
  }

  .rapid-innovation-grid,
  .rapid-proof {
    grid-template-columns: 1fr;
  }

  .rapid-innovation-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .capability-grid,
  .studio-tool-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 0;
  }

  .rapid-pillar-grid,
  .customization-grid {
    grid-template-columns: 1fr;
  }

  .customization-grid article {
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Site-wide readability standards. Keep meaningful text legible at normal zoom. */
body {
  font-size: 17px;
}

nav {
  font-size: 16px;
}

.eyebrow {
  font-size: 14px;
  line-height: 1.45;
}

.capability > span:first-child,
.rapid-development-lead > div > span,
.rapid-innovation-grid span,
.customization-intro > span,
.studio-benefit-grid article > span,
.process-grid article > span {
  font-size: 13px;
}

.capability p,
.rapid-innovation-grid p,
.project-copy p,
.studio-benefit-grid p,
.process-grid p {
  font-size: 17px;
  line-height: 1.7;
}

.rapid-development-lead > p {
  font-size: 18px;
  line-height: 1.7;
}

.project-type,
.hero-gallery-heading span {
  font-size: 13px;
}

.customer-chart figcaption,
.hero-gallery-note {
  font-size: 14px;
  line-height: 1.55;
}

.hero-course-card figcaption span {
  font-size: 12px;
}

.hero-course-card figcaption strong {
  font-size: 16px;
  line-height: 1.35;
}

.studio-outcome strong,
.cta-email {
  font-size: 16px;
}

footer p,
footer div {
  font-size: 15px;
  line-height: 1.55;
}

/* Version 2.0: unified client-centered homepage narrative. */
.site-header nav {
  gap: 22px;
}

.hero h1 {
  font-size: clamp(50px, 5.3vw, 82px);
  line-height: 0.96;
}

.hero h1 span {
  margin-left: 0;
  margin-top: 0.12em;
}

.problem-solution {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(42px, 6vw, 88px);
  grid-template-columns: minmax(400px, 1.15fr) minmax(300px, 0.85fr);
  padding: clamp(70px, 9vw, 120px) max(5vw, calc((100vw - 1440px) / 2 + 5vw));
}

.problem-solution .eyebrow {
  color: #a9dcea;
}

.problem-solution h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.problem-solution-copy {
  align-self: end;
}

.problem-solution-copy p {
  color: #d4e2e6;
  font-size: 20px;
  line-height: 1.72;
  margin: 0;
}

.problem-solution-copy p + p {
  margin-top: 26px;
}

.narrative-heading {
  display: grid;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  max-width: none;
}

.narrative-heading > p {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 0 0 7px;
}

.how-help .narrative-heading {
  display: block;
}

.how-help .narrative-heading h2 {
  max-width: 1180px;
}

.how-help .narrative-heading > p {
  font-size: clamp(18px, 1.55vw, 22px);
  margin: 30px 0 0;
  max-width: 980px;
}

.service-outcome-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
}

.service-outcome-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  min-height: 285px;
  padding: clamp(28px, 4vw, 42px);
}

.service-outcome-grid article:nth-child(2),
.service-outcome-grid article:nth-child(4) {
  border-top-color: var(--green);
}

.service-outcome-grid article > span,
.principle-grid article > span,
.client-option-grid article > span {
  color: var(--blue-dark);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 25px;
}

.service-outcome-grid h3,
.principle-grid h3,
.client-option-grid h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.service-outcome-grid p,
.principle-grid p,
.client-option-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 0;
}

.advantage-section {
  background: #edf4f2;
  max-width: none;
  padding-left: max(5vw, calc((100vw - 1440px) / 2 + 5vw));
  padding-right: max(5vw, calc((100vw - 1440px) / 2 + 5vw));
}

.architecture-layout {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  margin-top: 70px;
}

.course-studio-workbench {
  align-self: start;
  background: var(--white);
  border: 1px solid rgba(16, 44, 56, 0.16);
  box-shadow: 0 18px 45px rgba(16, 44, 56, 0.09);
  order: 2;
  overflow: hidden;
}

.workbench-heading {
  background: var(--blue);
  color: var(--white);
  padding: 28px 30px;
}

.workbench-heading span {
  color: #e8f9ff;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.workbench-heading strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 500;
  line-height: 1.13;
}

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

.workbench-tool-grid article {
  border-bottom: 1px solid var(--line);
  min-height: 190px;
  padding: 24px;
}

.workbench-tool-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.workbench-tool-grid article > span {
  color: var(--blue-dark);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.workbench-tool-grid h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
  margin: 0 0 10px;
}

.workbench-tool-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.workbench-ai-layer {
  background: var(--ink);
  border-top: 4px solid var(--green);
  color: var(--white);
  padding: 25px 30px 28px;
}

.workbench-ai-layer span {
  color: #c9f08e;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.workbench-ai-layer strong {
  display: block;
  font-size: 19px;
  line-height: 1.4;
}

.principle-grid {
  display: grid;
  gap: 16px;
  order: 1;
}

.principle-grid article {
  background: var(--white);
  border: 1px solid rgba(16, 44, 56, 0.12);
  padding: clamp(27px, 4vw, 40px);
}

.principle-grid article > span {
  margin-bottom: 16px;
}

.principle-grid h3 {
  font-size: 27px;
}

.advantage-tool-note {
  border-left: 4px solid var(--green);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 42px 0 0;
  padding: 5px 0 5px 22px;
}

.ai-platform-callout {
  background: var(--ink);
  color: var(--white);
  margin-top: 36px;
  padding: clamp(36px, 5vw, 62px);
}

.ai-platform-intro {
  display: grid;
  gap: 35px 70px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}

.ai-platform-callout .eyebrow {
  color: #d9f5ff;
  margin-bottom: 18px;
}

.ai-platform-callout h3 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.07;
  margin: 0;
}

.ai-platform-intro > div:last-child {
  align-self: center;
}

.ai-platform-intro > div:last-child p {
  color: #e3f0f3;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.65;
  margin: 0;
}

.ai-platform-intro > div:last-child p + p {
  margin-top: 18px;
}

.ai-support-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.ai-support-grid article {
  padding: 30px 30px 5px 0;
}

.ai-support-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 30px;
}

.ai-support-grid span {
  color: #c9f08e;
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.ai-support-grid h4 {
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.2;
  margin: 0 0 12px;
}

.ai-support-grid p {
  color: #c8dade;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.client-benefit-block {
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: 30px 55px;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  margin-top: 70px;
  padding: clamp(38px, 6vw, 70px);
}

.client-benefit-block .eyebrow {
  color: #e8f9ff;
}

.client-benefit-block h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}

.client-benefit-block ul {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-benefit-block li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  padding: 5px 0 14px 22px;
  position: relative;
}

.client-benefit-block li::before {
  color: #d7ff9e;
  content: "+";
  left: 0;
  position: absolute;
}

.client-benefit-block > p {
  color: #e8f7fb;
  font-size: 18px;
  grid-column: 1 / -1;
  line-height: 1.65;
  margin: 0;
  max-width: 1000px;
}

.client-options {
  max-width: 1440px;
}

.client-option-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 65px;
}

.client-option-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  min-height: 390px;
  padding: clamp(28px, 3.2vw, 40px);
}

.client-option-grid article:nth-child(2) {
  border-top-color: var(--green);
}

.client-option-grid article:nth-child(3) {
  border-top-color: var(--teal);
}

.client-option-grid h3 {
  font-size: 28px;
}

.client-option-grid .best-for {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  margin: 0 0 22px;
  padding: 0 0 20px;
}

.client-option-grid .best-for strong {
  color: var(--blue-dark);
}

.client-option-note {
  background: #edf4f2;
  border-left: 4px solid var(--green);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
  margin: 28px 0 0;
  padding: 22px 25px;
}

.customization-section {
  max-width: 1440px;
  padding-top: 35px;
}

.customization-section .customization-panel {
  margin: 0;
}

.customization-intro h2 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.customization-steps h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 10px;
}

.process .narrative-heading {
  margin-bottom: 65px;
}

.process-grid h3 {
  font-size: 27px;
}

.cta h2 {
  max-width: 870px;
}

@media (max-width: 1100px) {
  .site-header nav {
    gap: 15px;
    font-size: 14px;
  }

  .nav-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

  .client-option-grid {
    grid-template-columns: 1fr;
  }

  .client-option-grid article {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .problem-solution,
  .narrative-heading,
  .architecture-layout,
  .ai-platform-intro,
  .client-benefit-block {
    grid-template-columns: 1fr;
  }

  .ai-support-grid {
    grid-template-columns: 1fr;
  }

  .ai-support-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-left: 0;
  }

  .problem-solution-copy {
    align-self: start;
  }

  .client-benefit-block > p {
    grid-column: auto;
  }

  .architecture-layout {
    grid-template-columns: 1fr;
  }

  .course-studio-workbench {
    order: 1;
  }

  .principle-grid {
    order: 2;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 46px;
  }

  .problem-solution {
    padding: 70px 20px;
  }

  .problem-solution h2 {
    font-size: 37px;
  }

  .problem-solution-copy p {
    font-size: 18px;
  }

  .service-outcome-grid,
  .client-benefit-block ul {
    grid-template-columns: 1fr;
  }

  .workbench-tool-grid {
    grid-template-columns: 1fr;
  }

  .workbench-tool-grid article:nth-child(odd) {
    border-right: 0;
  }

  .service-outcome-grid article {
    min-height: 0;
  }

  .advantage-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .client-benefit-block {
    margin-left: -20px;
    margin-right: -20px;
    padding: 42px 24px;
  }

  .customization-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .customization-section .customization-panel {
    margin: 0;
  }
}
