:root {
  --ink: #0b0c0e;
  --ink-soft: #4b5563;
  --paper: #fcfcfc;
  --paper-soft: #f2f3f4;
  --line: #dfe3e8;
  --cyan: #09cce8;
  --cyan-deep: #007f96;
  --violet: #8b78f6;
  --pink: #d95fa8;
  --night: #090a0f;
  --night-soft: #11141b;
  --white: #fff;
  --container: 1180px;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 8px 28px rgba(11, 12, 14, 0.08);
  --shadow: 0 28px 90px rgba(11, 12, 14, 0.14);
  --header-offset: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

::selection {
  background: rgba(9, 204, 232, 0.25);
}

:focus-visible {
  outline: 3px solid rgba(9, 204, 232, 0.8);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--dark {
  background: var(--night);
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading h2,
.formats-copy h2,
.speaker-copy h2,
.product-copy h2,
.request-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

.section-heading--split h2 {
  margin: 0;
}

.section-heading__copy {
  padding-bottom: 5px;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading__copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}

.section-heading--dark .eyebrow {
  color: var(--cyan);
}

.section-heading--dark .section-intro {
  color: #aeb6c2;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button span[aria-hidden="true"] {
  font-size: 19px;
  line-height: 1;
  transition: transform 180ms ease;
}

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

.button:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button--dark {
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(11, 12, 14, 0.14);
  color: var(--white);
}

.button--dark:hover {
  background: #23262c;
  box-shadow: 0 16px 36px rgba(11, 12, 14, 0.2);
}

.button--light {
  border-color: #cfd4da;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button--light:hover {
  border-color: #aab1ba;
  background: var(--white);
}

.button--white {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.button--white:hover {
  background: #eefcff;
}

/* Header */
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

.header-shell {
  display: flex;
  width: min(var(--container), calc(100% - 32px));
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(211, 216, 222, 0.82);
  border-radius: 10px;
  background: rgba(242, 243, 244, 0.92);
  box-shadow: 0 6px 18px rgba(11, 12, 14, 0.13);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 127, 150, 0.22);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(9, 204, 232, 0.12), rgba(139, 120, 246, 0.08));
  color: var(--cyan-deep);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-name span,
.mini-brand span,
.training-map__brand span {
  color: var(--cyan-deep);
}

.header-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  color: #374151;
  font-size: 13px;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.main-nav a:hover {
  background: rgba(186, 186, 186, 0.2);
  color: var(--ink);
}

.header-cta {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--white);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle > span:nth-child(2) { top: 17px; }
.menu-toggle > span:nth-child(3) { top: 25px; }

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 176px 0 120px;
  background: linear-gradient(180deg, #fcfcfc 5%, #f8fafa 72%, #fcfcfc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 68px;
}

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

.hero h1 {
  max-width: 11ch;
  margin-bottom: 30px;
  font-size: clamp(56px, 6.4vw, 94px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.48;
}

.hero-note {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.hero-actions .button:first-child:hover span[aria-hidden="true"] {
  transform: translateY(3px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow--one {
  top: 62px;
  left: 44%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(139, 120, 246, 0.22), rgba(139, 120, 246, 0) 67%);
}

.hero-glow--two {
  right: -80px;
  bottom: -40px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.2), rgba(9, 204, 232, 0) 68%);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.practice-board {
  position: absolute;
  top: 46px;
  right: 4px;
  z-index: 2;
  width: min(100%, 480px);
  min-height: 475px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 14%, rgba(9, 204, 232, 0.12), transparent 27%),
    radial-gradient(circle at 15% 85%, rgba(139, 120, 246, 0.13), transparent 33%),
    linear-gradient(145deg, #141820, #08090d 70%);
  box-shadow: 0 40px 90px rgba(9, 10, 15, 0.3);
  color: var(--white);
  transform: rotate(1.2deg);
}

.practice-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.practice-board > * {
  position: relative;
  z-index: 1;
}

.practice-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 50px;
}

.mini-brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.mini-brand i {
  margin-right: 5px;
  color: var(--cyan);
  font-size: 18px;
  font-style: normal;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #aeb6c2;
  font-size: 11px;
}

.live-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(9, 204, 232, 0.11);
}

.practice-topic > span,
.practice-result span {
  display: block;
  margin-bottom: 5px;
  color: #7f8997;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.practice-topic strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.practice-topic p {
  max-width: 31ch;
  margin-bottom: 28px;
  color: #aeb6c2;
  line-height: 1.55;
}

.dialog-lines {
  display: grid;
  gap: 9px;
  margin-bottom: 32px;
}

.dialog-line {
  display: block;
  width: 86%;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.dialog-line--short { width: 57%; }
.dialog-line--accent {
  width: 72%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(9, 204, 232, 0.25), rgba(139, 120, 246, 0.22));
}

.practice-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(9, 204, 232, 0.18);
  border-radius: 18px;
  background: rgba(9, 204, 232, 0.06);
}

.practice-result svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.practice-result strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.signal {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}

.signal--cyan {
  top: 2px;
  right: -58px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.28), transparent 67%);
}

.signal--violet {
  bottom: 10px;
  left: -70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 120, 246, 0.25), transparent 65%);
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  color: #394150;
  font-size: 12px;
  font-weight: 700;
}

.orbit-label--one { top: 20px; left: -20px; }
.orbit-label--two { right: -36px; bottom: 146px; }
.orbit-label--three { bottom: 18px; left: 18px; }

/* Principle */
.principle {
  padding-top: 104px;
}

.learning-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 62px 0 0;
  list-style: none;
}

.learning-path li {
  position: relative;
  min-height: 185px;
  padding: 28px 22px;
  border-top: 1px solid var(--line);
}

.learning-path li::after {
  content: "→";
  position: absolute;
  top: 25px;
  right: -9px;
  z-index: 2;
  color: #9aa3ad;
  font-size: 20px;
}

.learning-path li:last-child::after { display: none; }

.learning-path li:nth-child(2) { margin-top: 24px; }
.learning-path li:nth-child(3) { margin-top: 48px; }
.learning-path li:nth-child(4) {
  margin-top: 72px;
  border-color: var(--cyan);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(9, 204, 232, 0.08), transparent);
}

.learning-path span {
  display: block;
  margin-bottom: 36px;
  color: #98a1ab;
  font-size: 12px;
  font-weight: 800;
}

.learning-path strong {
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.25;
}

/* Programs */
.programs {
  background: #f3f5f6;
}

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

.program-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border: 1px solid #dfe3e8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(14, 18, 24, 0.07);
}

.program-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
}

.program-card--communication {
  grid-column: span 7;
}

.program-card--communication::before {
  top: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.18), transparent 68%);
}

.program-card--safety {
  grid-column: span 5;
}

.program-card--safety::before {
  right: -100px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(217, 95, 168, 0.14), transparent 68%);
}

.program-card--corporate {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  border-color: #20252e;
  background:
    radial-gradient(circle at 90% 10%, rgba(9, 204, 232, 0.12), transparent 28%),
    linear-gradient(145deg, #151922, #090a0f 75%);
  color: var(--white);
}

.program-card--corporate::before {
  left: -80px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(139, 120, 246, 0.2), transparent 68%);
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.program-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #d7dce1;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.program-card--corporate .program-card__number {
  color: rgba(255, 255, 255, 0.1);
}

.program-card__label {
  max-width: calc(100% - 72px);
  margin-bottom: 24px;
  color: var(--cyan-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-card--safety .program-card__label { color: #a53d7c; }
.program-card--corporate .program-card__label { color: var(--cyan); }

.program-card h3 {
  max-width: 18ch;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.1vw, 45px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.program-card__lead {
  max-width: 48ch;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 17px;
}

.program-card--corporate .program-card__lead {
  color: #aeb6c2;
}

.program-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: 30px;
  flex: 1;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.program-card--safety .program-card__body {
  grid-template-columns: 1fr;
}

.program-card h4 {
  margin-bottom: 13px;
  color: #7b8490;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topic-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  color: #343b46;
  font-size: 14px;
}

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

.topic-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--cyan-deep);
}

.program-meta {
  display: grid;
  align-content: start;
  gap: 20px;
}

.program-meta > div {
  padding: 18px;
  border-radius: 16px;
  background: #f3f5f6;
}

.program-meta span {
  display: block;
  margin-bottom: 7px;
  color: #7b8490;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-meta p {
  margin: 0;
  color: #3f4753;
  font-size: 13px;
  line-height: 1.55;
}

.program-button {
  align-self: flex-start;
  margin-top: 30px;
}

.program-card__corporate-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.program-card__corporate-copy .program-button {
  margin-top: auto;
}

.program-card__corporate-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.88fr);
  gap: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.topic-list--dark {
  color: #c9ced6;
}

.topic-list--dark li::before { background: var(--cyan); }

.program-meta--dark > div {
  background: rgba(255, 255, 255, 0.055);
}

.program-meta--dark p { color: #b6bec8; }

/* Learning */
.learning {
  overflow: hidden;
}

.learning-glow {
  position: absolute;
  top: 20%;
  right: -200px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.14), transparent 68%);
  pointer-events: none;
}

.learning-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 78px;
}

.lesson-steps {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lesson-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lesson-steps li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.1); }

.lesson-steps li > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.lesson-steps h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.lesson-steps p {
  margin-bottom: 0;
  color: #aeb6c2;
  font-size: 15px;
}

.training-map {
  position: relative;
  min-height: 590px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(145deg, #151922, #0c0e13);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.training-map__brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.training-map__brand i {
  margin-right: 5px;
  color: var(--cyan);
  font-style: normal;
}

.training-map__core {
  position: absolute;
  top: 145px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 240px;
  height: 240px;
  place-content: center;
  padding: 26px;
  border: 1px solid rgba(9, 204, 232, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.15), rgba(9, 204, 232, 0.03) 60%, transparent 61%);
  box-shadow: 0 0 80px rgba(9, 204, 232, 0.08);
  text-align: center;
  transform: translateX(-50%);
}

.training-map__core span {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.training-map__core strong {
  font-size: 18px;
  line-height: 1.45;
}

.training-map__track {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 230px;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(17, 20, 27, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.training-map__track > span {
  color: var(--cyan);
  font-size: 21px;
}

.training-map__track small {
  display: block;
  margin-bottom: 2px;
  color: #76808d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-map__track strong {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
}

.training-map__track p {
  margin: 0;
  color: #8f98a5;
  font-size: 10px;
}

.training-map__track--talk {
  top: 94px;
  left: 12px;
}

.training-map__track--sales {
  top: 310px;
  right: 12px;
}

.training-map__track--sales > span { color: var(--violet); }

.training-map__feedback {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  min-width: 280px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(9, 204, 232, 0.2);
  border-radius: 999px;
  background: rgba(9, 204, 232, 0.06);
  color: #bac4ce;
  font-size: 12px;
  transform: translateX(-50%);
}

.training-map__feedback span {
  color: var(--cyan);
  font-weight: 800;
}

/* Formats */
.organizations {
  overflow: hidden;
}

.formats-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(440px, 1.17fr);
  align-items: center;
  gap: 90px;
}

.formats-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.format-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: rotate(-1.5deg);
}

.format-cloud li {
  display: flex;
  min-height: 118px;
  align-items: flex-end;
  gap: 14px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
  transform: rotate(1.5deg);
}

.format-cloud li:nth-child(2) { transform: translateY(20px) rotate(1.5deg); }
.format-cloud li:nth-child(4) { transform: translateY(20px) rotate(1.5deg); }

.format-cloud li span {
  align-self: flex-start;
  color: #9ca4ae;
  font-size: 11px;
  font-weight: 800;
}

.format-cloud__wide { grid-column: 1 / -1; }

.format-cloud .format-cloud__accent {
  border-color: transparent;
  background: linear-gradient(105deg, #dffbff, #f0ecff 55%, #fff0f8);
}

/* Speaker */
.speaker {
  background: #eef1f3;
}

.speaker-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 90px;
}

.speaker-portrait {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 36px;
  border: 1px solid #d7dce2;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(155deg, #e4e9ec, #d6dde2);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.speaker-portrait__glow {
  position: absolute;
  top: 62px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff 0, rgba(9, 204, 232, 0.25) 36%, rgba(139, 120, 246, 0.16) 58%, transparent 70%);
}

.speaker-monogram {
  position: absolute;
  top: 105px;
  display: grid;
  width: 230px;
  height: 230px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: rgba(11, 12, 14, 0.56);
  font-size: 70px;
  font-weight: 500;
  letter-spacing: -0.08em;
  backdrop-filter: blur(10px);
}

.speaker-portrait p {
  position: relative;
  z-index: 1;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 700;
}

.speaker-portrait > span {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  font-size: 13px;
}

.speaker-role {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
}

.speaker-bio {
  display: grid;
  gap: 0;
  border-top: 1px solid #cfd5db;
}

.speaker-bio p {
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid #cfd5db;
  color: #39414c;
}

/* Product */
.product {
  padding: 88px 0;
  background: var(--paper);
}

.product-panel {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  min-height: 510px;
  overflow: hidden;
  padding: 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 3% 85%, rgba(9, 204, 232, 0.34), transparent 30%),
    radial-gradient(circle at 96% 5%, rgba(217, 95, 168, 0.22), transparent 28%),
    linear-gradient(120deg, #e8fbfd, #f2efff 57%, #fff1f8);
}

.product-mark {
  display: grid;
  width: 240px;
  height: 240px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.65), 0 24px 60px rgba(46, 77, 100, 0.12);
  color: var(--cyan-deep);
  backdrop-filter: blur(10px);
}

.product-mark svg {
  width: 92px;
  height: 92px;
}

.product-copy {
  max-width: 720px;
}

.product-copy h2 {
  max-width: 13ch;
}

.product-copy > p:not(.eyebrow) {
  color: #3d4652;
  font-size: 17px;
}

.product-copy .button { margin-top: 12px; }

/* Request */
.request {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(139, 120, 246, 0.11), transparent 29%),
    radial-gradient(circle at 85% 85%, rgba(9, 204, 232, 0.08), transparent 31%),
    var(--night);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: 92px;
}

.request-copy {
  position: sticky;
  top: 125px;
}

.request-copy .eyebrow { color: var(--cyan); }

.request-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: #aeb6c2;
  font-size: 19px;
}

.request-note {
  display: flex;
  max-width: 500px;
  gap: 14px;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.request-note > span {
  color: var(--cyan);
  font-size: 24px;
}

.request-note p {
  margin: 0;
  color: #7f8997;
  font-size: 14px;
}

.request-form {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

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

.field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  color: #dce1e7;
  font-size: 13px;
  font-weight: 650;
}

.field label span,
.field-hint {
  color: #6e7784;
  font-size: 11px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9aa3ad 50%), linear-gradient(135deg, #9aa3ad 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: #11141b;
  color: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(9, 204, 232, 0.12);
}

.field [aria-invalid="true"] {
  border-color: #ff7a9e;
  box-shadow: 0 0 0 3px rgba(255, 122, 158, 0.1);
}

.field-error {
  min-height: 16px;
  color: #ff94b1;
  font-size: 11px;
}

.field-hint {
  margin-top: -2px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-submit.is-loading [data-submit-icon] {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(11, 12, 14, 0.24);
  border-top-color: var(--ink);
  border-radius: 50%;
  font-size: 0;
  animation: spin 700ms linear infinite;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #b9c2cc;
  font-size: 13px;
  line-height: 1.5;
}

.form-status[data-state="success"] { color: #80e6c2; }
.form-status[data-state="error"] { color: #ff94b1; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
.site-footer {
  padding: 70px 0 30px;
  background: #f1f3f4;
  color: #3f4753;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 80px;
  padding-bottom: 56px;
}

.brand--footer { margin-bottom: 18px; }

.footer-grid > div > p {
  max-width: 500px;
  margin: 0;
  color: #68717d;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, auto));
  align-content: start;
  gap: 12px 30px;
}

.footer-nav a {
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-nav a:hover { color: var(--cyan-deep); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #d6dbe0;
  color: #7a838f;
  font-size: 12px;
}

.footer-bottom p { margin: 0; }

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-resizing .header-menu {
  transition: none !important;
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav a { padding-inline: 8px; }
  .header-menu { gap: 10px; }
  .hero-grid { gap: 34px; }
  .program-card--communication,
  .program-card--safety { grid-column: 1 / -1; }
  .program-card--safety .program-card__body { grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr); }
  .learning-layout { gap: 42px; }
  .formats-layout,
  .speaker-layout,
  .request-layout { gap: 58px; }
}

@media (max-width: 920px) {
  :root { --header-offset: 82px; }
  .section { padding: 92px 0; }
  .container { width: min(var(--container), calc(100% - 40px)); }
  .site-header { top: 8px; }
  .header-shell { width: calc(100% - 16px); padding: 7px 8px 7px 14px; }
  .menu-toggle { position: relative; display: block; flex: 0 0 auto; }
  .header-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    display: grid;
    visibility: hidden;
    gap: 16px;
    padding: 18px;
    border: 1px solid #d5d9de;
    border-radius: 14px;
    background: rgba(246, 247, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .header-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav { display: grid; }
  .main-nav a { min-height: 44px; padding: 12px; font-size: 15px; }
  .header-cta { width: 100%; }
  .hero { min-height: auto; padding: 138px 0 86px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 12ch; }
  .hero-visual { width: min(100%, 600px); min-height: 520px; margin: 4px auto 0; }
  .practice-board { right: 50%; transform: translateX(50%) rotate(1deg); }
  .orbit-label--one { left: 5%; }
  .orbit-label--two { right: 2%; }
  .section-heading--split { grid-template-columns: 1fr; gap: 34px; }
  .learning-path li { padding-inline: 15px; }
  .program-card--corporate { grid-template-columns: 1fr; gap: 34px; }
  .program-card__corporate-copy .program-button { margin-top: 20px; }
  .learning-layout { grid-template-columns: 1fr; }
  .training-map { width: min(100%, 620px); margin-inline: auto; }
  .formats-layout,
  .speaker-layout,
  .product-panel,
  .request-layout { grid-template-columns: 1fr; }
  .formats-copy { max-width: 700px; }
  .format-cloud { width: min(100%, 650px); margin-inline: auto; }
  .speaker-portrait { width: min(100%, 570px); margin-inline: auto; }
  .product-panel { gap: 38px; }
  .product-mark { width: 180px; height: 180px; }
  .request-copy { position: static; }
  .request-copy h2 { max-width: 10ch; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .formats-copy h2,
  .speaker-copy h2,
  .product-copy h2,
  .request-copy h2 { font-size: clamp(36px, 11vw, 52px); }
  .brand { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { padding-top: 124px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(48px, 15vw, 72px); }
  .hero-lead { font-size: 20px; }
  .hero-note { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 490px; }
  .practice-board { top: 34px; width: calc(100% - 18px); min-height: 440px; padding: 22px; border-radius: 26px; }
  .practice-board__top { margin-bottom: 38px; }
  .practice-topic strong { font-size: 28px; }
  .orbit-label { padding: 8px 10px; font-size: 10px; }
  .orbit-label--one { left: -3px; }
  .orbit-label--two { right: -4px; bottom: 100px; }
  .orbit-label--three { bottom: 0; left: 7px; }
  .learning-path { grid-template-columns: 1fr; margin-top: 40px; }
  .learning-path li,
  .learning-path li:nth-child(2),
  .learning-path li:nth-child(3),
  .learning-path li:nth-child(4) { min-height: auto; margin-top: 0; padding: 22px 8px 22px 54px; border-top: 0; border-left: 1px solid var(--line); border-radius: 0; background: transparent; }
  .learning-path li:nth-child(4) { border-left-color: var(--cyan); }
  .learning-path li::after { content: "↓"; top: auto; right: auto; bottom: -13px; left: -8px; }
  .learning-path span { position: absolute; top: 25px; left: 17px; margin: 0; }
  .program-grid { gap: 16px; }
  .program-card { padding: 26px 22px; border-radius: 20px; }
  .program-card__number { top: 24px; right: 22px; font-size: 48px; }
  .program-card h3 { font-size: 34px; }
  .program-card__body,
  .program-card--safety .program-card__body,
  .program-card__corporate-details { grid-template-columns: 1fr; }
  .program-card__corporate-details { padding: 20px; }
  .program-button { width: 100%; }
  .learning .section-intro { font-size: 17px; }
  .training-map { min-height: 610px; padding: 20px; border-radius: 26px; }
  .training-map__core { top: 174px; width: 205px; height: 205px; }
  .training-map__track { width: calc(100% - 72px); }
  .training-map__track--talk { top: 78px; left: 12px; }
  .training-map__track--sales { top: 370px; right: 12px; }
  .training-map__feedback { bottom: 26px; min-width: 0; width: calc(100% - 40px); text-align: center; }
  .formats-layout { gap: 44px; }
  .format-cloud { grid-template-columns: 1fr; transform: none; }
  .format-cloud li,
  .format-cloud li:nth-child(2),
  .format-cloud li:nth-child(4) { grid-column: auto; min-height: 94px; transform: none; }
  .speaker-portrait { min-height: 500px; padding: 26px; }
  .speaker-monogram { top: 92px; width: 200px; height: 200px; }
  .product { padding: 32px 0; }
  .product-panel { width: calc(100% - 24px); gap: 28px; padding: 38px 24px; border-radius: 26px; }
  .product-mark { width: 140px; height: 140px; }
  .product-mark svg { width: 65px; height: 65px; }
  .request-layout { gap: 42px; }
  .request-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

/* Contacts and compact Academy helper — PIXA light language */
.contacts {
  padding: 112px 0;
  background: #fcfcfc;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 96px;
}

.contacts-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(50px, 5.4vw, 74px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.contacts-copy > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: #66707a;
  font-size: 19px;
  line-height: 1.6;
}

.contacts-list {
  border-top: 1px solid #d7dce0;
}

.contacts-list a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid #d7dce0;
  transition: color 180ms ease, padding 180ms ease;
}

.contacts-list a:hover {
  padding-left: 10px;
  color: #007f96;
}

.contacts-list span {
  color: #7a838c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contacts-list strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.contacts-list i {
  color: #00a9c4;
  font-size: 22px;
  font-style: normal;
}

.academy-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 170;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.academy-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid #17191d;
  border-radius: 14px;
  background: #0b0c0e;
  color: #fff;
  box-shadow: 0 12px 32px rgba(11, 12, 14, 0.16);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.academy-chat__launcher-icon {
  color: #09cce8;
  font-size: 19px;
}

.academy-chat__panel {
  order: -1;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid #d7dce0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(11, 12, 14, 0.17);
}

.academy-chat__panel[hidden] {
  display: none;
}

.academy-chat__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #e3e6e8;
}

.academy-chat__header strong,
.academy-chat__header span {
  display: block;
}

.academy-chat__header strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.academy-chat__header span {
  color: #7a838c;
  font-size: 11px;
}

.academy-chat__header i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #09cce8;
}

.academy-chat__header button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6d7580;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.academy-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  padding: 18px 20px 10px;
  overflow-y: auto;
}

.academy-chat__message {
  max-width: 90%;
  padding: 11px 13px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.5;
}

.academy-chat__message--bot {
  align-self: flex-start;
  background: #f1f3f4;
  color: #32373c;
}

.academy-chat__message--user {
  align-self: flex-end;
  background: #0b0c0e;
  color: #fff;
}

.academy-chat__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 20px 20px;
}

.academy-chat__topics button {
  padding: 8px 10px;
  border: 1px solid #d7dce0;
  border-radius: 999px;
  background: #fff;
  color: #3f474f;
  cursor: pointer;
  font-size: 11px;
  transition: border-color 160ms ease, color 160ms ease;
}

.academy-chat__topics button:hover {
  border-color: #09cce8;
  color: #007f96;
}

@media (max-width: 920px) {
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 680px) {
  .contacts {
    padding: 84px 0;
  }

  .contacts-copy h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .contacts-list a {
    grid-template-columns: 1fr 20px;
    gap: 8px 16px;
    min-height: 86px;
  }

  .contacts-list span {
    grid-column: 1;
  }

  .contacts-list strong {
    grid-column: 1;
  }

  .contacts-list i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .academy-chat {
    right: 16px;
    bottom: 16px;
  }

  .academy-chat__launcher {
    min-height: 48px;
    padding: 0 16px;
  }

  .academy-chat__panel {
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 96px);
  }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 28px); }
  .header-shell { width: calc(100% - 12px); }
  .brand-name { letter-spacing: -0.01em; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 18px; }
  .hero-visual { min-height: 465px; }
  .practice-board { min-height: 418px; }
  .practice-topic p { font-size: 14px; }
  .practice-result strong { font-size: 11px; }
  .program-card h3 { font-size: 31px; }
  .program-card__label { max-width: calc(100% - 54px); font-size: 10px; }
  .training-map__track { width: calc(100% - 44px); }
  .training-map__track p { font-size: 9px; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ========================================================================== */
/* PIXA visual unification                                                     */
/* ========================================================================== */

body {
  background: #fff;
  color: #111827;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: #f5f7f8;
  color: #111827;
}

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

.section-heading h2,
.formats-copy h2,
.speaker-copy h2,
.product-copy h2,
.request-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-intro {
  color: #5f6875;
  font-size: clamp(17px, 1.6vw, 21px);
}

.eyebrow {
  margin-bottom: 15px;
  color: #007f96;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 9px;
  box-shadow: none;
  font-size: 14px;
}

.button--dark,
.button--white {
  background: #0b0c0e;
  color: #fff;
}

.button--dark:hover,
.button--white:hover {
  background: #24272d;
  box-shadow: 0 10px 24px rgba(11, 12, 14, 0.12);
}

.button--light {
  border-color: #d5dae0;
  background: #fff;
}

/* Hero: same light PIXA rhythm as the main landing */
.hero {
  min-height: 740px;
  padding: 150px 0 90px;
  background: #fff;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 64px;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(50px, 4.7vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.5;
}

.hero-note {
  max-width: 630px;
  margin-bottom: 28px;
  color: #66707d;
  font-size: 15px;
}

.hero-glow--one {
  top: 80px;
  left: 48%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 120, 246, 0.14), rgba(139, 120, 246, 0) 68%);
}

.hero-glow--two {
  right: -60px;
  bottom: 0;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(9, 204, 232, 0.14), rgba(9, 204, 232, 0) 69%);
}

.hero-visual {
  min-height: 470px;
}

.practice-board {
  top: 28px;
  right: 12px;
  width: min(100%, 455px);
  min-height: 420px;
  padding: 25px;
  border: 1px solid #dfe4e9;
  border-radius: 24px;
  background:
    linear-gradient(rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    #f8fafb;
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.09);
  color: #111827;
  transform: none;
}

.practice-board::before {
  display: none;
}

.practice-board__top {
  margin-bottom: 36px;
}

.mini-brand {
  color: #111827;
}

.live-label {
  border-color: #d9e0e5;
  background: #fff;
  color: #687280;
}

.practice-topic > span,
.practice-result span {
  color: #7b8490;
}

.practice-topic strong {
  font-size: clamp(27px, 2.7vw, 37px);
}

.practice-topic p {
  margin-bottom: 24px;
  color: #606a77;
}

.dialog-lines {
  margin-bottom: 26px;
}

.dialog-line {
  height: 9px;
  background: #e1e5e9;
}

.dialog-line--accent {
  background: linear-gradient(90deg, rgba(9, 204, 232, 0.34), rgba(139, 120, 246, 0.25));
}

.practice-result {
  padding: 14px;
  border-color: rgba(0, 143, 168, 0.2);
  background: #edfafd;
}

.signal--cyan {
  opacity: 0.45;
}

.signal--violet {
  opacity: 0.4;
}

.orbit-label {
  padding: 8px 11px;
  border-color: #e1e5e9;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  font-size: 10px;
}

.orbit-label--two {
  right: -12px;
}

/* Principle: one calm PIXA strip without staggered heavy blocks */
.principle {
  padding-top: 88px;
  background: #f7f8f9;
}

.section-heading--split {
  gap: 64px;
}

.section-heading__copy {
  color: #5e6875;
  font-size: 16px;
}

.learning-path {
  gap: 12px;
  margin-top: 46px;
}

.learning-path li,
.learning-path li:nth-child(2),
.learning-path li:nth-child(3),
.learning-path li:nth-child(4) {
  min-height: 145px;
  padding: 22px;
  margin-top: 0;
  border: 1px solid #e0e4e8;
  border-radius: 14px;
  background: #fff;
}

.learning-path li:nth-child(4) {
  border-color: rgba(9, 204, 232, 0.45);
  background: #f0fbfd;
}

.learning-path li::after {
  top: 18px;
  right: -12px;
  color: #a1a9b3;
  font-size: 17px;
}

.learning-path span {
  margin-bottom: 28px;
}

.learning-path strong {
  font-size: 18px;
}

/* Programs: one consistent PIXA card system */
.programs {
  background: #fff;
}

.program-grid {
  gap: 18px;
}

.program-card,
.program-card--corporate {
  padding: 30px;
  border: 1px solid #e0e4e8;
  border-radius: 18px;
  background: #f9fafb;
  box-shadow: none;
  color: #111827;
}

.program-card--communication,
.program-card--safety {
  grid-column: span 6;
}

.program-card--corporate {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  background: #f3f6f7;
}

.program-card::before {
  width: 180px;
  height: 180px;
  opacity: 0.55;
}

.program-card__number,
.program-card--corporate .program-card__number {
  color: #d6dbe0;
  font-size: 48px;
}

.program-card__label,
.program-card--corporate .program-card__label {
  margin-bottom: 20px;
  color: #007f96;
}

.program-card--safety .program-card__label {
  color: #9f477c;
}

.program-card h3 {
  margin-bottom: 15px;
  font-size: clamp(28px, 2.45vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.program-card__lead,
.program-card--corporate .program-card__lead {
  margin-bottom: 26px;
  color: #606a77;
  font-size: 15px;
}

.program-card__body {
  grid-template-columns: 1fr;
  gap: 22px;
  padding-top: 22px;
}

.program-card--safety .program-card__body {
  grid-template-columns: 1fr;
}

.program-card__corporate-details {
  padding: 22px;
  border-color: #dde2e6;
  background: #fff;
}

.topic-list,
.topic-list--dark {
  color: #414a56;
}

.program-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.program-meta > div,
.program-meta--dark > div {
  padding: 15px;
  background: #eef1f3;
}

.program-meta p,
.program-meta--dark p {
  color: #48515d;
}

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

.program-card--corporate .button--white {
  background: #0b0c0e;
  color: #fff;
}

/* Learning: no full-width black section */
.learning {
  background: #f5f7f8;
  color: #111827;
}

.learning-glow {
  opacity: 0.45;
}

.section-heading--dark .eyebrow {
  color: #007f96;
}

.section-heading--dark .section-intro {
  color: #5f6875;
}

.learning-layout {
  gap: 54px;
}

.lesson-steps li,
.lesson-steps li:first-child {
  padding: 22px 0;
  border-color: #dce1e5;
}

.lesson-steps h3 {
  color: #111827;
  font-size: clamp(20px, 2vw, 26px);
}

.lesson-steps p {
  color: #626c79;
}

.training-map {
  min-height: 520px;
  border-color: #dce2e6;
  border-radius: 22px;
  background:
    linear-gradient(rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
}

.training-map__brand {
  color: #111827;
}

.training-map__core {
  top: 120px;
  width: 210px;
  height: 210px;
  border-color: rgba(0, 143, 168, 0.24);
  background: radial-gradient(circle, rgba(9, 204, 232, 0.15), rgba(9, 204, 232, 0.03) 62%, transparent 63%);
  box-shadow: none;
}

.training-map__core strong {
  color: #111827;
  font-size: 16px;
}

.training-map__track {
  width: 218px;
  padding: 15px;
  border-color: #dce2e6;
  background: #f8fafb;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.training-map__track strong {
  color: #111827;
  font-size: 17px;
}

.training-map__track p {
  color: #687280;
}

.training-map__track--talk {
  top: 78px;
}

.training-map__track--sales {
  top: 275px;
}

.training-map__feedback {
  bottom: 28px;
  border-color: rgba(0, 143, 168, 0.2);
  background: #eefafd;
  color: #53606d;
}

/* Organizations and speaker */
.organizations {
  background: #fff;
}

.formats-layout {
  gap: 72px;
}

.formats-copy > p:not(.eyebrow) {
  color: #606a77;
  font-size: 17px;
}

.format-cloud {
  transform: none;
}

.format-cloud li,
.format-cloud li:nth-child(2),
.format-cloud li:nth-child(4) {
  min-height: 104px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: none;
  transform: none;
}

.format-cloud .format-cloud__accent {
  background: linear-gradient(105deg, #e9fafd, #f4f1ff 58%, #fff3f8);
}

.speaker {
  background: #f6f7f8;
}

.speaker-layout {
  gap: 70px;
}

.speaker-portrait {
  min-height: 480px;
  border-radius: 22px;
  box-shadow: none;
}

.speaker-portrait__glow {
  top: 54px;
  width: 260px;
  height: 260px;
}

.speaker-monogram {
  top: 83px;
  width: 205px;
  height: 205px;
  font-size: 60px;
}

.speaker-role {
  margin-bottom: 28px;
  color: #606a77;
  font-size: clamp(18px, 1.7vw, 22px);
}

.speaker-bio p {
  padding: 17px 0;
}

/* Product and form: light PIXA cards */
.product {
  padding: 72px 0;
}

.product-panel {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  min-height: 430px;
  padding: 52px;
  border: 1px solid #e0e4e8;
  border-radius: 24px;
  background: linear-gradient(120deg, #eefbfd, #f5f3ff 58%, #fff5f9);
}

.product-mark {
  width: 190px;
  height: 190px;
  box-shadow: none;
}

.product-copy > p:not(.eyebrow) {
  color: #525d69;
  font-size: 16px;
}

.request {
  background: #f5f7f8;
  color: #111827;
}

.request-layout {
  gap: 70px;
}

.request-copy .eyebrow {
  color: #007f96;
}

.request-copy > p:not(.eyebrow) {
  color: #606a77;
  font-size: 18px;
}

.request-note {
  border-color: #d9dee3;
}

.request-note p {
  color: #687280;
}

.request-form {
  padding: 32px;
  border: 1px solid #dde2e6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.field label {
  color: #303844;
}

.field label span,
.field-hint {
  color: #8a929d;
}

.field input,
.field select,
.field textarea {
  border-color: #d7dce1;
  background-color: #f8f9fa;
  color: #111827;
}

.field select option {
  background: #fff;
  color: #111827;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0098b0;
  background-color: #fff;
}

.form-submit {
  background: #0b0c0e;
  color: #fff;
}

.form-submit.is-loading [data-submit-icon] {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

.form-status {
  color: #687280;
}

@media (max-width: 1080px) {
  .program-card--communication,
  .program-card--safety {
    grid-column: 1 / -1;
  }

  .program-card__body,
  .program-card--safety .program-card__body {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 126px 0 74px;
  }

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

  .hero-visual {
    min-height: 445px;
  }

  .program-card--corporate,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-mark {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .formats-copy h2,
  .speaker-copy h2,
  .product-copy h2,
  .request-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-visual {
    min-height: 420px;
  }

  .practice-board {
    top: 24px;
    min-height: 390px;
    border-radius: 20px;
  }

  .learning-path {
    gap: 0;
  }

  .learning-path li,
  .learning-path li:nth-child(2),
  .learning-path li:nth-child(3),
  .learning-path li:nth-child(4) {
    padding: 20px 14px 20px 52px;
    border: 0;
    border-bottom: 1px solid #e0e4e8;
    border-radius: 0;
    background: transparent;
  }

  .learning-path li::after {
    left: 10px;
  }

  .program-card,
  .program-card--corporate {
    padding: 24px 20px;
  }

  .program-card__body,
  .program-card--safety .program-card__body,
  .program-card__corporate-details,
  .program-meta {
    grid-template-columns: 1fr;
  }

  .training-map {
    min-height: 560px;
  }

  .training-map__core {
    top: 160px;
  }

  .training-map__track--sales {
    top: 338px;
  }

  .speaker-portrait {
    min-height: 430px;
  }

  .product-panel {
    padding: 34px 22px;
  }

  .request-form {
    padding: 24px 18px;
  }
}

/* Clear PIXA graphics: content first, decoration second */
.hero-visual {
  min-height: 390px;
}

.hero-visual .signal,
.hero-visual .orbit-label,
.dialog-lines {
  display: none;
}

.practice-board {
  top: 18px;
  right: 0;
  min-height: 350px;
  padding: 28px;
  background: #f7f9fa;
  box-shadow: none;
}

.practice-board__top {
  margin-bottom: 46px;
}

.practice-topic p {
  max-width: 330px;
  margin-bottom: 32px;
}

.practice-result {
  margin-top: 0;
  border: 0;
  border-left: 3px solid var(--cyan-deep);
  border-radius: 10px;
  background: #fff;
}

.learning-layout {
  align-items: start;
}

.training-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  padding: 26px;
  background: #fff;
  box-shadow: none;
}

.training-map__brand,
.training-map__core,
.training-map__track,
.training-map__feedback {
  position: static;
  width: auto;
  height: auto;
  min-width: 0;
  transform: none;
}

.training-map__brand {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.training-map__core {
  grid-column: 1 / -1;
  display: block;
  padding: 22px;
  border: 0;
  border-radius: 14px;
  background: #eefafd;
  text-align: left;
}

.training-map__core span {
  display: block;
  margin-bottom: 6px;
}

.training-map__core strong {
  display: block;
  max-width: 380px;
}

.training-map__track {
  min-height: 132px;
  padding: 18px;
  border-radius: 14px;
  box-shadow: none;
}

.training-map__track > span {
  display: none;
}

.training-map__feedback {
  grid-column: 1 / -1;
  padding: 15px 18px;
  border-radius: 12px;
}

.product {
  padding: 56px 0;
}

.product-panel {
  display: block;
  min-height: 0;
  padding: 44px 48px;
  background: #f3f6f7;
}

.product-copy {
  max-width: 820px;
}

.product-copy h2 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 64px);
}

@media (max-width: 680px) {
  .hero-visual {
    min-height: 350px;
  }

  .practice-board {
    top: 10px;
    min-height: 330px;
    padding: 22px;
  }

  .practice-board__top {
    margin-bottom: 36px;
  }

  .training-map {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .training-map__brand,
  .training-map__core,
  .training-map__feedback {
    grid-column: 1;
  }

  .training-map__track {
    min-height: 0;
  }

  .product {
    padding: 28px 0;
  }

  .product-panel {
    padding: 30px 22px;
  }

  .product-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }
}

/* Expressive PIXA infographics */
.hero-visual {
  min-height: 520px;
}

.practice-board {
  min-height: 486px;
  overflow: hidden;
  padding: 26px;
  border-color: #dce3e8;
  background:
    radial-gradient(circle at 95% 4%, rgba(9, 204, 232, 0.18), transparent 28%),
    linear-gradient(135deg, #fbfcfd, #f3f6f8);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.12);
}

.practice-board::after {
  position: absolute;
  top: 74px;
  right: -14px;
  color: rgba(17, 24, 39, 0.035);
  font-size: 180px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  content: "01";
  pointer-events: none;
}

.practice-board__top {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.practice-topic {
  position: relative;
  z-index: 1;
}

.practice-topic strong {
  display: block;
  max-width: 330px;
  font-size: clamp(30px, 3vw, 42px);
}

.practice-topic p {
  max-width: 315px;
  margin: 8px 0 22px;
  font-size: 14px;
}

.scenario-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.scenario-message {
  width: 88%;
  padding: 13px 15px;
  border: 1px solid #dfe5e9;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 255, 255, 0.92);
}

.scenario-message--answer {
  justify-self: end;
  border: 0;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(125deg, #17232c, #0c1118);
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 17, 24, 0.16);
}

.scenario-message span {
  display: block;
  margin-bottom: 3px;
  color: #78828e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-message--answer span {
  color: #68dced;
}

.scenario-message p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.practice-result {
  position: relative;
  z-index: 1;
  padding: 13px 14px;
  border: 1px solid rgba(0, 143, 168, 0.18);
  border-left: 3px solid var(--cyan-deep);
  background: rgba(237, 250, 253, 0.94);
}

.practice-result strong {
  font-size: 10px;
  line-height: 1.4;
}

.training-map {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 87% 12%, rgba(9, 204, 232, 0.22), transparent 31%),
    radial-gradient(circle at 18% 104%, rgba(139, 120, 246, 0.25), transparent 38%),
    linear-gradient(145deg, #121922, #080b10);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
  color: #fff;
}

.training-map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  pointer-events: none;
}

.training-map > * {
  position: relative;
  z-index: 1;
}

.training-map__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 28px;
  color: #8e99a7;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-map__brand i {
  color: var(--cyan);
  font-size: 20px;
}

.training-map__brand strong {
  color: #fff;
}

.training-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.training-flow__step {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(8px);
}

.training-flow__step--feedback {
  border-color: rgba(9, 204, 232, 0.26);
  background: linear-gradient(145deg, rgba(9, 204, 232, 0.18), rgba(139, 120, 246, 0.14));
}

.training-flow__step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #74dfef;
  font-size: 10px;
  font-weight: 750;
}

.training-flow__step small {
  display: block;
  margin-bottom: 7px;
  color: #7f8a98;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-flow__step strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.training-flow__arrow {
  display: grid;
  place-items: center;
  color: #4ed7eb;
  font-size: 20px;
}

.training-map__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.training-map__topics span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #aeb7c2;
  font-size: 10px;
}

.product-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.72fr);
  align-items: stretch;
  gap: 52px;
  overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(circle at 6% 8%, rgba(9, 204, 232, 0.13), transparent 30%),
    linear-gradient(120deg, #f4fbfc, #f5f3ff 65%, #fff7fa);
}

.product-copy {
  align-self: center;
}

.product-copy h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.product-outcomes {
  min-height: 360px;
  padding: 28px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(9, 204, 232, 0.2), transparent 35%),
    #0d1219;
  color: #fff;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.16);
}

.product-outcomes__lead {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-outcomes__lead span {
  display: block;
  margin-bottom: 9px;
  color: #64dcef;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-outcomes__lead strong {
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.product-outcomes ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-outcomes li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
}

.product-outcomes li span {
  color: #687483;
  font-size: 10px;
  font-weight: 700;
}

.product-outcomes li p {
  margin: 0;
  color: #f3f6f8;
  font-size: 14px;
  font-weight: 580;
}

@media (max-width: 1080px) {
  .product-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
    gap: 34px;
  }

  .training-flow__step {
    min-height: 165px;
    padding: 15px;
  }

  .training-flow__step strong {
    font-size: 13px;
  }
}

@media (max-width: 920px) {
  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-outcomes {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .hero-visual {
    min-height: 492px;
  }

  .practice-board {
    min-height: 468px;
    padding: 20px;
  }

  .practice-board::after {
    top: 90px;
    font-size: 130px;
  }

  .practice-topic strong {
    font-size: 31px;
  }

  .scenario-message {
    width: 94%;
  }

  .training-map {
    padding: 22px 18px;
  }

  .training-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .training-flow__step {
    min-height: 118px;
  }

  .training-flow__arrow {
    height: 15px;
    transform: rotate(90deg);
  }

  .training-map__topics {
    margin-top: 14px;
  }

  .product-panel {
    gap: 28px;
    padding: 28px 20px;
  }

  .product-outcomes {
    padding: 22px;
  }

  .product-outcomes__lead strong {
    font-size: 24px;
  }
}

/* PIXA source language: typography, air, hairlines, soft light */
.hero {
  min-height: 820px;
  padding: 156px 0 104px;
  background:
    radial-gradient(circle at 50% 44%, rgba(139, 120, 246, 0.15), transparent 21%),
    radial-gradient(circle at 60% 52%, rgba(9, 204, 232, 0.13), transparent 23%),
    #fcfcfc;
}

.hero::before {
  position: absolute;
  inset: 44% 0 0;
  background-image: radial-gradient(#cfd4d8 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.38;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, transparent 93%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  max-width: none;
  margin: 18px auto 28px;
  font-size: clamp(62px, 7.6vw, 104px);
  font-weight: 570;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: clamp(20px, 1.75vw, 25px);
  line-height: 1.48;
}

.hero-note {
  max-width: 690px;
  margin: 0 auto 32px;
  color: #66707a;
}

.hero-actions {
  justify-content: center;
}

.hero-glow {
  display: none;
}

.principle {
  padding: 126px 0 110px;
  background:
    radial-gradient(circle at 68% 35%, rgba(139, 120, 246, 0.12), transparent 22%),
    radial-gradient(circle at 74% 42%, rgba(9, 204, 232, 0.1), transparent 20%),
    #f7f8f9;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 90px;
}

.section-heading--split h2 {
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading__copy {
  padding-bottom: 6px;
  color: #5b6570;
  font-size: 17px;
}

.learning-path {
  gap: 0;
  margin-top: 72px;
  border-bottom: 1px solid #d7dce0;
}

.learning-path li,
.learning-path li:nth-child(2),
.learning-path li:nth-child(3),
.learning-path li:nth-child(4) {
  min-height: 136px;
  padding: 24px 28px 28px 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #d7dce0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.learning-path li:not(:last-child) {
  margin-right: 24px;
}

.learning-path li::after {
  top: 21px;
  right: 2px;
  color: var(--cyan-deep);
  font-size: 18px;
}

.learning-path span {
  margin-bottom: 30px;
  color: #adb4bb;
}

.learning-path strong {
  font-size: 19px;
  font-weight: 600;
}

.programs {
  background: #fcfcfc;
}

.program-grid {
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.program-card,
.program-card--corporate {
  border-color: #dce1e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.program-card::before {
  display: none;
}

.learning {
  padding: 124px 0;
  background:
    radial-gradient(circle at 38% 38%, rgba(139, 120, 246, 0.12), transparent 18%),
    radial-gradient(circle at 45% 48%, rgba(9, 204, 232, 0.1), transparent 20%),
    #f7f8f9;
}

.learning-glow {
  display: none;
}

.learning-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
}

.learning-intro {
  padding-top: 6px;
}

.learning-intro h2 {
  max-width: 7.5ch;
  margin-bottom: 22px;
  font-size: clamp(52px, 5.6vw, 76px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.learning-intro > p:last-child {
  max-width: 360px;
  color: #66707a;
  font-size: 17px;
}

.lesson-steps li,
.lesson-steps li:first-child {
  grid-template-columns: 52px minmax(0, 1fr) 18px;
  gap: 22px;
  padding: 28px 0;
  border-color: #d5dadd;
}

.lesson-steps li::after {
  align-self: start;
  color: var(--cyan-deep);
  font-size: 18px;
  content: "↗";
}

.lesson-steps li > span {
  color: #b1b8be;
}

.lesson-steps h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 600;
}

.lesson-steps p {
  max-width: 610px;
}

.formats-layout {
  align-items: start;
  gap: 96px;
}

.format-cloud {
  display: block;
}

.format-cloud li,
.format-cloud li:nth-child(2),
.format-cloud li:nth-child(4),
.format-cloud .format-cloud__accent {
  min-height: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid #d7dce0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.format-cloud li:last-child {
  border-bottom: 1px solid #d7dce0;
}

.format-cloud li span {
  width: 40px;
  flex: 0 0 auto;
  color: #afb6bd;
}

.speaker {
  background: #f5f6f7;
}

.speaker-layout {
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 88px;
}

.speaker-portrait {
  position: relative;
  display: block;
  width: min(100%, 520px);
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d5dade;
  border-radius: 18px;
  background: #e9ecee;
}

.speaker-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product {
  padding: 32px 0 110px;
  background: #fcfcfc;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 100px;
  min-height: 0;
  padding: 92px 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #d7dce0;
  border-bottom: 1px solid #d7dce0;
  border-radius: 0;
  background: transparent;
}

.product-copy h2 {
  max-width: 760px;
  font-size: clamp(50px, 5.4vw, 74px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.product-note {
  padding: 30px 0;
  border-top: 1px solid #d7dce0;
  border-bottom: 1px solid #d7dce0;
}

.product-note p {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-note strong {
  font-weight: 620;
}

.product-note span {
  color: #66707a;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .hero {
    min-height: 720px;
    padding: 144px 0 90px;
  }

  .section-heading--split,
  .learning-layout,
  .speaker-layout,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .learning-layout,
  .speaker-layout,
  .product-panel {
    gap: 48px;
  }

  .learning-intro h2 {
    max-width: none;
  }

  .learning-intro > p:last-child {
    max-width: 650px;
  }

  .speaker-portrait {
    width: min(100%, 620px);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 680px;
    padding: 126px 0 76px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .principle,
  .learning {
    padding: 84px 0;
  }

  .section-heading--split {
    gap: 36px;
  }

  .section-heading--split h2,
  .learning-intro h2,
  .product-copy h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .learning-path {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .learning-path li,
  .learning-path li:nth-child(2),
  .learning-path li:nth-child(3),
  .learning-path li:nth-child(4) {
    min-height: 0;
    padding: 20px 0;
    margin: 0;
  }

  .learning-path li::after {
    right: 4px;
    transform: rotate(90deg);
  }

  .learning-path span {
    margin-bottom: 12px;
  }

  .lesson-steps li,
  .lesson-steps li:first-child {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
    gap: 14px;
  }

  .product {
    padding-bottom: 76px;
  }

  .product-panel {
    gap: 38px;
    padding: 72px 0;
  }
}
